diff --git a/.babelrc b/.babelrc new file mode 100644 index 0000000000..abdb3b030b --- /dev/null +++ b/.babelrc @@ -0,0 +1,4 @@ +{ + "presets": ["es2015"], + "plugins": ["syntax-async-functions","transform-regenerator"] +} diff --git a/.ebextensions/01-increase-timeout.config b/.ebextensions/01-increase-timeout.config new file mode 100644 index 0000000000..6bdfd36c7a --- /dev/null +++ b/.ebextensions/01-increase-timeout.config @@ -0,0 +1,7 @@ +option_settings: + - namespace: aws:elasticbeanstalk:command + option_name: Timeout + value: 1800 + - namespace: aws:elb:policies + option_name: ConnectionSettingIdleTimeout + value: 900 diff --git a/.eslintignore b/.eslintignore new file mode 100644 index 0000000000..595ad011ae --- /dev/null +++ b/.eslintignore @@ -0,0 +1,33 @@ +# Compiled and vendored files +common/dist/ +common/transpiled-babel/ +coverage/ +database_reports/ +migrations/ +website/build/ +website/transpiled-babel/ + +# The files in website/public/js should be moved out and browserified +website/public/ + +# Temporarilly disabled. These should be removed when the linting errors are fixed +common/script/index.js +common/script/content/index.js +common/script/ops/**/*.js +common/script/fns/**/*.js +common/script/libs/**/*.js +common/script/public/**/*.js + +website/src/**/*.js + +debug-scripts/* +tasks/*.js +gulpfile.js +Gruntfile.js +newrelic.js + +test/api-legacy/**/* +test/common/simulations/**/* +test/content/**/* +test/server_side/**/* +test/spec/**/* diff --git a/.eslintrc b/.eslintrc index 7613632120..111772a5a3 100644 --- a/.eslintrc +++ b/.eslintrc @@ -1,126 +1,6 @@ { - "parser": "babel-eslint", - "plugins": ["babel"], - "rules": { - "indent": [2, 2, {"SwitchCase": 1}], - "quotes": [2, "single"], - "linebreak-style": [2, "unix"], - "semi": [2, "always"], - "no-extra-parens": 2, - "no-unexpected-multiline": 2, - "block-scoped-var": 2, - "dot-location": [2, "property"], - "dot-notation": 2, - "eqeqeq": 2, - "no-caller": 2, - "no-eval": 2, - "no-extend-native": 2, - "no-extra-bind": 2, - "no-fallthrough": 2, - "no-floating-decimal": 2, - "no-empty-pattern": 2, - "no-empty-label": 2, - "no-lone-blocks": 2, - "no-loop-func": 2, - "no-implicit-coercion": 2, - "no-implied-eval": 2, - "no-native-reassign": 2, - "no-new-func": 2, - "no-new-wrappers": 2, - "no-new": 2, - "no-octal-escape": 2, - "no-octal": 2, - "no-process-env": 2, - "no-proto": 2, - "no-implied-eval": 2, - "yoda": 2, - "wrap-iife": 2, - "radix": 2, - "no-with": 2, - "no-void": 2, - "no-useless-concat": 2, - "no-unused-expressions": 2, - "no-throw-literal": 2, - "no-sequences": 2, - "no-self-compare": 2, - "no-return-assign": 2, - "no-redeclare": 2, - "strict": [0, "global"], - "no-delete-var": 2, - "no-label-var": 2, - "no-shadow-restricted-names": 2, - "no-shadow": [2, { "builtinGlobals": true }], - "no-undef-init": 2, - "no-undef": [2, { "typeof": true }], - "no-unused-vars": 2, - "no-use-before-define": 2, - "global-require": 2, - "handle-callback-err": [2, "^.*(e|E)rr"], - "no-path-concat": 2, - "arrow-spacing": 2, - "constructor-super": 2, - "generator-star-spacing": 2, - "no-arrow-condition": 2, - "no-class-assign": 2, - "no-const-assign": 2, - "no-dupe-class-members": 2, - "no-this-before-super": 2, - "no-var": 2, - "object-shorthand": 0, - "prefer-const": 0, - "prefer-spread": 2, - "prefer-template": 2, - "array-bracket-spacing": [2, "never"], - "brace-style": [2, "1tbs", { "allowSingleLine": false }], - "camelcase": 2, - "comma-spacing": 2, - "comma-style": [2, "last"], - "comma-dangle": [2, "always-multiline"], - "computed-property-spacing": [2, "never"], - "consistent-this": [0, "self"], - "func-names": 2, - "func-style": [2, "declaration", { "allowArrowFunctions": true }], - "block-spacing": [2, "always"], - "key-spacing": [2, {"beforeColon": false, "afterColon": true}], - "max-nested-callbacks": [2, 3], - "new-cap": 0, - "new-parens": 2, - "newline-after-var": 0, - "no-array-constructor": 2, - "no-continue": 2, - "no-lonely-if": 2, - "no-mixed-spaces-and-tabs": 2, - "no-trailing-spaces": 2, - "no-spaced-func": 2, - "no-new-object": 2, - "no-nested-ternary": 2, - "one-var": [2, "never"], - "operator-linebreak": [2, "after"], - "quote-props": [2, "as-needed"], - "semi-spacing": [2, {"before": false, "after": true}], - "space-after-keywords": 2, - "space-before-blocks": 2, - "space-before-function-paren": 2, - "space-before-keywords": 2, - "space-in-parens": [2, "never"], - "space-infix-ops": 2, - "space-return-throw-case": 2, - "space-unary-ops": 2, - "spaced-comment": [2, "always", { "exceptions": ["-"]}], - "padded-blocks": [2, "never"], - "no-multiple-empty-lines": [2, {"max": 2}], - "generator-star-spacing": 0, - "babel/new-cap": 2, - "babel/object-shorthand": 2, - "babel/no-await-in-loop": 2 - }, - "env": { - "es6": true, - "mocha": true, - "node": true - }, - "ecmaFeatures" : { - "modules": true - }, - "extends": "eslint:recommended" + "extends": [ + "habitrpg/server", + "habitrpg/babel" + ] } diff --git a/CONTRIBUTING.md b/.github/CONTRIBUTING.md similarity index 76% rename from CONTRIBUTING.md rename to .github/CONTRIBUTING.md index d2b41b433e..7ae8d415b0 100644 --- a/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -2,6 +2,10 @@ [Please see these instructions for reporting bugs](https://github.com/HabitRPG/habitrpg/issues/2760) +# Pull Request + +[Please see these instructions for adding a pull request](http://habitica.wikia.com/wiki/Using_Habitica_Git#Pull_Request) + # Requesting a feature Habitica uses [Trello](https://trello.com/b/EpoYEYod/habitica) to track feature requests. [Read more](https://trello.com/c/odmhIqyW/440-read-first-table-of-contents). diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md new file mode 100644 index 0000000000..1e21d808b5 --- /dev/null +++ b/.github/ISSUE_TEMPLATE.md @@ -0,0 +1,22 @@ +[//]: # (Before logging this issue, look through common problems at https://github.com/HabitRPG/habitrpg/issue If you find your issue there, read at least the first post to see if there is a workaround for you.) + +[//]: # (Github is primarilly used for reporting bugs. If you have a feature request, use "Help > Request a Feature" so that the feature request can be vetted by the larger Habitica community.) + +[//]: # (To report a bug in one of the mobile apps, please report it in the correct repository. Android: https://github.com/HabitRPG/habitrpg-android, iOS: https://github.com/HabitRPG/habitrpg-ios) + +[//]: # (For more guidelines see https://github.com/HabitRPG/habitrpg/issues/2760 for more info) + +[//]: # (Fill out relevant information - UUID is found in Settings -> API) +General Info + * UUID: + * Browser: + * OS: + +### Description +[//]: # (Describe bug in detail here. Include pictures if helpful.) + + + +#### Console Errors +[//]: # (Include any javscript console errors here) + diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000000..11cc2ebb74 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,13 @@ +[//]: # (Note: See http://habitica.wikia.com/wiki/Using_Habitica_Git#Pull_Request for more info) + +[//]: # (Put Issue # or URL here, if applicable. This will automatically close the issue if your PR is merged in) +Fixes put_issue_url_here + +### Changes +[//]: # (Describe the changes that were made in detail here. Include pictures if necessary) + + + +[//]: # (Put User ID in here - found in Settings -> API) +---- +UUID: diff --git a/.gitignore b/.gitignore index fa314a4a47..a8e969e620 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,8 @@ .DS_Store website/public/gen website/public/common +website/transpiled-babel/ +common/transpiled-babel/ node_modules *.swp .idea* @@ -28,6 +30,10 @@ coverage coverage.html common/dist/scripts/* common/dist/sprites/habitrpg-shared.css -.elasticbeanstalk/config.yml test/spec/mocks/translations.js + +# Elastic Beanstalk Files +.elasticbeanstalk/* +!.elasticbeanstalk/*.cfg.yml +!.elasticbeanstalk/*.global.yml diff --git a/.nvmrc b/.nvmrc index 313d2e48ee..f77856a6f1 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -0.10.40 \ No newline at end of file +4.3.1 diff --git a/.travis.yml b/.travis.yml index a5ff61b605..86de1b5103 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,6 @@ language: node_js node_js: - - '0.10' + - '4.3.1' before_install: - "npm install -g npm@2" - "npm install -g gulp" diff --git a/Dockerfile b/Dockerfile index 618454c978..6f153c6078 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,6 +11,8 @@ RUN apt-get install -y \ build-essential \ curl \ git \ + libfontconfig1 \ + libfreetype6 \ libkrb5-dev \ python diff --git a/Gruntfile.js b/Gruntfile.js index b692b6c6bc..b5f507c50a 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -1,5 +1,5 @@ /*global module:false*/ -require('babel-core/register'); +require('babel-register'); var _ = require('lodash'); module.exports = function(grunt) { @@ -60,7 +60,7 @@ module.exports = function(grunt) { {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/'}, - {expand: true, cwd: '', src: 'common/img/sprites/quest_burnout.gif', dest: 'website/build/'}, + {expand: true, cwd: '', src: 'common/img/sprites/quest_*.gif', dest: 'website/build/'}, {expand: true, cwd: 'website/public/', src: 'bower_components/bootstrap/dist/fonts/*', dest: 'website/build/'} ] } @@ -80,7 +80,7 @@ module.exports = function(grunt) { 'website/build/common/dist/sprites/*.png', 'website/build/common/img/sprites/backer-only/*.gif', 'website/build/common/img/sprites/npc_ian.gif', - 'website/build/common/img/sprites/quest_burnout.gif', + 'website/build/common/img/sprites/quest_*.gif', 'website/build/bower_components/bootstrap/dist/fonts/*' ], dest: 'website/build/*.css' diff --git a/Procfile b/Procfile index c23771318e..5283f654f1 100644 --- a/Procfile +++ b/Procfile @@ -1 +1 @@ -web: node ./website/src/server.js +web: node ./website/transpiled-babel/server.js diff --git a/README.md b/README.md index e546a4295d..79581bd175 100644 --- a/README.md +++ b/README.md @@ -10,3 +10,21 @@ For an introduction to the technologies used and how the software is organized, To set up a local install of Habitica for development and testing, see [Setting up Habitica Locally](http://habitica.wikia.com/wiki/Setting_up_Habitica_Locally), which contains instructions for Windows, *nix / Mac OS, and Vagrant. Then read [Guidance for Blacksmiths](http://habitica.wikia.com/wiki/Guidance_for_Blacksmiths) for additional instructions and useful tips. + +## Debug Scripts + +In the `./debug-scripts/` folder, there are a few files. Here's a sample: + +```bash +grant-all-equipment.js +grant-all-mounts.js +grant-all-pets.js +``` + +You can run them by doing: + +```bash +node debug-scripts/name-of-script.js +``` + +If there are more arguments required to make the script work, it will print out the usage and an explanation of what the script does. diff --git a/bower.json b/bower.json index 52ca57deef..8788581cd1 100644 --- a/bower.json +++ b/bower.json @@ -37,12 +37,12 @@ "jquery-ui": "1.10.3", "jquery.cookie": "1.4.0", "js-emoji": "snicker/js-emoji#f25d8a303f", - "marked": "0.2.9", "ngInfiniteScroll": "1.0.0", "pnotify": "1.3.1", "sticky": "*", "swagger-ui": "wordnik/swagger-ui#v2.0.24", - "smart-app-banner": "78ef9c0679723b25be1a0ae04f7b4aef7cbced4f" + "smart-app-banner": "78ef9c0679723b25be1a0ae04f7b4aef7cbced4f", + "habitica-markdown": "^1.1.0" }, "devDependencies": { "angular-mocks": "1.3.9" diff --git a/common/.eslintrc b/common/.eslintrc new file mode 100644 index 0000000000..20c282864a --- /dev/null +++ b/common/.eslintrc @@ -0,0 +1,4 @@ +{ + "extends": "habitrpg/browser" +} + diff --git a/common/browserify.js b/common/browserify.js new file mode 100644 index 0000000000..0530144839 --- /dev/null +++ b/common/browserify.js @@ -0,0 +1,7 @@ +var shared = require('./script/index'); +var _ = require('lodash'); +var moment = require('moment'); + +window.habitrpgShared = shared; +window._ = _; +window.moment = moment; diff --git a/common/css/index.css b/common/css/index.css index deec1cd518..9f8b87eec9 100644 --- a/common/css/index.css +++ b/common/css/index.css @@ -1,9 +1,9 @@ /* Comment out for holiday events */ -.npc_ian { +/* .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; @@ -11,6 +11,12 @@ height: 249px; } +.quest_bewilder { + background: url("/common/img/sprites/quest_bewilder.gif") no-repeat; + width: 219px; + height: 219px; +} + .Gems { display:inline-block; margin-right:5px; diff --git a/common/dist/sprites/spritesmith-largeSprites-0.css b/common/dist/sprites/spritesmith-largeSprites-0.css index 101d561750..d33794cc7d 100644 --- a/common/dist/sprites/spritesmith-largeSprites-0.css +++ b/common/dist/sprites/spritesmith-largeSprites-0.css @@ -1,108 +1,132 @@ .2014_Fall_HealerPROMO2 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -551px -1051px; + background-position: -842px -1203px; width: 90px; height: 90px; } .2014_Fall_Mage_PROMO9 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -1265px -761px; + background-position: -813px -569px; width: 120px; height: 90px; } .2014_Fall_RoguePROMO3 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -1265px -943px; + background-position: -977px -1112px; width: 105px; height: 90px; } .2014_Fall_Warrior_PROMO { background-image: url(spritesmith-largeSprites-0.png); - background-position: -306px -220px; + background-position: -91px -1295px; width: 90px; height: 90px; } .promo_android { background-image: url(spritesmith-largeSprites-0.png); - background-position: -943px -277px; + background-position: -593px -241px; width: 175px; height: 175px; } .promo_backgrounds_armoire_201602 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -672px -181px; + background-position: -306px -220px; width: 141px; height: 294px; } +.promo_backgrounds_armoire_201603 { + background-image: url(spritesmith-largeSprites-0.png); + background-position: -813px 0px; + width: 141px; + height: 294px; +} +.promo_backgrounds_armoire_201604 { + background-image: url(spritesmith-largeSprites-0.png); + background-position: -452px 0px; + width: 140px; + height: 441px; +} .promo_backtoschool { background-image: url(spritesmith-largeSprites-0.png); - background-position: 0px -1051px; + background-position: -1236px -148px; width: 150px; height: 150px; } .promo_burnout { background-image: url(spritesmith-largeSprites-0.png); - background-position: -452px 0px; + background-position: -593px 0px; width: 219px; height: 240px; } .promo_classes_fall_2014 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -943px 0px; + background-position: -326px -912px; width: 321px; height: 100px; } .promo_classes_fall_2015 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -430px -621px; + background-position: -430px -706px; width: 377px; height: 99px; } .promo_dilatoryDistress { background-image: url(spritesmith-largeSprites-0.png); - background-position: -306px -311px; + background-position: -569px -1203px; width: 90px; height: 90px; } +.promo_egg_mounts { + background-image: url(spritesmith-largeSprites-0.png); + background-position: -955px 0px; + width: 280px; + height: 147px; +} .promo_enchanted_armoire { background-image: url(spritesmith-largeSprites-0.png); - background-position: 0px -890px; + background-position: -271px -621px; width: 374px; height: 76px; } .promo_enchanted_armoire_201507 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -151px -1051px; + background-position: -578px -1112px; width: 217px; height: 90px; } .promo_enchanted_armoire_201508 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -1265px -92px; + background-position: -796px -1112px; width: 180px; height: 90px; } .promo_enchanted_armoire_201509 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -820px -724px; + background-position: -751px -1203px; width: 90px; height: 90px; } .promo_enchanted_armoire_201511 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -1265px -503px; + background-position: -1236px -915px; width: 122px; height: 90px; } .promo_enchanted_armoire_201601 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -814px -272px; + background-position: -1115px -1203px; width: 90px; height: 90px; } +.promo_floral_potions { + background-image: url(spritesmith-largeSprites-0.png); + background-position: -813px -295px; + width: 105px; + height: 273px; +} .promo_habitica { background-image: url(spritesmith-largeSprites-0.png); - background-position: -943px -101px; + background-position: -955px -480px; width: 175px; height: 175px; } @@ -114,289 +138,295 @@ } .promo_haunted_hair { background-image: url(spritesmith-largeSprites-0.png); - background-position: -1265px -183px; + background-position: -1236px -595px; width: 100px; height: 137px; } -.customize-option.promo_haunted_hair { - background-image: url(spritesmith-largeSprites-0.png); - background-position: -1290px -198px; - width: 60px; - height: 60px; -} .promo_item_notif { background-image: url(spritesmith-largeSprites-0.png); - background-position: -943px -724px; + background-position: -955px -656px; width: 249px; height: 102px; } .promo_mystery_201405 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -642px -1051px; + background-position: -364px -1295px; width: 90px; height: 90px; } .promo_mystery_201406 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -1371px -397px; + background-position: 0px -1295px; width: 90px; height: 96px; } .promo_mystery_201407 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -943px -827px; + background-position: -769px -241px; width: 42px; height: 62px; } .promo_mystery_201408 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -1386px -761px; + background-position: -513px -442px; width: 60px; height: 71px; } .promo_mystery_201409 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -306px -402px; + background-position: -933px -1203px; width: 90px; height: 90px; } .promo_mystery_201410 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -1386px -670px; + background-position: -1131px -586px; width: 72px; height: 63px; } .promo_mystery_201411 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -460px -1051px; + background-position: -1297px -1203px; width: 90px; height: 90px; } .promo_mystery_201412 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -1193px -724px; + background-position: -1342px -809px; width: 42px; height: 66px; } .promo_mystery_201501 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -1412px -594px; + background-position: -1337px -595px; width: 48px; height: 63px; } .promo_mystery_201502 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -1371px -943px; + background-position: -387px -1203px; width: 90px; height: 90px; } .promo_mystery_201503 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -814px -181px; + background-position: -478px -1203px; width: 90px; height: 90px; } .promo_mystery_201504 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -1374px -852px; + background-position: -646px -621px; width: 60px; height: 69px; } .promo_mystery_201505 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -814px -363px; + background-position: -660px -1203px; width: 90px; height: 90px; } .promo_mystery_201506 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -1418px -321px; + background-position: -1337px -659px; width: 42px; height: 69px; } .promo_mystery_201507 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -1366px -183px; + background-position: -1131px -480px; width: 90px; height: 105px; } .promo_mystery_201508 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -1265px -1034px; + background-position: -293px -1203px; width: 93px; height: 90px; } .promo_mystery_201509 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -808px -621px; + background-position: -1024px -1203px; width: 90px; height: 90px; } .promo_mystery_201510 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -1359px -1034px; + background-position: -199px -1203px; width: 93px; height: 90px; } .promo_mystery_201511 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -369px -1051px; + background-position: -1206px -1203px; width: 90px; height: 90px; } .promo_mystery_201512 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -1388px -503px; + background-position: -452px -442px; width: 60px; height: 81px; } .promo_mystery_201601 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -1265px -670px; + background-position: -1236px -1082px; width: 120px; height: 90px; } +.promo_mystery_201602 { + background-image: url(spritesmith-largeSprites-0.png); + background-position: -182px -1295px; + width: 90px; + height: 90px; +} +.promo_mystery_201603 { + background-image: url(spritesmith-largeSprites-0.png); + background-position: -273px -1295px; + width: 90px; + height: 90px; +} +.promo_mystery_201604 { + background-image: url(spritesmith-largeSprites-0.png); + background-position: -1083px -1112px; + width: 93px; + height: 90px; +} .promo_mystery_3014 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -452px -389px; + background-position: -593px -417px; width: 217px; height: 90px; } .promo_orca { background-image: url(spritesmith-largeSprites-0.png); - background-position: -1265px -397px; + background-position: -1236px -809px; width: 105px; height: 105px; } .promo_partyhats { background-image: url(spritesmith-largeSprites-0.png); - background-position: -1265px -1125px; + background-position: -955px -759px; width: 115px; height: 47px; } .promo_pastel_skin { background-image: url(spritesmith-largeSprites-0.png); - background-position: -331px -967px; + background-position: -648px -912px; width: 330px; height: 83px; } .customize-option.promo_pastel_skin { background-image: url(spritesmith-largeSprites-0.png); - background-position: -356px -982px; + background-position: -673px -927px; width: 60px; height: 60px; } .promo_peppermint_flame { background-image: url(spritesmith-largeSprites-0.png); - background-position: -1119px -277px; + background-position: -1236px -447px; width: 140px; height: 147px; } .promo_pet_skins { background-image: url(spritesmith-largeSprites-0.png); - background-position: -1119px -101px; + background-position: -1236px -299px; width: 140px; height: 147px; } .customize-option.promo_pet_skins { background-image: url(spritesmith-largeSprites-0.png); - background-position: -1144px -116px; + background-position: -1261px -314px; width: 60px; height: 60px; } .promo_shimmer_hair { background-image: url(spritesmith-largeSprites-0.png); - background-position: 0px -967px; + background-position: -724px -809px; width: 330px; height: 83px; } -.customize-option.promo_shimmer_hair { - background-image: url(spritesmith-largeSprites-0.png); - background-position: -25px -982px; - width: 60px; - height: 60px; -} .promo_splashyskins { background-image: url(spritesmith-largeSprites-0.png); - background-position: -1265px 0px; + background-position: 0px -1203px; width: 198px; height: 91px; } .customize-option.promo_splashyskins { background-image: url(spritesmith-largeSprites-0.png); - background-position: -1290px -15px; + background-position: -25px -1218px; width: 60px; height: 60px; } +.promo_spring_classes_2016 { + background-image: url(spritesmith-largeSprites-0.png); + background-position: 0px -809px; + width: 362px; + height: 102px; +} .promo_springclasses2014 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -943px -542px; + background-position: 0px -1112px; width: 288px; height: 90px; } .promo_springclasses2015 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -943px -633px; + background-position: -289px -1112px; width: 288px; height: 90px; } .promo_summer_classes_2014 { background-image: url(spritesmith-largeSprites-0.png); - background-position: 0px -621px; + background-position: 0px -706px; width: 429px; height: 102px; } .promo_summer_classes_2015 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -943px -453px; + background-position: 0px -1023px; width: 300px; height: 88px; } .promo_updos { background-image: url(spritesmith-largeSprites-0.png); - background-position: -452px -241px; + background-position: -1236px 0px; width: 156px; height: 147px; } .promo_veteran_pets { background-image: url(spritesmith-largeSprites-0.png); - background-position: -1265px -594px; + background-position: -1236px -1006px; width: 146px; height: 75px; } .promo_winter_classes_2016 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -499px -525px; + background-position: -363px -809px; width: 360px; height: 90px; } .promo_winterclasses2015 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -494px -724px; + background-position: 0px -912px; width: 325px; height: 110px; } .promo_winteryhair { background-image: url(spritesmith-largeSprites-0.png); - background-position: -1265px -321px; + background-position: -1236px -733px; width: 152px; height: 75px; } -.customize-option.promo_winteryhair { - background-image: url(spritesmith-largeSprites-0.png); - background-position: -1290px -336px; - width: 60px; - height: 60px; -} .avatar_variety { background-image: url(spritesmith-largeSprites-0.png); - background-position: 0px -525px; + background-position: -271px -525px; width: 498px; height: 95px; } .npc_viirus { background-image: url(spritesmith-largeSprites-0.png); - background-position: -1265px -852px; + background-position: -813px -660px; width: 108px; height: 90px; } @@ -408,19 +438,19 @@ } .welcome_basic_avatars { background-image: url(spritesmith-largeSprites-0.png); - background-position: -247px -724px; + background-position: -955px -148px; width: 246px; height: 165px; } .welcome_promo_party { background-image: url(spritesmith-largeSprites-0.png); - background-position: -672px 0px; + background-position: 0px -525px; width: 270px; height: 180px; } .welcome_sample_tasks { background-image: url(spritesmith-largeSprites-0.png); - background-position: 0px -724px; + background-position: -955px -314px; width: 246px; height: 165px; } diff --git a/common/dist/sprites/spritesmith-largeSprites-0.png b/common/dist/sprites/spritesmith-largeSprites-0.png index 0deb9f478a..c3f550c347 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 a6f18b56ee..40d1c3bece 100644 --- a/common/dist/sprites/spritesmith-main-0.css +++ b/common/dist/sprites/spritesmith-main-0.css @@ -1,492 +1,534 @@ .achievement-alien { background-image: url(spritesmith-main-0.png); - background-position: -1079px -1582px; + background-position: -675px -1601px; width: 24px; height: 26px; } .achievement-alien2x { background-image: url(spritesmith-main-0.png); - background-position: -1638px -781px; + background-position: -1210px -1036px; width: 48px; height: 52px; } .achievement-alpha { background-image: url(spritesmith-main-0.png); - background-position: -1329px -1582px; + background-position: -650px -1601px; width: 24px; height: 26px; } .achievement-armor { background-image: url(spritesmith-main-0.png); - background-position: -1304px -1582px; + background-position: -625px -1601px; width: 24px; height: 26px; } .achievement-armor2x { background-image: url(spritesmith-main-0.png); - background-position: -980px -1582px; + background-position: -846px -1127px; + width: 48px; + height: 52px; +} +.achievement-bewilder { + background-image: url(spritesmith-main-0.png); + background-position: -575px -1601px; + width: 24px; + height: 26px; +} +.achievement-bewilder2x { + background-image: url(spritesmith-main-0.png); + background-position: -944px -1127px; width: 48px; height: 52px; } .achievement-birthday { background-image: url(spritesmith-main-0.png); - background-position: -1254px -1582px; + background-position: -525px -1601px; width: 24px; height: 26px; } .achievement-birthday2x { background-image: url(spritesmith-main-0.png); - background-position: -931px -1582px; + background-position: -1042px -1127px; width: 48px; height: 52px; } .achievement-boot { background-image: url(spritesmith-main-0.png); - background-position: -1204px -1582px; + background-position: -475px -1601px; width: 24px; height: 26px; } .achievement-boot2x { background-image: url(spritesmith-main-0.png); - background-position: -882px -1582px; + background-position: -1140px -1127px; width: 48px; height: 52px; } .achievement-bow { background-image: url(spritesmith-main-0.png); - background-position: -1154px -1582px; + background-position: -425px -1601px; width: 24px; height: 26px; } .achievement-bow2x { background-image: url(spritesmith-main-0.png); - background-position: -833px -1582px; + background-position: 0px -1548px; width: 48px; height: 52px; } .achievement-burnout { background-image: url(spritesmith-main-0.png); - background-position: -1104px -1582px; + background-position: -375px -1601px; width: 24px; height: 26px; } .achievement-burnout2x { background-image: url(spritesmith-main-0.png); - background-position: -784px -1582px; + background-position: -98px -1548px; width: 48px; height: 52px; } .achievement-cactus { background-image: url(spritesmith-main-0.png); - background-position: -1054px -1582px; + background-position: -325px -1601px; width: 24px; height: 26px; } .achievement-cactus2x { background-image: url(spritesmith-main-0.png); - background-position: -735px -1582px; + background-position: -196px -1548px; width: 48px; height: 52px; } .achievement-cake { background-image: url(spritesmith-main-0.png); - background-position: -1324px -1183px; + background-position: -275px -1601px; width: 24px; height: 26px; } .achievement-cake2x { background-image: url(spritesmith-main-0.png); - background-position: -686px -1582px; + background-position: -294px -1548px; width: 48px; height: 52px; } .achievement-cave { background-image: url(spritesmith-main-0.png); - background-position: -1274px -1183px; + background-position: -225px -1601px; width: 24px; height: 26px; } .achievement-cave2x { background-image: url(spritesmith-main-0.png); - background-position: -637px -1582px; + background-position: -392px -1548px; width: 48px; height: 52px; } .achievement-coffin { background-image: url(spritesmith-main-0.png); - background-position: -1390px -1274px; + background-position: -175px -1601px; width: 24px; height: 26px; } .achievement-comment { background-image: url(spritesmith-main-0.png); - background-position: -1365px -1274px; + background-position: -150px -1601px; width: 24px; height: 26px; } .achievement-comment2x { background-image: url(spritesmith-main-0.png); - background-position: -588px -1582px; + background-position: -490px -1548px; width: 48px; height: 52px; } .achievement-costumeContest { background-image: url(spritesmith-main-0.png); - background-position: -1481px -1365px; + background-position: -100px -1601px; width: 24px; height: 26px; } .achievement-costumeContest2x { background-image: url(spritesmith-main-0.png); - background-position: -539px -1582px; + background-position: -588px -1548px; width: 48px; height: 52px; } .achievement-dilatory { background-image: url(spritesmith-main-0.png); - background-position: -1597px -1456px; + background-position: -50px -1601px; width: 24px; height: 26px; } .achievement-firefox { background-image: url(spritesmith-main-0.png); - background-position: -1572px -1456px; + background-position: -25px -1601px; width: 24px; height: 26px; } .achievement-greeting { background-image: url(spritesmith-main-0.png); - background-position: -1547px -1456px; + background-position: 0px -1601px; width: 24px; height: 26px; } .achievement-greeting2x { background-image: url(spritesmith-main-0.png); - background-position: -490px -1582px; + background-position: -686px -1548px; width: 48px; height: 52px; } .achievement-habitBirthday { background-image: url(spritesmith-main-0.png); - background-position: -1687px -1470px; + background-position: -1670px -1548px; width: 24px; height: 26px; } .achievement-habitBirthday2x { background-image: url(spritesmith-main-0.png); - background-position: -441px -1582px; + background-position: -735px -1548px; width: 48px; height: 52px; } .achievement-habiticaDay { background-image: url(spritesmith-main-0.png); - background-position: -1687px -1364px; + background-position: -1620px -1548px; width: 24px; height: 26px; } .achievement-habiticaDay2x { background-image: url(spritesmith-main-0.png); - background-position: -392px -1582px; + background-position: -833px -1548px; width: 48px; height: 52px; } .achievement-heart { background-image: url(spritesmith-main-0.png); - background-position: -1687px -1258px; + background-position: -1570px -1548px; width: 24px; height: 26px; } .achievement-heart2x { background-image: url(spritesmith-main-0.png); - background-position: -343px -1582px; + background-position: -931px -1548px; width: 48px; height: 52px; } .achievement-karaoke-2x { background-image: url(spritesmith-main-0.png); - background-position: -294px -1582px; + background-position: -1029px -1548px; width: 48px; height: 52px; } .achievement-karaoke { background-image: url(spritesmith-main-0.png); - background-position: -1687px -1099px; + background-position: -1495px -1548px; width: 24px; height: 26px; } .achievement-ninja { background-image: url(spritesmith-main-0.png); - background-position: -1687px -1046px; + background-position: -1470px -1548px; width: 24px; height: 26px; } .achievement-ninja2x { background-image: url(spritesmith-main-0.png); - background-position: -245px -1582px; + background-position: -1127px -1548px; width: 48px; height: 52px; } .achievement-nye { background-image: url(spritesmith-main-0.png); - background-position: -1687px -940px; + background-position: -1235px -1089px; width: 24px; height: 26px; } .achievement-nye2x { background-image: url(spritesmith-main-0.png); - background-position: -196px -1582px; + background-position: -1225px -1548px; + width: 48px; + height: 52px; +} +.achievement-partyOn { + background-image: url(spritesmith-main-0.png); + background-position: -1688px -1509px; + width: 24px; + height: 26px; +} +.achievement-partyOn2x { + background-image: url(spritesmith-main-0.png); + background-position: -1638px -1456px; + width: 48px; + height: 52px; +} +.achievement-partyUp { + background-image: url(spritesmith-main-0.png); + background-position: -125px -1601px; + width: 24px; + height: 26px; +} +.achievement-partyUp2x { + background-image: url(spritesmith-main-0.png); + background-position: -1421px -1548px; width: 48px; height: 52px; } .achievement-perfect { background-image: url(spritesmith-main-0.png); - background-position: -1354px -1582px; + background-position: -1638px -1509px; width: 24px; height: 26px; } .achievement-perfect2x { background-image: url(spritesmith-main-0.png); - background-position: -1638px -728px; + background-position: -1372px -1548px; width: 48px; height: 52px; } .achievement-rat { background-image: url(spritesmith-main-0.png); - background-position: -1687px -728px; + background-position: -1663px -1509px; width: 24px; height: 26px; } .achievement-rat2x { background-image: url(spritesmith-main-0.png); - background-position: -49px -1582px; + background-position: -1274px -1548px; width: 48px; height: 52px; } .achievement-seafoam { background-image: url(spritesmith-main-0.png); - background-position: -1229px -1582px; + background-position: -1210px -1089px; width: 24px; height: 26px; } .achievement-seafoam2x { background-image: url(spritesmith-main-0.png); - background-position: 0px -1582px; + background-position: -1176px -1548px; width: 48px; height: 52px; } .achievement-shield { background-image: url(spritesmith-main-0.png); - background-position: -1129px -1582px; + background-position: -1238px -1127px; width: 24px; height: 26px; } .achievement-shield2x { background-image: url(spritesmith-main-0.png); - background-position: -1638px -1523px; + background-position: -1078px -1548px; width: 48px; height: 52px; } .achievement-shinySeed { background-image: url(spritesmith-main-0.png); - background-position: -1029px -1582px; + background-position: -1520px -1548px; width: 24px; height: 26px; } .achievement-shinySeed2x { background-image: url(spritesmith-main-0.png); - background-position: -1638px -1470px; + background-position: -980px -1548px; width: 48px; height: 52px; } .achievement-snowball { background-image: url(spritesmith-main-0.png); - background-position: -1415px -1274px; + background-position: -1545px -1548px; width: 24px; height: 26px; } .achievement-snowball2x { background-image: url(spritesmith-main-0.png); - background-position: -1638px -1417px; + background-position: -882px -1548px; width: 48px; height: 52px; } .achievement-spookDust { background-image: url(spritesmith-main-0.png); - background-position: -1456px -1365px; + background-position: -1595px -1548px; width: 24px; height: 26px; } .achievement-spookDust2x { background-image: url(spritesmith-main-0.png); - background-position: -1638px -1364px; + background-position: -784px -1548px; width: 48px; height: 52px; } .achievement-stoikalm { background-image: url(spritesmith-main-0.png); - background-position: -1687px -1417px; + background-position: -1645px -1548px; width: 24px; height: 26px; } .achievement-sun { background-image: url(spritesmith-main-0.png); - background-position: -1687px -1311px; + background-position: -1695px -1548px; width: 24px; height: 26px; } .achievement-sun2x { background-image: url(spritesmith-main-0.png); - background-position: -1638px -1311px; + background-position: -637px -1548px; width: 48px; height: 52px; } .achievement-sword { background-image: url(spritesmith-main-0.png); - background-position: -1687px -1152px; + background-position: -75px -1601px; width: 24px; height: 26px; } .achievement-sword2x { background-image: url(spritesmith-main-0.png); - background-position: -1638px -1258px; + background-position: -539px -1548px; width: 48px; height: 52px; } .achievement-thankyou { background-image: url(spritesmith-main-0.png); - background-position: -1687px -887px; + background-position: -1687px -1456px; width: 24px; height: 26px; } .achievement-thankyou2x { background-image: url(spritesmith-main-0.png); - background-position: -1638px -1205px; + background-position: -441px -1548px; width: 48px; height: 52px; } .achievement-thermometer { background-image: url(spritesmith-main-0.png); - background-position: -1687px -781px; + background-position: -200px -1601px; width: 24px; height: 26px; } .achievement-thermometer2x { background-image: url(spritesmith-main-0.png); - background-position: -1638px -1152px; + background-position: -343px -1548px; width: 48px; height: 52px; } .achievement-tree { background-image: url(spritesmith-main-0.png); - background-position: -1179px -1582px; + background-position: -250px -1601px; width: 24px; height: 26px; } .achievement-tree2x { background-image: url(spritesmith-main-0.png); - background-position: -1638px -1099px; + background-position: -245px -1548px; width: 48px; height: 52px; } .achievement-triadbingo { background-image: url(spritesmith-main-0.png); - background-position: -1299px -1183px; + background-position: -300px -1601px; width: 24px; height: 26px; } .achievement-triadbingo2x { background-image: url(spritesmith-main-0.png); - background-position: -1638px -1046px; + background-position: -147px -1548px; width: 48px; height: 52px; } .achievement-ultimate-healer { background-image: url(spritesmith-main-0.png); - background-position: -1687px -1523px; + background-position: -350px -1601px; width: 24px; height: 26px; } .achievement-ultimate-healer2x { background-image: url(spritesmith-main-0.png); - background-position: -1638px -993px; + background-position: -49px -1548px; width: 48px; height: 52px; } .achievement-ultimate-mage { background-image: url(spritesmith-main-0.png); - background-position: -1687px -993px; + background-position: -400px -1601px; width: 24px; height: 26px; } .achievement-ultimate-mage2x { background-image: url(spritesmith-main-0.png); - background-position: -1638px -940px; + background-position: -1189px -1127px; width: 48px; height: 52px; } .achievement-ultimate-rogue { background-image: url(spritesmith-main-0.png); - background-position: -1279px -1582px; + background-position: -450px -1601px; width: 24px; height: 26px; } .achievement-ultimate-rogue2x { background-image: url(spritesmith-main-0.png); - background-position: -1638px -887px; + background-position: -1091px -1127px; width: 48px; height: 52px; } .achievement-ultimate-warrior { background-image: url(spritesmith-main-0.png); - background-position: -1506px -1365px; + background-position: -500px -1601px; width: 24px; height: 26px; } .achievement-ultimate-warrior2x { background-image: url(spritesmith-main-0.png); - background-position: -1638px -834px; + background-position: -993px -1127px; width: 48px; height: 52px; } .achievement-valentine { background-image: url(spritesmith-main-0.png); - background-position: -1687px -834px; + background-position: -550px -1601px; width: 24px; height: 26px; } .achievement-valentine2x { background-image: url(spritesmith-main-0.png); - background-position: -98px -1582px; + background-position: -895px -1127px; width: 48px; height: 52px; } .achievement-wolf { background-image: url(spritesmith-main-0.png); - background-position: -1687px -1205px; + background-position: -600px -1601px; width: 24px; height: 26px; } .achievement-wolf2x { background-image: url(spritesmith-main-0.png); - background-position: -147px -1582px; + background-position: -1323px -1548px; width: 48px; height: 52px; } .background_alpine_slopes { background-image: url(spritesmith-main-0.png); - background-position: -851px -296px; + background-position: -851px -592px; + width: 140px; + height: 147px; +} +.background_archery_range { + background-image: url(spritesmith-main-0.png); + background-position: 0px -592px; width: 140px; height: 147px; } .background_autumn_forest { background-image: url(spritesmith-main-0.png); - background-position: -710px -148px; + background-position: 0px -740px; width: 140px; height: 147px; } .background_bamboo_forest { background-image: url(spritesmith-main-0.png); - background-position: -426px -148px; + background-position: -142px -296px; width: 141px; height: 147px; } @@ -498,25 +540,25 @@ } .background_blacksmithy { background-image: url(spritesmith-main-0.png); - background-position: -710px -296px; + background-position: -141px -592px; width: 140px; height: 147px; } .background_cherry_trees { background-image: url(spritesmith-main-0.png); - background-position: -282px -592px; + background-position: -705px -592px; width: 140px; height: 147px; } .background_clouds { background-image: url(spritesmith-main-0.png); - background-position: -423px -592px; + background-position: -851px 0px; width: 140px; height: 147px; } .background_coral_reef { background-image: url(spritesmith-main-0.png); - background-position: -705px -592px; + background-position: -851px -296px; width: 140px; height: 147px; } @@ -532,2241 +574,2079 @@ width: 140px; height: 147px; } -.background_dilatory_ruins { - background-image: url(spritesmith-main-0.png); - background-position: -705px -740px; - width: 140px; - height: 147px; -} -.background_distant_castle { - background-image: url(spritesmith-main-0.png); - background-position: -1133px -296px; - width: 140px; - height: 147px; -} -.background_drifting_raft { - background-image: url(spritesmith-main-0.png); - background-position: -1133px -444px; - width: 140px; - height: 147px; -} -.background_dusty_canyons { - background-image: url(spritesmith-main-0.png); - background-position: -1133px -592px; - width: 140px; - height: 147px; -} -.background_fairy_ring { - background-image: url(spritesmith-main-0.png); - background-position: 0px -444px; - width: 140px; - height: 147px; -} -.background_floating_islands { - background-image: url(spritesmith-main-0.png); - background-position: -141px -444px; - width: 140px; - height: 147px; -} -.background_floral_meadow { - background-image: url(spritesmith-main-0.png); - background-position: -282px -444px; - width: 140px; - height: 147px; -} -.background_forest { - background-image: url(spritesmith-main-0.png); - background-position: -423px -444px; - width: 140px; - height: 147px; -} -.background_frigid_peak { - background-image: url(spritesmith-main-0.png); - background-position: -564px -444px; - width: 140px; - height: 147px; -} -.background_frozen_lake { - background-image: url(spritesmith-main-0.png); - background-position: -710px 0px; - width: 140px; - height: 147px; -} -.background_giant_wave { - background-image: url(spritesmith-main-0.png); - background-position: -142px -148px; - width: 141px; - height: 147px; -} -.background_grand_staircase { - background-image: url(spritesmith-main-0.png); - background-position: -284px -148px; - width: 141px; - height: 147px; -} -.background_graveyard { - background-image: url(spritesmith-main-0.png); - background-position: -710px -444px; - width: 140px; - height: 147px; -} -.background_gumdrop_land { - background-image: url(spritesmith-main-0.png); - background-position: 0px -592px; - width: 140px; - height: 147px; -} -.background_harvest_feast { - background-image: url(spritesmith-main-0.png); - background-position: -141px -592px; - width: 140px; - height: 147px; -} -.background_harvest_fields { - background-image: url(spritesmith-main-0.png); - background-position: -426px 0px; - width: 141px; - height: 147px; -} -.background_harvest_moon { - background-image: url(spritesmith-main-0.png); - background-position: 0px 0px; - width: 141px; - height: 147px; -} -.background_haunted_house { - background-image: url(spritesmith-main-0.png); - background-position: -564px -592px; - width: 140px; - height: 147px; -} -.background_ice_cave { - background-image: url(spritesmith-main-0.png); - background-position: 0px -296px; - width: 141px; - height: 147px; -} -.background_iceberg { - background-image: url(spritesmith-main-0.png); - background-position: -851px 0px; - width: 140px; - height: 147px; -} -.background_island_waterfalls { - background-image: url(spritesmith-main-0.png); - background-position: -851px -148px; - width: 140px; - height: 147px; -} -.background_marble_temple { - background-image: url(spritesmith-main-0.png); - background-position: -142px 0px; - width: 141px; - height: 147px; -} -.background_market { - background-image: url(spritesmith-main-0.png); - background-position: -851px -444px; - width: 140px; - height: 147px; -} -.background_mountain_lake { - background-image: url(spritesmith-main-0.png); - background-position: -851px -592px; - width: 140px; - height: 147px; -} -.background_night_dunes { - background-image: url(spritesmith-main-0.png); - background-position: 0px -740px; - width: 140px; - height: 147px; -} -.background_open_waters { - background-image: url(spritesmith-main-0.png); - background-position: -142px -296px; - width: 141px; - height: 147px; -} -.background_pagodas { - background-image: url(spritesmith-main-0.png); - background-position: -282px -740px; - width: 140px; - height: 147px; -} -.background_pumpkin_patch { - background-image: url(spritesmith-main-0.png); - background-position: -423px -740px; - width: 140px; - height: 147px; -} -.background_pyramids { - background-image: url(spritesmith-main-0.png); - background-position: -284px -296px; - width: 141px; - height: 147px; -} -.background_rolling_hills { - background-image: url(spritesmith-main-0.png); - background-position: -426px -296px; - width: 141px; - height: 147px; -} -.background_seafarer_ship { - background-image: url(spritesmith-main-0.png); - background-position: -846px -740px; - width: 140px; - height: 147px; -} -.background_shimmery_bubbles { +.background_deep_mine { background-image: url(spritesmith-main-0.png); background-position: -992px 0px; width: 140px; height: 147px; } -.background_slimy_swamp { +.background_dilatory_ruins { background-image: url(spritesmith-main-0.png); background-position: -992px -148px; width: 140px; height: 147px; } -.background_snowman_army { +.background_distant_castle { background-image: url(spritesmith-main-0.png); background-position: -992px -296px; width: 140px; height: 147px; } -.background_snowy_pines { +.background_drifting_raft { background-image: url(spritesmith-main-0.png); background-position: -992px -444px; width: 140px; height: 147px; } -.background_snowy_sunrise { +.background_dusty_canyons { background-image: url(spritesmith-main-0.png); - background-position: -992px -592px; + background-position: -141px -1036px; width: 140px; height: 147px; } -.background_south_pole { +.background_fairy_ring { background-image: url(spritesmith-main-0.png); - background-position: -992px -740px; + background-position: -282px -1036px; width: 140px; height: 147px; } -.background_spring_rain { +.background_floating_islands { background-image: url(spritesmith-main-0.png); - background-position: 0px -888px; + background-position: -426px -444px; width: 140px; height: 147px; } -.background_stable { +.background_floral_meadow { background-image: url(spritesmith-main-0.png); - background-position: -141px -888px; + background-position: -567px -444px; width: 140px; height: 147px; } -.background_stained_glass { +.background_forest { background-image: url(spritesmith-main-0.png); - background-position: -282px -888px; + background-position: -710px 0px; width: 140px; height: 147px; } -.background_starry_skies { +.background_frigid_peak { background-image: url(spritesmith-main-0.png); - background-position: -423px -888px; + background-position: -710px -148px; width: 140px; height: 147px; } -.background_sunken_ship { +.background_frozen_lake { background-image: url(spritesmith-main-0.png); - background-position: -564px -888px; + background-position: -710px -296px; width: 140px; height: 147px; } -.background_sunset_meadow { +.background_giant_florals { background-image: url(spritesmith-main-0.png); - background-position: -705px -888px; - width: 140px; - height: 147px; -} -.background_sunset_oasis { - background-image: url(spritesmith-main-0.png); - background-position: -846px -888px; - width: 140px; - height: 147px; -} -.background_sunset_savannah { - background-image: url(spritesmith-main-0.png); - background-position: -987px -888px; - width: 140px; - height: 147px; -} -.background_swarming_darkness { - background-image: url(spritesmith-main-0.png); - background-position: -1133px 0px; - width: 140px; - height: 147px; -} -.background_tavern { - background-image: url(spritesmith-main-0.png); - background-position: -1133px -148px; - width: 140px; - height: 147px; -} -.background_thunderstorm { - background-image: url(spritesmith-main-0.png); - background-position: -568px 0px; + background-position: -142px -148px; width: 141px; height: 147px; } -.background_twinkly_lights { +.background_giant_wave { background-image: url(spritesmith-main-0.png); - background-position: -568px -148px; + background-position: -284px -148px; width: 141px; height: 147px; } -.background_twinkly_party_lights { +.background_grand_staircase { background-image: url(spritesmith-main-0.png); - background-position: -568px -296px; + background-position: -426px 0px; width: 141px; height: 147px; } -.background_volcano { +.background_graveyard { background-image: url(spritesmith-main-0.png); - background-position: -1133px -740px; + background-position: -282px -592px; width: 140px; height: 147px; } -.background_winter_night { +.background_gumdrop_land { background-image: url(spritesmith-main-0.png); - background-position: -1133px -888px; + background-position: -423px -592px; width: 140px; height: 147px; } -.background_winter_town { +.background_harvest_feast { + background-image: url(spritesmith-main-0.png); + background-position: -564px -592px; + width: 140px; + height: 147px; +} +.background_harvest_fields { + background-image: url(spritesmith-main-0.png); + background-position: -426px -148px; + width: 141px; + height: 147px; +} +.background_harvest_moon { + background-image: url(spritesmith-main-0.png); + background-position: 0px -296px; + width: 141px; + height: 147px; +} +.background_haunted_house { + background-image: url(spritesmith-main-0.png); + background-position: -851px -148px; + width: 140px; + height: 147px; +} +.background_ice_cave { + background-image: url(spritesmith-main-0.png); + background-position: 0px 0px; + width: 141px; + height: 147px; +} +.background_iceberg { + background-image: url(spritesmith-main-0.png); + background-position: -851px -444px; + width: 140px; + height: 147px; +} +.background_island_waterfalls { + background-image: url(spritesmith-main-0.png); + background-position: -705px -1036px; + width: 140px; + height: 147px; +} +.background_marble_temple { + background-image: url(spritesmith-main-0.png); + background-position: -284px -296px; + width: 141px; + height: 147px; +} +.background_market { background-image: url(spritesmith-main-0.png); background-position: -141px -740px; width: 140px; height: 147px; } +.background_mountain_lake { + background-image: url(spritesmith-main-0.png); + background-position: -282px -740px; + width: 140px; + height: 147px; +} +.background_night_dunes { + background-image: url(spritesmith-main-0.png); + background-position: -423px -740px; + width: 140px; + height: 147px; +} +.background_open_waters { + background-image: url(spritesmith-main-0.png); + background-position: -426px -296px; + width: 141px; + height: 147px; +} +.background_pagodas { + background-image: url(spritesmith-main-0.png); + background-position: -705px -740px; + width: 140px; + height: 147px; +} +.background_pumpkin_patch { + background-image: url(spritesmith-main-0.png); + background-position: -846px -740px; + width: 140px; + height: 147px; +} +.background_pyramids { + background-image: url(spritesmith-main-0.png); + background-position: -568px 0px; + width: 141px; + height: 147px; +} +.background_rainbows_end { + background-image: url(spritesmith-main-0.png); + background-position: -568px -148px; + width: 141px; + height: 147px; +} +.background_rainforest { + background-image: url(spritesmith-main-0.png); + background-position: -568px -296px; + width: 141px; + height: 147px; +} +.background_rolling_hills { + background-image: url(spritesmith-main-0.png); + background-position: 0px -444px; + width: 141px; + height: 147px; +} +.background_seafarer_ship { + background-image: url(spritesmith-main-0.png); + background-position: -992px -592px; + width: 140px; + height: 147px; +} +.background_shimmery_bubbles { + background-image: url(spritesmith-main-0.png); + background-position: -992px -740px; + width: 140px; + height: 147px; +} +.background_slimy_swamp { + background-image: url(spritesmith-main-0.png); + background-position: 0px -888px; + width: 140px; + height: 147px; +} +.background_snowman_army { + background-image: url(spritesmith-main-0.png); + background-position: -141px -888px; + width: 140px; + height: 147px; +} +.background_snowy_pines { + background-image: url(spritesmith-main-0.png); + background-position: -282px -888px; + width: 140px; + height: 147px; +} +.background_snowy_sunrise { + background-image: url(spritesmith-main-0.png); + background-position: -423px -888px; + width: 140px; + height: 147px; +} +.background_south_pole { + background-image: url(spritesmith-main-0.png); + background-position: -564px -888px; + width: 140px; + height: 147px; +} +.background_spring_rain { + background-image: url(spritesmith-main-0.png); + background-position: -705px -888px; + width: 140px; + height: 147px; +} +.background_stable { + background-image: url(spritesmith-main-0.png); + background-position: -846px -888px; + width: 140px; + height: 147px; +} +.background_stained_glass { + background-image: url(spritesmith-main-0.png); + background-position: -987px -888px; + width: 140px; + height: 147px; +} +.background_starry_skies { + background-image: url(spritesmith-main-0.png); + background-position: -1133px 0px; + width: 140px; + height: 147px; +} +.background_stone_circle { + background-image: url(spritesmith-main-0.png); + background-position: -1133px -148px; + width: 140px; + height: 147px; +} +.background_sunken_ship { + background-image: url(spritesmith-main-0.png); + background-position: -1133px -296px; + width: 140px; + height: 147px; +} +.background_sunset_meadow { + background-image: url(spritesmith-main-0.png); + background-position: -1133px -444px; + width: 140px; + height: 147px; +} +.background_sunset_oasis { + background-image: url(spritesmith-main-0.png); + background-position: -1133px -592px; + width: 140px; + height: 147px; +} +.background_sunset_savannah { + background-image: url(spritesmith-main-0.png); + background-position: -1133px -740px; + width: 140px; + height: 147px; +} +.background_swarming_darkness { + background-image: url(spritesmith-main-0.png); + background-position: -1133px -888px; + width: 140px; + height: 147px; +} +.background_tavern { + background-image: url(spritesmith-main-0.png); + background-position: 0px -1036px; + width: 140px; + height: 147px; +} +.background_thunderstorm { + background-image: url(spritesmith-main-0.png); + background-position: -142px -444px; + width: 141px; + height: 147px; +} +.background_twinkly_lights { + background-image: url(spritesmith-main-0.png); + background-position: -142px 0px; + width: 141px; + height: 147px; +} +.background_twinkly_party_lights { + background-image: url(spritesmith-main-0.png); + background-position: -284px -444px; + width: 141px; + height: 147px; +} +.background_volcano { + background-image: url(spritesmith-main-0.png); + background-position: -423px -1036px; + width: 140px; + height: 147px; +} +.background_winter_night { + background-image: url(spritesmith-main-0.png); + background-position: -564px -1036px; + width: 140px; + height: 147px; +} +.background_winter_town { + background-image: url(spritesmith-main-0.png); + background-position: -710px -444px; + width: 140px; + height: 147px; +} .hair_beard_1_TRUred { background-image: url(spritesmith-main-0.png); - background-position: -819px -1309px; + background-position: -182px -1457px; width: 90px; height: 90px; } .customize-option.hair_beard_1_TRUred { background-image: url(spritesmith-main-0.png); - background-position: -844px -1324px; + background-position: -207px -1472px; width: 60px; height: 60px; } .hair_beard_1_aurora { background-image: url(spritesmith-main-0.png); - background-position: -910px -1309px; + background-position: -728px -1366px; width: 90px; height: 90px; } .customize-option.hair_beard_1_aurora { background-image: url(spritesmith-main-0.png); - background-position: -935px -1324px; + background-position: -753px -1381px; width: 60px; height: 60px; } .hair_beard_1_black { background-image: url(spritesmith-main-0.png); - background-position: -1001px -1309px; + background-position: -819px -1366px; width: 90px; height: 90px; } .customize-option.hair_beard_1_black { background-image: url(spritesmith-main-0.png); - background-position: -1026px -1324px; + background-position: -844px -1381px; width: 60px; height: 60px; } .hair_beard_1_blond { background-image: url(spritesmith-main-0.png); - background-position: -1092px -1309px; + background-position: -910px -1366px; width: 90px; height: 90px; } .customize-option.hair_beard_1_blond { background-image: url(spritesmith-main-0.png); - background-position: -1117px -1324px; + background-position: -935px -1381px; width: 60px; height: 60px; } .hair_beard_1_blue { background-image: url(spritesmith-main-0.png); - background-position: -1183px -1309px; + background-position: -1001px -1366px; width: 90px; height: 90px; } .customize-option.hair_beard_1_blue { background-image: url(spritesmith-main-0.png); - background-position: -1208px -1324px; + background-position: -1026px -1381px; width: 60px; height: 60px; } .hair_beard_1_brown { background-image: url(spritesmith-main-0.png); - background-position: -1274px -1309px; + background-position: -1092px -1366px; width: 90px; height: 90px; } .customize-option.hair_beard_1_brown { background-image: url(spritesmith-main-0.png); - background-position: -1299px -1324px; + background-position: -1117px -1381px; width: 60px; height: 60px; } .hair_beard_1_candycane { background-image: url(spritesmith-main-0.png); - background-position: -1365px -1309px; + background-position: -1183px -1366px; width: 90px; height: 90px; } .customize-option.hair_beard_1_candycane { background-image: url(spritesmith-main-0.png); - background-position: -1390px -1324px; + background-position: -1208px -1381px; width: 60px; height: 60px; } .hair_beard_1_candycorn { background-image: url(spritesmith-main-0.png); - background-position: -1456px 0px; + background-position: -1274px -1366px; width: 90px; height: 90px; } .customize-option.hair_beard_1_candycorn { background-image: url(spritesmith-main-0.png); - background-position: -1481px -15px; + background-position: -1299px -1381px; width: 60px; height: 60px; } .hair_beard_1_festive { background-image: url(spritesmith-main-0.png); - background-position: -1456px -91px; + background-position: -1365px -1366px; width: 90px; height: 90px; } .customize-option.hair_beard_1_festive { background-image: url(spritesmith-main-0.png); - background-position: -1481px -106px; + background-position: -1390px -1381px; width: 60px; height: 60px; } .hair_beard_1_frost { background-image: url(spritesmith-main-0.png); - background-position: 0px -1036px; + background-position: -1456px -1366px; width: 90px; height: 90px; } .customize-option.hair_beard_1_frost { background-image: url(spritesmith-main-0.png); - background-position: -25px -1051px; + background-position: -1481px -1381px; width: 60px; height: 60px; } .hair_beard_1_ghostwhite { background-image: url(spritesmith-main-0.png); - background-position: -1456px -273px; + background-position: -1547px 0px; width: 90px; height: 90px; } .customize-option.hair_beard_1_ghostwhite { background-image: url(spritesmith-main-0.png); - background-position: -1481px -288px; + background-position: -1572px -15px; width: 60px; height: 60px; } .hair_beard_1_green { background-image: url(spritesmith-main-0.png); - background-position: -1456px -364px; + background-position: -1547px -91px; width: 90px; height: 90px; } .customize-option.hair_beard_1_green { background-image: url(spritesmith-main-0.png); - background-position: -1481px -379px; + background-position: -1572px -106px; width: 60px; height: 60px; } .hair_beard_1_halloween { background-image: url(spritesmith-main-0.png); - background-position: -1456px -455px; + background-position: -1547px -182px; width: 90px; height: 90px; } .customize-option.hair_beard_1_halloween { background-image: url(spritesmith-main-0.png); - background-position: -1481px -470px; + background-position: -1572px -197px; width: 60px; height: 60px; } .hair_beard_1_holly { background-image: url(spritesmith-main-0.png); - background-position: -1456px -546px; + background-position: -1547px -273px; width: 90px; height: 90px; } .customize-option.hair_beard_1_holly { background-image: url(spritesmith-main-0.png); - background-position: -1481px -561px; + background-position: -1572px -288px; width: 60px; height: 60px; } .hair_beard_1_hollygreen { background-image: url(spritesmith-main-0.png); - background-position: -1456px -637px; + background-position: -1547px -364px; width: 90px; height: 90px; } .customize-option.hair_beard_1_hollygreen { background-image: url(spritesmith-main-0.png); - background-position: -1481px -652px; + background-position: -1572px -379px; width: 60px; height: 60px; } .hair_beard_1_midnight { background-image: url(spritesmith-main-0.png); - background-position: -1456px -728px; + background-position: -1547px -455px; width: 90px; height: 90px; } .customize-option.hair_beard_1_midnight { background-image: url(spritesmith-main-0.png); - background-position: -1481px -743px; + background-position: -1572px -470px; width: 60px; height: 60px; } .hair_beard_1_pblue { background-image: url(spritesmith-main-0.png); - background-position: -1456px -819px; + background-position: -1547px -546px; width: 90px; height: 90px; } .customize-option.hair_beard_1_pblue { background-image: url(spritesmith-main-0.png); - background-position: -1481px -834px; + background-position: -1572px -561px; width: 60px; height: 60px; } .hair_beard_1_peppermint { background-image: url(spritesmith-main-0.png); - background-position: -1456px -910px; + background-position: -1547px -637px; width: 90px; height: 90px; } .customize-option.hair_beard_1_peppermint { background-image: url(spritesmith-main-0.png); - background-position: -1481px -925px; + background-position: -1572px -652px; width: 60px; height: 60px; } .hair_beard_1_pgreen { background-image: url(spritesmith-main-0.png); - background-position: -1456px -1001px; + background-position: -1547px -728px; width: 90px; height: 90px; } .customize-option.hair_beard_1_pgreen { background-image: url(spritesmith-main-0.png); - background-position: -1481px -1016px; + background-position: -1572px -743px; width: 60px; height: 60px; } .hair_beard_1_porange { background-image: url(spritesmith-main-0.png); - background-position: -1456px -1092px; + background-position: -1547px -819px; width: 90px; height: 90px; } .customize-option.hair_beard_1_porange { background-image: url(spritesmith-main-0.png); - background-position: -1481px -1107px; + background-position: -1572px -834px; width: 60px; height: 60px; } .hair_beard_1_ppink { background-image: url(spritesmith-main-0.png); - background-position: -1456px -1183px; + background-position: -1547px -910px; width: 90px; height: 90px; } .customize-option.hair_beard_1_ppink { background-image: url(spritesmith-main-0.png); - background-position: -1481px -1198px; + background-position: -1572px -925px; width: 60px; height: 60px; } .hair_beard_1_ppurple { background-image: url(spritesmith-main-0.png); - background-position: -1456px -1274px; + background-position: -1547px -1001px; width: 90px; height: 90px; } .customize-option.hair_beard_1_ppurple { background-image: url(spritesmith-main-0.png); - background-position: -1481px -1289px; + background-position: -1572px -1016px; width: 60px; height: 60px; } .hair_beard_1_pumpkin { background-image: url(spritesmith-main-0.png); - background-position: 0px -1400px; + background-position: -1547px -1092px; width: 90px; height: 90px; } .customize-option.hair_beard_1_pumpkin { background-image: url(spritesmith-main-0.png); - background-position: -25px -1415px; + background-position: -1572px -1107px; width: 60px; height: 60px; } .hair_beard_1_purple { background-image: url(spritesmith-main-0.png); - background-position: -91px -1400px; + background-position: -1547px -1183px; width: 90px; height: 90px; } .customize-option.hair_beard_1_purple { background-image: url(spritesmith-main-0.png); - background-position: -116px -1415px; + background-position: -1572px -1198px; width: 60px; height: 60px; } .hair_beard_1_pyellow { background-image: url(spritesmith-main-0.png); - background-position: -182px -1400px; + background-position: -1547px -1274px; width: 90px; height: 90px; } .customize-option.hair_beard_1_pyellow { background-image: url(spritesmith-main-0.png); - background-position: -207px -1415px; + background-position: -1572px -1289px; width: 60px; height: 60px; } .hair_beard_1_rainbow { background-image: url(spritesmith-main-0.png); - background-position: -273px -1400px; + background-position: -1547px -1365px; width: 90px; height: 90px; } .customize-option.hair_beard_1_rainbow { background-image: url(spritesmith-main-0.png); - background-position: -298px -1415px; + background-position: -1572px -1380px; width: 60px; height: 60px; } .hair_beard_1_red { background-image: url(spritesmith-main-0.png); - background-position: -364px -1400px; + background-position: 0px -1457px; width: 90px; height: 90px; } .customize-option.hair_beard_1_red { background-image: url(spritesmith-main-0.png); - background-position: -389px -1415px; + background-position: -25px -1472px; width: 60px; height: 60px; } .hair_beard_1_snowy { background-image: url(spritesmith-main-0.png); - background-position: -455px -1400px; + background-position: -91px -1457px; width: 90px; height: 90px; } .customize-option.hair_beard_1_snowy { background-image: url(spritesmith-main-0.png); - background-position: -480px -1415px; + background-position: -116px -1472px; width: 60px; height: 60px; } .hair_beard_1_white { background-image: url(spritesmith-main-0.png); - background-position: -546px -1400px; + background-position: -273px -1457px; width: 90px; height: 90px; } .customize-option.hair_beard_1_white { background-image: url(spritesmith-main-0.png); - background-position: -571px -1415px; + background-position: -298px -1472px; width: 60px; height: 60px; } .hair_beard_1_winternight { background-image: url(spritesmith-main-0.png); - background-position: -637px -1400px; + background-position: -364px -1457px; width: 90px; height: 90px; } .customize-option.hair_beard_1_winternight { background-image: url(spritesmith-main-0.png); - background-position: -662px -1415px; + background-position: -389px -1472px; width: 60px; height: 60px; } .hair_beard_1_winterstar { background-image: url(spritesmith-main-0.png); - background-position: -728px -1400px; + background-position: -455px -1457px; width: 90px; height: 90px; } .customize-option.hair_beard_1_winterstar { background-image: url(spritesmith-main-0.png); - background-position: -753px -1415px; + background-position: -480px -1472px; width: 60px; height: 60px; } .hair_beard_1_yellow { background-image: url(spritesmith-main-0.png); - background-position: -819px -1400px; + background-position: -546px -1457px; width: 90px; height: 90px; } .customize-option.hair_beard_1_yellow { background-image: url(spritesmith-main-0.png); - background-position: -844px -1415px; + background-position: -571px -1472px; width: 60px; height: 60px; } .hair_beard_1_zombie { background-image: url(spritesmith-main-0.png); - background-position: -910px -1400px; + background-position: -637px -1457px; width: 90px; height: 90px; } .customize-option.hair_beard_1_zombie { background-image: url(spritesmith-main-0.png); - background-position: -935px -1415px; + background-position: -662px -1472px; width: 60px; height: 60px; } .hair_beard_2_TRUred { background-image: url(spritesmith-main-0.png); - background-position: -1001px -1400px; + background-position: -1274px -1001px; width: 90px; height: 90px; } .customize-option.hair_beard_2_TRUred { background-image: url(spritesmith-main-0.png); - background-position: -1026px -1415px; + background-position: -1299px -1016px; width: 60px; height: 60px; } .hair_beard_2_aurora { background-image: url(spritesmith-main-0.png); - background-position: -1092px -1400px; + background-position: -728px -1457px; width: 90px; height: 90px; } .customize-option.hair_beard_2_aurora { background-image: url(spritesmith-main-0.png); - background-position: -1117px -1415px; + background-position: -753px -1472px; width: 60px; height: 60px; } .hair_beard_2_black { background-image: url(spritesmith-main-0.png); - background-position: -1183px -1400px; + background-position: -819px -1457px; width: 90px; height: 90px; } .customize-option.hair_beard_2_black { background-image: url(spritesmith-main-0.png); - background-position: -1208px -1415px; + background-position: -844px -1472px; width: 60px; height: 60px; } .hair_beard_2_blond { background-image: url(spritesmith-main-0.png); - background-position: -1274px -1400px; + background-position: -910px -1457px; width: 90px; height: 90px; } .customize-option.hair_beard_2_blond { background-image: url(spritesmith-main-0.png); - background-position: -1299px -1415px; + background-position: -935px -1472px; width: 60px; height: 60px; } .hair_beard_2_blue { background-image: url(spritesmith-main-0.png); - background-position: -1365px -1400px; + background-position: -1001px -1457px; width: 90px; height: 90px; } .customize-option.hair_beard_2_blue { background-image: url(spritesmith-main-0.png); - background-position: -1390px -1415px; + background-position: -1026px -1472px; width: 60px; height: 60px; } .hair_beard_2_brown { background-image: url(spritesmith-main-0.png); - background-position: -1456px -1400px; + background-position: -1092px -1457px; width: 90px; height: 90px; } .customize-option.hair_beard_2_brown { background-image: url(spritesmith-main-0.png); - background-position: -1481px -1415px; + background-position: -1117px -1472px; width: 60px; height: 60px; } .hair_beard_2_candycane { background-image: url(spritesmith-main-0.png); - background-position: -1547px 0px; + background-position: -1183px -1457px; width: 90px; height: 90px; } .customize-option.hair_beard_2_candycane { background-image: url(spritesmith-main-0.png); - background-position: -1572px -15px; + background-position: -1208px -1472px; width: 60px; height: 60px; } .hair_beard_2_candycorn { background-image: url(spritesmith-main-0.png); - background-position: -1547px -91px; + background-position: -1274px -1457px; width: 90px; height: 90px; } .customize-option.hair_beard_2_candycorn { background-image: url(spritesmith-main-0.png); - background-position: -1572px -106px; + background-position: -1299px -1472px; width: 60px; height: 60px; } .hair_beard_2_festive { background-image: url(spritesmith-main-0.png); - background-position: -1547px -182px; + background-position: -1365px -1457px; width: 90px; height: 90px; } .customize-option.hair_beard_2_festive { background-image: url(spritesmith-main-0.png); - background-position: -1572px -197px; + background-position: -1390px -1472px; width: 60px; height: 60px; } .hair_beard_2_frost { background-image: url(spritesmith-main-0.png); - background-position: -1547px -273px; + background-position: -1456px -1457px; width: 90px; height: 90px; } .customize-option.hair_beard_2_frost { background-image: url(spritesmith-main-0.png); - background-position: -1572px -288px; + background-position: -1481px -1472px; width: 60px; height: 60px; } .hair_beard_2_ghostwhite { background-image: url(spritesmith-main-0.png); - background-position: -1547px -364px; + background-position: -1547px -1457px; width: 90px; height: 90px; } .customize-option.hair_beard_2_ghostwhite { background-image: url(spritesmith-main-0.png); - background-position: -1572px -379px; + background-position: -1572px -1472px; width: 60px; height: 60px; } .hair_beard_2_green { background-image: url(spritesmith-main-0.png); - background-position: -1547px -455px; + background-position: -1638px 0px; width: 90px; height: 90px; } .customize-option.hair_beard_2_green { background-image: url(spritesmith-main-0.png); - background-position: -1572px -470px; + background-position: -1663px -15px; width: 60px; height: 60px; } .hair_beard_2_halloween { background-image: url(spritesmith-main-0.png); - background-position: -1547px -546px; + background-position: -1638px -91px; width: 90px; height: 90px; } .customize-option.hair_beard_2_halloween { background-image: url(spritesmith-main-0.png); - background-position: -1572px -561px; + background-position: -1663px -106px; width: 60px; height: 60px; } .hair_beard_2_holly { background-image: url(spritesmith-main-0.png); - background-position: -1547px -637px; + background-position: -1638px -182px; width: 90px; height: 90px; } .customize-option.hair_beard_2_holly { background-image: url(spritesmith-main-0.png); - background-position: -1572px -652px; + background-position: -1663px -197px; width: 60px; height: 60px; } .hair_beard_2_hollygreen { background-image: url(spritesmith-main-0.png); - background-position: -1547px -728px; + background-position: -1638px -273px; width: 90px; height: 90px; } .customize-option.hair_beard_2_hollygreen { background-image: url(spritesmith-main-0.png); - background-position: -1572px -743px; + background-position: -1663px -288px; width: 60px; height: 60px; } .hair_beard_2_midnight { background-image: url(spritesmith-main-0.png); - background-position: -1547px -819px; + background-position: -1638px -364px; width: 90px; height: 90px; } .customize-option.hair_beard_2_midnight { background-image: url(spritesmith-main-0.png); - background-position: -1572px -834px; + background-position: -1663px -379px; width: 60px; height: 60px; } .hair_beard_2_pblue { background-image: url(spritesmith-main-0.png); - background-position: -1547px -910px; + background-position: -1638px -455px; width: 90px; height: 90px; } .customize-option.hair_beard_2_pblue { background-image: url(spritesmith-main-0.png); - background-position: -1572px -925px; + background-position: -1663px -470px; width: 60px; height: 60px; } .hair_beard_2_peppermint { background-image: url(spritesmith-main-0.png); - background-position: -1547px -1001px; + background-position: -1638px -546px; width: 90px; height: 90px; } .customize-option.hair_beard_2_peppermint { background-image: url(spritesmith-main-0.png); - background-position: -1572px -1016px; + background-position: -1663px -561px; width: 60px; height: 60px; } .hair_beard_2_pgreen { background-image: url(spritesmith-main-0.png); - background-position: -1547px -1092px; + background-position: -1638px -637px; width: 90px; height: 90px; } .customize-option.hair_beard_2_pgreen { background-image: url(spritesmith-main-0.png); - background-position: -1572px -1107px; + background-position: -1663px -652px; width: 60px; height: 60px; } .hair_beard_2_porange { background-image: url(spritesmith-main-0.png); - background-position: -1547px -1183px; + background-position: -1638px -728px; width: 90px; height: 90px; } .customize-option.hair_beard_2_porange { background-image: url(spritesmith-main-0.png); - background-position: -1572px -1198px; + background-position: -1663px -743px; width: 60px; height: 60px; } .hair_beard_2_ppink { background-image: url(spritesmith-main-0.png); - background-position: -1547px -1274px; + background-position: -1638px -819px; width: 90px; height: 90px; } .customize-option.hair_beard_2_ppink { background-image: url(spritesmith-main-0.png); - background-position: -1572px -1289px; + background-position: -1663px -834px; width: 60px; height: 60px; } .hair_beard_2_ppurple { background-image: url(spritesmith-main-0.png); - background-position: -1547px -1365px; + background-position: -1638px -910px; width: 90px; height: 90px; } .customize-option.hair_beard_2_ppurple { background-image: url(spritesmith-main-0.png); - background-position: -1572px -1380px; + background-position: -1663px -925px; width: 60px; height: 60px; } .hair_beard_2_pumpkin { background-image: url(spritesmith-main-0.png); - background-position: 0px -1491px; + background-position: -1638px -1001px; width: 90px; height: 90px; } .customize-option.hair_beard_2_pumpkin { background-image: url(spritesmith-main-0.png); - background-position: -25px -1506px; + background-position: -1663px -1016px; width: 60px; height: 60px; } .hair_beard_2_purple { background-image: url(spritesmith-main-0.png); - background-position: -91px -1491px; + background-position: -1638px -1092px; width: 90px; height: 90px; } .customize-option.hair_beard_2_purple { background-image: url(spritesmith-main-0.png); - background-position: -116px -1506px; + background-position: -1663px -1107px; width: 60px; height: 60px; } .hair_beard_2_pyellow { background-image: url(spritesmith-main-0.png); - background-position: -182px -1491px; + background-position: -1638px -1183px; width: 90px; height: 90px; } .customize-option.hair_beard_2_pyellow { background-image: url(spritesmith-main-0.png); - background-position: -207px -1506px; + background-position: -1663px -1198px; width: 60px; height: 60px; } .hair_beard_2_rainbow { background-image: url(spritesmith-main-0.png); - background-position: -273px -1491px; + background-position: -1638px -1274px; width: 90px; height: 90px; } .customize-option.hair_beard_2_rainbow { background-image: url(spritesmith-main-0.png); - background-position: -298px -1506px; + background-position: -1663px -1289px; width: 60px; height: 60px; } .hair_beard_2_red { background-image: url(spritesmith-main-0.png); - background-position: -364px -1491px; + background-position: -1638px -1365px; width: 90px; height: 90px; } .customize-option.hair_beard_2_red { background-image: url(spritesmith-main-0.png); - background-position: -389px -1506px; + background-position: -1663px -1380px; width: 60px; height: 60px; } .hair_beard_2_snowy { background-image: url(spritesmith-main-0.png); - background-position: -455px -1491px; + background-position: -273px -1366px; width: 90px; height: 90px; } .customize-option.hair_beard_2_snowy { background-image: url(spritesmith-main-0.png); - background-position: -480px -1506px; + background-position: -298px -1381px; width: 60px; height: 60px; } .hair_beard_2_white { background-image: url(spritesmith-main-0.png); - background-position: -546px -1491px; + background-position: -1274px -910px; width: 90px; height: 90px; } .customize-option.hair_beard_2_white { background-image: url(spritesmith-main-0.png); - background-position: -571px -1506px; + background-position: -1299px -925px; width: 60px; height: 60px; } .hair_beard_2_winternight { background-image: url(spritesmith-main-0.png); - background-position: -637px -1491px; + background-position: -1274px -819px; width: 90px; height: 90px; } .customize-option.hair_beard_2_winternight { background-image: url(spritesmith-main-0.png); - background-position: -662px -1506px; + background-position: -1299px -834px; width: 60px; height: 60px; } .hair_beard_2_winterstar { background-image: url(spritesmith-main-0.png); - background-position: -728px -1491px; + background-position: -1274px -728px; width: 90px; height: 90px; } .customize-option.hair_beard_2_winterstar { background-image: url(spritesmith-main-0.png); - background-position: -753px -1506px; + background-position: -1299px -743px; width: 60px; height: 60px; } .hair_beard_2_yellow { background-image: url(spritesmith-main-0.png); - background-position: -819px -1491px; + background-position: -1274px -637px; width: 90px; height: 90px; } .customize-option.hair_beard_2_yellow { background-image: url(spritesmith-main-0.png); - background-position: -844px -1506px; + background-position: -1299px -652px; width: 60px; height: 60px; } .hair_beard_2_zombie { background-image: url(spritesmith-main-0.png); - background-position: -910px -1491px; + background-position: -1274px -546px; width: 90px; height: 90px; } .customize-option.hair_beard_2_zombie { background-image: url(spritesmith-main-0.png); - background-position: -935px -1506px; + background-position: -1299px -561px; width: 60px; height: 60px; } .hair_beard_3_TRUred { background-image: url(spritesmith-main-0.png); - background-position: -1001px -1491px; + background-position: -1456px -364px; width: 90px; height: 90px; } .customize-option.hair_beard_3_TRUred { background-image: url(spritesmith-main-0.png); - background-position: -1026px -1506px; + background-position: -1481px -379px; width: 60px; height: 60px; } .hair_beard_3_aurora { background-image: url(spritesmith-main-0.png); - background-position: -1092px -1491px; + background-position: -1274px -455px; width: 90px; height: 90px; } .customize-option.hair_beard_3_aurora { background-image: url(spritesmith-main-0.png); - background-position: -1117px -1506px; + background-position: -1299px -470px; width: 60px; height: 60px; } .hair_beard_3_black { background-image: url(spritesmith-main-0.png); - background-position: -1183px -1491px; + background-position: -1274px -364px; width: 90px; height: 90px; } .customize-option.hair_beard_3_black { background-image: url(spritesmith-main-0.png); - background-position: -1208px -1506px; + background-position: -1299px -379px; width: 60px; height: 60px; } .hair_beard_3_blond { background-image: url(spritesmith-main-0.png); - background-position: -1274px -1491px; + background-position: -1274px -273px; width: 90px; height: 90px; } .customize-option.hair_beard_3_blond { background-image: url(spritesmith-main-0.png); - background-position: -1299px -1506px; + background-position: -1299px -288px; width: 60px; height: 60px; } .hair_beard_3_blue { background-image: url(spritesmith-main-0.png); - background-position: -1365px -1491px; + background-position: -1274px -182px; width: 90px; height: 90px; } .customize-option.hair_beard_3_blue { background-image: url(spritesmith-main-0.png); - background-position: -1390px -1506px; + background-position: -1299px -197px; width: 60px; height: 60px; } .hair_beard_3_brown { background-image: url(spritesmith-main-0.png); - background-position: -1456px -1491px; + background-position: -1274px -91px; width: 90px; height: 90px; } .customize-option.hair_beard_3_brown { background-image: url(spritesmith-main-0.png); - background-position: -1481px -1506px; + background-position: -1299px -106px; width: 60px; height: 60px; } .hair_beard_3_candycane { background-image: url(spritesmith-main-0.png); - background-position: -1547px -1491px; + background-position: -1274px 0px; width: 90px; height: 90px; } .customize-option.hair_beard_3_candycane { background-image: url(spritesmith-main-0.png); - background-position: -1572px -1506px; + background-position: -1299px -15px; width: 60px; height: 60px; } .hair_beard_3_candycorn { background-image: url(spritesmith-main-0.png); - background-position: -1638px 0px; + background-position: -1119px -1036px; width: 90px; height: 90px; } .customize-option.hair_beard_3_candycorn { background-image: url(spritesmith-main-0.png); - background-position: -1663px -15px; + background-position: -1144px -1051px; width: 60px; height: 60px; } .hair_beard_3_festive { background-image: url(spritesmith-main-0.png); - background-position: -1638px -91px; + background-position: -1028px -1036px; width: 90px; height: 90px; } .customize-option.hair_beard_3_festive { background-image: url(spritesmith-main-0.png); - background-position: -1663px -106px; + background-position: -1053px -1051px; width: 60px; height: 60px; } .hair_beard_3_frost { background-image: url(spritesmith-main-0.png); - background-position: -1638px -182px; + background-position: -937px -1036px; width: 90px; height: 90px; } .customize-option.hair_beard_3_frost { background-image: url(spritesmith-main-0.png); - background-position: -1663px -197px; + background-position: -962px -1051px; width: 60px; height: 60px; } .hair_beard_3_ghostwhite { background-image: url(spritesmith-main-0.png); - background-position: -1638px -273px; + background-position: -846px -1036px; width: 90px; height: 90px; } .customize-option.hair_beard_3_ghostwhite { background-image: url(spritesmith-main-0.png); - background-position: -1663px -288px; + background-position: -871px -1051px; width: 60px; height: 60px; } .hair_beard_3_green { background-image: url(spritesmith-main-0.png); - background-position: -1638px -364px; + background-position: -637px -1366px; width: 90px; height: 90px; } .customize-option.hair_beard_3_green { background-image: url(spritesmith-main-0.png); - background-position: -1663px -379px; + background-position: -662px -1381px; width: 60px; height: 60px; } .hair_beard_3_halloween { background-image: url(spritesmith-main-0.png); - background-position: -1638px -455px; + background-position: -546px -1366px; width: 90px; height: 90px; } .customize-option.hair_beard_3_halloween { background-image: url(spritesmith-main-0.png); - background-position: -1663px -470px; + background-position: -571px -1381px; width: 60px; height: 60px; } .hair_beard_3_holly { background-image: url(spritesmith-main-0.png); - background-position: -1638px -546px; + background-position: -455px -1366px; width: 90px; height: 90px; } .customize-option.hair_beard_3_holly { background-image: url(spritesmith-main-0.png); - background-position: -1663px -561px; + background-position: -480px -1381px; width: 60px; height: 60px; } .hair_beard_3_hollygreen { background-image: url(spritesmith-main-0.png); - background-position: -1638px -637px; + background-position: -364px -1366px; width: 90px; height: 90px; } .customize-option.hair_beard_3_hollygreen { background-image: url(spritesmith-main-0.png); - background-position: -1663px -652px; + background-position: -389px -1381px; width: 60px; height: 60px; } .hair_beard_3_midnight { background-image: url(spritesmith-main-0.png); - background-position: -1456px -182px; + background-position: -182px -1366px; width: 90px; height: 90px; } .customize-option.hair_beard_3_midnight { background-image: url(spritesmith-main-0.png); - background-position: -1481px -197px; + background-position: -207px -1381px; width: 60px; height: 60px; } .hair_beard_3_pblue { background-image: url(spritesmith-main-0.png); - background-position: -91px -1127px; + background-position: -91px -1366px; width: 90px; height: 90px; } .customize-option.hair_beard_3_pblue { background-image: url(spritesmith-main-0.png); - background-position: -116px -1142px; + background-position: -116px -1381px; width: 60px; height: 60px; } .hair_beard_3_peppermint { background-image: url(spritesmith-main-0.png); - background-position: 0px -1127px; + background-position: 0px -1366px; width: 90px; height: 90px; } .customize-option.hair_beard_3_peppermint { background-image: url(spritesmith-main-0.png); - background-position: -25px -1142px; + background-position: -25px -1381px; width: 60px; height: 60px; } .hair_beard_3_pgreen { background-image: url(spritesmith-main-0.png); - background-position: -1183px -1036px; + background-position: -1456px -1274px; width: 90px; height: 90px; } .customize-option.hair_beard_3_pgreen { background-image: url(spritesmith-main-0.png); - background-position: -1208px -1051px; + background-position: -1481px -1289px; width: 60px; height: 60px; } .hair_beard_3_porange { background-image: url(spritesmith-main-0.png); - background-position: -1092px -1036px; + background-position: -1456px -1183px; width: 90px; height: 90px; } .customize-option.hair_beard_3_porange { background-image: url(spritesmith-main-0.png); - background-position: -1117px -1051px; + background-position: -1481px -1198px; width: 60px; height: 60px; } .hair_beard_3_ppink { background-image: url(spritesmith-main-0.png); - background-position: -1001px -1036px; + background-position: -1456px -1092px; width: 90px; height: 90px; } .customize-option.hair_beard_3_ppink { background-image: url(spritesmith-main-0.png); - background-position: -1026px -1051px; + background-position: -1481px -1107px; width: 60px; height: 60px; } .hair_beard_3_ppurple { background-image: url(spritesmith-main-0.png); - background-position: -910px -1036px; + background-position: -1456px -1001px; width: 90px; height: 90px; } .customize-option.hair_beard_3_ppurple { background-image: url(spritesmith-main-0.png); - background-position: -935px -1051px; + background-position: -1481px -1016px; width: 60px; height: 60px; } .hair_beard_3_pumpkin { background-image: url(spritesmith-main-0.png); - background-position: -819px -1036px; + background-position: -1456px -910px; width: 90px; height: 90px; } .customize-option.hair_beard_3_pumpkin { background-image: url(spritesmith-main-0.png); - background-position: -844px -1051px; + background-position: -1481px -925px; width: 60px; height: 60px; } .hair_beard_3_purple { background-image: url(spritesmith-main-0.png); - background-position: -728px -1036px; + background-position: -1456px -819px; width: 90px; height: 90px; } .customize-option.hair_beard_3_purple { background-image: url(spritesmith-main-0.png); - background-position: -753px -1051px; + background-position: -1481px -834px; width: 60px; height: 60px; } .hair_beard_3_pyellow { background-image: url(spritesmith-main-0.png); - background-position: -637px -1036px; + background-position: -1456px -728px; width: 90px; height: 90px; } .customize-option.hair_beard_3_pyellow { background-image: url(spritesmith-main-0.png); - background-position: -662px -1051px; + background-position: -1481px -743px; width: 60px; height: 60px; } .hair_beard_3_rainbow { background-image: url(spritesmith-main-0.png); - background-position: -546px -1036px; + background-position: -1456px -637px; width: 90px; height: 90px; } .customize-option.hair_beard_3_rainbow { background-image: url(spritesmith-main-0.png); - background-position: -571px -1051px; + background-position: -1481px -652px; width: 60px; height: 60px; } .hair_beard_3_red { background-image: url(spritesmith-main-0.png); - background-position: -455px -1036px; + background-position: -1456px -546px; width: 90px; height: 90px; } .customize-option.hair_beard_3_red { background-image: url(spritesmith-main-0.png); - background-position: -480px -1051px; + background-position: -1481px -561px; width: 60px; height: 60px; } .hair_beard_3_snowy { background-image: url(spritesmith-main-0.png); - background-position: -364px -1036px; + background-position: -1456px -455px; width: 90px; height: 90px; } .customize-option.hair_beard_3_snowy { background-image: url(spritesmith-main-0.png); - background-position: -389px -1051px; + background-position: -1481px -470px; width: 60px; height: 60px; } .hair_beard_3_white { background-image: url(spritesmith-main-0.png); - background-position: -273px -1036px; + background-position: -1456px -273px; width: 90px; height: 90px; } .customize-option.hair_beard_3_white { background-image: url(spritesmith-main-0.png); - background-position: -298px -1051px; + background-position: -1481px -288px; width: 60px; height: 60px; } .hair_beard_3_winternight { background-image: url(spritesmith-main-0.png); - background-position: -182px -1036px; + background-position: -1456px -182px; width: 90px; height: 90px; } .customize-option.hair_beard_3_winternight { background-image: url(spritesmith-main-0.png); - background-position: -207px -1051px; + background-position: -1481px -197px; width: 60px; height: 60px; } .hair_beard_3_winterstar { background-image: url(spritesmith-main-0.png); - background-position: -91px -1036px; + background-position: -1456px -91px; width: 90px; height: 90px; } .customize-option.hair_beard_3_winterstar { background-image: url(spritesmith-main-0.png); - background-position: -116px -1051px; + background-position: -1481px -106px; width: 60px; height: 60px; } .hair_beard_3_yellow { background-image: url(spritesmith-main-0.png); - background-position: -728px -1309px; + background-position: -1456px 0px; width: 90px; height: 90px; } .customize-option.hair_beard_3_yellow { background-image: url(spritesmith-main-0.png); - background-position: -753px -1324px; + background-position: -1481px -15px; width: 60px; height: 60px; } .hair_beard_3_zombie { background-image: url(spritesmith-main-0.png); - background-position: -637px -1309px; + background-position: -1365px -1275px; width: 90px; height: 90px; } .customize-option.hair_beard_3_zombie { background-image: url(spritesmith-main-0.png); - background-position: -662px -1324px; + background-position: -1390px -1290px; width: 60px; height: 60px; } .hair_mustache_1_TRUred { background-image: url(spritesmith-main-0.png); - background-position: -546px -1309px; + background-position: -1365px -91px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_TRUred { background-image: url(spritesmith-main-0.png); - background-position: -571px -1324px; + background-position: -1390px -106px; width: 60px; height: 60px; } .hair_mustache_1_aurora { background-image: url(spritesmith-main-0.png); - background-position: -455px -1309px; + background-position: -1274px -1275px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_aurora { background-image: url(spritesmith-main-0.png); - background-position: -480px -1324px; + background-position: -1299px -1290px; width: 60px; height: 60px; } .hair_mustache_1_black { background-image: url(spritesmith-main-0.png); - background-position: -364px -1309px; + background-position: -1183px -1275px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_black { background-image: url(spritesmith-main-0.png); - background-position: -389px -1324px; + background-position: -1208px -1290px; width: 60px; height: 60px; } .hair_mustache_1_blond { background-image: url(spritesmith-main-0.png); - background-position: -273px -1309px; + background-position: -1092px -1275px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_blond { background-image: url(spritesmith-main-0.png); - background-position: -298px -1324px; + background-position: -1117px -1290px; width: 60px; height: 60px; } .hair_mustache_1_blue { background-image: url(spritesmith-main-0.png); - background-position: -182px -1309px; + background-position: -1001px -1275px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_blue { background-image: url(spritesmith-main-0.png); - background-position: -207px -1324px; + background-position: -1026px -1290px; width: 60px; height: 60px; } .hair_mustache_1_brown { background-image: url(spritesmith-main-0.png); - background-position: -91px -1309px; + background-position: -910px -1275px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_brown { background-image: url(spritesmith-main-0.png); - background-position: -116px -1324px; + background-position: -935px -1290px; width: 60px; height: 60px; } .hair_mustache_1_candycane { background-image: url(spritesmith-main-0.png); - background-position: 0px -1309px; + background-position: -819px -1275px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_candycane { background-image: url(spritesmith-main-0.png); - background-position: -25px -1324px; + background-position: -844px -1290px; width: 60px; height: 60px; } .hair_mustache_1_candycorn { background-image: url(spritesmith-main-0.png); - background-position: -1365px -1183px; + background-position: -728px -1275px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_candycorn { background-image: url(spritesmith-main-0.png); - background-position: -1390px -1198px; + background-position: -753px -1290px; width: 60px; height: 60px; } .hair_mustache_1_festive { background-image: url(spritesmith-main-0.png); - background-position: -1365px -1092px; + background-position: -637px -1275px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_festive { background-image: url(spritesmith-main-0.png); - background-position: -1390px -1107px; + background-position: -662px -1290px; width: 60px; height: 60px; } .hair_mustache_1_frost { background-image: url(spritesmith-main-0.png); - background-position: -1365px -1001px; + background-position: -546px -1275px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_frost { background-image: url(spritesmith-main-0.png); - background-position: -1390px -1016px; + background-position: -571px -1290px; width: 60px; height: 60px; } .hair_mustache_1_ghostwhite { background-image: url(spritesmith-main-0.png); - background-position: -1365px -910px; + background-position: -455px -1275px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_ghostwhite { background-image: url(spritesmith-main-0.png); - background-position: -1390px -925px; + background-position: -480px -1290px; width: 60px; height: 60px; } .hair_mustache_1_green { background-image: url(spritesmith-main-0.png); - background-position: -1365px -819px; + background-position: -364px -1275px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_green { background-image: url(spritesmith-main-0.png); - background-position: -1390px -834px; + background-position: -389px -1290px; width: 60px; height: 60px; } .hair_mustache_1_halloween { background-image: url(spritesmith-main-0.png); - background-position: -1365px -728px; + background-position: -273px -1275px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_halloween { background-image: url(spritesmith-main-0.png); - background-position: -1390px -743px; + background-position: -298px -1290px; width: 60px; height: 60px; } .hair_mustache_1_holly { background-image: url(spritesmith-main-0.png); - background-position: -1365px -637px; + background-position: -182px -1275px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_holly { background-image: url(spritesmith-main-0.png); - background-position: -1390px -652px; + background-position: -207px -1290px; width: 60px; height: 60px; } .hair_mustache_1_hollygreen { background-image: url(spritesmith-main-0.png); - background-position: -1365px -546px; + background-position: -91px -1275px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_hollygreen { background-image: url(spritesmith-main-0.png); - background-position: -1390px -561px; + background-position: -116px -1290px; width: 60px; height: 60px; } .hair_mustache_1_midnight { background-image: url(spritesmith-main-0.png); - background-position: -1365px -455px; + background-position: 0px -1275px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_midnight { background-image: url(spritesmith-main-0.png); - background-position: -1390px -470px; + background-position: -25px -1290px; width: 60px; height: 60px; } .hair_mustache_1_pblue { background-image: url(spritesmith-main-0.png); - background-position: -1365px -364px; + background-position: -1365px -1183px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_pblue { background-image: url(spritesmith-main-0.png); - background-position: -1390px -379px; + background-position: -1390px -1198px; width: 60px; height: 60px; } .hair_mustache_1_peppermint { background-image: url(spritesmith-main-0.png); - background-position: -1365px -273px; + background-position: -1365px -1092px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_peppermint { background-image: url(spritesmith-main-0.png); - background-position: -1390px -288px; + background-position: -1390px -1107px; width: 60px; height: 60px; } .hair_mustache_1_pgreen { background-image: url(spritesmith-main-0.png); - background-position: -1365px -182px; + background-position: -1365px -1001px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_pgreen { background-image: url(spritesmith-main-0.png); - background-position: -1390px -197px; + background-position: -1390px -1016px; width: 60px; height: 60px; } .hair_mustache_1_porange { background-image: url(spritesmith-main-0.png); - background-position: -1365px -91px; + background-position: -1365px -910px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_porange { background-image: url(spritesmith-main-0.png); - background-position: -1390px -106px; + background-position: -1390px -925px; width: 60px; height: 60px; } .hair_mustache_1_ppink { background-image: url(spritesmith-main-0.png); - background-position: -1365px 0px; + background-position: -1365px -819px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_ppink { background-image: url(spritesmith-main-0.png); - background-position: -1390px -15px; + background-position: -1390px -834px; width: 60px; height: 60px; } .hair_mustache_1_ppurple { background-image: url(spritesmith-main-0.png); - background-position: -1274px -1218px; + background-position: -1365px -728px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_ppurple { background-image: url(spritesmith-main-0.png); - background-position: -1299px -1233px; + background-position: -1390px -743px; width: 60px; height: 60px; } .hair_mustache_1_pumpkin { background-image: url(spritesmith-main-0.png); - background-position: -1183px -1218px; + background-position: -1365px -637px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_pumpkin { background-image: url(spritesmith-main-0.png); - background-position: -1208px -1233px; + background-position: -1390px -652px; width: 60px; height: 60px; } .hair_mustache_1_purple { background-image: url(spritesmith-main-0.png); - background-position: -1092px -1218px; + background-position: -1365px -546px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_purple { background-image: url(spritesmith-main-0.png); - background-position: -1117px -1233px; + background-position: -1390px -561px; width: 60px; height: 60px; } .hair_mustache_1_pyellow { background-image: url(spritesmith-main-0.png); - background-position: -1001px -1218px; + background-position: -1365px -455px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_pyellow { background-image: url(spritesmith-main-0.png); - background-position: -1026px -1233px; + background-position: -1390px -470px; width: 60px; height: 60px; } .hair_mustache_1_rainbow { background-image: url(spritesmith-main-0.png); - background-position: -910px -1218px; + background-position: -1365px -364px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_rainbow { background-image: url(spritesmith-main-0.png); - background-position: -935px -1233px; + background-position: -1390px -379px; width: 60px; height: 60px; } .hair_mustache_1_red { background-image: url(spritesmith-main-0.png); - background-position: -819px -1218px; + background-position: -1365px -273px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_red { background-image: url(spritesmith-main-0.png); - background-position: -844px -1233px; + background-position: -1390px -288px; width: 60px; height: 60px; } .hair_mustache_1_snowy { background-image: url(spritesmith-main-0.png); - background-position: -728px -1218px; + background-position: -1365px -182px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_snowy { background-image: url(spritesmith-main-0.png); - background-position: -753px -1233px; + background-position: -1390px -197px; width: 60px; height: 60px; } .hair_mustache_1_white { background-image: url(spritesmith-main-0.png); - background-position: -637px -1218px; + background-position: -1365px 0px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_white { background-image: url(spritesmith-main-0.png); - background-position: -662px -1233px; + background-position: -1390px -15px; width: 60px; height: 60px; } .hair_mustache_1_winternight { background-image: url(spritesmith-main-0.png); - background-position: -546px -1218px; + background-position: -1274px -1184px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_winternight { background-image: url(spritesmith-main-0.png); - background-position: -571px -1233px; + background-position: -1299px -1199px; width: 60px; height: 60px; } .hair_mustache_1_winterstar { background-image: url(spritesmith-main-0.png); - background-position: -455px -1218px; + background-position: -1183px -1184px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_winterstar { background-image: url(spritesmith-main-0.png); - background-position: -480px -1233px; + background-position: -1208px -1199px; width: 60px; height: 60px; } .hair_mustache_1_yellow { background-image: url(spritesmith-main-0.png); - background-position: -364px -1218px; + background-position: -1092px -1184px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_yellow { background-image: url(spritesmith-main-0.png); - background-position: -389px -1233px; + background-position: -1117px -1199px; width: 60px; height: 60px; } .hair_mustache_1_zombie { background-image: url(spritesmith-main-0.png); - background-position: -273px -1218px; + background-position: -1001px -1184px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_zombie { background-image: url(spritesmith-main-0.png); - background-position: -298px -1233px; - width: 60px; - height: 60px; -} -.hair_mustache_2_TRUred { - background-image: url(spritesmith-main-0.png); - background-position: -182px -1218px; - width: 90px; - height: 90px; -} -.customize-option.hair_mustache_2_TRUred { - background-image: url(spritesmith-main-0.png); - background-position: -207px -1233px; + background-position: -1026px -1199px; width: 60px; height: 60px; } .hair_mustache_2_aurora { background-image: url(spritesmith-main-0.png); - background-position: -91px -1218px; + background-position: -910px -1184px; width: 90px; height: 90px; } .customize-option.hair_mustache_2_aurora { background-image: url(spritesmith-main-0.png); - background-position: -116px -1233px; + background-position: -935px -1199px; width: 60px; height: 60px; } .hair_mustache_2_black { background-image: url(spritesmith-main-0.png); - background-position: 0px -1218px; + background-position: -819px -1184px; width: 90px; height: 90px; } .customize-option.hair_mustache_2_black { background-image: url(spritesmith-main-0.png); - background-position: -25px -1233px; + background-position: -844px -1199px; width: 60px; height: 60px; } .hair_mustache_2_blond { background-image: url(spritesmith-main-0.png); - background-position: -1274px -1092px; + background-position: -728px -1184px; width: 90px; height: 90px; } .customize-option.hair_mustache_2_blond { background-image: url(spritesmith-main-0.png); - background-position: -1299px -1107px; + background-position: -753px -1199px; width: 60px; height: 60px; } .hair_mustache_2_blue { background-image: url(spritesmith-main-0.png); - background-position: -1274px -1001px; + background-position: -637px -1184px; width: 90px; height: 90px; } .customize-option.hair_mustache_2_blue { background-image: url(spritesmith-main-0.png); - background-position: -1299px -1016px; + background-position: -662px -1199px; width: 60px; height: 60px; } .hair_mustache_2_brown { background-image: url(spritesmith-main-0.png); - background-position: -1274px -910px; + background-position: -546px -1184px; width: 90px; height: 90px; } .customize-option.hair_mustache_2_brown { background-image: url(spritesmith-main-0.png); - background-position: -1299px -925px; + background-position: -571px -1199px; width: 60px; height: 60px; } .hair_mustache_2_candycane { background-image: url(spritesmith-main-0.png); - background-position: -1274px -819px; + background-position: -455px -1184px; width: 90px; height: 90px; } .customize-option.hair_mustache_2_candycane { background-image: url(spritesmith-main-0.png); - background-position: -1299px -834px; + background-position: -480px -1199px; width: 60px; height: 60px; } .hair_mustache_2_candycorn { background-image: url(spritesmith-main-0.png); - background-position: -1274px -728px; + background-position: -364px -1184px; width: 90px; height: 90px; } .customize-option.hair_mustache_2_candycorn { background-image: url(spritesmith-main-0.png); - background-position: -1299px -743px; + background-position: -389px -1199px; width: 60px; height: 60px; } .hair_mustache_2_festive { background-image: url(spritesmith-main-0.png); - background-position: -1274px -637px; + background-position: -273px -1184px; width: 90px; height: 90px; } .customize-option.hair_mustache_2_festive { background-image: url(spritesmith-main-0.png); - background-position: -1299px -652px; + background-position: -298px -1199px; width: 60px; height: 60px; } .hair_mustache_2_frost { background-image: url(spritesmith-main-0.png); - background-position: -1274px -546px; + background-position: -182px -1184px; width: 90px; height: 90px; } .customize-option.hair_mustache_2_frost { background-image: url(spritesmith-main-0.png); - background-position: -1299px -561px; + background-position: -207px -1199px; width: 60px; height: 60px; } .hair_mustache_2_ghostwhite { background-image: url(spritesmith-main-0.png); - background-position: -1274px -455px; + background-position: -91px -1184px; width: 90px; height: 90px; } .customize-option.hair_mustache_2_ghostwhite { background-image: url(spritesmith-main-0.png); - background-position: -1299px -470px; + background-position: -116px -1199px; width: 60px; height: 60px; } .hair_mustache_2_green { background-image: url(spritesmith-main-0.png); - background-position: -1274px -364px; + background-position: 0px -1184px; width: 90px; height: 90px; } .customize-option.hair_mustache_2_green { background-image: url(spritesmith-main-0.png); - background-position: -1299px -379px; + background-position: -25px -1199px; width: 60px; height: 60px; } .hair_mustache_2_halloween { background-image: url(spritesmith-main-0.png); - background-position: -1274px -273px; + background-position: -1274px -1092px; width: 90px; height: 90px; } .customize-option.hair_mustache_2_halloween { background-image: url(spritesmith-main-0.png); - background-position: -1299px -288px; - width: 60px; - height: 60px; -} -.hair_mustache_2_holly { - background-image: url(spritesmith-main-0.png); - background-position: -1274px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_mustache_2_holly { - background-image: url(spritesmith-main-0.png); - background-position: -1299px -197px; - width: 60px; - height: 60px; -} -.hair_mustache_2_hollygreen { - background-image: url(spritesmith-main-0.png); - background-position: -1274px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_mustache_2_hollygreen { - background-image: url(spritesmith-main-0.png); - background-position: -1299px -106px; - width: 60px; - height: 60px; -} -.hair_mustache_2_midnight { - background-image: url(spritesmith-main-0.png); - background-position: -1274px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_mustache_2_midnight { - background-image: url(spritesmith-main-0.png); - background-position: -1299px -15px; - width: 60px; - height: 60px; -} -.hair_mustache_2_pblue { - background-image: url(spritesmith-main-0.png); - background-position: -1183px -1127px; - width: 90px; - height: 90px; -} -.customize-option.hair_mustache_2_pblue { - background-image: url(spritesmith-main-0.png); - background-position: -1208px -1142px; - width: 60px; - height: 60px; -} -.hair_mustache_2_peppermint { - background-image: url(spritesmith-main-0.png); - background-position: -1092px -1127px; - width: 90px; - height: 90px; -} -.customize-option.hair_mustache_2_peppermint { - background-image: url(spritesmith-main-0.png); - background-position: -1117px -1142px; - width: 60px; - height: 60px; -} -.hair_mustache_2_pgreen { - background-image: url(spritesmith-main-0.png); - background-position: -1001px -1127px; - width: 90px; - height: 90px; -} -.customize-option.hair_mustache_2_pgreen { - background-image: url(spritesmith-main-0.png); - background-position: -1026px -1142px; - width: 60px; - height: 60px; -} -.hair_mustache_2_porange { - background-image: url(spritesmith-main-0.png); - background-position: -910px -1127px; - width: 90px; - height: 90px; -} -.customize-option.hair_mustache_2_porange { - background-image: url(spritesmith-main-0.png); - background-position: -935px -1142px; - width: 60px; - height: 60px; -} -.hair_mustache_2_ppink { - background-image: url(spritesmith-main-0.png); - background-position: -819px -1127px; - width: 90px; - height: 90px; -} -.customize-option.hair_mustache_2_ppink { - background-image: url(spritesmith-main-0.png); - background-position: -844px -1142px; - width: 60px; - height: 60px; -} -.hair_mustache_2_ppurple { - background-image: url(spritesmith-main-0.png); - background-position: -728px -1127px; - width: 90px; - height: 90px; -} -.customize-option.hair_mustache_2_ppurple { - background-image: url(spritesmith-main-0.png); - background-position: -753px -1142px; - width: 60px; - height: 60px; -} -.hair_mustache_2_pumpkin { - background-image: url(spritesmith-main-0.png); - background-position: -637px -1127px; - width: 90px; - height: 90px; -} -.customize-option.hair_mustache_2_pumpkin { - background-image: url(spritesmith-main-0.png); - background-position: -662px -1142px; - width: 60px; - height: 60px; -} -.hair_mustache_2_purple { - background-image: url(spritesmith-main-0.png); - background-position: -546px -1127px; - width: 90px; - height: 90px; -} -.customize-option.hair_mustache_2_purple { - background-image: url(spritesmith-main-0.png); - background-position: -571px -1142px; - width: 60px; - height: 60px; -} -.hair_mustache_2_pyellow { - background-image: url(spritesmith-main-0.png); - background-position: -455px -1127px; - width: 90px; - height: 90px; -} -.customize-option.hair_mustache_2_pyellow { - background-image: url(spritesmith-main-0.png); - background-position: -480px -1142px; - width: 60px; - height: 60px; -} -.hair_mustache_2_rainbow { - background-image: url(spritesmith-main-0.png); - background-position: -364px -1127px; - width: 90px; - height: 90px; -} -.customize-option.hair_mustache_2_rainbow { - background-image: url(spritesmith-main-0.png); - background-position: -389px -1142px; - width: 60px; - height: 60px; -} -.hair_mustache_2_red { - background-image: url(spritesmith-main-0.png); - background-position: -273px -1127px; - width: 90px; - height: 90px; -} -.customize-option.hair_mustache_2_red { - background-image: url(spritesmith-main-0.png); - background-position: -298px -1142px; - width: 60px; - height: 60px; -} -.hair_mustache_2_snowy { - background-image: url(spritesmith-main-0.png); - background-position: -182px -1127px; - width: 90px; - height: 90px; -} -.customize-option.hair_mustache_2_snowy { - background-image: url(spritesmith-main-0.png); - background-position: -207px -1142px; + background-position: -1299px -1107px; width: 60px; height: 60px; } diff --git a/common/dist/sprites/spritesmith-main-0.png b/common/dist/sprites/spritesmith-main-0.png index e090b73ee2..dfb6880ecf 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 ce5da2d1ff..b10e3c24c5 100644 --- a/common/dist/sprites/spritesmith-main-1.css +++ b/common/dist/sprites/spritesmith-main-1.css @@ -1,3948 +1,3948 @@ -.hair_mustache_2_white { - background-image: url(spritesmith-main-1.png); - background-position: -91px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_mustache_2_white { - background-image: url(spritesmith-main-1.png); - background-position: -116px -15px; - width: 60px; - height: 60px; -} -.hair_mustache_2_winternight { - background-image: url(spritesmith-main-1.png); - background-position: -728px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_mustache_2_winternight { - background-image: url(spritesmith-main-1.png); - background-position: -753px -1107px; - width: 60px; - height: 60px; -} -.hair_mustache_2_winterstar { - background-image: url(spritesmith-main-1.png); - background-position: 0px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_mustache_2_winterstar { - background-image: url(spritesmith-main-1.png); - background-position: -25px -106px; - width: 60px; - height: 60px; -} -.hair_mustache_2_yellow { - background-image: url(spritesmith-main-1.png); - background-position: -91px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_mustache_2_yellow { - background-image: url(spritesmith-main-1.png); - background-position: -116px -106px; - width: 60px; - height: 60px; -} -.hair_mustache_2_zombie { - background-image: url(spritesmith-main-1.png); - background-position: -182px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_mustache_2_zombie { - background-image: url(spritesmith-main-1.png); - background-position: -207px -15px; - width: 60px; - height: 60px; -} -.hair_flower_1 { - background-image: url(spritesmith-main-1.png); - background-position: -182px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_flower_1 { - background-image: url(spritesmith-main-1.png); - background-position: -207px -106px; - width: 60px; - height: 60px; -} -.hair_flower_2 { - background-image: url(spritesmith-main-1.png); - background-position: 0px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_flower_2 { - background-image: url(spritesmith-main-1.png); - background-position: -25px -197px; - width: 60px; - height: 60px; -} -.hair_flower_3 { - background-image: url(spritesmith-main-1.png); - background-position: -91px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_flower_3 { - background-image: url(spritesmith-main-1.png); - background-position: -116px -197px; - width: 60px; - height: 60px; -} -.hair_flower_4 { - background-image: url(spritesmith-main-1.png); - background-position: -182px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_flower_4 { - background-image: url(spritesmith-main-1.png); - background-position: -207px -197px; - width: 60px; - height: 60px; -} -.hair_flower_5 { - background-image: url(spritesmith-main-1.png); - background-position: -273px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_flower_5 { - background-image: url(spritesmith-main-1.png); - background-position: -298px -15px; - width: 60px; - height: 60px; -} -.hair_flower_6 { - background-image: url(spritesmith-main-1.png); - background-position: -273px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_flower_6 { - background-image: url(spritesmith-main-1.png); - background-position: -298px -106px; - width: 60px; - height: 60px; -} -.hair_bangs_1_TRUred { - background-image: url(spritesmith-main-1.png); - background-position: -273px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_TRUred { - background-image: url(spritesmith-main-1.png); - background-position: -298px -197px; - width: 60px; - height: 60px; -} -.hair_bangs_1_aurora { - background-image: url(spritesmith-main-1.png); - background-position: 0px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_aurora { - background-image: url(spritesmith-main-1.png); - background-position: -25px -288px; - width: 60px; - height: 60px; -} -.hair_bangs_1_black { - background-image: url(spritesmith-main-1.png); - background-position: -91px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_black { - background-image: url(spritesmith-main-1.png); - background-position: -116px -288px; - width: 60px; - height: 60px; -} -.hair_bangs_1_blond { - background-image: url(spritesmith-main-1.png); - background-position: -182px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_blond { - background-image: url(spritesmith-main-1.png); - background-position: -207px -288px; - width: 60px; - height: 60px; -} -.hair_bangs_1_blue { +.hair_mustache_2_TRUred { background-image: url(spritesmith-main-1.png); background-position: -273px -273px; width: 90px; height: 90px; } -.customize-option.hair_bangs_1_blue { +.customize-option.hair_mustache_2_TRUred { background-image: url(spritesmith-main-1.png); background-position: -298px -288px; width: 60px; height: 60px; } -.hair_bangs_1_brown { +.hair_mustache_2_holly { background-image: url(spritesmith-main-1.png); - background-position: -364px 0px; + background-position: -91px 0px; width: 90px; height: 90px; } -.customize-option.hair_bangs_1_brown { +.customize-option.hair_mustache_2_holly { background-image: url(spritesmith-main-1.png); - background-position: -389px -15px; + background-position: -116px -15px; width: 60px; height: 60px; } -.hair_bangs_1_candycane { - background-image: url(spritesmith-main-1.png); - background-position: -364px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_candycane { - background-image: url(spritesmith-main-1.png); - background-position: -389px -106px; - width: 60px; - height: 60px; -} -.hair_bangs_1_candycorn { - background-image: url(spritesmith-main-1.png); - background-position: -364px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_candycorn { - background-image: url(spritesmith-main-1.png); - background-position: -389px -197px; - width: 60px; - height: 60px; -} -.hair_bangs_1_festive { - background-image: url(spritesmith-main-1.png); - background-position: -364px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_festive { - background-image: url(spritesmith-main-1.png); - background-position: -389px -288px; - width: 60px; - height: 60px; -} -.hair_bangs_1_frost { - background-image: url(spritesmith-main-1.png); - background-position: 0px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_frost { - background-image: url(spritesmith-main-1.png); - background-position: -25px -379px; - width: 60px; - height: 60px; -} -.hair_bangs_1_ghostwhite { - background-image: url(spritesmith-main-1.png); - background-position: -91px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_ghostwhite { - background-image: url(spritesmith-main-1.png); - background-position: -116px -379px; - width: 60px; - height: 60px; -} -.hair_bangs_1_green { - background-image: url(spritesmith-main-1.png); - background-position: -182px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_green { - background-image: url(spritesmith-main-1.png); - background-position: -207px -379px; - width: 60px; - height: 60px; -} -.hair_bangs_1_halloween { - background-image: url(spritesmith-main-1.png); - background-position: -273px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_halloween { - background-image: url(spritesmith-main-1.png); - background-position: -298px -379px; - width: 60px; - height: 60px; -} -.hair_bangs_1_holly { - background-image: url(spritesmith-main-1.png); - background-position: -364px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_holly { - background-image: url(spritesmith-main-1.png); - background-position: -389px -379px; - width: 60px; - height: 60px; -} -.hair_bangs_1_hollygreen { - background-image: url(spritesmith-main-1.png); - background-position: -455px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_hollygreen { - background-image: url(spritesmith-main-1.png); - background-position: -480px -15px; - width: 60px; - height: 60px; -} -.hair_bangs_1_midnight { - background-image: url(spritesmith-main-1.png); - background-position: -455px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_midnight { - background-image: url(spritesmith-main-1.png); - background-position: -480px -106px; - width: 60px; - height: 60px; -} -.hair_bangs_1_pblue { - background-image: url(spritesmith-main-1.png); - background-position: -455px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_pblue { - background-image: url(spritesmith-main-1.png); - background-position: -480px -197px; - width: 60px; - height: 60px; -} -.hair_bangs_1_pblue2 { - background-image: url(spritesmith-main-1.png); - background-position: -455px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_pblue2 { - background-image: url(spritesmith-main-1.png); - background-position: -480px -288px; - width: 60px; - height: 60px; -} -.hair_bangs_1_peppermint { - background-image: url(spritesmith-main-1.png); - background-position: -455px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_peppermint { - background-image: url(spritesmith-main-1.png); - background-position: -480px -379px; - width: 60px; - height: 60px; -} -.hair_bangs_1_pgreen { - background-image: url(spritesmith-main-1.png); - background-position: 0px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_pgreen { - background-image: url(spritesmith-main-1.png); - background-position: -25px -470px; - width: 60px; - height: 60px; -} -.hair_bangs_1_pgreen2 { - background-image: url(spritesmith-main-1.png); - background-position: -91px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_pgreen2 { - background-image: url(spritesmith-main-1.png); - background-position: -116px -470px; - width: 60px; - height: 60px; -} -.hair_bangs_1_porange { - background-image: url(spritesmith-main-1.png); - background-position: -182px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_porange { - background-image: url(spritesmith-main-1.png); - background-position: -207px -470px; - width: 60px; - height: 60px; -} -.hair_bangs_1_porange2 { - background-image: url(spritesmith-main-1.png); - background-position: -273px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_porange2 { - background-image: url(spritesmith-main-1.png); - background-position: -298px -470px; - width: 60px; - height: 60px; -} -.hair_bangs_1_ppink { - background-image: url(spritesmith-main-1.png); - background-position: -364px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_ppink { - background-image: url(spritesmith-main-1.png); - background-position: -389px -470px; - width: 60px; - height: 60px; -} -.hair_bangs_1_ppink2 { - background-image: url(spritesmith-main-1.png); - background-position: -455px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_ppink2 { - background-image: url(spritesmith-main-1.png); - background-position: -480px -470px; - width: 60px; - height: 60px; -} -.hair_bangs_1_ppurple { - background-image: url(spritesmith-main-1.png); - background-position: -546px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_ppurple { - background-image: url(spritesmith-main-1.png); - background-position: -571px -15px; - width: 60px; - height: 60px; -} -.hair_bangs_1_ppurple2 { - background-image: url(spritesmith-main-1.png); - background-position: -546px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_ppurple2 { - background-image: url(spritesmith-main-1.png); - background-position: -571px -106px; - width: 60px; - height: 60px; -} -.hair_bangs_1_pumpkin { - background-image: url(spritesmith-main-1.png); - background-position: -546px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_pumpkin { - background-image: url(spritesmith-main-1.png); - background-position: -571px -197px; - width: 60px; - height: 60px; -} -.hair_bangs_1_purple { - background-image: url(spritesmith-main-1.png); - background-position: -546px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_purple { - background-image: url(spritesmith-main-1.png); - background-position: -571px -288px; - width: 60px; - height: 60px; -} -.hair_bangs_1_pyellow { - background-image: url(spritesmith-main-1.png); - background-position: -546px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_pyellow { - background-image: url(spritesmith-main-1.png); - background-position: -571px -379px; - width: 60px; - height: 60px; -} -.hair_bangs_1_pyellow2 { - background-image: url(spritesmith-main-1.png); - background-position: -546px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_pyellow2 { - background-image: url(spritesmith-main-1.png); - background-position: -571px -470px; - width: 60px; - height: 60px; -} -.hair_bangs_1_rainbow { - background-image: url(spritesmith-main-1.png); - background-position: 0px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_rainbow { - background-image: url(spritesmith-main-1.png); - background-position: -25px -561px; - width: 60px; - height: 60px; -} -.hair_bangs_1_red { - background-image: url(spritesmith-main-1.png); - background-position: -91px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_red { - background-image: url(spritesmith-main-1.png); - background-position: -116px -561px; - width: 60px; - height: 60px; -} -.hair_bangs_1_snowy { - background-image: url(spritesmith-main-1.png); - background-position: -182px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_snowy { - background-image: url(spritesmith-main-1.png); - background-position: -207px -561px; - width: 60px; - height: 60px; -} -.hair_bangs_1_white { - background-image: url(spritesmith-main-1.png); - background-position: -273px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_white { - background-image: url(spritesmith-main-1.png); - background-position: -298px -561px; - width: 60px; - height: 60px; -} -.hair_bangs_1_winternight { - background-image: url(spritesmith-main-1.png); - background-position: -364px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_winternight { - background-image: url(spritesmith-main-1.png); - background-position: -389px -561px; - width: 60px; - height: 60px; -} -.hair_bangs_1_winterstar { - background-image: url(spritesmith-main-1.png); - background-position: -455px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_winterstar { - background-image: url(spritesmith-main-1.png); - background-position: -480px -561px; - width: 60px; - height: 60px; -} -.hair_bangs_1_yellow { - background-image: url(spritesmith-main-1.png); - background-position: -546px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_yellow { - background-image: url(spritesmith-main-1.png); - background-position: -571px -561px; - width: 60px; - height: 60px; -} -.hair_bangs_1_zombie { - background-image: url(spritesmith-main-1.png); - background-position: -637px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_zombie { - background-image: url(spritesmith-main-1.png); - background-position: -662px -15px; - width: 60px; - height: 60px; -} -.hair_bangs_2_TRUred { - background-image: url(spritesmith-main-1.png); - background-position: -637px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_TRUred { - background-image: url(spritesmith-main-1.png); - background-position: -662px -106px; - width: 60px; - height: 60px; -} -.hair_bangs_2_aurora { - background-image: url(spritesmith-main-1.png); - background-position: -637px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_aurora { - background-image: url(spritesmith-main-1.png); - background-position: -662px -197px; - width: 60px; - height: 60px; -} -.hair_bangs_2_black { - background-image: url(spritesmith-main-1.png); - background-position: -637px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_black { - background-image: url(spritesmith-main-1.png); - background-position: -662px -288px; - width: 60px; - height: 60px; -} -.hair_bangs_2_blond { - background-image: url(spritesmith-main-1.png); - background-position: -637px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_blond { - background-image: url(spritesmith-main-1.png); - background-position: -662px -379px; - width: 60px; - height: 60px; -} -.hair_bangs_2_blue { - background-image: url(spritesmith-main-1.png); - background-position: -637px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_blue { - background-image: url(spritesmith-main-1.png); - background-position: -662px -470px; - width: 60px; - height: 60px; -} -.hair_bangs_2_brown { - background-image: url(spritesmith-main-1.png); - background-position: -637px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_brown { - background-image: url(spritesmith-main-1.png); - background-position: -662px -561px; - width: 60px; - height: 60px; -} -.hair_bangs_2_candycane { - background-image: url(spritesmith-main-1.png); - background-position: 0px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_candycane { - background-image: url(spritesmith-main-1.png); - background-position: -25px -652px; - width: 60px; - height: 60px; -} -.hair_bangs_2_candycorn { - background-image: url(spritesmith-main-1.png); - background-position: -91px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_candycorn { - background-image: url(spritesmith-main-1.png); - background-position: -116px -652px; - width: 60px; - height: 60px; -} -.hair_bangs_2_festive { - background-image: url(spritesmith-main-1.png); - background-position: -182px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_festive { - background-image: url(spritesmith-main-1.png); - background-position: -207px -652px; - width: 60px; - height: 60px; -} -.hair_bangs_2_frost { - background-image: url(spritesmith-main-1.png); - background-position: -273px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_frost { - background-image: url(spritesmith-main-1.png); - background-position: -298px -652px; - width: 60px; - height: 60px; -} -.hair_bangs_2_ghostwhite { - background-image: url(spritesmith-main-1.png); - background-position: -364px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_ghostwhite { - background-image: url(spritesmith-main-1.png); - background-position: -389px -652px; - width: 60px; - height: 60px; -} -.hair_bangs_2_green { - background-image: url(spritesmith-main-1.png); - background-position: -455px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_green { - background-image: url(spritesmith-main-1.png); - background-position: -480px -652px; - width: 60px; - height: 60px; -} -.hair_bangs_2_halloween { - background-image: url(spritesmith-main-1.png); - background-position: -546px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_halloween { - background-image: url(spritesmith-main-1.png); - background-position: -571px -652px; - width: 60px; - height: 60px; -} -.hair_bangs_2_holly { - background-image: url(spritesmith-main-1.png); - background-position: -637px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_holly { - background-image: url(spritesmith-main-1.png); - background-position: -662px -652px; - width: 60px; - height: 60px; -} -.hair_bangs_2_hollygreen { - background-image: url(spritesmith-main-1.png); - background-position: -728px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_hollygreen { - background-image: url(spritesmith-main-1.png); - background-position: -753px -15px; - width: 60px; - height: 60px; -} -.hair_bangs_2_midnight { - background-image: url(spritesmith-main-1.png); - background-position: -728px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_midnight { - background-image: url(spritesmith-main-1.png); - background-position: -753px -106px; - width: 60px; - height: 60px; -} -.hair_bangs_2_pblue { - background-image: url(spritesmith-main-1.png); - background-position: -728px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_pblue { - background-image: url(spritesmith-main-1.png); - background-position: -753px -197px; - width: 60px; - height: 60px; -} -.hair_bangs_2_pblue2 { - background-image: url(spritesmith-main-1.png); - background-position: -728px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_pblue2 { - background-image: url(spritesmith-main-1.png); - background-position: -753px -288px; - width: 60px; - height: 60px; -} -.hair_bangs_2_peppermint { - background-image: url(spritesmith-main-1.png); - background-position: -728px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_peppermint { - background-image: url(spritesmith-main-1.png); - background-position: -753px -379px; - width: 60px; - height: 60px; -} -.hair_bangs_2_pgreen { - background-image: url(spritesmith-main-1.png); - background-position: -728px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_pgreen { - background-image: url(spritesmith-main-1.png); - background-position: -753px -470px; - width: 60px; - height: 60px; -} -.hair_bangs_2_pgreen2 { - background-image: url(spritesmith-main-1.png); - background-position: -728px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_pgreen2 { - background-image: url(spritesmith-main-1.png); - background-position: -753px -561px; - width: 60px; - height: 60px; -} -.hair_bangs_2_porange { - background-image: url(spritesmith-main-1.png); - background-position: -728px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_porange { - background-image: url(spritesmith-main-1.png); - background-position: -753px -652px; - width: 60px; - height: 60px; -} -.hair_bangs_2_porange2 { - background-image: url(spritesmith-main-1.png); - background-position: 0px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_porange2 { - background-image: url(spritesmith-main-1.png); - background-position: -25px -743px; - width: 60px; - height: 60px; -} -.hair_bangs_2_ppink { - background-image: url(spritesmith-main-1.png); - background-position: -91px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_ppink { - background-image: url(spritesmith-main-1.png); - background-position: -116px -743px; - width: 60px; - height: 60px; -} -.hair_bangs_2_ppink2 { - background-image: url(spritesmith-main-1.png); - background-position: -182px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_ppink2 { - background-image: url(spritesmith-main-1.png); - background-position: -207px -743px; - width: 60px; - height: 60px; -} -.hair_bangs_2_ppurple { - background-image: url(spritesmith-main-1.png); - background-position: -273px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_ppurple { - background-image: url(spritesmith-main-1.png); - background-position: -298px -743px; - width: 60px; - height: 60px; -} -.hair_bangs_2_ppurple2 { - background-image: url(spritesmith-main-1.png); - background-position: -364px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_ppurple2 { - background-image: url(spritesmith-main-1.png); - background-position: -389px -743px; - width: 60px; - height: 60px; -} -.hair_bangs_2_pumpkin { - background-image: url(spritesmith-main-1.png); - background-position: -455px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_pumpkin { - background-image: url(spritesmith-main-1.png); - background-position: -480px -743px; - width: 60px; - height: 60px; -} -.hair_bangs_2_purple { - background-image: url(spritesmith-main-1.png); - background-position: -546px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_purple { - background-image: url(spritesmith-main-1.png); - background-position: -571px -743px; - width: 60px; - height: 60px; -} -.hair_bangs_2_pyellow { - background-image: url(spritesmith-main-1.png); - background-position: -637px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_pyellow { - background-image: url(spritesmith-main-1.png); - background-position: -662px -743px; - width: 60px; - height: 60px; -} -.hair_bangs_2_pyellow2 { - background-image: url(spritesmith-main-1.png); - background-position: -728px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_pyellow2 { - background-image: url(spritesmith-main-1.png); - background-position: -753px -743px; - width: 60px; - height: 60px; -} -.hair_bangs_2_rainbow { - background-image: url(spritesmith-main-1.png); - background-position: -819px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_rainbow { - background-image: url(spritesmith-main-1.png); - background-position: -844px -15px; - width: 60px; - height: 60px; -} -.hair_bangs_2_red { - background-image: url(spritesmith-main-1.png); - background-position: -819px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_red { - background-image: url(spritesmith-main-1.png); - background-position: -844px -106px; - width: 60px; - height: 60px; -} -.hair_bangs_2_snowy { - background-image: url(spritesmith-main-1.png); - background-position: -819px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_snowy { - background-image: url(spritesmith-main-1.png); - background-position: -844px -197px; - width: 60px; - height: 60px; -} -.hair_bangs_2_white { - background-image: url(spritesmith-main-1.png); - background-position: -819px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_white { - background-image: url(spritesmith-main-1.png); - background-position: -844px -288px; - width: 60px; - height: 60px; -} -.hair_bangs_2_winternight { - background-image: url(spritesmith-main-1.png); - background-position: -819px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_winternight { - background-image: url(spritesmith-main-1.png); - background-position: -844px -379px; - width: 60px; - height: 60px; -} -.hair_bangs_2_winterstar { - background-image: url(spritesmith-main-1.png); - background-position: -819px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_winterstar { - background-image: url(spritesmith-main-1.png); - background-position: -844px -470px; - width: 60px; - height: 60px; -} -.hair_bangs_2_yellow { - background-image: url(spritesmith-main-1.png); - background-position: -819px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_yellow { - background-image: url(spritesmith-main-1.png); - background-position: -844px -561px; - width: 60px; - height: 60px; -} -.hair_bangs_2_zombie { - background-image: url(spritesmith-main-1.png); - background-position: -819px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_zombie { - background-image: url(spritesmith-main-1.png); - background-position: -844px -652px; - width: 60px; - height: 60px; -} -.hair_bangs_3_TRUred { - background-image: url(spritesmith-main-1.png); - background-position: -819px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_TRUred { - background-image: url(spritesmith-main-1.png); - background-position: -844px -743px; - width: 60px; - height: 60px; -} -.hair_bangs_3_aurora { - background-image: url(spritesmith-main-1.png); - background-position: 0px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_aurora { - background-image: url(spritesmith-main-1.png); - background-position: -25px -834px; - width: 60px; - height: 60px; -} -.hair_bangs_3_black { - background-image: url(spritesmith-main-1.png); - background-position: -91px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_black { - background-image: url(spritesmith-main-1.png); - background-position: -116px -834px; - width: 60px; - height: 60px; -} -.hair_bangs_3_blond { - background-image: url(spritesmith-main-1.png); - background-position: -182px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_blond { - background-image: url(spritesmith-main-1.png); - background-position: -207px -834px; - width: 60px; - height: 60px; -} -.hair_bangs_3_blue { - background-image: url(spritesmith-main-1.png); - background-position: -273px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_blue { - background-image: url(spritesmith-main-1.png); - background-position: -298px -834px; - width: 60px; - height: 60px; -} -.hair_bangs_3_brown { - background-image: url(spritesmith-main-1.png); - background-position: -364px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_brown { - background-image: url(spritesmith-main-1.png); - background-position: -389px -834px; - width: 60px; - height: 60px; -} -.hair_bangs_3_candycane { - background-image: url(spritesmith-main-1.png); - background-position: -455px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_candycane { - background-image: url(spritesmith-main-1.png); - background-position: -480px -834px; - width: 60px; - height: 60px; -} -.hair_bangs_3_candycorn { - background-image: url(spritesmith-main-1.png); - background-position: -546px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_candycorn { - background-image: url(spritesmith-main-1.png); - background-position: -571px -834px; - width: 60px; - height: 60px; -} -.hair_bangs_3_festive { - background-image: url(spritesmith-main-1.png); - background-position: -637px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_festive { - background-image: url(spritesmith-main-1.png); - background-position: -662px -834px; - width: 60px; - height: 60px; -} -.hair_bangs_3_frost { - background-image: url(spritesmith-main-1.png); - background-position: -728px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_frost { - background-image: url(spritesmith-main-1.png); - background-position: -753px -834px; - width: 60px; - height: 60px; -} -.hair_bangs_3_ghostwhite { - background-image: url(spritesmith-main-1.png); - background-position: -819px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_ghostwhite { - background-image: url(spritesmith-main-1.png); - background-position: -844px -834px; - width: 60px; - height: 60px; -} -.hair_bangs_3_green { - background-image: url(spritesmith-main-1.png); - background-position: -910px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_green { - background-image: url(spritesmith-main-1.png); - background-position: -935px -15px; - width: 60px; - height: 60px; -} -.hair_bangs_3_halloween { - background-image: url(spritesmith-main-1.png); - background-position: -910px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_halloween { - background-image: url(spritesmith-main-1.png); - background-position: -935px -106px; - width: 60px; - height: 60px; -} -.hair_bangs_3_holly { - background-image: url(spritesmith-main-1.png); - background-position: -910px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_holly { - background-image: url(spritesmith-main-1.png); - background-position: -935px -197px; - width: 60px; - height: 60px; -} -.hair_bangs_3_hollygreen { - background-image: url(spritesmith-main-1.png); - background-position: -910px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_hollygreen { - background-image: url(spritesmith-main-1.png); - background-position: -935px -288px; - width: 60px; - height: 60px; -} -.hair_bangs_3_midnight { - background-image: url(spritesmith-main-1.png); - background-position: -910px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_midnight { - background-image: url(spritesmith-main-1.png); - background-position: -935px -379px; - width: 60px; - height: 60px; -} -.hair_bangs_3_pblue { - background-image: url(spritesmith-main-1.png); - background-position: -910px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_pblue { - background-image: url(spritesmith-main-1.png); - background-position: -935px -470px; - width: 60px; - height: 60px; -} -.hair_bangs_3_pblue2 { - background-image: url(spritesmith-main-1.png); - background-position: -910px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_pblue2 { - background-image: url(spritesmith-main-1.png); - background-position: -935px -561px; - width: 60px; - height: 60px; -} -.hair_bangs_3_peppermint { - background-image: url(spritesmith-main-1.png); - background-position: -910px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_peppermint { - background-image: url(spritesmith-main-1.png); - background-position: -935px -652px; - width: 60px; - height: 60px; -} -.hair_bangs_3_pgreen { - background-image: url(spritesmith-main-1.png); - background-position: -910px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_pgreen { - background-image: url(spritesmith-main-1.png); - background-position: -935px -743px; - width: 60px; - height: 60px; -} -.hair_bangs_3_pgreen2 { - background-image: url(spritesmith-main-1.png); - background-position: -910px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_pgreen2 { - background-image: url(spritesmith-main-1.png); - background-position: -935px -834px; - width: 60px; - height: 60px; -} -.hair_bangs_3_porange { - background-image: url(spritesmith-main-1.png); - background-position: 0px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_porange { - background-image: url(spritesmith-main-1.png); - background-position: -25px -925px; - width: 60px; - height: 60px; -} -.hair_bangs_3_porange2 { - background-image: url(spritesmith-main-1.png); - background-position: -91px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_porange2 { - background-image: url(spritesmith-main-1.png); - background-position: -116px -925px; - width: 60px; - height: 60px; -} -.hair_bangs_3_ppink { - background-image: url(spritesmith-main-1.png); - background-position: -182px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_ppink { - background-image: url(spritesmith-main-1.png); - background-position: -207px -925px; - width: 60px; - height: 60px; -} -.hair_bangs_3_ppink2 { - background-image: url(spritesmith-main-1.png); - background-position: -273px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_ppink2 { - background-image: url(spritesmith-main-1.png); - background-position: -298px -925px; - width: 60px; - height: 60px; -} -.hair_bangs_3_ppurple { - background-image: url(spritesmith-main-1.png); - background-position: -364px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_ppurple { - background-image: url(spritesmith-main-1.png); - background-position: -389px -925px; - width: 60px; - height: 60px; -} -.hair_bangs_3_ppurple2 { - background-image: url(spritesmith-main-1.png); - background-position: -455px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_ppurple2 { - background-image: url(spritesmith-main-1.png); - background-position: -480px -925px; - width: 60px; - height: 60px; -} -.hair_bangs_3_pumpkin { - background-image: url(spritesmith-main-1.png); - background-position: -546px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_pumpkin { - background-image: url(spritesmith-main-1.png); - background-position: -571px -925px; - width: 60px; - height: 60px; -} -.hair_bangs_3_purple { - background-image: url(spritesmith-main-1.png); - background-position: -637px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_purple { - background-image: url(spritesmith-main-1.png); - background-position: -662px -925px; - width: 60px; - height: 60px; -} -.hair_bangs_3_pyellow { - background-image: url(spritesmith-main-1.png); - background-position: -728px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_pyellow { - background-image: url(spritesmith-main-1.png); - background-position: -753px -925px; - width: 60px; - height: 60px; -} -.hair_bangs_3_pyellow2 { - background-image: url(spritesmith-main-1.png); - background-position: -819px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_pyellow2 { - background-image: url(spritesmith-main-1.png); - background-position: -844px -925px; - width: 60px; - height: 60px; -} -.hair_bangs_3_rainbow { - background-image: url(spritesmith-main-1.png); - background-position: -910px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_rainbow { - background-image: url(spritesmith-main-1.png); - background-position: -935px -925px; - width: 60px; - height: 60px; -} -.hair_bangs_3_red { - background-image: url(spritesmith-main-1.png); - background-position: -1001px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_red { - background-image: url(spritesmith-main-1.png); - background-position: -1026px -15px; - width: 60px; - height: 60px; -} -.hair_bangs_3_snowy { - background-image: url(spritesmith-main-1.png); - background-position: -1001px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_snowy { - background-image: url(spritesmith-main-1.png); - background-position: -1026px -106px; - width: 60px; - height: 60px; -} -.hair_bangs_3_white { - background-image: url(spritesmith-main-1.png); - background-position: -1001px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_white { - background-image: url(spritesmith-main-1.png); - background-position: -1026px -197px; - width: 60px; - height: 60px; -} -.hair_bangs_3_winternight { - background-image: url(spritesmith-main-1.png); - background-position: -1001px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_winternight { - background-image: url(spritesmith-main-1.png); - background-position: -1026px -288px; - width: 60px; - height: 60px; -} -.hair_bangs_3_winterstar { - background-image: url(spritesmith-main-1.png); - background-position: -1001px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_winterstar { - background-image: url(spritesmith-main-1.png); - background-position: -1026px -379px; - width: 60px; - height: 60px; -} -.hair_bangs_3_yellow { - background-image: url(spritesmith-main-1.png); - background-position: -1001px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_yellow { - background-image: url(spritesmith-main-1.png); - background-position: -1026px -470px; - width: 60px; - height: 60px; -} -.hair_bangs_3_zombie { - background-image: url(spritesmith-main-1.png); - background-position: -1001px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_zombie { - background-image: url(spritesmith-main-1.png); - background-position: -1026px -561px; - width: 60px; - height: 60px; -} -.hair_base_10_TRUred { - background-image: url(spritesmith-main-1.png); - background-position: -1001px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_TRUred { - background-image: url(spritesmith-main-1.png); - background-position: -1026px -652px; - width: 60px; - height: 60px; -} -.hair_base_10_aurora { - background-image: url(spritesmith-main-1.png); - background-position: -1001px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_aurora { - background-image: url(spritesmith-main-1.png); - background-position: -1026px -743px; - width: 60px; - height: 60px; -} -.hair_base_10_black { - background-image: url(spritesmith-main-1.png); - background-position: -1001px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_black { - background-image: url(spritesmith-main-1.png); - background-position: -1026px -834px; - width: 60px; - height: 60px; -} -.hair_base_10_blond { - background-image: url(spritesmith-main-1.png); - background-position: -1001px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_blond { - background-image: url(spritesmith-main-1.png); - background-position: -1026px -925px; - width: 60px; - height: 60px; -} -.hair_base_10_blue { - background-image: url(spritesmith-main-1.png); - background-position: 0px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_blue { - background-image: url(spritesmith-main-1.png); - background-position: -25px -1016px; - width: 60px; - height: 60px; -} -.hair_base_10_brown { - background-image: url(spritesmith-main-1.png); - background-position: -91px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_brown { - background-image: url(spritesmith-main-1.png); - background-position: -116px -1016px; - width: 60px; - height: 60px; -} -.hair_base_10_candycane { - background-image: url(spritesmith-main-1.png); - background-position: -182px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_candycane { - background-image: url(spritesmith-main-1.png); - background-position: -207px -1016px; - width: 60px; - height: 60px; -} -.hair_base_10_candycorn { - background-image: url(spritesmith-main-1.png); - background-position: -273px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_candycorn { - background-image: url(spritesmith-main-1.png); - background-position: -298px -1016px; - width: 60px; - height: 60px; -} -.hair_base_10_festive { - background-image: url(spritesmith-main-1.png); - background-position: -364px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_festive { - background-image: url(spritesmith-main-1.png); - background-position: -389px -1016px; - width: 60px; - height: 60px; -} -.hair_base_10_frost { - background-image: url(spritesmith-main-1.png); - background-position: -455px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_frost { - background-image: url(spritesmith-main-1.png); - background-position: -480px -1016px; - width: 60px; - height: 60px; -} -.hair_base_10_ghostwhite { - background-image: url(spritesmith-main-1.png); - background-position: -546px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_ghostwhite { - background-image: url(spritesmith-main-1.png); - background-position: -571px -1016px; - width: 60px; - height: 60px; -} -.hair_base_10_green { - background-image: url(spritesmith-main-1.png); - background-position: -637px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_green { - background-image: url(spritesmith-main-1.png); - background-position: -662px -1016px; - width: 60px; - height: 60px; -} -.hair_base_10_halloween { - background-image: url(spritesmith-main-1.png); - background-position: -728px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_halloween { - background-image: url(spritesmith-main-1.png); - background-position: -753px -1016px; - width: 60px; - height: 60px; -} -.hair_base_10_holly { - background-image: url(spritesmith-main-1.png); - background-position: -819px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_holly { - background-image: url(spritesmith-main-1.png); - background-position: -844px -1016px; - width: 60px; - height: 60px; -} -.hair_base_10_hollygreen { - background-image: url(spritesmith-main-1.png); - background-position: -910px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_hollygreen { - background-image: url(spritesmith-main-1.png); - background-position: -935px -1016px; - width: 60px; - height: 60px; -} -.hair_base_10_midnight { - background-image: url(spritesmith-main-1.png); - background-position: -1001px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_midnight { - background-image: url(spritesmith-main-1.png); - background-position: -1026px -1016px; - width: 60px; - height: 60px; -} -.hair_base_10_pblue { - background-image: url(spritesmith-main-1.png); - background-position: -1092px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_pblue { - background-image: url(spritesmith-main-1.png); - background-position: -1117px -15px; - width: 60px; - height: 60px; -} -.hair_base_10_pblue2 { - background-image: url(spritesmith-main-1.png); - background-position: -1092px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_pblue2 { - background-image: url(spritesmith-main-1.png); - background-position: -1117px -106px; - width: 60px; - height: 60px; -} -.hair_base_10_peppermint { - background-image: url(spritesmith-main-1.png); - background-position: -1092px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_peppermint { - background-image: url(spritesmith-main-1.png); - background-position: -1117px -197px; - width: 60px; - height: 60px; -} -.hair_base_10_pgreen { - background-image: url(spritesmith-main-1.png); - background-position: -1092px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_pgreen { - background-image: url(spritesmith-main-1.png); - background-position: -1117px -288px; - width: 60px; - height: 60px; -} -.hair_base_10_pgreen2 { - background-image: url(spritesmith-main-1.png); - background-position: -1092px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_pgreen2 { - background-image: url(spritesmith-main-1.png); - background-position: -1117px -379px; - width: 60px; - height: 60px; -} -.hair_base_10_porange { - background-image: url(spritesmith-main-1.png); - background-position: -1092px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_porange { - background-image: url(spritesmith-main-1.png); - background-position: -1117px -470px; - width: 60px; - height: 60px; -} -.hair_base_10_porange2 { - background-image: url(spritesmith-main-1.png); - background-position: -1092px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_porange2 { - background-image: url(spritesmith-main-1.png); - background-position: -1117px -561px; - width: 60px; - height: 60px; -} -.hair_base_10_ppink { - background-image: url(spritesmith-main-1.png); - background-position: -1092px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_ppink { - background-image: url(spritesmith-main-1.png); - background-position: -1117px -652px; - width: 60px; - height: 60px; -} -.hair_base_10_ppink2 { - background-image: url(spritesmith-main-1.png); - background-position: -1092px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_ppink2 { - background-image: url(spritesmith-main-1.png); - background-position: -1117px -743px; - width: 60px; - height: 60px; -} -.hair_base_10_ppurple { - background-image: url(spritesmith-main-1.png); - background-position: -1092px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_ppurple { - background-image: url(spritesmith-main-1.png); - background-position: -1117px -834px; - width: 60px; - height: 60px; -} -.hair_base_10_ppurple2 { - background-image: url(spritesmith-main-1.png); - background-position: -1092px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_ppurple2 { - background-image: url(spritesmith-main-1.png); - background-position: -1117px -925px; - width: 60px; - height: 60px; -} -.hair_base_10_pumpkin { - background-image: url(spritesmith-main-1.png); - background-position: -1092px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_pumpkin { - background-image: url(spritesmith-main-1.png); - background-position: -1117px -1016px; - width: 60px; - height: 60px; -} -.hair_base_10_purple { - background-image: url(spritesmith-main-1.png); - background-position: 0px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_purple { - background-image: url(spritesmith-main-1.png); - background-position: -25px -1107px; - width: 60px; - height: 60px; -} -.hair_base_10_pyellow { - background-image: url(spritesmith-main-1.png); - background-position: -91px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_pyellow { - background-image: url(spritesmith-main-1.png); - background-position: -116px -1107px; - width: 60px; - height: 60px; -} -.hair_base_10_pyellow2 { - background-image: url(spritesmith-main-1.png); - background-position: -182px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_pyellow2 { - background-image: url(spritesmith-main-1.png); - background-position: -207px -1107px; - width: 60px; - height: 60px; -} -.hair_base_10_rainbow { - background-image: url(spritesmith-main-1.png); - background-position: -273px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_rainbow { - background-image: url(spritesmith-main-1.png); - background-position: -298px -1107px; - width: 60px; - height: 60px; -} -.hair_base_10_red { - background-image: url(spritesmith-main-1.png); - background-position: -364px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_red { - background-image: url(spritesmith-main-1.png); - background-position: -389px -1107px; - width: 60px; - height: 60px; -} -.hair_base_10_snowy { - background-image: url(spritesmith-main-1.png); - background-position: -455px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_snowy { - background-image: url(spritesmith-main-1.png); - background-position: -480px -1107px; - width: 60px; - height: 60px; -} -.hair_base_10_white { - background-image: url(spritesmith-main-1.png); - background-position: -546px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_white { - background-image: url(spritesmith-main-1.png); - background-position: -571px -1107px; - width: 60px; - height: 60px; -} -.hair_base_10_winternight { - background-image: url(spritesmith-main-1.png); - background-position: -637px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_winternight { - background-image: url(spritesmith-main-1.png); - background-position: -662px -1107px; - width: 60px; - height: 60px; -} -.hair_base_10_winterstar { - background-image: url(spritesmith-main-1.png); - background-position: 0px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_winterstar { - background-image: url(spritesmith-main-1.png); - background-position: -25px -15px; - width: 60px; - height: 60px; -} -.hair_base_10_yellow { +.hair_mustache_2_hollygreen { background-image: url(spritesmith-main-1.png); background-position: -819px -1092px; width: 90px; height: 90px; } -.customize-option.hair_base_10_yellow { +.customize-option.hair_mustache_2_hollygreen { background-image: url(spritesmith-main-1.png); background-position: -844px -1107px; width: 60px; height: 60px; } -.hair_base_10_zombie { +.hair_mustache_2_midnight { background-image: url(spritesmith-main-1.png); - background-position: -910px -1092px; + background-position: 0px -91px; width: 90px; height: 90px; } -.customize-option.hair_base_10_zombie { +.customize-option.hair_mustache_2_midnight { background-image: url(spritesmith-main-1.png); - background-position: -935px -1107px; + background-position: -25px -106px; width: 60px; height: 60px; } -.hair_base_11_TRUred { +.hair_mustache_2_pblue { background-image: url(spritesmith-main-1.png); - background-position: -1001px -1092px; + background-position: -91px -91px; width: 90px; height: 90px; } -.customize-option.hair_base_11_TRUred { +.customize-option.hair_mustache_2_pblue { background-image: url(spritesmith-main-1.png); - background-position: -1026px -1107px; + background-position: -116px -106px; width: 60px; height: 60px; } -.hair_base_11_aurora { +.hair_mustache_2_peppermint { background-image: url(spritesmith-main-1.png); - background-position: -1092px -1092px; + background-position: -182px 0px; width: 90px; height: 90px; } -.customize-option.hair_base_11_aurora { +.customize-option.hair_mustache_2_peppermint { background-image: url(spritesmith-main-1.png); - background-position: -1117px -1107px; + background-position: -207px -15px; width: 60px; height: 60px; } -.hair_base_11_black { +.hair_mustache_2_pgreen { background-image: url(spritesmith-main-1.png); - background-position: -1183px 0px; + background-position: -182px -91px; width: 90px; height: 90px; } -.customize-option.hair_base_11_black { +.customize-option.hair_mustache_2_pgreen { background-image: url(spritesmith-main-1.png); - background-position: -1208px -15px; + background-position: -207px -106px; width: 60px; height: 60px; } -.hair_base_11_blond { +.hair_mustache_2_porange { background-image: url(spritesmith-main-1.png); - background-position: -1183px -91px; + background-position: 0px -182px; width: 90px; height: 90px; } -.customize-option.hair_base_11_blond { +.customize-option.hair_mustache_2_porange { background-image: url(spritesmith-main-1.png); - background-position: -1208px -106px; + background-position: -25px -197px; width: 60px; height: 60px; } -.hair_base_11_blue { +.hair_mustache_2_ppink { background-image: url(spritesmith-main-1.png); - background-position: -1183px -182px; + background-position: -91px -182px; width: 90px; height: 90px; } -.customize-option.hair_base_11_blue { +.customize-option.hair_mustache_2_ppink { background-image: url(spritesmith-main-1.png); - background-position: -1208px -197px; + background-position: -116px -197px; width: 60px; height: 60px; } -.hair_base_11_brown { +.hair_mustache_2_ppurple { background-image: url(spritesmith-main-1.png); - background-position: -1183px -273px; + background-position: -182px -182px; width: 90px; height: 90px; } -.customize-option.hair_base_11_brown { +.customize-option.hair_mustache_2_ppurple { background-image: url(spritesmith-main-1.png); - background-position: -1208px -288px; + background-position: -207px -197px; width: 60px; height: 60px; } -.hair_base_11_candycane { +.hair_mustache_2_pumpkin { background-image: url(spritesmith-main-1.png); - background-position: -1183px -364px; + background-position: -273px 0px; width: 90px; height: 90px; } -.customize-option.hair_base_11_candycane { +.customize-option.hair_mustache_2_pumpkin { background-image: url(spritesmith-main-1.png); - background-position: -1208px -379px; + background-position: -298px -15px; width: 60px; height: 60px; } -.hair_base_11_candycorn { +.hair_mustache_2_purple { background-image: url(spritesmith-main-1.png); - background-position: -1183px -455px; + background-position: -273px -91px; width: 90px; height: 90px; } -.customize-option.hair_base_11_candycorn { +.customize-option.hair_mustache_2_purple { background-image: url(spritesmith-main-1.png); - background-position: -1208px -470px; + background-position: -298px -106px; width: 60px; height: 60px; } -.hair_base_11_festive { +.hair_mustache_2_pyellow { background-image: url(spritesmith-main-1.png); - background-position: -1183px -546px; + background-position: -273px -182px; width: 90px; height: 90px; } -.customize-option.hair_base_11_festive { +.customize-option.hair_mustache_2_pyellow { background-image: url(spritesmith-main-1.png); - background-position: -1208px -561px; + background-position: -298px -197px; width: 60px; height: 60px; } -.hair_base_11_frost { +.hair_mustache_2_rainbow { background-image: url(spritesmith-main-1.png); - background-position: -1183px -637px; + background-position: 0px -273px; width: 90px; height: 90px; } -.customize-option.hair_base_11_frost { +.customize-option.hair_mustache_2_rainbow { background-image: url(spritesmith-main-1.png); - background-position: -1208px -652px; + background-position: -25px -288px; width: 60px; height: 60px; } -.hair_base_11_ghostwhite { +.hair_mustache_2_red { background-image: url(spritesmith-main-1.png); - background-position: -1183px -728px; + background-position: -91px -273px; width: 90px; height: 90px; } -.customize-option.hair_base_11_ghostwhite { +.customize-option.hair_mustache_2_red { background-image: url(spritesmith-main-1.png); - background-position: -1208px -743px; + background-position: -116px -288px; width: 60px; height: 60px; } -.hair_base_11_green { +.hair_mustache_2_snowy { background-image: url(spritesmith-main-1.png); - background-position: -1183px -819px; + background-position: -182px -273px; width: 90px; height: 90px; } -.customize-option.hair_base_11_green { +.customize-option.hair_mustache_2_snowy { background-image: url(spritesmith-main-1.png); - background-position: -1208px -834px; + background-position: -207px -288px; width: 60px; height: 60px; } -.hair_base_11_halloween { +.hair_mustache_2_white { background-image: url(spritesmith-main-1.png); - background-position: -1183px -910px; + background-position: -364px 0px; width: 90px; height: 90px; } -.customize-option.hair_base_11_halloween { +.customize-option.hair_mustache_2_white { background-image: url(spritesmith-main-1.png); - background-position: -1208px -925px; + background-position: -389px -15px; width: 60px; height: 60px; } -.hair_base_11_holly { +.hair_mustache_2_winternight { background-image: url(spritesmith-main-1.png); - background-position: -1183px -1001px; + background-position: -364px -91px; width: 90px; height: 90px; } -.customize-option.hair_base_11_holly { +.customize-option.hair_mustache_2_winternight { background-image: url(spritesmith-main-1.png); - background-position: -1208px -1016px; + background-position: -389px -106px; width: 60px; height: 60px; } -.hair_base_11_hollygreen { +.hair_mustache_2_winterstar { background-image: url(spritesmith-main-1.png); - background-position: -1183px -1092px; + background-position: -364px -182px; width: 90px; height: 90px; } -.customize-option.hair_base_11_hollygreen { +.customize-option.hair_mustache_2_winterstar { background-image: url(spritesmith-main-1.png); - background-position: -1208px -1107px; + background-position: -389px -197px; width: 60px; height: 60px; } -.hair_base_11_midnight { +.hair_mustache_2_yellow { background-image: url(spritesmith-main-1.png); - background-position: 0px -1183px; + background-position: -364px -273px; width: 90px; height: 90px; } -.customize-option.hair_base_11_midnight { +.customize-option.hair_mustache_2_yellow { background-image: url(spritesmith-main-1.png); - background-position: -25px -1198px; + background-position: -389px -288px; width: 60px; height: 60px; } -.hair_base_11_pblue { +.hair_mustache_2_zombie { background-image: url(spritesmith-main-1.png); - background-position: -91px -1183px; + background-position: 0px -364px; width: 90px; height: 90px; } -.customize-option.hair_base_11_pblue { +.customize-option.hair_mustache_2_zombie { background-image: url(spritesmith-main-1.png); - background-position: -116px -1198px; + background-position: -25px -379px; width: 60px; height: 60px; } -.hair_base_11_pblue2 { +.button_chair_black { background-image: url(spritesmith-main-1.png); - background-position: -182px -1183px; + background-position: -1638px -455px; + width: 60px; + height: 60px; +} +.chair_black { + background-image: url(spritesmith-main-1.png); + background-position: -182px -364px; width: 90px; height: 90px; } -.customize-option.hair_base_11_pblue2 { +.hair_flower_1 { background-image: url(spritesmith-main-1.png); - background-position: -207px -1198px; - width: 60px; - height: 60px; -} -.hair_base_11_peppermint { - background-image: url(spritesmith-main-1.png); - background-position: -273px -1183px; + background-position: -273px -364px; width: 90px; height: 90px; } -.customize-option.hair_base_11_peppermint { +.customize-option.hair_flower_1 { background-image: url(spritesmith-main-1.png); - background-position: -298px -1198px; + background-position: -298px -379px; width: 60px; height: 60px; } -.hair_base_11_pgreen { +.hair_flower_2 { background-image: url(spritesmith-main-1.png); - background-position: -364px -1183px; + background-position: -364px -364px; width: 90px; height: 90px; } -.customize-option.hair_base_11_pgreen { +.customize-option.hair_flower_2 { background-image: url(spritesmith-main-1.png); - background-position: -389px -1198px; + background-position: -389px -379px; width: 60px; height: 60px; } -.hair_base_11_pgreen2 { +.hair_flower_3 { background-image: url(spritesmith-main-1.png); - background-position: -455px -1183px; + background-position: -455px 0px; width: 90px; height: 90px; } -.customize-option.hair_base_11_pgreen2 { +.customize-option.hair_flower_3 { background-image: url(spritesmith-main-1.png); - background-position: -480px -1198px; + background-position: -480px -15px; width: 60px; height: 60px; } -.hair_base_11_porange { +.hair_flower_4 { background-image: url(spritesmith-main-1.png); - background-position: -546px -1183px; + background-position: -455px -91px; width: 90px; height: 90px; } -.customize-option.hair_base_11_porange { +.customize-option.hair_flower_4 { background-image: url(spritesmith-main-1.png); - background-position: -571px -1198px; + background-position: -480px -106px; width: 60px; height: 60px; } -.hair_base_11_porange2 { +.hair_flower_5 { background-image: url(spritesmith-main-1.png); - background-position: -637px -1183px; + background-position: -455px -182px; width: 90px; height: 90px; } -.customize-option.hair_base_11_porange2 { +.customize-option.hair_flower_5 { background-image: url(spritesmith-main-1.png); - background-position: -662px -1198px; + background-position: -480px -197px; width: 60px; height: 60px; } -.hair_base_11_ppink { +.hair_flower_6 { background-image: url(spritesmith-main-1.png); - background-position: -728px -1183px; + background-position: -455px -273px; width: 90px; height: 90px; } -.customize-option.hair_base_11_ppink { +.customize-option.hair_flower_6 { background-image: url(spritesmith-main-1.png); - background-position: -753px -1198px; + background-position: -480px -288px; width: 60px; height: 60px; } -.hair_base_11_ppink2 { +.hair_bangs_1_TRUred { background-image: url(spritesmith-main-1.png); - background-position: -819px -1183px; + background-position: -546px -637px; width: 90px; height: 90px; } -.customize-option.hair_base_11_ppink2 { +.customize-option.hair_bangs_1_TRUred { background-image: url(spritesmith-main-1.png); - background-position: -844px -1198px; + background-position: -571px -652px; width: 60px; height: 60px; } -.hair_base_11_ppurple { +.hair_bangs_1_aurora { background-image: url(spritesmith-main-1.png); - background-position: -910px -1183px; + background-position: -455px -364px; width: 90px; height: 90px; } -.customize-option.hair_base_11_ppurple { +.customize-option.hair_bangs_1_aurora { background-image: url(spritesmith-main-1.png); - background-position: -935px -1198px; + background-position: -480px -379px; width: 60px; height: 60px; } -.hair_base_11_ppurple2 { +.hair_bangs_1_black { background-image: url(spritesmith-main-1.png); - background-position: -1001px -1183px; + background-position: 0px -455px; width: 90px; height: 90px; } -.customize-option.hair_base_11_ppurple2 { +.customize-option.hair_bangs_1_black { background-image: url(spritesmith-main-1.png); - background-position: -1026px -1198px; + background-position: -25px -470px; width: 60px; height: 60px; } -.hair_base_11_pumpkin { +.hair_bangs_1_blond { background-image: url(spritesmith-main-1.png); - background-position: -1092px -1183px; + background-position: -91px -455px; width: 90px; height: 90px; } -.customize-option.hair_base_11_pumpkin { +.customize-option.hair_bangs_1_blond { background-image: url(spritesmith-main-1.png); - background-position: -1117px -1198px; + background-position: -116px -470px; width: 60px; height: 60px; } -.hair_base_11_purple { +.hair_bangs_1_blue { background-image: url(spritesmith-main-1.png); - background-position: -1183px -1183px; + background-position: -182px -455px; width: 90px; height: 90px; } -.customize-option.hair_base_11_purple { +.customize-option.hair_bangs_1_blue { background-image: url(spritesmith-main-1.png); - background-position: -1208px -1198px; + background-position: -207px -470px; width: 60px; height: 60px; } -.hair_base_11_pyellow { +.hair_bangs_1_brown { background-image: url(spritesmith-main-1.png); - background-position: -1274px 0px; + background-position: -273px -455px; width: 90px; height: 90px; } -.customize-option.hair_base_11_pyellow { +.customize-option.hair_bangs_1_brown { background-image: url(spritesmith-main-1.png); - background-position: -1299px -15px; + background-position: -298px -470px; width: 60px; height: 60px; } -.hair_base_11_pyellow2 { +.hair_bangs_1_candycane { background-image: url(spritesmith-main-1.png); - background-position: -1274px -91px; + background-position: -364px -455px; width: 90px; height: 90px; } -.customize-option.hair_base_11_pyellow2 { +.customize-option.hair_bangs_1_candycane { background-image: url(spritesmith-main-1.png); - background-position: -1299px -106px; + background-position: -389px -470px; width: 60px; height: 60px; } -.hair_base_11_rainbow { +.hair_bangs_1_candycorn { background-image: url(spritesmith-main-1.png); - background-position: -1274px -182px; + background-position: -455px -455px; width: 90px; height: 90px; } -.customize-option.hair_base_11_rainbow { +.customize-option.hair_bangs_1_candycorn { background-image: url(spritesmith-main-1.png); - background-position: -1299px -197px; + background-position: -480px -470px; width: 60px; height: 60px; } -.hair_base_11_red { +.hair_bangs_1_festive { background-image: url(spritesmith-main-1.png); - background-position: -1274px -273px; + background-position: -546px 0px; width: 90px; height: 90px; } -.customize-option.hair_base_11_red { +.customize-option.hair_bangs_1_festive { background-image: url(spritesmith-main-1.png); - background-position: -1299px -288px; + background-position: -571px -15px; width: 60px; height: 60px; } -.hair_base_11_snowy { +.hair_bangs_1_frost { background-image: url(spritesmith-main-1.png); - background-position: -1274px -364px; + background-position: -546px -91px; width: 90px; height: 90px; } -.customize-option.hair_base_11_snowy { +.customize-option.hair_bangs_1_frost { background-image: url(spritesmith-main-1.png); - background-position: -1299px -379px; + background-position: -571px -106px; width: 60px; height: 60px; } -.hair_base_11_white { +.hair_bangs_1_ghostwhite { background-image: url(spritesmith-main-1.png); - background-position: -1274px -455px; + background-position: -546px -182px; width: 90px; height: 90px; } -.customize-option.hair_base_11_white { +.customize-option.hair_bangs_1_ghostwhite { background-image: url(spritesmith-main-1.png); - background-position: -1299px -470px; + background-position: -571px -197px; width: 60px; height: 60px; } -.hair_base_11_winternight { +.hair_bangs_1_green { background-image: url(spritesmith-main-1.png); - background-position: -1274px -546px; + background-position: -546px -273px; width: 90px; height: 90px; } -.customize-option.hair_base_11_winternight { +.customize-option.hair_bangs_1_green { background-image: url(spritesmith-main-1.png); - background-position: -1299px -561px; + background-position: -571px -288px; width: 60px; height: 60px; } -.hair_base_11_winterstar { +.hair_bangs_1_halloween { background-image: url(spritesmith-main-1.png); - background-position: -1274px -637px; + background-position: -546px -364px; width: 90px; height: 90px; } -.customize-option.hair_base_11_winterstar { +.customize-option.hair_bangs_1_halloween { background-image: url(spritesmith-main-1.png); - background-position: -1299px -652px; + background-position: -571px -379px; width: 60px; height: 60px; } -.hair_base_11_yellow { +.hair_bangs_1_holly { background-image: url(spritesmith-main-1.png); - background-position: -1274px -728px; + background-position: -546px -455px; width: 90px; height: 90px; } -.customize-option.hair_base_11_yellow { +.customize-option.hair_bangs_1_holly { background-image: url(spritesmith-main-1.png); - background-position: -1299px -743px; + background-position: -571px -470px; width: 60px; height: 60px; } -.hair_base_11_zombie { +.hair_bangs_1_hollygreen { background-image: url(spritesmith-main-1.png); - background-position: -1274px -819px; + background-position: 0px -546px; width: 90px; height: 90px; } -.customize-option.hair_base_11_zombie { +.customize-option.hair_bangs_1_hollygreen { background-image: url(spritesmith-main-1.png); - background-position: -1299px -834px; + background-position: -25px -561px; width: 60px; height: 60px; } -.hair_base_12_TRUred { +.hair_bangs_1_midnight { background-image: url(spritesmith-main-1.png); - background-position: -1274px -910px; + background-position: -91px -546px; width: 90px; height: 90px; } -.customize-option.hair_base_12_TRUred { +.customize-option.hair_bangs_1_midnight { background-image: url(spritesmith-main-1.png); - background-position: -1299px -925px; + background-position: -116px -561px; width: 60px; height: 60px; } -.hair_base_12_aurora { +.hair_bangs_1_pblue { background-image: url(spritesmith-main-1.png); - background-position: -1274px -1001px; + background-position: -182px -546px; width: 90px; height: 90px; } -.customize-option.hair_base_12_aurora { +.customize-option.hair_bangs_1_pblue { background-image: url(spritesmith-main-1.png); - background-position: -1299px -1016px; + background-position: -207px -561px; width: 60px; height: 60px; } -.hair_base_12_black { +.hair_bangs_1_pblue2 { background-image: url(spritesmith-main-1.png); - background-position: -1274px -1092px; + background-position: -273px -546px; width: 90px; height: 90px; } -.customize-option.hair_base_12_black { +.customize-option.hair_bangs_1_pblue2 { background-image: url(spritesmith-main-1.png); - background-position: -1299px -1107px; + background-position: -298px -561px; width: 60px; height: 60px; } -.hair_base_12_blond { +.hair_bangs_1_peppermint { background-image: url(spritesmith-main-1.png); - background-position: -1274px -1183px; + background-position: -364px -546px; width: 90px; height: 90px; } -.customize-option.hair_base_12_blond { +.customize-option.hair_bangs_1_peppermint { background-image: url(spritesmith-main-1.png); - background-position: -1299px -1198px; + background-position: -389px -561px; width: 60px; height: 60px; } -.hair_base_12_blue { +.hair_bangs_1_pgreen { background-image: url(spritesmith-main-1.png); - background-position: 0px -1274px; + background-position: -455px -546px; width: 90px; height: 90px; } -.customize-option.hair_base_12_blue { +.customize-option.hair_bangs_1_pgreen { background-image: url(spritesmith-main-1.png); - background-position: -25px -1289px; + background-position: -480px -561px; width: 60px; height: 60px; } -.hair_base_12_brown { +.hair_bangs_1_pgreen2 { background-image: url(spritesmith-main-1.png); - background-position: -91px -1274px; + background-position: -546px -546px; width: 90px; height: 90px; } -.customize-option.hair_base_12_brown { +.customize-option.hair_bangs_1_pgreen2 { background-image: url(spritesmith-main-1.png); - background-position: -116px -1289px; + background-position: -571px -561px; width: 60px; height: 60px; } -.hair_base_12_candycane { +.hair_bangs_1_porange { background-image: url(spritesmith-main-1.png); - background-position: -182px -1274px; + background-position: -637px 0px; width: 90px; height: 90px; } -.customize-option.hair_base_12_candycane { +.customize-option.hair_bangs_1_porange { background-image: url(spritesmith-main-1.png); - background-position: -207px -1289px; + background-position: -662px -15px; width: 60px; height: 60px; } -.hair_base_12_candycorn { +.hair_bangs_1_porange2 { background-image: url(spritesmith-main-1.png); - background-position: -273px -1274px; + background-position: -637px -91px; width: 90px; height: 90px; } -.customize-option.hair_base_12_candycorn { +.customize-option.hair_bangs_1_porange2 { background-image: url(spritesmith-main-1.png); - background-position: -298px -1289px; + background-position: -662px -106px; width: 60px; height: 60px; } -.hair_base_12_festive { +.hair_bangs_1_ppink { background-image: url(spritesmith-main-1.png); - background-position: -364px -1274px; + background-position: -637px -182px; width: 90px; height: 90px; } -.customize-option.hair_base_12_festive { +.customize-option.hair_bangs_1_ppink { background-image: url(spritesmith-main-1.png); - background-position: -389px -1289px; + background-position: -662px -197px; width: 60px; height: 60px; } -.hair_base_12_frost { +.hair_bangs_1_ppink2 { background-image: url(spritesmith-main-1.png); - background-position: -455px -1274px; + background-position: -637px -273px; width: 90px; height: 90px; } -.customize-option.hair_base_12_frost { +.customize-option.hair_bangs_1_ppink2 { background-image: url(spritesmith-main-1.png); - background-position: -480px -1289px; + background-position: -662px -288px; width: 60px; height: 60px; } -.hair_base_12_ghostwhite { +.hair_bangs_1_ppurple { background-image: url(spritesmith-main-1.png); - background-position: -546px -1274px; + background-position: -637px -364px; width: 90px; height: 90px; } -.customize-option.hair_base_12_ghostwhite { +.customize-option.hair_bangs_1_ppurple { background-image: url(spritesmith-main-1.png); - background-position: -571px -1289px; + background-position: -662px -379px; width: 60px; height: 60px; } -.hair_base_12_green { +.hair_bangs_1_ppurple2 { background-image: url(spritesmith-main-1.png); - background-position: -637px -1274px; + background-position: -637px -455px; width: 90px; height: 90px; } -.customize-option.hair_base_12_green { +.customize-option.hair_bangs_1_ppurple2 { background-image: url(spritesmith-main-1.png); - background-position: -662px -1289px; + background-position: -662px -470px; width: 60px; height: 60px; } -.hair_base_12_halloween { +.hair_bangs_1_pumpkin { + background-image: url(spritesmith-main-1.png); + background-position: -637px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_pumpkin { + background-image: url(spritesmith-main-1.png); + background-position: -662px -561px; + width: 60px; + height: 60px; +} +.hair_bangs_1_purple { + background-image: url(spritesmith-main-1.png); + background-position: 0px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_purple { + background-image: url(spritesmith-main-1.png); + background-position: -25px -652px; + width: 60px; + height: 60px; +} +.hair_bangs_1_pyellow { + background-image: url(spritesmith-main-1.png); + background-position: -91px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_pyellow { + background-image: url(spritesmith-main-1.png); + background-position: -116px -652px; + width: 60px; + height: 60px; +} +.hair_bangs_1_pyellow2 { + background-image: url(spritesmith-main-1.png); + background-position: -182px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_pyellow2 { + background-image: url(spritesmith-main-1.png); + background-position: -207px -652px; + width: 60px; + height: 60px; +} +.hair_bangs_1_rainbow { + background-image: url(spritesmith-main-1.png); + background-position: -273px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_rainbow { + background-image: url(spritesmith-main-1.png); + background-position: -298px -652px; + width: 60px; + height: 60px; +} +.hair_bangs_1_red { + background-image: url(spritesmith-main-1.png); + background-position: -364px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_red { + background-image: url(spritesmith-main-1.png); + background-position: -389px -652px; + width: 60px; + height: 60px; +} +.hair_bangs_1_snowy { + background-image: url(spritesmith-main-1.png); + background-position: -455px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_snowy { + background-image: url(spritesmith-main-1.png); + background-position: -480px -652px; + width: 60px; + height: 60px; +} +.hair_bangs_1_white { + background-image: url(spritesmith-main-1.png); + background-position: -637px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_white { + background-image: url(spritesmith-main-1.png); + background-position: -662px -652px; + width: 60px; + height: 60px; +} +.hair_bangs_1_winternight { + background-image: url(spritesmith-main-1.png); + background-position: -728px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_winternight { + background-image: url(spritesmith-main-1.png); + background-position: -753px -15px; + width: 60px; + height: 60px; +} +.hair_bangs_1_winterstar { + background-image: url(spritesmith-main-1.png); + background-position: -728px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_winterstar { + background-image: url(spritesmith-main-1.png); + background-position: -753px -106px; + width: 60px; + height: 60px; +} +.hair_bangs_1_yellow { + background-image: url(spritesmith-main-1.png); + background-position: -728px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_yellow { + background-image: url(spritesmith-main-1.png); + background-position: -753px -197px; + width: 60px; + height: 60px; +} +.hair_bangs_1_zombie { + background-image: url(spritesmith-main-1.png); + background-position: -728px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_zombie { + background-image: url(spritesmith-main-1.png); + background-position: -753px -288px; + width: 60px; + height: 60px; +} +.hair_bangs_2_TRUred { + background-image: url(spritesmith-main-1.png); + background-position: -910px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_TRUred { + background-image: url(spritesmith-main-1.png); + background-position: -935px -106px; + width: 60px; + height: 60px; +} +.hair_bangs_2_aurora { + background-image: url(spritesmith-main-1.png); + background-position: -728px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_aurora { + background-image: url(spritesmith-main-1.png); + background-position: -753px -379px; + width: 60px; + height: 60px; +} +.hair_bangs_2_black { + background-image: url(spritesmith-main-1.png); + background-position: -728px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_black { + background-image: url(spritesmith-main-1.png); + background-position: -753px -470px; + width: 60px; + height: 60px; +} +.hair_bangs_2_blond { + background-image: url(spritesmith-main-1.png); + background-position: -728px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_blond { + background-image: url(spritesmith-main-1.png); + background-position: -753px -561px; + width: 60px; + height: 60px; +} +.hair_bangs_2_blue { + background-image: url(spritesmith-main-1.png); + background-position: -728px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_blue { + background-image: url(spritesmith-main-1.png); + background-position: -753px -652px; + width: 60px; + height: 60px; +} +.hair_bangs_2_brown { + background-image: url(spritesmith-main-1.png); + background-position: 0px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_brown { + background-image: url(spritesmith-main-1.png); + background-position: -25px -743px; + width: 60px; + height: 60px; +} +.hair_bangs_2_candycane { + background-image: url(spritesmith-main-1.png); + background-position: -91px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_candycane { + background-image: url(spritesmith-main-1.png); + background-position: -116px -743px; + width: 60px; + height: 60px; +} +.hair_bangs_2_candycorn { + background-image: url(spritesmith-main-1.png); + background-position: -182px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_candycorn { + background-image: url(spritesmith-main-1.png); + background-position: -207px -743px; + width: 60px; + height: 60px; +} +.hair_bangs_2_festive { + background-image: url(spritesmith-main-1.png); + background-position: -273px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_festive { + background-image: url(spritesmith-main-1.png); + background-position: -298px -743px; + width: 60px; + height: 60px; +} +.hair_bangs_2_frost { + background-image: url(spritesmith-main-1.png); + background-position: -364px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_frost { + background-image: url(spritesmith-main-1.png); + background-position: -389px -743px; + width: 60px; + height: 60px; +} +.hair_bangs_2_ghostwhite { + background-image: url(spritesmith-main-1.png); + background-position: -455px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_ghostwhite { + background-image: url(spritesmith-main-1.png); + background-position: -480px -743px; + width: 60px; + height: 60px; +} +.hair_bangs_2_green { + background-image: url(spritesmith-main-1.png); + background-position: -546px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_green { + background-image: url(spritesmith-main-1.png); + background-position: -571px -743px; + width: 60px; + height: 60px; +} +.hair_bangs_2_halloween { + background-image: url(spritesmith-main-1.png); + background-position: -637px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_halloween { + background-image: url(spritesmith-main-1.png); + background-position: -662px -743px; + width: 60px; + height: 60px; +} +.hair_bangs_2_holly { + background-image: url(spritesmith-main-1.png); + background-position: -728px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_holly { + background-image: url(spritesmith-main-1.png); + background-position: -753px -743px; + width: 60px; + height: 60px; +} +.hair_bangs_2_hollygreen { + background-image: url(spritesmith-main-1.png); + background-position: -819px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_hollygreen { + background-image: url(spritesmith-main-1.png); + background-position: -844px -15px; + width: 60px; + height: 60px; +} +.hair_bangs_2_midnight { + background-image: url(spritesmith-main-1.png); + background-position: -819px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_midnight { + background-image: url(spritesmith-main-1.png); + background-position: -844px -106px; + width: 60px; + height: 60px; +} +.hair_bangs_2_pblue { + background-image: url(spritesmith-main-1.png); + background-position: -819px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_pblue { + background-image: url(spritesmith-main-1.png); + background-position: -844px -197px; + width: 60px; + height: 60px; +} +.hair_bangs_2_pblue2 { + background-image: url(spritesmith-main-1.png); + background-position: -819px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_pblue2 { + background-image: url(spritesmith-main-1.png); + background-position: -844px -288px; + width: 60px; + height: 60px; +} +.hair_bangs_2_peppermint { + background-image: url(spritesmith-main-1.png); + background-position: -819px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_peppermint { + background-image: url(spritesmith-main-1.png); + background-position: -844px -379px; + width: 60px; + height: 60px; +} +.hair_bangs_2_pgreen { + background-image: url(spritesmith-main-1.png); + background-position: -819px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_pgreen { + background-image: url(spritesmith-main-1.png); + background-position: -844px -470px; + width: 60px; + height: 60px; +} +.hair_bangs_2_pgreen2 { + background-image: url(spritesmith-main-1.png); + background-position: -819px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_pgreen2 { + background-image: url(spritesmith-main-1.png); + background-position: -844px -561px; + width: 60px; + height: 60px; +} +.hair_bangs_2_porange { + background-image: url(spritesmith-main-1.png); + background-position: -819px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_porange { + background-image: url(spritesmith-main-1.png); + background-position: -844px -652px; + width: 60px; + height: 60px; +} +.hair_bangs_2_porange2 { + background-image: url(spritesmith-main-1.png); + background-position: -819px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_porange2 { + background-image: url(spritesmith-main-1.png); + background-position: -844px -743px; + width: 60px; + height: 60px; +} +.hair_bangs_2_ppink { + background-image: url(spritesmith-main-1.png); + background-position: 0px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_ppink { + background-image: url(spritesmith-main-1.png); + background-position: -25px -834px; + width: 60px; + height: 60px; +} +.hair_bangs_2_ppink2 { + background-image: url(spritesmith-main-1.png); + background-position: -91px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_ppink2 { + background-image: url(spritesmith-main-1.png); + background-position: -116px -834px; + width: 60px; + height: 60px; +} +.hair_bangs_2_ppurple { + background-image: url(spritesmith-main-1.png); + background-position: -182px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_ppurple { + background-image: url(spritesmith-main-1.png); + background-position: -207px -834px; + width: 60px; + height: 60px; +} +.hair_bangs_2_ppurple2 { + background-image: url(spritesmith-main-1.png); + background-position: -273px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_ppurple2 { + background-image: url(spritesmith-main-1.png); + background-position: -298px -834px; + width: 60px; + height: 60px; +} +.hair_bangs_2_pumpkin { + background-image: url(spritesmith-main-1.png); + background-position: -364px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_pumpkin { + background-image: url(spritesmith-main-1.png); + background-position: -389px -834px; + width: 60px; + height: 60px; +} +.hair_bangs_2_purple { + background-image: url(spritesmith-main-1.png); + background-position: -455px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_purple { + background-image: url(spritesmith-main-1.png); + background-position: -480px -834px; + width: 60px; + height: 60px; +} +.hair_bangs_2_pyellow { + background-image: url(spritesmith-main-1.png); + background-position: -546px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_pyellow { + background-image: url(spritesmith-main-1.png); + background-position: -571px -834px; + width: 60px; + height: 60px; +} +.hair_bangs_2_pyellow2 { + background-image: url(spritesmith-main-1.png); + background-position: -637px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_pyellow2 { + background-image: url(spritesmith-main-1.png); + background-position: -662px -834px; + width: 60px; + height: 60px; +} +.hair_bangs_2_rainbow { + background-image: url(spritesmith-main-1.png); + background-position: -728px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_rainbow { + background-image: url(spritesmith-main-1.png); + background-position: -753px -834px; + width: 60px; + height: 60px; +} +.hair_bangs_2_red { + background-image: url(spritesmith-main-1.png); + background-position: -819px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_red { + background-image: url(spritesmith-main-1.png); + background-position: -844px -834px; + width: 60px; + height: 60px; +} +.hair_bangs_2_snowy { + background-image: url(spritesmith-main-1.png); + background-position: -910px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_snowy { + background-image: url(spritesmith-main-1.png); + background-position: -935px -15px; + width: 60px; + height: 60px; +} +.hair_bangs_2_white { + background-image: url(spritesmith-main-1.png); + background-position: -910px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_white { + background-image: url(spritesmith-main-1.png); + background-position: -935px -197px; + width: 60px; + height: 60px; +} +.hair_bangs_2_winternight { + background-image: url(spritesmith-main-1.png); + background-position: -910px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_winternight { + background-image: url(spritesmith-main-1.png); + background-position: -935px -288px; + width: 60px; + height: 60px; +} +.hair_bangs_2_winterstar { + background-image: url(spritesmith-main-1.png); + background-position: -910px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_winterstar { + background-image: url(spritesmith-main-1.png); + background-position: -935px -379px; + width: 60px; + height: 60px; +} +.hair_bangs_2_yellow { + background-image: url(spritesmith-main-1.png); + background-position: -910px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_yellow { + background-image: url(spritesmith-main-1.png); + background-position: -935px -470px; + width: 60px; + height: 60px; +} +.hair_bangs_2_zombie { + background-image: url(spritesmith-main-1.png); + background-position: -910px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_zombie { + background-image: url(spritesmith-main-1.png); + background-position: -935px -561px; + width: 60px; + height: 60px; +} +.hair_bangs_3_TRUred { + background-image: url(spritesmith-main-1.png); + background-position: -728px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_TRUred { + background-image: url(spritesmith-main-1.png); + background-position: -753px -1016px; + width: 60px; + height: 60px; +} +.hair_bangs_3_aurora { + background-image: url(spritesmith-main-1.png); + background-position: -910px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_aurora { + background-image: url(spritesmith-main-1.png); + background-position: -935px -652px; + width: 60px; + height: 60px; +} +.hair_bangs_3_black { + background-image: url(spritesmith-main-1.png); + background-position: -910px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_black { + background-image: url(spritesmith-main-1.png); + background-position: -935px -743px; + width: 60px; + height: 60px; +} +.hair_bangs_3_blond { + background-image: url(spritesmith-main-1.png); + background-position: -910px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_blond { + background-image: url(spritesmith-main-1.png); + background-position: -935px -834px; + width: 60px; + height: 60px; +} +.hair_bangs_3_blue { + background-image: url(spritesmith-main-1.png); + background-position: 0px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_blue { + background-image: url(spritesmith-main-1.png); + background-position: -25px -925px; + width: 60px; + height: 60px; +} +.hair_bangs_3_brown { + background-image: url(spritesmith-main-1.png); + background-position: -91px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_brown { + background-image: url(spritesmith-main-1.png); + background-position: -116px -925px; + width: 60px; + height: 60px; +} +.hair_bangs_3_candycane { + background-image: url(spritesmith-main-1.png); + background-position: -182px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_candycane { + background-image: url(spritesmith-main-1.png); + background-position: -207px -925px; + width: 60px; + height: 60px; +} +.hair_bangs_3_candycorn { + background-image: url(spritesmith-main-1.png); + background-position: -273px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_candycorn { + background-image: url(spritesmith-main-1.png); + background-position: -298px -925px; + width: 60px; + height: 60px; +} +.hair_bangs_3_festive { + background-image: url(spritesmith-main-1.png); + background-position: -364px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_festive { + background-image: url(spritesmith-main-1.png); + background-position: -389px -925px; + width: 60px; + height: 60px; +} +.hair_bangs_3_frost { + background-image: url(spritesmith-main-1.png); + background-position: -455px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_frost { + background-image: url(spritesmith-main-1.png); + background-position: -480px -925px; + width: 60px; + height: 60px; +} +.hair_bangs_3_ghostwhite { + background-image: url(spritesmith-main-1.png); + background-position: -546px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_ghostwhite { + background-image: url(spritesmith-main-1.png); + background-position: -571px -925px; + width: 60px; + height: 60px; +} +.hair_bangs_3_green { + background-image: url(spritesmith-main-1.png); + background-position: -637px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_green { + background-image: url(spritesmith-main-1.png); + background-position: -662px -925px; + width: 60px; + height: 60px; +} +.hair_bangs_3_halloween { + background-image: url(spritesmith-main-1.png); + background-position: -728px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_halloween { + background-image: url(spritesmith-main-1.png); + background-position: -753px -925px; + width: 60px; + height: 60px; +} +.hair_bangs_3_holly { + background-image: url(spritesmith-main-1.png); + background-position: -819px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_holly { + background-image: url(spritesmith-main-1.png); + background-position: -844px -925px; + width: 60px; + height: 60px; +} +.hair_bangs_3_hollygreen { + background-image: url(spritesmith-main-1.png); + background-position: -910px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_hollygreen { + background-image: url(spritesmith-main-1.png); + background-position: -935px -925px; + width: 60px; + height: 60px; +} +.hair_bangs_3_midnight { + background-image: url(spritesmith-main-1.png); + background-position: -1001px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_midnight { + background-image: url(spritesmith-main-1.png); + background-position: -1026px -15px; + width: 60px; + height: 60px; +} +.hair_bangs_3_pblue { + background-image: url(spritesmith-main-1.png); + background-position: -1001px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_pblue { + background-image: url(spritesmith-main-1.png); + background-position: -1026px -106px; + width: 60px; + height: 60px; +} +.hair_bangs_3_pblue2 { + background-image: url(spritesmith-main-1.png); + background-position: -1001px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_pblue2 { + background-image: url(spritesmith-main-1.png); + background-position: -1026px -197px; + width: 60px; + height: 60px; +} +.hair_bangs_3_peppermint { + background-image: url(spritesmith-main-1.png); + background-position: -1001px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_peppermint { + background-image: url(spritesmith-main-1.png); + background-position: -1026px -288px; + width: 60px; + height: 60px; +} +.hair_bangs_3_pgreen { + background-image: url(spritesmith-main-1.png); + background-position: -1001px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_pgreen { + background-image: url(spritesmith-main-1.png); + background-position: -1026px -379px; + width: 60px; + height: 60px; +} +.hair_bangs_3_pgreen2 { + background-image: url(spritesmith-main-1.png); + background-position: -1001px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_pgreen2 { + background-image: url(spritesmith-main-1.png); + background-position: -1026px -470px; + width: 60px; + height: 60px; +} +.hair_bangs_3_porange { + background-image: url(spritesmith-main-1.png); + background-position: -1001px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_porange { + background-image: url(spritesmith-main-1.png); + background-position: -1026px -561px; + width: 60px; + height: 60px; +} +.hair_bangs_3_porange2 { + background-image: url(spritesmith-main-1.png); + background-position: -1001px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_porange2 { + background-image: url(spritesmith-main-1.png); + background-position: -1026px -652px; + width: 60px; + height: 60px; +} +.hair_bangs_3_ppink { + background-image: url(spritesmith-main-1.png); + background-position: -1001px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_ppink { + background-image: url(spritesmith-main-1.png); + background-position: -1026px -743px; + width: 60px; + height: 60px; +} +.hair_bangs_3_ppink2 { + background-image: url(spritesmith-main-1.png); + background-position: -1001px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_ppink2 { + background-image: url(spritesmith-main-1.png); + background-position: -1026px -834px; + width: 60px; + height: 60px; +} +.hair_bangs_3_ppurple { + background-image: url(spritesmith-main-1.png); + background-position: -1001px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_ppurple { + background-image: url(spritesmith-main-1.png); + background-position: -1026px -925px; + width: 60px; + height: 60px; +} +.hair_bangs_3_ppurple2 { + background-image: url(spritesmith-main-1.png); + background-position: 0px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_ppurple2 { + background-image: url(spritesmith-main-1.png); + background-position: -25px -1016px; + width: 60px; + height: 60px; +} +.hair_bangs_3_pumpkin { + background-image: url(spritesmith-main-1.png); + background-position: -91px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_pumpkin { + background-image: url(spritesmith-main-1.png); + background-position: -116px -1016px; + width: 60px; + height: 60px; +} +.hair_bangs_3_purple { + background-image: url(spritesmith-main-1.png); + background-position: -182px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_purple { + background-image: url(spritesmith-main-1.png); + background-position: -207px -1016px; + width: 60px; + height: 60px; +} +.hair_bangs_3_pyellow { + background-image: url(spritesmith-main-1.png); + background-position: -273px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_pyellow { + background-image: url(spritesmith-main-1.png); + background-position: -298px -1016px; + width: 60px; + height: 60px; +} +.hair_bangs_3_pyellow2 { + background-image: url(spritesmith-main-1.png); + background-position: -364px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_pyellow2 { + background-image: url(spritesmith-main-1.png); + background-position: -389px -1016px; + width: 60px; + height: 60px; +} +.hair_bangs_3_rainbow { + background-image: url(spritesmith-main-1.png); + background-position: -455px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_rainbow { + background-image: url(spritesmith-main-1.png); + background-position: -480px -1016px; + width: 60px; + height: 60px; +} +.hair_bangs_3_red { + background-image: url(spritesmith-main-1.png); + background-position: -546px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_red { + background-image: url(spritesmith-main-1.png); + background-position: -571px -1016px; + width: 60px; + height: 60px; +} +.hair_bangs_3_snowy { + background-image: url(spritesmith-main-1.png); + background-position: -637px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_snowy { + background-image: url(spritesmith-main-1.png); + background-position: -662px -1016px; + width: 60px; + height: 60px; +} +.hair_bangs_3_white { + background-image: url(spritesmith-main-1.png); + background-position: -819px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_white { + background-image: url(spritesmith-main-1.png); + background-position: -844px -1016px; + width: 60px; + height: 60px; +} +.hair_bangs_3_winternight { + background-image: url(spritesmith-main-1.png); + background-position: -910px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_winternight { + background-image: url(spritesmith-main-1.png); + background-position: -935px -1016px; + width: 60px; + height: 60px; +} +.hair_bangs_3_winterstar { + background-image: url(spritesmith-main-1.png); + background-position: -1001px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_winterstar { + background-image: url(spritesmith-main-1.png); + background-position: -1026px -1016px; + width: 60px; + height: 60px; +} +.hair_bangs_3_yellow { + background-image: url(spritesmith-main-1.png); + background-position: -1092px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_yellow { + background-image: url(spritesmith-main-1.png); + background-position: -1117px -15px; + width: 60px; + height: 60px; +} +.hair_bangs_3_zombie { + background-image: url(spritesmith-main-1.png); + background-position: -1092px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_zombie { + background-image: url(spritesmith-main-1.png); + background-position: -1117px -106px; + width: 60px; + height: 60px; +} +.hair_base_10_TRUred { background-image: url(spritesmith-main-1.png); background-position: -728px -1274px; width: 90px; height: 90px; } -.customize-option.hair_base_12_halloween { +.customize-option.hair_base_10_TRUred { background-image: url(spritesmith-main-1.png); background-position: -753px -1289px; width: 60px; height: 60px; } -.hair_base_12_holly { +.hair_base_10_aurora { + background-image: url(spritesmith-main-1.png); + background-position: -273px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_aurora { + background-image: url(spritesmith-main-1.png); + background-position: -298px -1198px; + width: 60px; + height: 60px; +} +.hair_base_10_black { + background-image: url(spritesmith-main-1.png); + background-position: -364px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_black { + background-image: url(spritesmith-main-1.png); + background-position: -389px -1198px; + width: 60px; + height: 60px; +} +.hair_base_10_blond { + background-image: url(spritesmith-main-1.png); + background-position: -455px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_blond { + background-image: url(spritesmith-main-1.png); + background-position: -480px -1198px; + width: 60px; + height: 60px; +} +.hair_base_10_blue { + background-image: url(spritesmith-main-1.png); + background-position: -546px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_blue { + background-image: url(spritesmith-main-1.png); + background-position: -571px -1198px; + width: 60px; + height: 60px; +} +.hair_base_10_brown { + background-image: url(spritesmith-main-1.png); + background-position: -637px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_brown { + background-image: url(spritesmith-main-1.png); + background-position: -662px -1198px; + width: 60px; + height: 60px; +} +.hair_base_10_candycane { + background-image: url(spritesmith-main-1.png); + background-position: -728px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_candycane { + background-image: url(spritesmith-main-1.png); + background-position: -753px -1198px; + width: 60px; + height: 60px; +} +.hair_base_10_candycorn { + background-image: url(spritesmith-main-1.png); + background-position: -819px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_candycorn { + background-image: url(spritesmith-main-1.png); + background-position: -844px -1198px; + width: 60px; + height: 60px; +} +.hair_base_10_festive { + background-image: url(spritesmith-main-1.png); + background-position: -910px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_festive { + background-image: url(spritesmith-main-1.png); + background-position: -935px -1198px; + width: 60px; + height: 60px; +} +.hair_base_10_frost { + background-image: url(spritesmith-main-1.png); + background-position: -1001px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_frost { + background-image: url(spritesmith-main-1.png); + background-position: -1026px -1198px; + width: 60px; + height: 60px; +} +.hair_base_10_ghostwhite { + background-image: url(spritesmith-main-1.png); + background-position: -1092px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_ghostwhite { + background-image: url(spritesmith-main-1.png); + background-position: -1117px -1198px; + width: 60px; + height: 60px; +} +.hair_base_10_green { + background-image: url(spritesmith-main-1.png); + background-position: -1183px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_green { + background-image: url(spritesmith-main-1.png); + background-position: -1208px -1198px; + width: 60px; + height: 60px; +} +.hair_base_10_halloween { + background-image: url(spritesmith-main-1.png); + background-position: -1274px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_halloween { + background-image: url(spritesmith-main-1.png); + background-position: -1299px -15px; + width: 60px; + height: 60px; +} +.hair_base_10_holly { + background-image: url(spritesmith-main-1.png); + background-position: -1274px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_holly { + background-image: url(spritesmith-main-1.png); + background-position: -1299px -106px; + width: 60px; + height: 60px; +} +.hair_base_10_hollygreen { + background-image: url(spritesmith-main-1.png); + background-position: -1274px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_hollygreen { + background-image: url(spritesmith-main-1.png); + background-position: -1299px -197px; + width: 60px; + height: 60px; +} +.hair_base_10_midnight { + background-image: url(spritesmith-main-1.png); + background-position: -1274px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_midnight { + background-image: url(spritesmith-main-1.png); + background-position: -1299px -288px; + width: 60px; + height: 60px; +} +.hair_base_10_pblue { + background-image: url(spritesmith-main-1.png); + background-position: -1274px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_pblue { + background-image: url(spritesmith-main-1.png); + background-position: -1299px -379px; + width: 60px; + height: 60px; +} +.hair_base_10_pblue2 { + background-image: url(spritesmith-main-1.png); + background-position: -1274px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_pblue2 { + background-image: url(spritesmith-main-1.png); + background-position: -1299px -470px; + width: 60px; + height: 60px; +} +.hair_base_10_peppermint { + background-image: url(spritesmith-main-1.png); + background-position: -1274px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_peppermint { + background-image: url(spritesmith-main-1.png); + background-position: -1299px -561px; + width: 60px; + height: 60px; +} +.hair_base_10_pgreen { + background-image: url(spritesmith-main-1.png); + background-position: -1274px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_pgreen { + background-image: url(spritesmith-main-1.png); + background-position: -1299px -652px; + width: 60px; + height: 60px; +} +.hair_base_10_pgreen2 { + background-image: url(spritesmith-main-1.png); + background-position: -1274px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_pgreen2 { + background-image: url(spritesmith-main-1.png); + background-position: -1299px -743px; + width: 60px; + height: 60px; +} +.hair_base_10_porange { + background-image: url(spritesmith-main-1.png); + background-position: -1274px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_porange { + background-image: url(spritesmith-main-1.png); + background-position: -1299px -834px; + width: 60px; + height: 60px; +} +.hair_base_10_porange2 { + background-image: url(spritesmith-main-1.png); + background-position: -1274px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_porange2 { + background-image: url(spritesmith-main-1.png); + background-position: -1299px -925px; + width: 60px; + height: 60px; +} +.hair_base_10_ppink { + background-image: url(spritesmith-main-1.png); + background-position: -1274px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_ppink { + background-image: url(spritesmith-main-1.png); + background-position: -1299px -1016px; + width: 60px; + height: 60px; +} +.hair_base_10_ppink2 { + background-image: url(spritesmith-main-1.png); + background-position: -1274px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_ppink2 { + background-image: url(spritesmith-main-1.png); + background-position: -1299px -1107px; + width: 60px; + height: 60px; +} +.hair_base_10_ppurple { + background-image: url(spritesmith-main-1.png); + background-position: -1274px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_ppurple { + background-image: url(spritesmith-main-1.png); + background-position: -1299px -1198px; + width: 60px; + height: 60px; +} +.hair_base_10_ppurple2 { + background-image: url(spritesmith-main-1.png); + background-position: 0px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_ppurple2 { + background-image: url(spritesmith-main-1.png); + background-position: -25px -1289px; + width: 60px; + height: 60px; +} +.hair_base_10_pumpkin { + background-image: url(spritesmith-main-1.png); + background-position: -91px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_pumpkin { + background-image: url(spritesmith-main-1.png); + background-position: -116px -1289px; + width: 60px; + height: 60px; +} +.hair_base_10_purple { + background-image: url(spritesmith-main-1.png); + background-position: -182px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_purple { + background-image: url(spritesmith-main-1.png); + background-position: -207px -1289px; + width: 60px; + height: 60px; +} +.hair_base_10_pyellow { + background-image: url(spritesmith-main-1.png); + background-position: -273px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_pyellow { + background-image: url(spritesmith-main-1.png); + background-position: -298px -1289px; + width: 60px; + height: 60px; +} +.hair_base_10_pyellow2 { + background-image: url(spritesmith-main-1.png); + background-position: -364px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_pyellow2 { + background-image: url(spritesmith-main-1.png); + background-position: -389px -1289px; + width: 60px; + height: 60px; +} +.hair_base_10_rainbow { + background-image: url(spritesmith-main-1.png); + background-position: -455px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_rainbow { + background-image: url(spritesmith-main-1.png); + background-position: -480px -1289px; + width: 60px; + height: 60px; +} +.hair_base_10_red { + background-image: url(spritesmith-main-1.png); + background-position: -546px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_red { + background-image: url(spritesmith-main-1.png); + background-position: -571px -1289px; + width: 60px; + height: 60px; +} +.hair_base_10_snowy { + background-image: url(spritesmith-main-1.png); + background-position: -637px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_snowy { + background-image: url(spritesmith-main-1.png); + background-position: -662px -1289px; + width: 60px; + height: 60px; +} +.hair_base_10_white { background-image: url(spritesmith-main-1.png); background-position: -819px -1274px; width: 90px; height: 90px; } -.customize-option.hair_base_12_holly { +.customize-option.hair_base_10_white { background-image: url(spritesmith-main-1.png); background-position: -844px -1289px; width: 60px; height: 60px; } -.hair_base_12_hollygreen { +.hair_base_10_winternight { background-image: url(spritesmith-main-1.png); background-position: -910px -1274px; width: 90px; height: 90px; } -.customize-option.hair_base_12_hollygreen { +.customize-option.hair_base_10_winternight { background-image: url(spritesmith-main-1.png); background-position: -935px -1289px; width: 60px; height: 60px; } -.hair_base_12_midnight { +.hair_base_10_winterstar { background-image: url(spritesmith-main-1.png); background-position: -1001px -1274px; width: 90px; height: 90px; } -.customize-option.hair_base_12_midnight { +.customize-option.hair_base_10_winterstar { background-image: url(spritesmith-main-1.png); background-position: -1026px -1289px; width: 60px; height: 60px; } -.hair_base_12_pblue { +.hair_base_10_yellow { background-image: url(spritesmith-main-1.png); background-position: -1092px -1274px; width: 90px; height: 90px; } -.customize-option.hair_base_12_pblue { +.customize-option.hair_base_10_yellow { background-image: url(spritesmith-main-1.png); background-position: -1117px -1289px; width: 60px; height: 60px; } -.hair_base_12_pblue2 { +.hair_base_10_zombie { background-image: url(spritesmith-main-1.png); background-position: -1183px -1274px; width: 90px; height: 90px; } -.customize-option.hair_base_12_pblue2 { +.customize-option.hair_base_10_zombie { background-image: url(spritesmith-main-1.png); background-position: -1208px -1289px; width: 60px; height: 60px; } -.hair_base_12_peppermint { - background-image: url(spritesmith-main-1.png); - background-position: -1274px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_12_peppermint { - background-image: url(spritesmith-main-1.png); - background-position: -1299px -1289px; - width: 60px; - height: 60px; -} -.hair_base_12_pgreen { - background-image: url(spritesmith-main-1.png); - background-position: -1365px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_12_pgreen { - background-image: url(spritesmith-main-1.png); - background-position: -1390px -15px; - width: 60px; - height: 60px; -} -.hair_base_12_pgreen2 { - background-image: url(spritesmith-main-1.png); - background-position: -1365px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_12_pgreen2 { - background-image: url(spritesmith-main-1.png); - background-position: -1390px -106px; - width: 60px; - height: 60px; -} -.hair_base_12_porange { - background-image: url(spritesmith-main-1.png); - background-position: -1365px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_12_porange { - background-image: url(spritesmith-main-1.png); - background-position: -1390px -197px; - width: 60px; - height: 60px; -} -.hair_base_12_porange2 { - background-image: url(spritesmith-main-1.png); - background-position: -1365px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_12_porange2 { - background-image: url(spritesmith-main-1.png); - background-position: -1390px -288px; - width: 60px; - height: 60px; -} -.hair_base_12_ppink { - background-image: url(spritesmith-main-1.png); - background-position: -1365px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_12_ppink { - background-image: url(spritesmith-main-1.png); - background-position: -1390px -379px; - width: 60px; - height: 60px; -} -.hair_base_12_ppink2 { - background-image: url(spritesmith-main-1.png); - background-position: -1365px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_12_ppink2 { - background-image: url(spritesmith-main-1.png); - background-position: -1390px -470px; - width: 60px; - height: 60px; -} -.hair_base_12_ppurple { - background-image: url(spritesmith-main-1.png); - background-position: -1365px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_12_ppurple { - background-image: url(spritesmith-main-1.png); - background-position: -1390px -561px; - width: 60px; - height: 60px; -} -.hair_base_12_ppurple2 { - background-image: url(spritesmith-main-1.png); - background-position: -1365px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_12_ppurple2 { - background-image: url(spritesmith-main-1.png); - background-position: -1390px -652px; - width: 60px; - height: 60px; -} -.hair_base_12_pumpkin { - background-image: url(spritesmith-main-1.png); - background-position: -1365px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_12_pumpkin { - background-image: url(spritesmith-main-1.png); - background-position: -1390px -743px; - width: 60px; - height: 60px; -} -.hair_base_12_purple { - background-image: url(spritesmith-main-1.png); - background-position: -1365px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_12_purple { - background-image: url(spritesmith-main-1.png); - background-position: -1390px -834px; - width: 60px; - height: 60px; -} -.hair_base_12_pyellow { - background-image: url(spritesmith-main-1.png); - background-position: -1365px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_12_pyellow { - background-image: url(spritesmith-main-1.png); - background-position: -1390px -925px; - width: 60px; - height: 60px; -} -.hair_base_12_pyellow2 { - background-image: url(spritesmith-main-1.png); - background-position: -1365px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_12_pyellow2 { - background-image: url(spritesmith-main-1.png); - background-position: -1390px -1016px; - width: 60px; - height: 60px; -} -.hair_base_12_rainbow { - background-image: url(spritesmith-main-1.png); - background-position: -1365px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_12_rainbow { - background-image: url(spritesmith-main-1.png); - background-position: -1390px -1107px; - width: 60px; - height: 60px; -} -.hair_base_12_red { - background-image: url(spritesmith-main-1.png); - background-position: -1365px -1183px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_12_red { - background-image: url(spritesmith-main-1.png); - background-position: -1390px -1198px; - width: 60px; - height: 60px; -} -.hair_base_12_snowy { - background-image: url(spritesmith-main-1.png); - background-position: -1365px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_12_snowy { - background-image: url(spritesmith-main-1.png); - background-position: -1390px -1289px; - width: 60px; - height: 60px; -} -.hair_base_12_white { - background-image: url(spritesmith-main-1.png); - background-position: 0px -1365px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_12_white { - background-image: url(spritesmith-main-1.png); - background-position: -25px -1380px; - width: 60px; - height: 60px; -} -.hair_base_12_winternight { - background-image: url(spritesmith-main-1.png); - background-position: -91px -1365px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_12_winternight { - background-image: url(spritesmith-main-1.png); - background-position: -116px -1380px; - width: 60px; - height: 60px; -} -.hair_base_12_winterstar { - background-image: url(spritesmith-main-1.png); - background-position: -182px -1365px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_12_winterstar { - background-image: url(spritesmith-main-1.png); - background-position: -207px -1380px; - width: 60px; - height: 60px; -} -.hair_base_12_yellow { - background-image: url(spritesmith-main-1.png); - background-position: -273px -1365px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_12_yellow { - background-image: url(spritesmith-main-1.png); - background-position: -298px -1380px; - width: 60px; - height: 60px; -} -.hair_base_12_zombie { - background-image: url(spritesmith-main-1.png); - background-position: -364px -1365px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_12_zombie { - background-image: url(spritesmith-main-1.png); - background-position: -389px -1380px; - width: 60px; - height: 60px; -} -.hair_base_13_TRUred { - background-image: url(spritesmith-main-1.png); - background-position: -455px -1365px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_13_TRUred { - background-image: url(spritesmith-main-1.png); - background-position: -480px -1380px; - width: 60px; - height: 60px; -} -.hair_base_13_aurora { - background-image: url(spritesmith-main-1.png); - background-position: -546px -1365px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_13_aurora { - background-image: url(spritesmith-main-1.png); - background-position: -571px -1380px; - width: 60px; - height: 60px; -} -.hair_base_13_black { - background-image: url(spritesmith-main-1.png); - background-position: -637px -1365px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_13_black { - background-image: url(spritesmith-main-1.png); - background-position: -662px -1380px; - width: 60px; - height: 60px; -} -.hair_base_13_blond { - background-image: url(spritesmith-main-1.png); - background-position: -728px -1365px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_13_blond { - background-image: url(spritesmith-main-1.png); - background-position: -753px -1380px; - width: 60px; - height: 60px; -} -.hair_base_13_blue { - background-image: url(spritesmith-main-1.png); - background-position: -819px -1365px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_13_blue { - background-image: url(spritesmith-main-1.png); - background-position: -844px -1380px; - width: 60px; - height: 60px; -} -.hair_base_13_brown { - background-image: url(spritesmith-main-1.png); - background-position: -910px -1365px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_13_brown { - background-image: url(spritesmith-main-1.png); - background-position: -935px -1380px; - width: 60px; - height: 60px; -} -.hair_base_13_candycane { - background-image: url(spritesmith-main-1.png); - background-position: -1001px -1365px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_13_candycane { - background-image: url(spritesmith-main-1.png); - background-position: -1026px -1380px; - width: 60px; - height: 60px; -} -.hair_base_13_candycorn { - background-image: url(spritesmith-main-1.png); - background-position: -1092px -1365px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_13_candycorn { - background-image: url(spritesmith-main-1.png); - background-position: -1117px -1380px; - width: 60px; - height: 60px; -} -.hair_base_13_festive { - background-image: url(spritesmith-main-1.png); - background-position: -1183px -1365px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_13_festive { - background-image: url(spritesmith-main-1.png); - background-position: -1208px -1380px; - width: 60px; - height: 60px; -} -.hair_base_13_frost { - background-image: url(spritesmith-main-1.png); - background-position: -1274px -1365px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_13_frost { - background-image: url(spritesmith-main-1.png); - background-position: -1299px -1380px; - width: 60px; - height: 60px; -} -.hair_base_13_ghostwhite { - background-image: url(spritesmith-main-1.png); - background-position: -1365px -1365px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_13_ghostwhite { - background-image: url(spritesmith-main-1.png); - background-position: -1390px -1380px; - width: 60px; - height: 60px; -} -.hair_base_13_green { - background-image: url(spritesmith-main-1.png); - background-position: -1456px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_13_green { - background-image: url(spritesmith-main-1.png); - background-position: -1481px -15px; - width: 60px; - height: 60px; -} -.hair_base_13_halloween { +.hair_base_11_TRUred { background-image: url(spritesmith-main-1.png); background-position: -1456px -91px; width: 90px; height: 90px; } -.customize-option.hair_base_13_halloween { +.customize-option.hair_base_11_TRUred { background-image: url(spritesmith-main-1.png); background-position: -1481px -106px; width: 60px; height: 60px; } -.hair_base_13_holly { +.hair_base_11_aurora { + background-image: url(spritesmith-main-1.png); + background-position: -1274px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_aurora { + background-image: url(spritesmith-main-1.png); + background-position: -1299px -1289px; + width: 60px; + height: 60px; +} +.hair_base_11_black { + background-image: url(spritesmith-main-1.png); + background-position: -1365px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_black { + background-image: url(spritesmith-main-1.png); + background-position: -1390px -15px; + width: 60px; + height: 60px; +} +.hair_base_11_blond { + background-image: url(spritesmith-main-1.png); + background-position: -1365px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_blond { + background-image: url(spritesmith-main-1.png); + background-position: -1390px -106px; + width: 60px; + height: 60px; +} +.hair_base_11_blue { + background-image: url(spritesmith-main-1.png); + background-position: -1365px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_blue { + background-image: url(spritesmith-main-1.png); + background-position: -1390px -197px; + width: 60px; + height: 60px; +} +.hair_base_11_brown { + background-image: url(spritesmith-main-1.png); + background-position: -1365px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_brown { + background-image: url(spritesmith-main-1.png); + background-position: -1390px -288px; + width: 60px; + height: 60px; +} +.hair_base_11_candycane { + background-image: url(spritesmith-main-1.png); + background-position: -1365px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_candycane { + background-image: url(spritesmith-main-1.png); + background-position: -1390px -379px; + width: 60px; + height: 60px; +} +.hair_base_11_candycorn { + background-image: url(spritesmith-main-1.png); + background-position: -1365px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_candycorn { + background-image: url(spritesmith-main-1.png); + background-position: -1390px -470px; + width: 60px; + height: 60px; +} +.hair_base_11_festive { + background-image: url(spritesmith-main-1.png); + background-position: -1365px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_festive { + background-image: url(spritesmith-main-1.png); + background-position: -1390px -561px; + width: 60px; + height: 60px; +} +.hair_base_11_frost { + background-image: url(spritesmith-main-1.png); + background-position: -1365px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_frost { + background-image: url(spritesmith-main-1.png); + background-position: -1390px -652px; + width: 60px; + height: 60px; +} +.hair_base_11_ghostwhite { + background-image: url(spritesmith-main-1.png); + background-position: -1365px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_ghostwhite { + background-image: url(spritesmith-main-1.png); + background-position: -1390px -743px; + width: 60px; + height: 60px; +} +.hair_base_11_green { + background-image: url(spritesmith-main-1.png); + background-position: -1365px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_green { + background-image: url(spritesmith-main-1.png); + background-position: -1390px -834px; + width: 60px; + height: 60px; +} +.hair_base_11_halloween { + background-image: url(spritesmith-main-1.png); + background-position: -1365px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_halloween { + background-image: url(spritesmith-main-1.png); + background-position: -1390px -925px; + width: 60px; + height: 60px; +} +.hair_base_11_holly { + background-image: url(spritesmith-main-1.png); + background-position: -1365px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_holly { + background-image: url(spritesmith-main-1.png); + background-position: -1390px -1016px; + width: 60px; + height: 60px; +} +.hair_base_11_hollygreen { + background-image: url(spritesmith-main-1.png); + background-position: -1365px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_hollygreen { + background-image: url(spritesmith-main-1.png); + background-position: -1390px -1107px; + width: 60px; + height: 60px; +} +.hair_base_11_midnight { + background-image: url(spritesmith-main-1.png); + background-position: -1365px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_midnight { + background-image: url(spritesmith-main-1.png); + background-position: -1390px -1198px; + width: 60px; + height: 60px; +} +.hair_base_11_pblue { + background-image: url(spritesmith-main-1.png); + background-position: -1365px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_pblue { + background-image: url(spritesmith-main-1.png); + background-position: -1390px -1289px; + width: 60px; + height: 60px; +} +.hair_base_11_pblue2 { + background-image: url(spritesmith-main-1.png); + background-position: 0px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_pblue2 { + background-image: url(spritesmith-main-1.png); + background-position: -25px -1380px; + width: 60px; + height: 60px; +} +.hair_base_11_peppermint { + background-image: url(spritesmith-main-1.png); + background-position: -91px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_peppermint { + background-image: url(spritesmith-main-1.png); + background-position: -116px -1380px; + width: 60px; + height: 60px; +} +.hair_base_11_pgreen { + background-image: url(spritesmith-main-1.png); + background-position: -182px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_pgreen { + background-image: url(spritesmith-main-1.png); + background-position: -207px -1380px; + width: 60px; + height: 60px; +} +.hair_base_11_pgreen2 { + background-image: url(spritesmith-main-1.png); + background-position: -273px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_pgreen2 { + background-image: url(spritesmith-main-1.png); + background-position: -298px -1380px; + width: 60px; + height: 60px; +} +.hair_base_11_porange { + background-image: url(spritesmith-main-1.png); + background-position: -364px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_porange { + background-image: url(spritesmith-main-1.png); + background-position: -389px -1380px; + width: 60px; + height: 60px; +} +.hair_base_11_porange2 { + background-image: url(spritesmith-main-1.png); + background-position: -455px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_porange2 { + background-image: url(spritesmith-main-1.png); + background-position: -480px -1380px; + width: 60px; + height: 60px; +} +.hair_base_11_ppink { + background-image: url(spritesmith-main-1.png); + background-position: -546px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_ppink { + background-image: url(spritesmith-main-1.png); + background-position: -571px -1380px; + width: 60px; + height: 60px; +} +.hair_base_11_ppink2 { + background-image: url(spritesmith-main-1.png); + background-position: -637px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_ppink2 { + background-image: url(spritesmith-main-1.png); + background-position: -662px -1380px; + width: 60px; + height: 60px; +} +.hair_base_11_ppurple { + background-image: url(spritesmith-main-1.png); + background-position: -728px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_ppurple { + background-image: url(spritesmith-main-1.png); + background-position: -753px -1380px; + width: 60px; + height: 60px; +} +.hair_base_11_ppurple2 { + background-image: url(spritesmith-main-1.png); + background-position: -819px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_ppurple2 { + background-image: url(spritesmith-main-1.png); + background-position: -844px -1380px; + width: 60px; + height: 60px; +} +.hair_base_11_pumpkin { + background-image: url(spritesmith-main-1.png); + background-position: -910px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_pumpkin { + background-image: url(spritesmith-main-1.png); + background-position: -935px -1380px; + width: 60px; + height: 60px; +} +.hair_base_11_purple { + background-image: url(spritesmith-main-1.png); + background-position: -1001px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_purple { + background-image: url(spritesmith-main-1.png); + background-position: -1026px -1380px; + width: 60px; + height: 60px; +} +.hair_base_11_pyellow { + background-image: url(spritesmith-main-1.png); + background-position: -1092px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_pyellow { + background-image: url(spritesmith-main-1.png); + background-position: -1117px -1380px; + width: 60px; + height: 60px; +} +.hair_base_11_pyellow2 { + background-image: url(spritesmith-main-1.png); + background-position: -1183px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_pyellow2 { + background-image: url(spritesmith-main-1.png); + background-position: -1208px -1380px; + width: 60px; + height: 60px; +} +.hair_base_11_rainbow { + background-image: url(spritesmith-main-1.png); + background-position: -1274px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_rainbow { + background-image: url(spritesmith-main-1.png); + background-position: -1299px -1380px; + width: 60px; + height: 60px; +} +.hair_base_11_red { + background-image: url(spritesmith-main-1.png); + background-position: -1365px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_red { + background-image: url(spritesmith-main-1.png); + background-position: -1390px -1380px; + width: 60px; + height: 60px; +} +.hair_base_11_snowy { + background-image: url(spritesmith-main-1.png); + background-position: -1456px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_snowy { + background-image: url(spritesmith-main-1.png); + background-position: -1481px -15px; + width: 60px; + height: 60px; +} +.hair_base_11_white { background-image: url(spritesmith-main-1.png); background-position: -1456px -182px; width: 90px; height: 90px; } -.customize-option.hair_base_13_holly { +.customize-option.hair_base_11_white { background-image: url(spritesmith-main-1.png); background-position: -1481px -197px; width: 60px; height: 60px; } -.hair_base_13_hollygreen { +.hair_base_11_winternight { background-image: url(spritesmith-main-1.png); background-position: -1456px -273px; width: 90px; height: 90px; } -.customize-option.hair_base_13_hollygreen { +.customize-option.hair_base_11_winternight { background-image: url(spritesmith-main-1.png); background-position: -1481px -288px; width: 60px; height: 60px; } -.hair_base_13_midnight { +.hair_base_11_winterstar { background-image: url(spritesmith-main-1.png); background-position: -1456px -364px; width: 90px; height: 90px; } -.customize-option.hair_base_13_midnight { +.customize-option.hair_base_11_winterstar { background-image: url(spritesmith-main-1.png); background-position: -1481px -379px; width: 60px; height: 60px; } -.hair_base_13_pblue { +.hair_base_11_yellow { background-image: url(spritesmith-main-1.png); background-position: -1456px -455px; width: 90px; height: 90px; } -.customize-option.hair_base_13_pblue { +.customize-option.hair_base_11_yellow { background-image: url(spritesmith-main-1.png); background-position: -1481px -470px; width: 60px; height: 60px; } -.hair_base_13_pblue2 { +.hair_base_11_zombie { background-image: url(spritesmith-main-1.png); background-position: -1456px -546px; width: 90px; height: 90px; } -.customize-option.hair_base_13_pblue2 { +.customize-option.hair_base_11_zombie { background-image: url(spritesmith-main-1.png); background-position: -1481px -561px; width: 60px; height: 60px; } -.hair_base_13_peppermint { - background-image: url(spritesmith-main-1.png); - background-position: -1456px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_13_peppermint { - background-image: url(spritesmith-main-1.png); - background-position: -1481px -652px; - width: 60px; - height: 60px; -} -.hair_base_13_pgreen { - background-image: url(spritesmith-main-1.png); - background-position: -1456px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_13_pgreen { - background-image: url(spritesmith-main-1.png); - background-position: -1481px -743px; - width: 60px; - height: 60px; -} -.hair_base_13_pgreen2 { - background-image: url(spritesmith-main-1.png); - background-position: -1456px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_13_pgreen2 { - background-image: url(spritesmith-main-1.png); - background-position: -1481px -834px; - width: 60px; - height: 60px; -} -.hair_base_13_porange { - background-image: url(spritesmith-main-1.png); - background-position: -1456px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_13_porange { - background-image: url(spritesmith-main-1.png); - background-position: -1481px -925px; - width: 60px; - height: 60px; -} -.hair_base_13_porange2 { - background-image: url(spritesmith-main-1.png); - background-position: -1456px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_13_porange2 { - background-image: url(spritesmith-main-1.png); - background-position: -1481px -1016px; - width: 60px; - height: 60px; -} -.hair_base_13_ppink { - background-image: url(spritesmith-main-1.png); - background-position: -1456px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_13_ppink { - background-image: url(spritesmith-main-1.png); - background-position: -1481px -1107px; - width: 60px; - height: 60px; -} -.hair_base_13_ppink2 { - background-image: url(spritesmith-main-1.png); - background-position: -1456px -1183px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_13_ppink2 { - background-image: url(spritesmith-main-1.png); - background-position: -1481px -1198px; - width: 60px; - height: 60px; -} -.hair_base_13_ppurple { - background-image: url(spritesmith-main-1.png); - background-position: -1456px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_13_ppurple { - background-image: url(spritesmith-main-1.png); - background-position: -1481px -1289px; - width: 60px; - height: 60px; -} -.hair_base_13_ppurple2 { - background-image: url(spritesmith-main-1.png); - background-position: -1456px -1365px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_13_ppurple2 { - background-image: url(spritesmith-main-1.png); - background-position: -1481px -1380px; - width: 60px; - height: 60px; -} -.hair_base_13_pumpkin { - background-image: url(spritesmith-main-1.png); - background-position: 0px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_13_pumpkin { - background-image: url(spritesmith-main-1.png); - background-position: -25px -1471px; - width: 60px; - height: 60px; -} -.hair_base_13_purple { - background-image: url(spritesmith-main-1.png); - background-position: -91px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_13_purple { - background-image: url(spritesmith-main-1.png); - background-position: -116px -1471px; - width: 60px; - height: 60px; -} -.hair_base_13_pyellow { - background-image: url(spritesmith-main-1.png); - background-position: -182px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_13_pyellow { - background-image: url(spritesmith-main-1.png); - background-position: -207px -1471px; - width: 60px; - height: 60px; -} -.hair_base_13_pyellow2 { - background-image: url(spritesmith-main-1.png); - background-position: -273px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_13_pyellow2 { - background-image: url(spritesmith-main-1.png); - background-position: -298px -1471px; - width: 60px; - height: 60px; -} -.hair_base_13_rainbow { - background-image: url(spritesmith-main-1.png); - background-position: -364px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_13_rainbow { - background-image: url(spritesmith-main-1.png); - background-position: -389px -1471px; - width: 60px; - height: 60px; -} -.hair_base_13_red { - background-image: url(spritesmith-main-1.png); - background-position: -455px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_13_red { - background-image: url(spritesmith-main-1.png); - background-position: -480px -1471px; - width: 60px; - height: 60px; -} -.hair_base_13_snowy { - background-image: url(spritesmith-main-1.png); - background-position: -546px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_13_snowy { - background-image: url(spritesmith-main-1.png); - background-position: -571px -1471px; - width: 60px; - height: 60px; -} -.hair_base_13_white { - background-image: url(spritesmith-main-1.png); - background-position: -637px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_13_white { - background-image: url(spritesmith-main-1.png); - background-position: -662px -1471px; - width: 60px; - height: 60px; -} -.hair_base_13_winternight { - background-image: url(spritesmith-main-1.png); - background-position: -728px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_13_winternight { - background-image: url(spritesmith-main-1.png); - background-position: -753px -1471px; - width: 60px; - height: 60px; -} -.hair_base_13_winterstar { - background-image: url(spritesmith-main-1.png); - background-position: -819px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_13_winterstar { - background-image: url(spritesmith-main-1.png); - background-position: -844px -1471px; - width: 60px; - height: 60px; -} -.hair_base_13_yellow { - background-image: url(spritesmith-main-1.png); - background-position: -910px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_13_yellow { - background-image: url(spritesmith-main-1.png); - background-position: -935px -1471px; - width: 60px; - height: 60px; -} -.hair_base_13_zombie { - background-image: url(spritesmith-main-1.png); - background-position: -1001px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_13_zombie { - background-image: url(spritesmith-main-1.png); - background-position: -1026px -1471px; - width: 60px; - height: 60px; -} -.hair_base_14_TRUred { - background-image: url(spritesmith-main-1.png); - background-position: -1092px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_14_TRUred { - background-image: url(spritesmith-main-1.png); - background-position: -1117px -1471px; - width: 60px; - height: 60px; -} -.hair_base_14_aurora { - background-image: url(spritesmith-main-1.png); - background-position: -1183px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_14_aurora { - background-image: url(spritesmith-main-1.png); - background-position: -1208px -1471px; - width: 60px; - height: 60px; -} -.hair_base_14_black { - background-image: url(spritesmith-main-1.png); - background-position: -1274px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_14_black { - background-image: url(spritesmith-main-1.png); - background-position: -1299px -1471px; - width: 60px; - height: 60px; -} -.hair_base_14_blond { - background-image: url(spritesmith-main-1.png); - background-position: -1365px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_14_blond { - background-image: url(spritesmith-main-1.png); - background-position: -1390px -1471px; - width: 60px; - height: 60px; -} -.hair_base_14_blue { - background-image: url(spritesmith-main-1.png); - background-position: -1456px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_14_blue { - background-image: url(spritesmith-main-1.png); - background-position: -1481px -1471px; - width: 60px; - height: 60px; -} -.hair_base_14_brown { - background-image: url(spritesmith-main-1.png); - background-position: -1547px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_14_brown { - background-image: url(spritesmith-main-1.png); - background-position: -1572px -15px; - width: 60px; - height: 60px; -} -.hair_base_14_candycane { - background-image: url(spritesmith-main-1.png); - background-position: -1547px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_14_candycane { - background-image: url(spritesmith-main-1.png); - background-position: -1572px -106px; - width: 60px; - height: 60px; -} -.hair_base_14_candycorn { - background-image: url(spritesmith-main-1.png); - background-position: -1547px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_14_candycorn { - background-image: url(spritesmith-main-1.png); - background-position: -1572px -197px; - width: 60px; - height: 60px; -} -.hair_base_14_festive { - background-image: url(spritesmith-main-1.png); - background-position: -1547px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_14_festive { - background-image: url(spritesmith-main-1.png); - background-position: -1572px -288px; - width: 60px; - height: 60px; -} -.hair_base_14_frost { - background-image: url(spritesmith-main-1.png); - background-position: -1547px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_14_frost { - background-image: url(spritesmith-main-1.png); - background-position: -1572px -379px; - width: 60px; - height: 60px; -} -.hair_base_14_ghostwhite { - background-image: url(spritesmith-main-1.png); - background-position: -1547px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_14_ghostwhite { - background-image: url(spritesmith-main-1.png); - background-position: -1572px -470px; - width: 60px; - height: 60px; -} -.hair_base_14_green { - background-image: url(spritesmith-main-1.png); - background-position: -1547px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_14_green { - background-image: url(spritesmith-main-1.png); - background-position: -1572px -561px; - width: 60px; - height: 60px; -} -.hair_base_14_halloween { +.hair_base_12_TRUred { background-image: url(spritesmith-main-1.png); background-position: -1547px -637px; width: 90px; height: 90px; } -.customize-option.hair_base_14_halloween { +.customize-option.hair_base_12_TRUred { background-image: url(spritesmith-main-1.png); background-position: -1572px -652px; width: 60px; height: 60px; } -.hair_base_14_holly { +.hair_base_12_aurora { + background-image: url(spritesmith-main-1.png); + background-position: -1456px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_aurora { + background-image: url(spritesmith-main-1.png); + background-position: -1481px -652px; + width: 60px; + height: 60px; +} +.hair_base_12_black { + background-image: url(spritesmith-main-1.png); + background-position: -1456px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_black { + background-image: url(spritesmith-main-1.png); + background-position: -1481px -743px; + width: 60px; + height: 60px; +} +.hair_base_12_blond { + background-image: url(spritesmith-main-1.png); + background-position: -1456px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_blond { + background-image: url(spritesmith-main-1.png); + background-position: -1481px -834px; + width: 60px; + height: 60px; +} +.hair_base_12_blue { + background-image: url(spritesmith-main-1.png); + background-position: -1456px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_blue { + background-image: url(spritesmith-main-1.png); + background-position: -1481px -925px; + width: 60px; + height: 60px; +} +.hair_base_12_brown { + background-image: url(spritesmith-main-1.png); + background-position: -1456px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_brown { + background-image: url(spritesmith-main-1.png); + background-position: -1481px -1016px; + width: 60px; + height: 60px; +} +.hair_base_12_candycane { + background-image: url(spritesmith-main-1.png); + background-position: -1456px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_candycane { + background-image: url(spritesmith-main-1.png); + background-position: -1481px -1107px; + width: 60px; + height: 60px; +} +.hair_base_12_candycorn { + background-image: url(spritesmith-main-1.png); + background-position: -1456px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_candycorn { + background-image: url(spritesmith-main-1.png); + background-position: -1481px -1198px; + width: 60px; + height: 60px; +} +.hair_base_12_festive { + background-image: url(spritesmith-main-1.png); + background-position: -1456px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_festive { + background-image: url(spritesmith-main-1.png); + background-position: -1481px -1289px; + width: 60px; + height: 60px; +} +.hair_base_12_frost { + background-image: url(spritesmith-main-1.png); + background-position: -1456px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_frost { + background-image: url(spritesmith-main-1.png); + background-position: -1481px -1380px; + width: 60px; + height: 60px; +} +.hair_base_12_ghostwhite { + background-image: url(spritesmith-main-1.png); + background-position: 0px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_ghostwhite { + background-image: url(spritesmith-main-1.png); + background-position: -25px -1471px; + width: 60px; + height: 60px; +} +.hair_base_12_green { + background-image: url(spritesmith-main-1.png); + background-position: -91px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_green { + background-image: url(spritesmith-main-1.png); + background-position: -116px -1471px; + width: 60px; + height: 60px; +} +.hair_base_12_halloween { + background-image: url(spritesmith-main-1.png); + background-position: -182px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_halloween { + background-image: url(spritesmith-main-1.png); + background-position: -207px -1471px; + width: 60px; + height: 60px; +} +.hair_base_12_holly { + background-image: url(spritesmith-main-1.png); + background-position: -273px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_holly { + background-image: url(spritesmith-main-1.png); + background-position: -298px -1471px; + width: 60px; + height: 60px; +} +.hair_base_12_hollygreen { + background-image: url(spritesmith-main-1.png); + background-position: -364px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_hollygreen { + background-image: url(spritesmith-main-1.png); + background-position: -389px -1471px; + width: 60px; + height: 60px; +} +.hair_base_12_midnight { + background-image: url(spritesmith-main-1.png); + background-position: -455px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_midnight { + background-image: url(spritesmith-main-1.png); + background-position: -480px -1471px; + width: 60px; + height: 60px; +} +.hair_base_12_pblue { + background-image: url(spritesmith-main-1.png); + background-position: -546px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_pblue { + background-image: url(spritesmith-main-1.png); + background-position: -571px -1471px; + width: 60px; + height: 60px; +} +.hair_base_12_pblue2 { + background-image: url(spritesmith-main-1.png); + background-position: -637px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_pblue2 { + background-image: url(spritesmith-main-1.png); + background-position: -662px -1471px; + width: 60px; + height: 60px; +} +.hair_base_12_peppermint { + background-image: url(spritesmith-main-1.png); + background-position: -728px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_peppermint { + background-image: url(spritesmith-main-1.png); + background-position: -753px -1471px; + width: 60px; + height: 60px; +} +.hair_base_12_pgreen { + background-image: url(spritesmith-main-1.png); + background-position: -819px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_pgreen { + background-image: url(spritesmith-main-1.png); + background-position: -844px -1471px; + width: 60px; + height: 60px; +} +.hair_base_12_pgreen2 { + background-image: url(spritesmith-main-1.png); + background-position: -910px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_pgreen2 { + background-image: url(spritesmith-main-1.png); + background-position: -935px -1471px; + width: 60px; + height: 60px; +} +.hair_base_12_porange { + background-image: url(spritesmith-main-1.png); + background-position: -1001px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_porange { + background-image: url(spritesmith-main-1.png); + background-position: -1026px -1471px; + width: 60px; + height: 60px; +} +.hair_base_12_porange2 { + background-image: url(spritesmith-main-1.png); + background-position: -1092px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_porange2 { + background-image: url(spritesmith-main-1.png); + background-position: -1117px -1471px; + width: 60px; + height: 60px; +} +.hair_base_12_ppink { + background-image: url(spritesmith-main-1.png); + background-position: -1183px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_ppink { + background-image: url(spritesmith-main-1.png); + background-position: -1208px -1471px; + width: 60px; + height: 60px; +} +.hair_base_12_ppink2 { + background-image: url(spritesmith-main-1.png); + background-position: -1274px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_ppink2 { + background-image: url(spritesmith-main-1.png); + background-position: -1299px -1471px; + width: 60px; + height: 60px; +} +.hair_base_12_ppurple { + background-image: url(spritesmith-main-1.png); + background-position: -1365px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_ppurple { + background-image: url(spritesmith-main-1.png); + background-position: -1390px -1471px; + width: 60px; + height: 60px; +} +.hair_base_12_ppurple2 { + background-image: url(spritesmith-main-1.png); + background-position: -1456px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_ppurple2 { + background-image: url(spritesmith-main-1.png); + background-position: -1481px -1471px; + width: 60px; + height: 60px; +} +.hair_base_12_pumpkin { + background-image: url(spritesmith-main-1.png); + background-position: -1547px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_pumpkin { + background-image: url(spritesmith-main-1.png); + background-position: -1572px -15px; + width: 60px; + height: 60px; +} +.hair_base_12_purple { + background-image: url(spritesmith-main-1.png); + background-position: -1547px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_purple { + background-image: url(spritesmith-main-1.png); + background-position: -1572px -106px; + width: 60px; + height: 60px; +} +.hair_base_12_pyellow { + background-image: url(spritesmith-main-1.png); + background-position: -1547px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_pyellow { + background-image: url(spritesmith-main-1.png); + background-position: -1572px -197px; + width: 60px; + height: 60px; +} +.hair_base_12_pyellow2 { + background-image: url(spritesmith-main-1.png); + background-position: -1547px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_pyellow2 { + background-image: url(spritesmith-main-1.png); + background-position: -1572px -288px; + width: 60px; + height: 60px; +} +.hair_base_12_rainbow { + background-image: url(spritesmith-main-1.png); + background-position: -1547px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_rainbow { + background-image: url(spritesmith-main-1.png); + background-position: -1572px -379px; + width: 60px; + height: 60px; +} +.hair_base_12_red { + background-image: url(spritesmith-main-1.png); + background-position: -1547px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_red { + background-image: url(spritesmith-main-1.png); + background-position: -1572px -470px; + width: 60px; + height: 60px; +} +.hair_base_12_snowy { + background-image: url(spritesmith-main-1.png); + background-position: -1547px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_snowy { + background-image: url(spritesmith-main-1.png); + background-position: -1572px -561px; + width: 60px; + height: 60px; +} +.hair_base_12_white { background-image: url(spritesmith-main-1.png); background-position: -1547px -728px; width: 90px; height: 90px; } -.customize-option.hair_base_14_holly { +.customize-option.hair_base_12_white { background-image: url(spritesmith-main-1.png); background-position: -1572px -743px; width: 60px; height: 60px; } -.hair_base_14_hollygreen { +.hair_base_12_winternight { background-image: url(spritesmith-main-1.png); background-position: -1547px -819px; width: 90px; height: 90px; } -.customize-option.hair_base_14_hollygreen { +.customize-option.hair_base_12_winternight { background-image: url(spritesmith-main-1.png); background-position: -1572px -834px; width: 60px; height: 60px; } -.hair_base_14_midnight { +.hair_base_12_winterstar { background-image: url(spritesmith-main-1.png); background-position: -1547px -910px; width: 90px; height: 90px; } -.customize-option.hair_base_14_midnight { +.customize-option.hair_base_12_winterstar { background-image: url(spritesmith-main-1.png); background-position: -1572px -925px; width: 60px; height: 60px; } -.hair_base_14_pblue { +.hair_base_12_yellow { background-image: url(spritesmith-main-1.png); background-position: -1547px -1001px; width: 90px; height: 90px; } -.customize-option.hair_base_14_pblue { +.customize-option.hair_base_12_yellow { background-image: url(spritesmith-main-1.png); background-position: -1572px -1016px; width: 60px; height: 60px; } -.hair_base_14_pblue2 { +.hair_base_12_zombie { background-image: url(spritesmith-main-1.png); background-position: -1547px -1092px; width: 90px; height: 90px; } -.customize-option.hair_base_14_pblue2 { +.customize-option.hair_base_12_zombie { background-image: url(spritesmith-main-1.png); background-position: -1572px -1107px; width: 60px; height: 60px; } -.hair_base_14_peppermint { +.hair_base_13_aurora { background-image: url(spritesmith-main-1.png); background-position: -1547px -1183px; width: 90px; height: 90px; } -.customize-option.hair_base_14_peppermint { +.customize-option.hair_base_13_aurora { background-image: url(spritesmith-main-1.png); background-position: -1572px -1198px; width: 60px; height: 60px; } -.hair_base_14_pgreen { +.hair_base_13_black { background-image: url(spritesmith-main-1.png); background-position: -1547px -1274px; width: 90px; height: 90px; } -.customize-option.hair_base_14_pgreen { +.customize-option.hair_base_13_black { background-image: url(spritesmith-main-1.png); background-position: -1572px -1289px; width: 60px; height: 60px; } -.hair_base_14_pgreen2 { +.hair_base_13_blond { background-image: url(spritesmith-main-1.png); background-position: -1547px -1365px; width: 90px; height: 90px; } -.customize-option.hair_base_14_pgreen2 { +.customize-option.hair_base_13_blond { background-image: url(spritesmith-main-1.png); background-position: -1572px -1380px; width: 60px; height: 60px; } -.hair_base_14_porange { +.hair_base_13_blue { background-image: url(spritesmith-main-1.png); background-position: -1547px -1456px; width: 90px; height: 90px; } -.customize-option.hair_base_14_porange { +.customize-option.hair_base_13_blue { background-image: url(spritesmith-main-1.png); background-position: -1572px -1471px; width: 60px; height: 60px; } -.hair_base_14_porange2 { +.hair_base_13_brown { background-image: url(spritesmith-main-1.png); background-position: 0px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_14_porange2 { +.customize-option.hair_base_13_brown { background-image: url(spritesmith-main-1.png); background-position: -25px -1562px; width: 60px; height: 60px; } -.hair_base_14_ppink { +.hair_base_13_candycane { background-image: url(spritesmith-main-1.png); background-position: -91px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_14_ppink { +.customize-option.hair_base_13_candycane { background-image: url(spritesmith-main-1.png); background-position: -116px -1562px; width: 60px; height: 60px; } -.hair_base_14_ppink2 { +.hair_base_13_candycorn { background-image: url(spritesmith-main-1.png); background-position: -182px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_14_ppink2 { +.customize-option.hair_base_13_candycorn { background-image: url(spritesmith-main-1.png); background-position: -207px -1562px; width: 60px; height: 60px; } -.hair_base_14_ppurple { +.hair_base_13_festive { background-image: url(spritesmith-main-1.png); background-position: -273px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_14_ppurple { +.customize-option.hair_base_13_festive { background-image: url(spritesmith-main-1.png); background-position: -298px -1562px; width: 60px; height: 60px; } -.hair_base_14_ppurple2 { +.hair_base_13_frost { background-image: url(spritesmith-main-1.png); background-position: -364px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_14_ppurple2 { +.customize-option.hair_base_13_frost { background-image: url(spritesmith-main-1.png); background-position: -389px -1562px; width: 60px; height: 60px; } -.hair_base_14_pumpkin { +.hair_base_13_ghostwhite { background-image: url(spritesmith-main-1.png); background-position: -455px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_14_pumpkin { +.customize-option.hair_base_13_ghostwhite { background-image: url(spritesmith-main-1.png); background-position: -480px -1562px; width: 60px; height: 60px; } -.hair_base_14_purple { +.hair_base_13_green { background-image: url(spritesmith-main-1.png); background-position: -546px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_14_purple { +.customize-option.hair_base_13_green { background-image: url(spritesmith-main-1.png); background-position: -571px -1562px; width: 60px; height: 60px; } -.hair_base_14_pyellow { +.hair_base_13_halloween { background-image: url(spritesmith-main-1.png); background-position: -637px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_14_pyellow { +.customize-option.hair_base_13_halloween { background-image: url(spritesmith-main-1.png); background-position: -662px -1562px; width: 60px; height: 60px; } -.hair_base_14_pyellow2 { +.hair_base_13_holly { background-image: url(spritesmith-main-1.png); background-position: -728px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_14_pyellow2 { +.customize-option.hair_base_13_holly { background-image: url(spritesmith-main-1.png); background-position: -753px -1562px; width: 60px; height: 60px; } -.hair_base_14_rainbow { +.hair_base_13_hollygreen { background-image: url(spritesmith-main-1.png); background-position: -819px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_14_rainbow { +.customize-option.hair_base_13_hollygreen { background-image: url(spritesmith-main-1.png); background-position: -844px -1562px; width: 60px; height: 60px; } -.hair_base_14_red { +.hair_base_13_midnight { background-image: url(spritesmith-main-1.png); background-position: -910px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_14_red { +.customize-option.hair_base_13_midnight { background-image: url(spritesmith-main-1.png); background-position: -935px -1562px; width: 60px; height: 60px; } -.hair_base_14_snowy { +.hair_base_13_pblue { background-image: url(spritesmith-main-1.png); background-position: -1001px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_14_snowy { +.customize-option.hair_base_13_pblue { background-image: url(spritesmith-main-1.png); background-position: -1026px -1562px; width: 60px; height: 60px; } -.hair_base_14_white { +.hair_base_13_pblue2 { background-image: url(spritesmith-main-1.png); background-position: -1092px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_14_white { +.customize-option.hair_base_13_pblue2 { background-image: url(spritesmith-main-1.png); background-position: -1117px -1562px; width: 60px; height: 60px; } -.hair_base_14_winternight { +.hair_base_13_peppermint { background-image: url(spritesmith-main-1.png); background-position: -1183px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_14_winternight { +.customize-option.hair_base_13_peppermint { background-image: url(spritesmith-main-1.png); background-position: -1208px -1562px; width: 60px; height: 60px; } -.hair_base_14_winterstar { +.hair_base_13_pgreen { background-image: url(spritesmith-main-1.png); background-position: -1274px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_14_winterstar { +.customize-option.hair_base_13_pgreen { background-image: url(spritesmith-main-1.png); background-position: -1299px -1562px; width: 60px; height: 60px; } -.hair_base_14_yellow { +.hair_base_13_pgreen2 { background-image: url(spritesmith-main-1.png); background-position: -1365px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_14_yellow { +.customize-option.hair_base_13_pgreen2 { background-image: url(spritesmith-main-1.png); background-position: -1390px -1562px; width: 60px; height: 60px; } -.hair_base_14_zombie { +.hair_base_13_porange { background-image: url(spritesmith-main-1.png); background-position: -1456px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_14_zombie { +.customize-option.hair_base_13_porange { background-image: url(spritesmith-main-1.png); background-position: -1481px -1562px; width: 60px; height: 60px; } -.hair_base_1_TRUred { +.hair_base_13_porange2 { background-image: url(spritesmith-main-1.png); background-position: -1547px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_1_TRUred { +.customize-option.hair_base_13_porange2 { background-image: url(spritesmith-main-1.png); background-position: -1572px -1562px; width: 60px; height: 60px; } -.hair_base_1_aurora { +.hair_base_13_ppink { background-image: url(spritesmith-main-1.png); background-position: -1638px 0px; width: 90px; height: 90px; } -.customize-option.hair_base_1_aurora { +.customize-option.hair_base_13_ppink { background-image: url(spritesmith-main-1.png); background-position: -1663px -15px; width: 60px; height: 60px; } -.hair_base_1_black { +.hair_base_13_ppink2 { background-image: url(spritesmith-main-1.png); background-position: -1638px -91px; width: 90px; height: 90px; } -.customize-option.hair_base_1_black { +.customize-option.hair_base_13_ppink2 { background-image: url(spritesmith-main-1.png); background-position: -1663px -106px; width: 60px; height: 60px; } -.hair_base_1_blond { +.hair_base_13_ppurple { background-image: url(spritesmith-main-1.png); background-position: -1638px -182px; width: 90px; height: 90px; } -.customize-option.hair_base_1_blond { +.customize-option.hair_base_13_ppurple { background-image: url(spritesmith-main-1.png); background-position: -1663px -197px; width: 60px; height: 60px; } -.hair_base_1_blue { +.hair_base_13_ppurple2 { background-image: url(spritesmith-main-1.png); background-position: -1638px -273px; width: 90px; height: 90px; } -.customize-option.hair_base_1_blue { +.customize-option.hair_base_13_ppurple2 { background-image: url(spritesmith-main-1.png); background-position: -1663px -288px; width: 60px; height: 60px; } -.hair_base_1_brown { +.hair_base_13_pumpkin { + background-image: url(spritesmith-main-1.png); + background-position: -91px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_13_pumpkin { + background-image: url(spritesmith-main-1.png); + background-position: -116px -379px; + width: 60px; + height: 60px; +} +.hair_base_13_purple { background-image: url(spritesmith-main-1.png); background-position: -1638px -364px; width: 90px; height: 90px; } -.customize-option.hair_base_1_brown { +.customize-option.hair_base_13_purple { background-image: url(spritesmith-main-1.png); background-position: -1663px -379px; width: 60px; height: 60px; } +.hair_base_1_TRUred { + background-image: url(spritesmith-main-1.png); + background-position: -1183px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_TRUred { + background-image: url(spritesmith-main-1.png); + background-position: -1208px -925px; + width: 60px; + height: 60px; +} +.hair_base_1_aurora { + background-image: url(spritesmith-main-1.png); + background-position: -1092px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_aurora { + background-image: url(spritesmith-main-1.png); + background-position: -1117px -197px; + width: 60px; + height: 60px; +} +.hair_base_1_black { + background-image: url(spritesmith-main-1.png); + background-position: -1092px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_black { + background-image: url(spritesmith-main-1.png); + background-position: -1117px -288px; + width: 60px; + height: 60px; +} +.hair_base_1_blond { + background-image: url(spritesmith-main-1.png); + background-position: -1092px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_blond { + background-image: url(spritesmith-main-1.png); + background-position: -1117px -379px; + width: 60px; + height: 60px; +} +.hair_base_1_blue { + background-image: url(spritesmith-main-1.png); + background-position: -1092px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_blue { + background-image: url(spritesmith-main-1.png); + background-position: -1117px -470px; + width: 60px; + height: 60px; +} +.hair_base_1_brown { + background-image: url(spritesmith-main-1.png); + background-position: -1092px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_brown { + background-image: url(spritesmith-main-1.png); + background-position: -1117px -561px; + width: 60px; + height: 60px; +} +.hair_base_1_candycane { + background-image: url(spritesmith-main-1.png); + background-position: -1092px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_candycane { + background-image: url(spritesmith-main-1.png); + background-position: -1117px -652px; + width: 60px; + height: 60px; +} +.hair_base_1_candycorn { + background-image: url(spritesmith-main-1.png); + background-position: -1092px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_candycorn { + background-image: url(spritesmith-main-1.png); + background-position: -1117px -743px; + width: 60px; + height: 60px; +} +.hair_base_1_festive { + background-image: url(spritesmith-main-1.png); + background-position: -1092px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_festive { + background-image: url(spritesmith-main-1.png); + background-position: -1117px -834px; + width: 60px; + height: 60px; +} +.hair_base_1_frost { + background-image: url(spritesmith-main-1.png); + background-position: -1092px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_frost { + background-image: url(spritesmith-main-1.png); + background-position: -1117px -925px; + width: 60px; + height: 60px; +} +.hair_base_1_ghostwhite { + background-image: url(spritesmith-main-1.png); + background-position: -1092px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_ghostwhite { + background-image: url(spritesmith-main-1.png); + background-position: -1117px -1016px; + width: 60px; + height: 60px; +} +.hair_base_1_green { + background-image: url(spritesmith-main-1.png); + background-position: 0px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_green { + background-image: url(spritesmith-main-1.png); + background-position: -25px -1107px; + width: 60px; + height: 60px; +} +.hair_base_1_halloween { + background-image: url(spritesmith-main-1.png); + background-position: -91px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_halloween { + background-image: url(spritesmith-main-1.png); + background-position: -116px -1107px; + width: 60px; + height: 60px; +} +.hair_base_1_holly { + background-image: url(spritesmith-main-1.png); + background-position: -182px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_holly { + background-image: url(spritesmith-main-1.png); + background-position: -207px -1107px; + width: 60px; + height: 60px; +} +.hair_base_1_hollygreen { + background-image: url(spritesmith-main-1.png); + background-position: -273px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_hollygreen { + background-image: url(spritesmith-main-1.png); + background-position: -298px -1107px; + width: 60px; + height: 60px; +} +.hair_base_1_midnight { + background-image: url(spritesmith-main-1.png); + background-position: -364px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_midnight { + background-image: url(spritesmith-main-1.png); + background-position: -389px -1107px; + width: 60px; + height: 60px; +} +.hair_base_1_pblue { + background-image: url(spritesmith-main-1.png); + background-position: -455px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_pblue { + background-image: url(spritesmith-main-1.png); + background-position: -480px -1107px; + width: 60px; + height: 60px; +} +.hair_base_1_pblue2 { + background-image: url(spritesmith-main-1.png); + background-position: -546px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_pblue2 { + background-image: url(spritesmith-main-1.png); + background-position: -571px -1107px; + width: 60px; + height: 60px; +} +.hair_base_1_peppermint { + background-image: url(spritesmith-main-1.png); + background-position: -637px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_peppermint { + background-image: url(spritesmith-main-1.png); + background-position: -662px -1107px; + width: 60px; + height: 60px; +} +.hair_base_1_pgreen { + background-image: url(spritesmith-main-1.png); + background-position: -728px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_pgreen { + background-image: url(spritesmith-main-1.png); + background-position: -753px -1107px; + width: 60px; + height: 60px; +} +.hair_base_1_pgreen2 { + background-image: url(spritesmith-main-1.png); + background-position: 0px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_pgreen2 { + background-image: url(spritesmith-main-1.png); + background-position: -25px -15px; + width: 60px; + height: 60px; +} +.hair_base_1_porange { + background-image: url(spritesmith-main-1.png); + background-position: -910px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_porange { + background-image: url(spritesmith-main-1.png); + background-position: -935px -1107px; + width: 60px; + height: 60px; +} +.hair_base_1_porange2 { + background-image: url(spritesmith-main-1.png); + background-position: -1001px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_porange2 { + background-image: url(spritesmith-main-1.png); + background-position: -1026px -1107px; + width: 60px; + height: 60px; +} +.hair_base_1_ppink { + background-image: url(spritesmith-main-1.png); + background-position: -1092px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_ppink { + background-image: url(spritesmith-main-1.png); + background-position: -1117px -1107px; + width: 60px; + height: 60px; +} +.hair_base_1_ppink2 { + background-image: url(spritesmith-main-1.png); + background-position: -1183px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_ppink2 { + background-image: url(spritesmith-main-1.png); + background-position: -1208px -15px; + width: 60px; + height: 60px; +} +.hair_base_1_ppurple { + background-image: url(spritesmith-main-1.png); + background-position: -1183px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_ppurple { + background-image: url(spritesmith-main-1.png); + background-position: -1208px -106px; + width: 60px; + height: 60px; +} +.hair_base_1_ppurple2 { + background-image: url(spritesmith-main-1.png); + background-position: -1183px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_ppurple2 { + background-image: url(spritesmith-main-1.png); + background-position: -1208px -197px; + width: 60px; + height: 60px; +} +.hair_base_1_pumpkin { + background-image: url(spritesmith-main-1.png); + background-position: -1183px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_pumpkin { + background-image: url(spritesmith-main-1.png); + background-position: -1208px -288px; + width: 60px; + height: 60px; +} +.hair_base_1_purple { + background-image: url(spritesmith-main-1.png); + background-position: -1183px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_purple { + background-image: url(spritesmith-main-1.png); + background-position: -1208px -379px; + width: 60px; + height: 60px; +} +.hair_base_1_pyellow { + background-image: url(spritesmith-main-1.png); + background-position: -1183px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_pyellow { + background-image: url(spritesmith-main-1.png); + background-position: -1208px -470px; + width: 60px; + height: 60px; +} +.hair_base_1_pyellow2 { + background-image: url(spritesmith-main-1.png); + background-position: -1183px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_pyellow2 { + background-image: url(spritesmith-main-1.png); + background-position: -1208px -561px; + width: 60px; + height: 60px; +} +.hair_base_1_rainbow { + background-image: url(spritesmith-main-1.png); + background-position: -1183px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_rainbow { + background-image: url(spritesmith-main-1.png); + background-position: -1208px -652px; + width: 60px; + height: 60px; +} +.hair_base_1_red { + background-image: url(spritesmith-main-1.png); + background-position: -1183px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_red { + background-image: url(spritesmith-main-1.png); + background-position: -1208px -743px; + width: 60px; + height: 60px; +} +.hair_base_1_snowy { + background-image: url(spritesmith-main-1.png); + background-position: -1183px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_snowy { + background-image: url(spritesmith-main-1.png); + background-position: -1208px -834px; + width: 60px; + height: 60px; +} +.hair_base_1_white { + background-image: url(spritesmith-main-1.png); + background-position: -1183px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_white { + background-image: url(spritesmith-main-1.png); + background-position: -1208px -1016px; + width: 60px; + height: 60px; +} +.hair_base_1_winternight { + background-image: url(spritesmith-main-1.png); + background-position: -1183px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_winternight { + background-image: url(spritesmith-main-1.png); + background-position: -1208px -1107px; + width: 60px; + height: 60px; +} +.hair_base_1_winterstar { + background-image: url(spritesmith-main-1.png); + background-position: 0px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_winterstar { + background-image: url(spritesmith-main-1.png); + background-position: -25px -1198px; + width: 60px; + height: 60px; +} +.hair_base_1_yellow { + background-image: url(spritesmith-main-1.png); + background-position: -91px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_yellow { + background-image: url(spritesmith-main-1.png); + background-position: -116px -1198px; + width: 60px; + height: 60px; +} +.hair_base_1_zombie { + background-image: url(spritesmith-main-1.png); + background-position: -182px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_zombie { + background-image: url(spritesmith-main-1.png); + background-position: -207px -1198px; + width: 60px; + height: 60px; +} diff --git a/common/dist/sprites/spritesmith-main-1.png b/common/dist/sprites/spritesmith-main-1.png index 2acc6baa69..8b286cec01 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 index f6a429125e..d062189e52 100644 --- a/common/dist/sprites/spritesmith-main-10.css +++ b/common/dist/sprites/spritesmith-main-10.css @@ -1,1992 +1,1914 @@ +.Mount_Head_Wolf-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -136px 0px; + width: 135px; + height: 135px; +} +.Mount_Head_Wolf-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -408px -272px; + width: 135px; + height: 135px; +} +.Mount_Head_Wolf-Desert { + background-image: url(spritesmith-main-10.png); + background-position: 0px -272px; + width: 135px; + height: 135px; +} +.Mount_Head_Wolf-Floral { + background-image: url(spritesmith-main-10.png); + background-position: 0px -136px; + width: 135px; + height: 135px; +} +.Mount_Head_Wolf-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -136px -136px; + width: 135px; + height: 135px; +} +.Mount_Head_Wolf-Peppermint { + background-image: url(spritesmith-main-10.png); + background-position: -272px 0px; + width: 135px; + height: 135px; +} +.Mount_Head_Wolf-Red { + background-image: url(spritesmith-main-10.png); + background-position: -272px -136px; + width: 135px; + height: 135px; +} +.Mount_Head_Wolf-Shade { + background-image: url(spritesmith-main-10.png); + background-position: 0px 0px; + width: 135px; + height: 135px; +} +.Mount_Head_Wolf-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -136px -272px; + width: 135px; + height: 135px; +} +.Mount_Head_Wolf-Spooky { + background-image: url(spritesmith-main-10.png); + background-position: -272px -272px; + width: 135px; + height: 135px; +} +.Mount_Head_Wolf-White { + background-image: url(spritesmith-main-10.png); + background-position: -408px 0px; + width: 135px; + height: 135px; +} +.Mount_Head_Wolf-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -408px -136px; + width: 135px; + height: 135px; +} +.Mount_Icon_BearCub-Base { + background-image: url(spritesmith-main-10.png); + background-position: 0px -408px; + width: 81px; + height: 99px; +} +.Mount_Icon_BearCub-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -82px -408px; + width: 81px; + height: 99px; +} +.Mount_Icon_BearCub-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -164px -408px; + width: 81px; + height: 99px; +} +.Mount_Icon_BearCub-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -246px -408px; + width: 81px; + height: 99px; +} +.Mount_Icon_BearCub-Floral { + background-image: url(spritesmith-main-10.png); + background-position: -328px -408px; + width: 81px; + height: 99px; +} +.Mount_Icon_BearCub-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -410px -408px; + width: 81px; + height: 99px; +} +.Mount_Icon_BearCub-Peppermint { + background-image: url(spritesmith-main-10.png); + background-position: -544px 0px; + width: 81px; + height: 99px; +} +.Mount_Icon_BearCub-Polar { + background-image: url(spritesmith-main-10.png); + background-position: -544px -100px; + width: 81px; + height: 99px; +} +.Mount_Icon_BearCub-Red { + background-image: url(spritesmith-main-10.png); + background-position: -544px -200px; + width: 81px; + height: 99px; +} +.Mount_Icon_BearCub-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -544px -300px; + width: 81px; + height: 99px; +} +.Mount_Icon_BearCub-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -544px -400px; + width: 81px; + height: 99px; +} +.Mount_Icon_BearCub-Spooky { + background-image: url(spritesmith-main-10.png); + background-position: 0px -508px; + width: 81px; + height: 99px; +} +.Mount_Icon_BearCub-White { + background-image: url(spritesmith-main-10.png); + background-position: -82px -508px; + width: 81px; + height: 99px; +} +.Mount_Icon_BearCub-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -164px -508px; + width: 81px; + height: 99px; +} +.Mount_Icon_Bunny-Base { + background-image: url(spritesmith-main-10.png); + background-position: -246px -508px; + width: 81px; + height: 99px; +} +.Mount_Icon_Bunny-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -328px -508px; + width: 81px; + height: 99px; +} +.Mount_Icon_Bunny-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -410px -508px; + width: 81px; + height: 99px; +} +.Mount_Icon_Bunny-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -492px -508px; + width: 81px; + height: 99px; +} +.Mount_Icon_Bunny-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -626px 0px; + width: 81px; + height: 99px; +} +.Mount_Icon_Bunny-Red { + background-image: url(spritesmith-main-10.png); + background-position: -626px -100px; + width: 81px; + height: 99px; +} +.Mount_Icon_Bunny-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -626px -200px; + width: 81px; + height: 99px; +} +.Mount_Icon_Bunny-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -626px -300px; + width: 81px; + height: 99px; +} +.Mount_Icon_Bunny-White { + background-image: url(spritesmith-main-10.png); + background-position: -626px -400px; + width: 81px; + height: 99px; +} +.Mount_Icon_Bunny-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -626px -500px; + width: 81px; + height: 99px; +} +.Mount_Icon_Cactus-Base { + background-image: url(spritesmith-main-10.png); + background-position: 0px -608px; + width: 81px; + height: 99px; +} +.Mount_Icon_Cactus-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -82px -608px; + width: 81px; + height: 99px; +} +.Mount_Icon_Cactus-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -164px -608px; + width: 81px; + height: 99px; +} +.Mount_Icon_Cactus-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -246px -608px; + width: 81px; + height: 99px; +} +.Mount_Icon_Cactus-Floral { + background-image: url(spritesmith-main-10.png); + background-position: -328px -608px; + width: 81px; + height: 99px; +} +.Mount_Icon_Cactus-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -410px -608px; + width: 81px; + height: 99px; +} +.Mount_Icon_Cactus-Peppermint { + background-image: url(spritesmith-main-10.png); + background-position: -492px -608px; + width: 81px; + height: 99px; +} +.Mount_Icon_Cactus-Red { + background-image: url(spritesmith-main-10.png); + background-position: -574px -608px; + width: 81px; + height: 99px; +} +.Mount_Icon_Cactus-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -708px 0px; + width: 81px; + height: 99px; +} +.Mount_Icon_Cactus-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -708px -100px; + width: 81px; + height: 99px; +} +.Mount_Icon_Cactus-Spooky { + background-image: url(spritesmith-main-10.png); + background-position: -708px -200px; + width: 81px; + height: 99px; +} +.Mount_Icon_Cactus-White { + background-image: url(spritesmith-main-10.png); + background-position: -708px -300px; + width: 81px; + height: 99px; +} +.Mount_Icon_Cactus-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -708px -400px; + width: 81px; + height: 99px; +} +.Mount_Icon_Cheetah-Base { + background-image: url(spritesmith-main-10.png); + background-position: -708px -500px; + width: 81px; + height: 99px; +} +.Mount_Icon_Cheetah-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -708px -600px; + width: 81px; + height: 99px; +} +.Mount_Icon_Cheetah-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -790px 0px; + width: 81px; + height: 99px; +} +.Mount_Icon_Cheetah-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -790px -100px; + width: 81px; + height: 99px; +} +.Mount_Icon_Cheetah-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -790px -200px; + width: 81px; + height: 99px; +} +.Mount_Icon_Cheetah-Red { + background-image: url(spritesmith-main-10.png); + background-position: -790px -300px; + width: 81px; + height: 99px; +} +.Mount_Icon_Cheetah-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -790px -400px; + width: 81px; + height: 99px; +} +.Mount_Icon_Cheetah-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -790px -500px; + width: 81px; + height: 99px; +} +.Mount_Icon_Cheetah-White { + background-image: url(spritesmith-main-10.png); + background-position: -790px -600px; + width: 81px; + height: 99px; +} +.Mount_Icon_Cheetah-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: 0px -708px; + width: 81px; + height: 99px; +} +.Mount_Icon_Cuttlefish-Base { + background-image: url(spritesmith-main-10.png); + background-position: -82px -708px; + width: 81px; + height: 99px; +} +.Mount_Icon_Cuttlefish-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -164px -708px; + width: 81px; + height: 99px; +} +.Mount_Icon_Cuttlefish-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -246px -708px; + width: 81px; + height: 99px; +} +.Mount_Icon_Cuttlefish-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -328px -708px; + width: 81px; + height: 99px; +} +.Mount_Icon_Cuttlefish-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -410px -708px; + width: 81px; + height: 99px; +} +.Mount_Icon_Cuttlefish-Red { + background-image: url(spritesmith-main-10.png); + background-position: -492px -708px; + width: 81px; + height: 99px; +} +.Mount_Icon_Cuttlefish-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -574px -708px; + width: 81px; + height: 99px; +} +.Mount_Icon_Cuttlefish-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -656px -708px; + width: 81px; + height: 99px; +} +.Mount_Icon_Cuttlefish-White { + background-image: url(spritesmith-main-10.png); + background-position: -738px -708px; + width: 81px; + height: 99px; +} +.Mount_Icon_Cuttlefish-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -872px 0px; + width: 81px; + height: 99px; +} +.Mount_Icon_Deer-Base { + background-image: url(spritesmith-main-10.png); + background-position: -872px -100px; + width: 81px; + height: 99px; +} +.Mount_Icon_Deer-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -872px -200px; + width: 81px; + height: 99px; +} +.Mount_Icon_Deer-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -872px -300px; + width: 81px; + height: 99px; +} +.Mount_Icon_Deer-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -872px -400px; + width: 81px; + height: 99px; +} +.Mount_Icon_Deer-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -872px -500px; + width: 81px; + height: 99px; +} +.Mount_Icon_Deer-Red { + background-image: url(spritesmith-main-10.png); + background-position: -872px -600px; + width: 81px; + height: 99px; +} +.Mount_Icon_Deer-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -872px -700px; + width: 81px; + height: 99px; +} +.Mount_Icon_Deer-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: 0px -808px; + width: 81px; + height: 99px; +} +.Mount_Icon_Deer-White { + background-image: url(spritesmith-main-10.png); + background-position: -82px -808px; + width: 81px; + height: 99px; +} +.Mount_Icon_Deer-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -164px -808px; + width: 81px; + height: 99px; +} +.Mount_Icon_Dragon-Base { + background-image: url(spritesmith-main-10.png); + background-position: -246px -808px; + width: 81px; + height: 99px; +} +.Mount_Icon_Dragon-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -328px -808px; + width: 81px; + height: 99px; +} +.Mount_Icon_Dragon-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -410px -808px; + width: 81px; + height: 99px; +} +.Mount_Icon_Dragon-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -492px -808px; + width: 81px; + height: 99px; +} +.Mount_Icon_Dragon-Floral { + background-image: url(spritesmith-main-10.png); + background-position: -574px -808px; + width: 81px; + height: 99px; +} +.Mount_Icon_Dragon-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -656px -808px; + width: 81px; + height: 99px; +} +.Mount_Icon_Dragon-Peppermint { + background-image: url(spritesmith-main-10.png); + background-position: -738px -808px; + width: 81px; + height: 99px; +} +.Mount_Icon_Dragon-Red { + background-image: url(spritesmith-main-10.png); + background-position: -820px -808px; + width: 81px; + height: 99px; +} +.Mount_Icon_Dragon-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -954px 0px; + width: 81px; + height: 99px; +} +.Mount_Icon_Dragon-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -954px -100px; + width: 81px; + height: 99px; +} +.Mount_Icon_Dragon-Spooky { + background-image: url(spritesmith-main-10.png); + background-position: -954px -200px; + width: 81px; + height: 99px; +} +.Mount_Icon_Dragon-White { + background-image: url(spritesmith-main-10.png); + background-position: -954px -300px; + width: 81px; + height: 99px; +} +.Mount_Icon_Dragon-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -954px -400px; + width: 81px; + height: 99px; +} +.Mount_Icon_Egg-Base { + background-image: url(spritesmith-main-10.png); + background-position: -954px -500px; + width: 81px; + height: 99px; +} +.Mount_Icon_Egg-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -954px -600px; + width: 81px; + height: 99px; +} +.Mount_Icon_Egg-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -954px -700px; + width: 81px; + height: 99px; +} +.Mount_Icon_Egg-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -954px -800px; + width: 81px; + height: 99px; +} +.Mount_Icon_Egg-Golden { + background-image: url(spritesmith-main-10.png); + background-position: 0px -908px; + width: 81px; + height: 99px; +} +.Mount_Icon_Egg-Red { + background-image: url(spritesmith-main-10.png); + background-position: -82px -908px; + width: 81px; + height: 99px; +} +.Mount_Icon_Egg-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -164px -908px; + width: 81px; + height: 99px; +} +.Mount_Icon_Egg-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -246px -908px; + width: 81px; + height: 99px; +} +.Mount_Icon_Egg-White { + background-image: url(spritesmith-main-10.png); + background-position: -328px -908px; + width: 81px; + height: 99px; +} +.Mount_Icon_Egg-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -410px -908px; + width: 81px; + height: 99px; +} +.Mount_Icon_Falcon-Base { + background-image: url(spritesmith-main-10.png); + background-position: -492px -908px; + width: 81px; + height: 99px; +} +.Mount_Icon_Falcon-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -574px -908px; + width: 81px; + height: 99px; +} +.Mount_Icon_Falcon-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -656px -908px; + width: 81px; + height: 99px; +} +.Mount_Icon_Falcon-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -738px -908px; + width: 81px; + height: 99px; +} +.Mount_Icon_Falcon-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -820px -908px; + width: 81px; + height: 99px; +} +.Mount_Icon_Falcon-Red { + background-image: url(spritesmith-main-10.png); + background-position: -902px -908px; + width: 81px; + height: 99px; +} +.Mount_Icon_Falcon-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -1036px 0px; + width: 81px; + height: 99px; +} +.Mount_Icon_Falcon-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -1036px -100px; + width: 81px; + height: 99px; +} +.Mount_Icon_Falcon-White { + background-image: url(spritesmith-main-10.png); + background-position: -1036px -200px; + width: 81px; + height: 99px; +} +.Mount_Icon_Falcon-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -1036px -300px; + width: 81px; + height: 99px; +} +.Mount_Icon_FlyingPig-Base { + background-image: url(spritesmith-main-10.png); + background-position: -1036px -400px; + width: 81px; + height: 99px; +} +.Mount_Icon_FlyingPig-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -1036px -500px; + width: 81px; + height: 99px; +} +.Mount_Icon_FlyingPig-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -1036px -600px; + width: 81px; + height: 99px; +} +.Mount_Icon_FlyingPig-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -1036px -700px; + width: 81px; + height: 99px; +} +.Mount_Icon_FlyingPig-Floral { + background-image: url(spritesmith-main-10.png); + background-position: -1036px -800px; + width: 81px; + height: 99px; +} +.Mount_Icon_FlyingPig-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -1036px -900px; + width: 81px; + height: 99px; +} +.Mount_Icon_FlyingPig-Peppermint { + background-image: url(spritesmith-main-10.png); + background-position: 0px -1008px; + width: 81px; + height: 99px; +} +.Mount_Icon_FlyingPig-Red { + background-image: url(spritesmith-main-10.png); + background-position: -82px -1008px; + width: 81px; + height: 99px; +} +.Mount_Icon_FlyingPig-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -164px -1008px; + width: 81px; + height: 99px; +} +.Mount_Icon_FlyingPig-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -246px -1008px; + width: 81px; + height: 99px; +} +.Mount_Icon_FlyingPig-Spooky { + background-image: url(spritesmith-main-10.png); + background-position: -328px -1008px; + width: 81px; + height: 99px; +} +.Mount_Icon_FlyingPig-White { + background-image: url(spritesmith-main-10.png); + background-position: -410px -1008px; + width: 81px; + height: 99px; +} +.Mount_Icon_FlyingPig-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -492px -1008px; + width: 81px; + height: 99px; +} +.Mount_Icon_Fox-Base { + background-image: url(spritesmith-main-10.png); + background-position: -574px -1008px; + width: 81px; + height: 99px; +} +.Mount_Icon_Fox-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -656px -1008px; + width: 81px; + height: 99px; +} +.Mount_Icon_Fox-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -738px -1008px; + width: 81px; + height: 99px; +} +.Mount_Icon_Fox-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -820px -1008px; + width: 81px; + height: 99px; +} +.Mount_Icon_Fox-Floral { + background-image: url(spritesmith-main-10.png); + background-position: -902px -1008px; + width: 81px; + height: 99px; +} +.Mount_Icon_Fox-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -984px -1008px; + width: 81px; + height: 99px; +} +.Mount_Icon_Fox-Peppermint { + background-image: url(spritesmith-main-10.png); + background-position: -1118px 0px; + width: 81px; + height: 99px; +} +.Mount_Icon_Fox-Red { + background-image: url(spritesmith-main-10.png); + background-position: -1118px -100px; + width: 81px; + height: 99px; +} +.Mount_Icon_Fox-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -1118px -200px; + width: 81px; + height: 99px; +} +.Mount_Icon_Fox-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -1118px -300px; + width: 81px; + height: 99px; +} +.Mount_Icon_Fox-Spooky { + background-image: url(spritesmith-main-10.png); + background-position: -1118px -400px; + width: 81px; + height: 99px; +} +.Mount_Icon_Fox-White { + background-image: url(spritesmith-main-10.png); + background-position: -1118px -500px; + width: 81px; + height: 99px; +} +.Mount_Icon_Fox-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -1118px -600px; + width: 81px; + height: 99px; +} +.Mount_Icon_Frog-Base { + background-image: url(spritesmith-main-10.png); + background-position: -1118px -700px; + width: 81px; + height: 99px; +} +.Mount_Icon_Frog-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -1118px -800px; + width: 81px; + height: 99px; +} +.Mount_Icon_Frog-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -1118px -900px; + width: 81px; + height: 99px; +} +.Mount_Icon_Frog-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -1118px -1000px; + width: 81px; + height: 99px; +} +.Mount_Icon_Frog-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -1200px 0px; + width: 81px; + height: 99px; +} +.Mount_Icon_Frog-Red { + background-image: url(spritesmith-main-10.png); + background-position: -1200px -100px; + width: 81px; + height: 99px; +} +.Mount_Icon_Frog-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -1200px -200px; + width: 81px; + height: 99px; +} +.Mount_Icon_Frog-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -1200px -300px; + width: 81px; + height: 99px; +} +.Mount_Icon_Frog-White { + background-image: url(spritesmith-main-10.png); + background-position: -1200px -400px; + width: 81px; + height: 99px; +} +.Mount_Icon_Frog-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -1200px -500px; + width: 81px; + height: 99px; +} +.Mount_Icon_Gryphon-Base { + background-image: url(spritesmith-main-10.png); + background-position: -1200px -600px; + width: 81px; + height: 99px; +} +.Mount_Icon_Gryphon-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -1200px -700px; + width: 81px; + height: 99px; +} +.Mount_Icon_Gryphon-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -1200px -800px; + width: 81px; + height: 99px; +} +.Mount_Icon_Gryphon-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -1200px -900px; + width: 81px; + height: 99px; +} +.Mount_Icon_Gryphon-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -1200px -1000px; + width: 81px; + height: 99px; +} +.Mount_Icon_Gryphon-Red { + background-image: url(spritesmith-main-10.png); + background-position: 0px -1108px; + width: 81px; + height: 99px; +} +.Mount_Icon_Gryphon-RoyalPurple { + background-image: url(spritesmith-main-10.png); + background-position: -82px -1108px; + width: 81px; + height: 99px; +} +.Mount_Icon_Gryphon-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -164px -1108px; + width: 81px; + height: 99px; +} +.Mount_Icon_Gryphon-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -246px -1108px; + width: 81px; + height: 99px; +} +.Mount_Icon_Gryphon-White { + background-image: url(spritesmith-main-10.png); + background-position: -328px -1108px; + width: 81px; + height: 99px; +} +.Mount_Icon_Gryphon-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -410px -1108px; + width: 81px; + height: 99px; +} +.Mount_Icon_Hedgehog-Base { + background-image: url(spritesmith-main-10.png); + background-position: -1692px -1000px; + width: 81px; + height: 99px; +} +.Mount_Icon_Hedgehog-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -574px -1108px; + width: 81px; + height: 99px; +} +.Mount_Icon_Hedgehog-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -656px -1108px; + width: 81px; + height: 99px; +} +.Mount_Icon_Hedgehog-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -738px -1108px; + width: 81px; + height: 99px; +} +.Mount_Icon_Hedgehog-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -820px -1108px; + width: 81px; + height: 99px; +} +.Mount_Icon_Hedgehog-Red { + background-image: url(spritesmith-main-10.png); + background-position: -902px -1108px; + width: 81px; + height: 99px; +} +.Mount_Icon_Hedgehog-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -984px -1108px; + width: 81px; + height: 99px; +} +.Mount_Icon_Hedgehog-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -1066px -1108px; + width: 81px; + height: 99px; +} +.Mount_Icon_Hedgehog-White { + background-image: url(spritesmith-main-10.png); + background-position: -1148px -1108px; + width: 81px; + height: 99px; +} +.Mount_Icon_Hedgehog-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -1282px 0px; + width: 81px; + height: 99px; +} +.Mount_Icon_Horse-Base { + background-image: url(spritesmith-main-10.png); + background-position: -1282px -100px; + width: 81px; + height: 99px; +} +.Mount_Icon_Horse-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -1282px -200px; + width: 81px; + height: 99px; +} +.Mount_Icon_Horse-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -1282px -300px; + width: 81px; + height: 99px; +} +.Mount_Icon_Horse-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -1282px -400px; + width: 81px; + height: 99px; +} +.Mount_Icon_Horse-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -1282px -500px; + width: 81px; + height: 99px; +} +.Mount_Icon_Horse-Red { + background-image: url(spritesmith-main-10.png); + background-position: -1282px -600px; + width: 81px; + height: 99px; +} +.Mount_Icon_Horse-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -1282px -700px; + width: 81px; + height: 99px; +} +.Mount_Icon_Horse-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -1282px -800px; + width: 81px; + height: 99px; +} +.Mount_Icon_Horse-White { + background-image: url(spritesmith-main-10.png); + background-position: -1282px -900px; + width: 81px; + height: 99px; +} +.Mount_Icon_Horse-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -1282px -1000px; + width: 81px; + height: 99px; +} .Mount_Icon_JackOLantern-Base { background-image: url(spritesmith-main-10.png); - background-position: -106px 0px; - width: 90px; - height: 105px; + background-position: -1282px -1100px; + width: 81px; + height: 99px; } .Mount_Icon_LionCub-Base { background-image: url(spritesmith-main-10.png); - background-position: -82px -1106px; + background-position: 0px -1208px; width: 81px; height: 99px; } .Mount_Icon_LionCub-CottonCandyBlue { background-image: url(spritesmith-main-10.png); - background-position: -197px 0px; + background-position: -82px -1208px; width: 81px; height: 99px; } .Mount_Icon_LionCub-CottonCandyPink { background-image: url(spritesmith-main-10.png); - background-position: 0px -106px; + background-position: -164px -1208px; width: 81px; height: 99px; } .Mount_Icon_LionCub-Desert { background-image: url(spritesmith-main-10.png); - background-position: -82px -106px; + background-position: -246px -1208px; width: 81px; height: 99px; } .Mount_Icon_LionCub-Ethereal { background-image: url(spritesmith-main-10.png); - background-position: -164px -106px; + background-position: -328px -1208px; + width: 81px; + height: 99px; +} +.Mount_Icon_LionCub-Floral { + background-image: url(spritesmith-main-10.png); + background-position: -410px -1208px; width: 81px; height: 99px; } .Mount_Icon_LionCub-Golden { background-image: url(spritesmith-main-10.png); - background-position: -279px 0px; + background-position: -492px -1208px; width: 81px; height: 99px; } .Mount_Icon_LionCub-Peppermint { background-image: url(spritesmith-main-10.png); - background-position: -279px -100px; + background-position: -574px -1208px; width: 81px; height: 99px; } .Mount_Icon_LionCub-Red { background-image: url(spritesmith-main-10.png); - background-position: 0px -206px; + background-position: -656px -1208px; width: 81px; height: 99px; } .Mount_Icon_LionCub-Shade { background-image: url(spritesmith-main-10.png); - background-position: -82px -206px; + background-position: -738px -1208px; width: 81px; height: 99px; } .Mount_Icon_LionCub-Skeleton { background-image: url(spritesmith-main-10.png); - background-position: -164px -206px; + background-position: -820px -1208px; width: 81px; height: 99px; } .Mount_Icon_LionCub-Spooky { background-image: url(spritesmith-main-10.png); - background-position: -246px -206px; + background-position: -902px -1208px; width: 81px; height: 99px; } .Mount_Icon_LionCub-White { background-image: url(spritesmith-main-10.png); - background-position: -361px 0px; + background-position: -984px -1208px; width: 81px; height: 99px; } .Mount_Icon_LionCub-Zombie { background-image: url(spritesmith-main-10.png); - background-position: -361px -100px; + background-position: -1066px -1208px; + width: 81px; + height: 99px; +} +.Mount_Icon_MagicalBee-Base { + background-image: url(spritesmith-main-10.png); + background-position: -1148px -1208px; width: 81px; height: 99px; } .Mount_Icon_Mammoth-Base { background-image: url(spritesmith-main-10.png); - background-position: -361px -200px; + background-position: -1230px -1208px; width: 81px; height: 99px; } .Mount_Icon_MantisShrimp-Base { background-image: url(spritesmith-main-10.png); - background-position: 0px -306px; + background-position: -1364px 0px; width: 81px; height: 99px; } .Mount_Icon_Monkey-Base { background-image: url(spritesmith-main-10.png); - background-position: -82px -306px; + background-position: -1364px -100px; width: 81px; height: 99px; } .Mount_Icon_Monkey-CottonCandyBlue { background-image: url(spritesmith-main-10.png); - background-position: -164px -306px; + background-position: -1364px -200px; width: 81px; height: 99px; } .Mount_Icon_Monkey-CottonCandyPink { background-image: url(spritesmith-main-10.png); - background-position: -246px -306px; + background-position: -1364px -300px; width: 81px; height: 99px; } .Mount_Icon_Monkey-Desert { background-image: url(spritesmith-main-10.png); - background-position: -328px -306px; + background-position: -1364px -400px; width: 81px; height: 99px; } .Mount_Icon_Monkey-Golden { background-image: url(spritesmith-main-10.png); - background-position: -443px 0px; + background-position: -1364px -500px; width: 81px; height: 99px; } .Mount_Icon_Monkey-Red { background-image: url(spritesmith-main-10.png); - background-position: -443px -100px; + background-position: -1364px -600px; width: 81px; height: 99px; } .Mount_Icon_Monkey-Shade { background-image: url(spritesmith-main-10.png); - background-position: -443px -200px; + background-position: -1364px -700px; width: 81px; height: 99px; } .Mount_Icon_Monkey-Skeleton { background-image: url(spritesmith-main-10.png); - background-position: -443px -300px; + background-position: -1364px -800px; width: 81px; height: 99px; } .Mount_Icon_Monkey-White { background-image: url(spritesmith-main-10.png); - background-position: 0px -406px; + background-position: -1364px -900px; width: 81px; height: 99px; } .Mount_Icon_Monkey-Zombie { background-image: url(spritesmith-main-10.png); - background-position: -82px -406px; + background-position: -1364px -1000px; width: 81px; height: 99px; } .Mount_Icon_Octopus-Base { background-image: url(spritesmith-main-10.png); - background-position: -164px -406px; + background-position: -1364px -1100px; width: 81px; height: 99px; } .Mount_Icon_Octopus-CottonCandyBlue { background-image: url(spritesmith-main-10.png); - background-position: -246px -406px; + background-position: -1364px -1200px; width: 81px; height: 99px; } .Mount_Icon_Octopus-CottonCandyPink { background-image: url(spritesmith-main-10.png); - background-position: -328px -406px; + background-position: 0px -1308px; width: 81px; height: 99px; } .Mount_Icon_Octopus-Desert { background-image: url(spritesmith-main-10.png); - background-position: -410px -406px; + background-position: -82px -1308px; width: 81px; height: 99px; } .Mount_Icon_Octopus-Golden { background-image: url(spritesmith-main-10.png); - background-position: -525px 0px; + background-position: -164px -1308px; width: 81px; height: 99px; } .Mount_Icon_Octopus-Red { background-image: url(spritesmith-main-10.png); - background-position: -525px -100px; + background-position: -246px -1308px; width: 81px; height: 99px; } .Mount_Icon_Octopus-Shade { background-image: url(spritesmith-main-10.png); - background-position: -525px -200px; + background-position: -328px -1308px; width: 81px; height: 99px; } .Mount_Icon_Octopus-Skeleton { background-image: url(spritesmith-main-10.png); - background-position: -525px -300px; + background-position: -410px -1308px; width: 81px; height: 99px; } .Mount_Icon_Octopus-White { background-image: url(spritesmith-main-10.png); - background-position: -525px -400px; + background-position: -492px -1308px; width: 81px; height: 99px; } .Mount_Icon_Octopus-Zombie { background-image: url(spritesmith-main-10.png); - background-position: 0px -506px; + background-position: -574px -1308px; width: 81px; height: 99px; } .Mount_Icon_Orca-Base { background-image: url(spritesmith-main-10.png); - background-position: -82px -506px; + background-position: -656px -1308px; width: 81px; height: 99px; } .Mount_Icon_Owl-Base { background-image: url(spritesmith-main-10.png); - background-position: -164px -506px; + background-position: -738px -1308px; width: 81px; height: 99px; } .Mount_Icon_Owl-CottonCandyBlue { background-image: url(spritesmith-main-10.png); - background-position: -246px -506px; + background-position: -820px -1308px; width: 81px; height: 99px; } .Mount_Icon_Owl-CottonCandyPink { background-image: url(spritesmith-main-10.png); - background-position: -328px -506px; + background-position: -902px -1308px; width: 81px; height: 99px; } .Mount_Icon_Owl-Desert { background-image: url(spritesmith-main-10.png); - background-position: -410px -506px; + background-position: -984px -1308px; width: 81px; height: 99px; } .Mount_Icon_Owl-Golden { background-image: url(spritesmith-main-10.png); - background-position: -492px -506px; + background-position: -1066px -1308px; width: 81px; height: 99px; } .Mount_Icon_Owl-Red { background-image: url(spritesmith-main-10.png); - background-position: -607px 0px; + background-position: -1148px -1308px; width: 81px; height: 99px; } .Mount_Icon_Owl-Shade { background-image: url(spritesmith-main-10.png); - background-position: -607px -100px; + background-position: -1230px -1308px; width: 81px; height: 99px; } .Mount_Icon_Owl-Skeleton { background-image: url(spritesmith-main-10.png); - background-position: -607px -200px; + background-position: -1312px -1308px; width: 81px; height: 99px; } .Mount_Icon_Owl-White { background-image: url(spritesmith-main-10.png); - background-position: -607px -300px; + background-position: -1446px 0px; width: 81px; height: 99px; } .Mount_Icon_Owl-Zombie { background-image: url(spritesmith-main-10.png); - background-position: -607px -400px; + background-position: -1446px -100px; width: 81px; height: 99px; } .Mount_Icon_PandaCub-Base { background-image: url(spritesmith-main-10.png); - background-position: -607px -500px; + background-position: -1446px -200px; width: 81px; height: 99px; } .Mount_Icon_PandaCub-CottonCandyBlue { background-image: url(spritesmith-main-10.png); - background-position: -689px 0px; + background-position: -1446px -300px; width: 81px; height: 99px; } .Mount_Icon_PandaCub-CottonCandyPink { background-image: url(spritesmith-main-10.png); - background-position: -689px -100px; + background-position: -1446px -400px; width: 81px; height: 99px; } .Mount_Icon_PandaCub-Desert { background-image: url(spritesmith-main-10.png); - background-position: -689px -200px; + background-position: -1446px -500px; + width: 81px; + height: 99px; +} +.Mount_Icon_PandaCub-Floral { + background-image: url(spritesmith-main-10.png); + background-position: -1446px -600px; width: 81px; height: 99px; } .Mount_Icon_PandaCub-Golden { background-image: url(spritesmith-main-10.png); - background-position: -689px -300px; + background-position: -1446px -700px; width: 81px; height: 99px; } .Mount_Icon_PandaCub-Peppermint { background-image: url(spritesmith-main-10.png); - background-position: -689px -400px; + background-position: -1446px -800px; width: 81px; height: 99px; } .Mount_Icon_PandaCub-Red { background-image: url(spritesmith-main-10.png); - background-position: -689px -500px; + background-position: -1446px -900px; width: 81px; height: 99px; } .Mount_Icon_PandaCub-Shade { background-image: url(spritesmith-main-10.png); - background-position: 0px -606px; + background-position: -1446px -1000px; width: 81px; height: 99px; } .Mount_Icon_PandaCub-Skeleton { background-image: url(spritesmith-main-10.png); - background-position: -82px -606px; + background-position: -1446px -1100px; width: 81px; height: 99px; } .Mount_Icon_PandaCub-Spooky { background-image: url(spritesmith-main-10.png); - background-position: -164px -606px; + background-position: -1446px -1200px; width: 81px; height: 99px; } .Mount_Icon_PandaCub-White { background-image: url(spritesmith-main-10.png); - background-position: -246px -606px; + background-position: -1446px -1300px; width: 81px; height: 99px; } .Mount_Icon_PandaCub-Zombie { background-image: url(spritesmith-main-10.png); - background-position: -328px -606px; + background-position: 0px -1408px; width: 81px; height: 99px; } .Mount_Icon_Parrot-Base { background-image: url(spritesmith-main-10.png); - background-position: -410px -606px; + background-position: -82px -1408px; width: 81px; height: 99px; } .Mount_Icon_Parrot-CottonCandyBlue { background-image: url(spritesmith-main-10.png); - background-position: -492px -606px; + background-position: -164px -1408px; width: 81px; height: 99px; } .Mount_Icon_Parrot-CottonCandyPink { background-image: url(spritesmith-main-10.png); - background-position: -574px -606px; + background-position: -246px -1408px; width: 81px; height: 99px; } .Mount_Icon_Parrot-Desert { background-image: url(spritesmith-main-10.png); - background-position: -656px -606px; + background-position: -328px -1408px; width: 81px; height: 99px; } .Mount_Icon_Parrot-Golden { background-image: url(spritesmith-main-10.png); - background-position: -771px 0px; + background-position: -410px -1408px; width: 81px; height: 99px; } .Mount_Icon_Parrot-Red { background-image: url(spritesmith-main-10.png); - background-position: -771px -100px; + background-position: -492px -1408px; width: 81px; height: 99px; } .Mount_Icon_Parrot-Shade { background-image: url(spritesmith-main-10.png); - background-position: -771px -200px; + background-position: -574px -1408px; width: 81px; height: 99px; } .Mount_Icon_Parrot-Skeleton { background-image: url(spritesmith-main-10.png); - background-position: -771px -300px; + background-position: -656px -1408px; width: 81px; height: 99px; } .Mount_Icon_Parrot-White { background-image: url(spritesmith-main-10.png); - background-position: -771px -400px; + background-position: -738px -1408px; width: 81px; height: 99px; } .Mount_Icon_Parrot-Zombie { background-image: url(spritesmith-main-10.png); - background-position: -771px -500px; + background-position: -820px -1408px; width: 81px; height: 99px; } .Mount_Icon_Penguin-Base { background-image: url(spritesmith-main-10.png); - background-position: -771px -600px; + background-position: -902px -1408px; width: 81px; height: 99px; } .Mount_Icon_Penguin-CottonCandyBlue { background-image: url(spritesmith-main-10.png); - background-position: 0px -706px; + background-position: -984px -1408px; width: 81px; height: 99px; } .Mount_Icon_Penguin-CottonCandyPink { background-image: url(spritesmith-main-10.png); - background-position: -82px -706px; + background-position: -1066px -1408px; width: 81px; height: 99px; } .Mount_Icon_Penguin-Desert { background-image: url(spritesmith-main-10.png); - background-position: -164px -706px; + background-position: -1148px -1408px; width: 81px; height: 99px; } .Mount_Icon_Penguin-Golden { background-image: url(spritesmith-main-10.png); - background-position: -246px -706px; + background-position: -1230px -1408px; width: 81px; height: 99px; } .Mount_Icon_Penguin-Red { background-image: url(spritesmith-main-10.png); - background-position: -328px -706px; + background-position: -1312px -1408px; width: 81px; height: 99px; } .Mount_Icon_Penguin-Shade { background-image: url(spritesmith-main-10.png); - background-position: -410px -706px; + background-position: -1394px -1408px; width: 81px; height: 99px; } .Mount_Icon_Penguin-Skeleton { background-image: url(spritesmith-main-10.png); - background-position: -492px -706px; + background-position: -1528px 0px; width: 81px; height: 99px; } .Mount_Icon_Penguin-White { background-image: url(spritesmith-main-10.png); - background-position: -574px -706px; + background-position: -1528px -100px; width: 81px; height: 99px; } .Mount_Icon_Penguin-Zombie { background-image: url(spritesmith-main-10.png); - background-position: -656px -706px; + background-position: -1528px -200px; width: 81px; height: 99px; } .Mount_Icon_Phoenix-Base { background-image: url(spritesmith-main-10.png); - background-position: 0px 0px; - width: 105px; - height: 105px; + background-position: -1528px -300px; + width: 81px; + height: 99px; } .Mount_Icon_Rat-Base { background-image: url(spritesmith-main-10.png); - background-position: -853px 0px; + background-position: -1528px -400px; width: 81px; height: 99px; } .Mount_Icon_Rat-CottonCandyBlue { background-image: url(spritesmith-main-10.png); - background-position: -853px -100px; + background-position: -1528px -500px; width: 81px; height: 99px; } .Mount_Icon_Rat-CottonCandyPink { background-image: url(spritesmith-main-10.png); - background-position: -853px -200px; + background-position: -1528px -600px; width: 81px; height: 99px; } .Mount_Icon_Rat-Desert { background-image: url(spritesmith-main-10.png); - background-position: -853px -300px; + background-position: -1528px -700px; width: 81px; height: 99px; } .Mount_Icon_Rat-Golden { background-image: url(spritesmith-main-10.png); - background-position: -853px -400px; + background-position: -1528px -800px; width: 81px; height: 99px; } .Mount_Icon_Rat-Red { background-image: url(spritesmith-main-10.png); - background-position: -853px -500px; + background-position: -1528px -900px; width: 81px; height: 99px; } .Mount_Icon_Rat-Shade { background-image: url(spritesmith-main-10.png); - background-position: -853px -600px; + background-position: -1528px -1000px; width: 81px; height: 99px; } .Mount_Icon_Rat-Skeleton { background-image: url(spritesmith-main-10.png); - background-position: -853px -700px; + background-position: -1528px -1100px; width: 81px; height: 99px; } .Mount_Icon_Rat-White { background-image: url(spritesmith-main-10.png); - background-position: 0px -806px; + background-position: -1528px -1200px; width: 81px; height: 99px; } .Mount_Icon_Rat-Zombie { background-image: url(spritesmith-main-10.png); - background-position: -82px -806px; + background-position: -1528px -1300px; width: 81px; height: 99px; } .Mount_Icon_Rock-Base { background-image: url(spritesmith-main-10.png); - background-position: -164px -806px; + background-position: -1528px -1400px; width: 81px; height: 99px; } .Mount_Icon_Rock-CottonCandyBlue { background-image: url(spritesmith-main-10.png); - background-position: -246px -806px; + background-position: 0px -1508px; width: 81px; height: 99px; } .Mount_Icon_Rock-CottonCandyPink { background-image: url(spritesmith-main-10.png); - background-position: -328px -806px; + background-position: -82px -1508px; width: 81px; height: 99px; } .Mount_Icon_Rock-Desert { background-image: url(spritesmith-main-10.png); - background-position: -410px -806px; + background-position: -164px -1508px; width: 81px; height: 99px; } .Mount_Icon_Rock-Golden { background-image: url(spritesmith-main-10.png); - background-position: -492px -806px; + background-position: -246px -1508px; width: 81px; height: 99px; } .Mount_Icon_Rock-Red { background-image: url(spritesmith-main-10.png); - background-position: -574px -806px; + background-position: -328px -1508px; width: 81px; height: 99px; } .Mount_Icon_Rock-Shade { background-image: url(spritesmith-main-10.png); - background-position: -656px -806px; + background-position: -410px -1508px; width: 81px; height: 99px; } .Mount_Icon_Rock-Skeleton { background-image: url(spritesmith-main-10.png); - background-position: -738px -806px; + background-position: -492px -1508px; width: 81px; height: 99px; } .Mount_Icon_Rock-White { background-image: url(spritesmith-main-10.png); - background-position: -820px -806px; + background-position: -574px -1508px; width: 81px; height: 99px; } .Mount_Icon_Rock-Zombie { background-image: url(spritesmith-main-10.png); - background-position: -935px 0px; + background-position: -656px -1508px; width: 81px; height: 99px; } .Mount_Icon_Rooster-Base { background-image: url(spritesmith-main-10.png); - background-position: -935px -100px; + background-position: -738px -1508px; width: 81px; height: 99px; } .Mount_Icon_Rooster-CottonCandyBlue { background-image: url(spritesmith-main-10.png); - background-position: -935px -200px; + background-position: -820px -1508px; width: 81px; height: 99px; } .Mount_Icon_Rooster-CottonCandyPink { background-image: url(spritesmith-main-10.png); - background-position: -935px -300px; + background-position: -902px -1508px; width: 81px; height: 99px; } .Mount_Icon_Rooster-Desert { background-image: url(spritesmith-main-10.png); - background-position: -935px -400px; + background-position: -984px -1508px; width: 81px; height: 99px; } .Mount_Icon_Rooster-Golden { background-image: url(spritesmith-main-10.png); - background-position: -935px -500px; + background-position: -1066px -1508px; width: 81px; height: 99px; } .Mount_Icon_Rooster-Red { background-image: url(spritesmith-main-10.png); - background-position: -935px -600px; + background-position: -1148px -1508px; width: 81px; height: 99px; } .Mount_Icon_Rooster-Shade { background-image: url(spritesmith-main-10.png); - background-position: -935px -700px; + background-position: -1230px -1508px; width: 81px; height: 99px; } .Mount_Icon_Rooster-Skeleton { background-image: url(spritesmith-main-10.png); - background-position: -935px -800px; + background-position: -1312px -1508px; width: 81px; height: 99px; } .Mount_Icon_Rooster-White { background-image: url(spritesmith-main-10.png); - background-position: 0px -906px; + background-position: -1394px -1508px; width: 81px; height: 99px; } .Mount_Icon_Rooster-Zombie { background-image: url(spritesmith-main-10.png); - background-position: -82px -906px; + background-position: -1476px -1508px; width: 81px; height: 99px; } .Mount_Icon_Sabretooth-Base { background-image: url(spritesmith-main-10.png); - background-position: -164px -906px; + background-position: -1610px 0px; width: 81px; height: 99px; } .Mount_Icon_Sabretooth-CottonCandyBlue { background-image: url(spritesmith-main-10.png); - background-position: -246px -906px; + background-position: -1610px -100px; width: 81px; height: 99px; } .Mount_Icon_Sabretooth-CottonCandyPink { background-image: url(spritesmith-main-10.png); - background-position: -328px -906px; + background-position: -1610px -200px; width: 81px; height: 99px; } .Mount_Icon_Sabretooth-Desert { background-image: url(spritesmith-main-10.png); - background-position: -410px -906px; + background-position: -1610px -300px; width: 81px; height: 99px; } .Mount_Icon_Sabretooth-Golden { background-image: url(spritesmith-main-10.png); - background-position: -492px -906px; + background-position: -1610px -400px; width: 81px; height: 99px; } .Mount_Icon_Sabretooth-Red { background-image: url(spritesmith-main-10.png); - background-position: -574px -906px; + background-position: -1610px -500px; width: 81px; height: 99px; } .Mount_Icon_Sabretooth-Shade { background-image: url(spritesmith-main-10.png); - background-position: -656px -906px; + background-position: -1610px -600px; width: 81px; height: 99px; } .Mount_Icon_Sabretooth-Skeleton { background-image: url(spritesmith-main-10.png); - background-position: -738px -906px; + background-position: -1610px -700px; width: 81px; height: 99px; } .Mount_Icon_Sabretooth-White { background-image: url(spritesmith-main-10.png); - background-position: -820px -906px; + background-position: -1610px -800px; width: 81px; height: 99px; } .Mount_Icon_Sabretooth-Zombie { background-image: url(spritesmith-main-10.png); - background-position: -902px -906px; + background-position: -1610px -900px; width: 81px; height: 99px; } .Mount_Icon_Seahorse-Base { background-image: url(spritesmith-main-10.png); - background-position: -1017px 0px; + background-position: -1610px -1000px; width: 81px; height: 99px; } .Mount_Icon_Seahorse-CottonCandyBlue { background-image: url(spritesmith-main-10.png); - background-position: -1017px -100px; + background-position: -1610px -1100px; width: 81px; height: 99px; } .Mount_Icon_Seahorse-CottonCandyPink { background-image: url(spritesmith-main-10.png); - background-position: -1017px -200px; + background-position: -1610px -1200px; width: 81px; height: 99px; } .Mount_Icon_Seahorse-Desert { background-image: url(spritesmith-main-10.png); - background-position: -1017px -300px; + background-position: -1610px -1300px; width: 81px; height: 99px; } .Mount_Icon_Seahorse-Golden { background-image: url(spritesmith-main-10.png); - background-position: -1017px -400px; + background-position: -1610px -1400px; width: 81px; height: 99px; } .Mount_Icon_Seahorse-Red { background-image: url(spritesmith-main-10.png); - background-position: -1017px -500px; + background-position: -1610px -1500px; width: 81px; height: 99px; } .Mount_Icon_Seahorse-Shade { background-image: url(spritesmith-main-10.png); - background-position: -1017px -600px; + background-position: -1692px 0px; width: 81px; height: 99px; } .Mount_Icon_Seahorse-Skeleton { background-image: url(spritesmith-main-10.png); - background-position: -1017px -700px; + background-position: -1692px -100px; width: 81px; height: 99px; } .Mount_Icon_Seahorse-White { background-image: url(spritesmith-main-10.png); - background-position: -1017px -800px; + background-position: -1692px -200px; width: 81px; height: 99px; } .Mount_Icon_Seahorse-Zombie { background-image: url(spritesmith-main-10.png); - background-position: -1017px -900px; + background-position: -1692px -300px; width: 81px; height: 99px; } .Mount_Icon_Sheep-Base { background-image: url(spritesmith-main-10.png); - background-position: -1099px 0px; + background-position: -1692px -400px; width: 81px; height: 99px; } .Mount_Icon_Sheep-CottonCandyBlue { background-image: url(spritesmith-main-10.png); - background-position: -1099px -100px; + background-position: -1692px -500px; width: 81px; height: 99px; } .Mount_Icon_Sheep-CottonCandyPink { background-image: url(spritesmith-main-10.png); - background-position: -1099px -200px; + background-position: -1692px -600px; width: 81px; height: 99px; } .Mount_Icon_Sheep-Desert { background-image: url(spritesmith-main-10.png); - background-position: -1099px -300px; + background-position: -1692px -700px; width: 81px; height: 99px; } .Mount_Icon_Sheep-Golden { background-image: url(spritesmith-main-10.png); - background-position: -1099px -400px; + background-position: -1692px -800px; width: 81px; height: 99px; } .Mount_Icon_Sheep-Red { background-image: url(spritesmith-main-10.png); - background-position: -1099px -500px; + background-position: -1692px -900px; width: 81px; height: 99px; } .Mount_Icon_Sheep-Shade { background-image: url(spritesmith-main-10.png); - background-position: -1099px -600px; - width: 81px; - height: 99px; -} -.Mount_Icon_Sheep-Skeleton { - background-image: url(spritesmith-main-10.png); - background-position: -1099px -700px; - width: 81px; - height: 99px; -} -.Mount_Icon_Sheep-White { - background-image: url(spritesmith-main-10.png); - background-position: -1099px -800px; - width: 81px; - height: 99px; -} -.Mount_Icon_Sheep-Zombie { - background-image: url(spritesmith-main-10.png); - background-position: -1099px -900px; - width: 81px; - height: 99px; -} -.Mount_Icon_Slime-Base { - background-image: url(spritesmith-main-10.png); - background-position: 0px -1006px; - width: 81px; - height: 99px; -} -.Mount_Icon_Slime-CottonCandyBlue { - background-image: url(spritesmith-main-10.png); - background-position: -82px -1006px; - width: 81px; - height: 99px; -} -.Mount_Icon_Slime-CottonCandyPink { - background-image: url(spritesmith-main-10.png); - background-position: -164px -1006px; - width: 81px; - height: 99px; -} -.Mount_Icon_Slime-Desert { - background-image: url(spritesmith-main-10.png); - background-position: -246px -1006px; - width: 81px; - height: 99px; -} -.Mount_Icon_Slime-Golden { - background-image: url(spritesmith-main-10.png); - background-position: -328px -1006px; - width: 81px; - height: 99px; -} -.Mount_Icon_Slime-Red { - background-image: url(spritesmith-main-10.png); - background-position: -410px -1006px; - width: 81px; - height: 99px; -} -.Mount_Icon_Slime-Shade { - background-image: url(spritesmith-main-10.png); - background-position: -492px -1006px; - width: 81px; - height: 99px; -} -.Mount_Icon_Slime-Skeleton { - background-image: url(spritesmith-main-10.png); - background-position: -574px -1006px; - width: 81px; - height: 99px; -} -.Mount_Icon_Slime-White { - background-image: url(spritesmith-main-10.png); - background-position: -656px -1006px; - width: 81px; - height: 99px; -} -.Mount_Icon_Slime-Zombie { - background-image: url(spritesmith-main-10.png); - background-position: -738px -1006px; - width: 81px; - height: 99px; -} -.Mount_Icon_Snake-Base { - background-image: url(spritesmith-main-10.png); - background-position: -820px -1006px; - width: 81px; - height: 99px; -} -.Mount_Icon_Snake-CottonCandyBlue { - background-image: url(spritesmith-main-10.png); - background-position: -902px -1006px; - width: 81px; - height: 99px; -} -.Mount_Icon_Snake-CottonCandyPink { - background-image: url(spritesmith-main-10.png); - background-position: -984px -1006px; - width: 81px; - height: 99px; -} -.Mount_Icon_Snake-Desert { - background-image: url(spritesmith-main-10.png); - background-position: -1066px -1006px; - width: 81px; - height: 99px; -} -.Mount_Icon_Snake-Golden { - background-image: url(spritesmith-main-10.png); - background-position: -1181px 0px; - width: 81px; - height: 99px; -} -.Mount_Icon_Snake-Red { - background-image: url(spritesmith-main-10.png); - background-position: -1181px -100px; - width: 81px; - height: 99px; -} -.Mount_Icon_Snake-Shade { - background-image: url(spritesmith-main-10.png); - background-position: -1181px -200px; - width: 81px; - height: 99px; -} -.Mount_Icon_Snake-Skeleton { - background-image: url(spritesmith-main-10.png); - background-position: -1181px -300px; - width: 81px; - height: 99px; -} -.Mount_Icon_Snake-White { - background-image: url(spritesmith-main-10.png); - background-position: -1181px -400px; - width: 81px; - height: 99px; -} -.Mount_Icon_Snake-Zombie { - background-image: url(spritesmith-main-10.png); - background-position: -1181px -500px; - width: 81px; - height: 99px; -} -.Mount_Icon_Spider-Base { - background-image: url(spritesmith-main-10.png); - background-position: -1181px -600px; - width: 81px; - height: 99px; -} -.Mount_Icon_Spider-CottonCandyBlue { - background-image: url(spritesmith-main-10.png); - background-position: -1181px -700px; - width: 81px; - height: 99px; -} -.Mount_Icon_Spider-CottonCandyPink { - background-image: url(spritesmith-main-10.png); - background-position: -1181px -800px; - width: 81px; - height: 99px; -} -.Mount_Icon_Spider-Desert { - background-image: url(spritesmith-main-10.png); - background-position: -1181px -900px; - width: 81px; - height: 99px; -} -.Mount_Icon_Spider-Golden { - background-image: url(spritesmith-main-10.png); - background-position: -1181px -1000px; - width: 81px; - height: 99px; -} -.Mount_Icon_Spider-Red { - background-image: url(spritesmith-main-10.png); - background-position: 0px -1106px; - width: 81px; - height: 99px; -} -.Mount_Icon_Spider-Shade { - background-image: url(spritesmith-main-10.png); - background-position: -1673px -1100px; - width: 81px; - height: 99px; -} -.Mount_Icon_Spider-Skeleton { - background-image: url(spritesmith-main-10.png); - background-position: -164px -1106px; - width: 81px; - height: 99px; -} -.Mount_Icon_Spider-White { - background-image: url(spritesmith-main-10.png); - background-position: -246px -1106px; - width: 81px; - height: 99px; -} -.Mount_Icon_Spider-Zombie { - background-image: url(spritesmith-main-10.png); - background-position: -328px -1106px; - width: 81px; - height: 99px; -} -.Mount_Icon_TRex-Base { - background-image: url(spritesmith-main-10.png); - background-position: -410px -1106px; - width: 81px; - height: 99px; -} -.Mount_Icon_TRex-CottonCandyBlue { - background-image: url(spritesmith-main-10.png); - background-position: -492px -1106px; - width: 81px; - height: 99px; -} -.Mount_Icon_TRex-CottonCandyPink { - background-image: url(spritesmith-main-10.png); - background-position: -574px -1106px; - width: 81px; - height: 99px; -} -.Mount_Icon_TRex-Desert { - background-image: url(spritesmith-main-10.png); - background-position: -656px -1106px; - width: 81px; - height: 99px; -} -.Mount_Icon_TRex-Golden { - background-image: url(spritesmith-main-10.png); - background-position: -738px -1106px; - width: 81px; - height: 99px; -} -.Mount_Icon_TRex-Red { - background-image: url(spritesmith-main-10.png); - background-position: -820px -1106px; - width: 81px; - height: 99px; -} -.Mount_Icon_TRex-Shade { - background-image: url(spritesmith-main-10.png); - background-position: -902px -1106px; - width: 81px; - height: 99px; -} -.Mount_Icon_TRex-Skeleton { - background-image: url(spritesmith-main-10.png); - background-position: -984px -1106px; - width: 81px; - height: 99px; -} -.Mount_Icon_TRex-White { - background-image: url(spritesmith-main-10.png); - background-position: -1066px -1106px; - width: 81px; - height: 99px; -} -.Mount_Icon_TRex-Zombie { - background-image: url(spritesmith-main-10.png); - background-position: -1148px -1106px; - width: 81px; - height: 99px; -} -.Mount_Icon_TigerCub-Base { - background-image: url(spritesmith-main-10.png); - background-position: -1263px 0px; - width: 81px; - height: 99px; -} -.Mount_Icon_TigerCub-CottonCandyBlue { - background-image: url(spritesmith-main-10.png); - background-position: -1263px -100px; - width: 81px; - height: 99px; -} -.Mount_Icon_TigerCub-CottonCandyPink { - background-image: url(spritesmith-main-10.png); - background-position: -1263px -200px; - width: 81px; - height: 99px; -} -.Mount_Icon_TigerCub-Desert { - background-image: url(spritesmith-main-10.png); - background-position: -1263px -300px; - width: 81px; - height: 99px; -} -.Mount_Icon_TigerCub-Golden { - background-image: url(spritesmith-main-10.png); - background-position: -1263px -400px; - width: 81px; - height: 99px; -} -.Mount_Icon_TigerCub-Peppermint { - background-image: url(spritesmith-main-10.png); - background-position: -1263px -500px; - width: 81px; - height: 99px; -} -.Mount_Icon_TigerCub-Red { - background-image: url(spritesmith-main-10.png); - background-position: -1263px -600px; - width: 81px; - height: 99px; -} -.Mount_Icon_TigerCub-Shade { - background-image: url(spritesmith-main-10.png); - background-position: -1263px -700px; - width: 81px; - height: 99px; -} -.Mount_Icon_TigerCub-Skeleton { - background-image: url(spritesmith-main-10.png); - background-position: -1263px -800px; - width: 81px; - height: 99px; -} -.Mount_Icon_TigerCub-Spooky { - background-image: url(spritesmith-main-10.png); - background-position: -1263px -900px; - width: 81px; - height: 99px; -} -.Mount_Icon_TigerCub-White { - background-image: url(spritesmith-main-10.png); - background-position: -1263px -1000px; - width: 81px; - height: 99px; -} -.Mount_Icon_TigerCub-Zombie { - background-image: url(spritesmith-main-10.png); - background-position: -1263px -1100px; - width: 81px; - height: 99px; -} -.Mount_Icon_Turkey-Base { - background-image: url(spritesmith-main-10.png); - background-position: 0px -1206px; - width: 81px; - height: 99px; -} -.Mount_Icon_Unicorn-Base { - background-image: url(spritesmith-main-10.png); - background-position: -82px -1206px; - width: 81px; - height: 99px; -} -.Mount_Icon_Unicorn-CottonCandyBlue { - background-image: url(spritesmith-main-10.png); - background-position: -164px -1206px; - width: 81px; - height: 99px; -} -.Mount_Icon_Unicorn-CottonCandyPink { - background-image: url(spritesmith-main-10.png); - background-position: -246px -1206px; - width: 81px; - height: 99px; -} -.Mount_Icon_Unicorn-Desert { - background-image: url(spritesmith-main-10.png); - background-position: -328px -1206px; - width: 81px; - height: 99px; -} -.Mount_Icon_Unicorn-Golden { - background-image: url(spritesmith-main-10.png); - background-position: -410px -1206px; - width: 81px; - height: 99px; -} -.Mount_Icon_Unicorn-Red { - background-image: url(spritesmith-main-10.png); - background-position: -492px -1206px; - width: 81px; - height: 99px; -} -.Mount_Icon_Unicorn-Shade { - background-image: url(spritesmith-main-10.png); - background-position: -574px -1206px; - width: 81px; - height: 99px; -} -.Mount_Icon_Unicorn-Skeleton { - background-image: url(spritesmith-main-10.png); - background-position: -656px -1206px; - width: 81px; - height: 99px; -} -.Mount_Icon_Unicorn-White { - background-image: url(spritesmith-main-10.png); - background-position: -738px -1206px; - width: 81px; - height: 99px; -} -.Mount_Icon_Unicorn-Zombie { - background-image: url(spritesmith-main-10.png); - background-position: -820px -1206px; - width: 81px; - height: 99px; -} -.Mount_Icon_Whale-Base { - background-image: url(spritesmith-main-10.png); - background-position: -902px -1206px; - width: 81px; - height: 99px; -} -.Mount_Icon_Whale-CottonCandyBlue { - background-image: url(spritesmith-main-10.png); - background-position: -984px -1206px; - width: 81px; - height: 99px; -} -.Mount_Icon_Whale-CottonCandyPink { - background-image: url(spritesmith-main-10.png); - background-position: -1066px -1206px; - width: 81px; - height: 99px; -} -.Mount_Icon_Whale-Desert { - background-image: url(spritesmith-main-10.png); - background-position: -1148px -1206px; - width: 81px; - height: 99px; -} -.Mount_Icon_Whale-Golden { - background-image: url(spritesmith-main-10.png); - background-position: -1230px -1206px; - width: 81px; - height: 99px; -} -.Mount_Icon_Whale-Red { - background-image: url(spritesmith-main-10.png); - background-position: -1345px 0px; - width: 81px; - height: 99px; -} -.Mount_Icon_Whale-Shade { - background-image: url(spritesmith-main-10.png); - background-position: -1345px -100px; - width: 81px; - height: 99px; -} -.Mount_Icon_Whale-Skeleton { - background-image: url(spritesmith-main-10.png); - background-position: -1345px -200px; - width: 81px; - height: 99px; -} -.Mount_Icon_Whale-White { - background-image: url(spritesmith-main-10.png); - background-position: -1345px -300px; - width: 81px; - height: 99px; -} -.Mount_Icon_Whale-Zombie { - background-image: url(spritesmith-main-10.png); - background-position: -1345px -400px; - width: 81px; - height: 99px; -} -.Mount_Icon_Wolf-Base { - background-image: url(spritesmith-main-10.png); - background-position: -1345px -500px; - width: 81px; - height: 99px; -} -.Mount_Icon_Wolf-CottonCandyBlue { - background-image: url(spritesmith-main-10.png); - background-position: -1345px -600px; - width: 81px; - height: 99px; -} -.Mount_Icon_Wolf-CottonCandyPink { - background-image: url(spritesmith-main-10.png); - background-position: -1345px -700px; - width: 81px; - height: 99px; -} -.Mount_Icon_Wolf-Desert { - background-image: url(spritesmith-main-10.png); - background-position: -1345px -800px; - width: 81px; - height: 99px; -} -.Mount_Icon_Wolf-Golden { - background-image: url(spritesmith-main-10.png); - background-position: -1345px -900px; - width: 81px; - height: 99px; -} -.Mount_Icon_Wolf-Peppermint { - background-image: url(spritesmith-main-10.png); - background-position: -1345px -1000px; - width: 81px; - height: 99px; -} -.Mount_Icon_Wolf-Red { - background-image: url(spritesmith-main-10.png); - background-position: -1345px -1100px; - width: 81px; - height: 99px; -} -.Mount_Icon_Wolf-Shade { - background-image: url(spritesmith-main-10.png); - background-position: -1345px -1200px; - width: 81px; - height: 99px; -} -.Mount_Icon_Wolf-Skeleton { - background-image: url(spritesmith-main-10.png); - background-position: 0px -1306px; - width: 81px; - height: 99px; -} -.Mount_Icon_Wolf-Spooky { - background-image: url(spritesmith-main-10.png); - background-position: -82px -1306px; - width: 81px; - height: 99px; -} -.Mount_Icon_Wolf-White { - background-image: url(spritesmith-main-10.png); - background-position: -164px -1306px; - width: 81px; - height: 99px; -} -.Mount_Icon_Wolf-Zombie { - background-image: url(spritesmith-main-10.png); - background-position: -246px -1306px; - width: 81px; - height: 99px; -} -.Pet-BearCub-Base { - background-image: url(spritesmith-main-10.png); - background-position: -328px -1306px; - width: 81px; - height: 99px; -} -.Pet-BearCub-CottonCandyBlue { - background-image: url(spritesmith-main-10.png); - background-position: -410px -1306px; - width: 81px; - height: 99px; -} -.Pet-BearCub-CottonCandyPink { - background-image: url(spritesmith-main-10.png); - background-position: -492px -1306px; - width: 81px; - height: 99px; -} -.Pet-BearCub-Desert { - background-image: url(spritesmith-main-10.png); - background-position: -574px -1306px; - width: 81px; - height: 99px; -} -.Pet-BearCub-Golden { - background-image: url(spritesmith-main-10.png); - background-position: -656px -1306px; - width: 81px; - height: 99px; -} -.Pet-BearCub-Peppermint { - background-image: url(spritesmith-main-10.png); - background-position: -738px -1306px; - width: 81px; - height: 99px; -} -.Pet-BearCub-Polar { - background-image: url(spritesmith-main-10.png); - background-position: -820px -1306px; - width: 81px; - height: 99px; -} -.Pet-BearCub-Red { - background-image: url(spritesmith-main-10.png); - background-position: -902px -1306px; - width: 81px; - height: 99px; -} -.Pet-BearCub-Shade { - background-image: url(spritesmith-main-10.png); - background-position: -984px -1306px; - width: 81px; - height: 99px; -} -.Pet-BearCub-Skeleton { - background-image: url(spritesmith-main-10.png); - background-position: -1066px -1306px; - width: 81px; - height: 99px; -} -.Pet-BearCub-Spooky { - background-image: url(spritesmith-main-10.png); - background-position: -1148px -1306px; - width: 81px; - height: 99px; -} -.Pet-BearCub-White { - background-image: url(spritesmith-main-10.png); - background-position: -1230px -1306px; - width: 81px; - height: 99px; -} -.Pet-BearCub-Zombie { - background-image: url(spritesmith-main-10.png); - background-position: -1312px -1306px; - width: 81px; - height: 99px; -} -.Pet-Bunny-Base { - background-image: url(spritesmith-main-10.png); - background-position: -1427px 0px; - width: 81px; - height: 99px; -} -.Pet-Bunny-CottonCandyBlue { - background-image: url(spritesmith-main-10.png); - background-position: -1427px -100px; - width: 81px; - height: 99px; -} -.Pet-Bunny-CottonCandyPink { - background-image: url(spritesmith-main-10.png); - background-position: -1427px -200px; - width: 81px; - height: 99px; -} -.Pet-Bunny-Desert { - background-image: url(spritesmith-main-10.png); - background-position: -1427px -300px; - width: 81px; - height: 99px; -} -.Pet-Bunny-Golden { - background-image: url(spritesmith-main-10.png); - background-position: -1427px -400px; - width: 81px; - height: 99px; -} -.Pet-Bunny-Red { - background-image: url(spritesmith-main-10.png); - background-position: -1427px -500px; - width: 81px; - height: 99px; -} -.Pet-Bunny-Shade { - background-image: url(spritesmith-main-10.png); - background-position: -1427px -600px; - width: 81px; - height: 99px; -} -.Pet-Bunny-Skeleton { - background-image: url(spritesmith-main-10.png); - background-position: -1427px -700px; - width: 81px; - height: 99px; -} -.Pet-Bunny-White { - background-image: url(spritesmith-main-10.png); - background-position: -1427px -800px; - width: 81px; - height: 99px; -} -.Pet-Bunny-Zombie { - background-image: url(spritesmith-main-10.png); - background-position: -1427px -900px; - width: 81px; - height: 99px; -} -.Pet-Cactus-Base { - background-image: url(spritesmith-main-10.png); - background-position: -1427px -1000px; - width: 81px; - height: 99px; -} -.Pet-Cactus-CottonCandyBlue { - background-image: url(spritesmith-main-10.png); - background-position: -1427px -1100px; - width: 81px; - height: 99px; -} -.Pet-Cactus-CottonCandyPink { - background-image: url(spritesmith-main-10.png); - background-position: -1427px -1200px; - width: 81px; - height: 99px; -} -.Pet-Cactus-Desert { - background-image: url(spritesmith-main-10.png); - background-position: -1427px -1300px; - width: 81px; - height: 99px; -} -.Pet-Cactus-Golden { - background-image: url(spritesmith-main-10.png); - background-position: 0px -1406px; - width: 81px; - height: 99px; -} -.Pet-Cactus-Peppermint { - background-image: url(spritesmith-main-10.png); - background-position: -82px -1406px; - width: 81px; - height: 99px; -} -.Pet-Cactus-Red { - background-image: url(spritesmith-main-10.png); - background-position: -164px -1406px; - width: 81px; - height: 99px; -} -.Pet-Cactus-Shade { - background-image: url(spritesmith-main-10.png); - background-position: -246px -1406px; - width: 81px; - height: 99px; -} -.Pet-Cactus-Skeleton { - background-image: url(spritesmith-main-10.png); - background-position: -328px -1406px; - width: 81px; - height: 99px; -} -.Pet-Cactus-Spooky { - background-image: url(spritesmith-main-10.png); - background-position: -410px -1406px; - width: 81px; - height: 99px; -} -.Pet-Cactus-White { - background-image: url(spritesmith-main-10.png); - background-position: -492px -1406px; - width: 81px; - height: 99px; -} -.Pet-Cactus-Zombie { - background-image: url(spritesmith-main-10.png); - background-position: -574px -1406px; - width: 81px; - height: 99px; -} -.Pet-Cheetah-Base { - background-image: url(spritesmith-main-10.png); - background-position: -656px -1406px; - width: 81px; - height: 99px; -} -.Pet-Cheetah-CottonCandyBlue { - background-image: url(spritesmith-main-10.png); - background-position: -738px -1406px; - width: 81px; - height: 99px; -} -.Pet-Cheetah-CottonCandyPink { - background-image: url(spritesmith-main-10.png); - background-position: -820px -1406px; - width: 81px; - height: 99px; -} -.Pet-Cheetah-Desert { - background-image: url(spritesmith-main-10.png); - background-position: -902px -1406px; - width: 81px; - height: 99px; -} -.Pet-Cheetah-Golden { - background-image: url(spritesmith-main-10.png); - background-position: -984px -1406px; - width: 81px; - height: 99px; -} -.Pet-Cheetah-Red { - background-image: url(spritesmith-main-10.png); - background-position: -1066px -1406px; - width: 81px; - height: 99px; -} -.Pet-Cheetah-Shade { - background-image: url(spritesmith-main-10.png); - background-position: -1148px -1406px; - width: 81px; - height: 99px; -} -.Pet-Cheetah-Skeleton { - background-image: url(spritesmith-main-10.png); - background-position: -1230px -1406px; - width: 81px; - height: 99px; -} -.Pet-Cheetah-White { - background-image: url(spritesmith-main-10.png); - background-position: -1312px -1406px; - width: 81px; - height: 99px; -} -.Pet-Cheetah-Zombie { - background-image: url(spritesmith-main-10.png); - background-position: -1394px -1406px; - width: 81px; - height: 99px; -} -.Pet-Cuttlefish-Base { - background-image: url(spritesmith-main-10.png); - background-position: -1509px 0px; - width: 81px; - height: 99px; -} -.Pet-Cuttlefish-CottonCandyBlue { - background-image: url(spritesmith-main-10.png); - background-position: -1509px -100px; - width: 81px; - height: 99px; -} -.Pet-Cuttlefish-CottonCandyPink { - background-image: url(spritesmith-main-10.png); - background-position: -1509px -200px; - width: 81px; - height: 99px; -} -.Pet-Cuttlefish-Desert { - background-image: url(spritesmith-main-10.png); - background-position: -1509px -300px; - width: 81px; - height: 99px; -} -.Pet-Cuttlefish-Golden { - background-image: url(spritesmith-main-10.png); - background-position: -1509px -400px; - width: 81px; - height: 99px; -} -.Pet-Cuttlefish-Red { - background-image: url(spritesmith-main-10.png); - background-position: -1509px -500px; - width: 81px; - height: 99px; -} -.Pet-Cuttlefish-Shade { - background-image: url(spritesmith-main-10.png); - background-position: -1509px -600px; - width: 81px; - height: 99px; -} -.Pet-Cuttlefish-Skeleton { - background-image: url(spritesmith-main-10.png); - background-position: -1509px -700px; - width: 81px; - height: 99px; -} -.Pet-Cuttlefish-White { - background-image: url(spritesmith-main-10.png); - background-position: -1509px -800px; - width: 81px; - height: 99px; -} -.Pet-Cuttlefish-Zombie { - background-image: url(spritesmith-main-10.png); - background-position: -1509px -900px; - width: 81px; - height: 99px; -} -.Pet-Deer-Base { - background-image: url(spritesmith-main-10.png); - background-position: -1509px -1000px; - width: 81px; - height: 99px; -} -.Pet-Deer-CottonCandyBlue { - background-image: url(spritesmith-main-10.png); - background-position: -1509px -1100px; - width: 81px; - height: 99px; -} -.Pet-Deer-CottonCandyPink { - background-image: url(spritesmith-main-10.png); - background-position: -1509px -1200px; - width: 81px; - height: 99px; -} -.Pet-Deer-Desert { - background-image: url(spritesmith-main-10.png); - background-position: -1509px -1300px; - width: 81px; - height: 99px; -} -.Pet-Deer-Golden { - background-image: url(spritesmith-main-10.png); - background-position: -1509px -1400px; - width: 81px; - height: 99px; -} -.Pet-Deer-Red { - background-image: url(spritesmith-main-10.png); - background-position: -1591px 0px; - width: 81px; - height: 99px; -} -.Pet-Deer-Shade { - background-image: url(spritesmith-main-10.png); - background-position: -1591px -100px; - width: 81px; - height: 99px; -} -.Pet-Deer-Skeleton { - background-image: url(spritesmith-main-10.png); - background-position: -1591px -200px; - width: 81px; - height: 99px; -} -.Pet-Deer-White { - background-image: url(spritesmith-main-10.png); - background-position: -1591px -300px; - width: 81px; - height: 99px; -} -.Pet-Deer-Zombie { - background-image: url(spritesmith-main-10.png); - background-position: -1591px -400px; - width: 81px; - height: 99px; -} -.Pet-Dragon-Base { - background-image: url(spritesmith-main-10.png); - background-position: -1591px -500px; - width: 81px; - height: 99px; -} -.Pet-Dragon-CottonCandyBlue { - background-image: url(spritesmith-main-10.png); - background-position: -1591px -600px; - width: 81px; - height: 99px; -} -.Pet-Dragon-CottonCandyPink { - background-image: url(spritesmith-main-10.png); - background-position: -1591px -700px; - width: 81px; - height: 99px; -} -.Pet-Dragon-Desert { - background-image: url(spritesmith-main-10.png); - background-position: -1591px -800px; - width: 81px; - height: 99px; -} -.Pet-Dragon-Golden { - background-image: url(spritesmith-main-10.png); - background-position: -1591px -900px; - width: 81px; - height: 99px; -} -.Pet-Dragon-Hydra { - background-image: url(spritesmith-main-10.png); - background-position: -1591px -1000px; - width: 81px; - height: 99px; -} -.Pet-Dragon-Peppermint { - background-image: url(spritesmith-main-10.png); - background-position: -1591px -1100px; - width: 81px; - height: 99px; -} -.Pet-Dragon-Red { - background-image: url(spritesmith-main-10.png); - background-position: -1591px -1200px; - width: 81px; - height: 99px; -} -.Pet-Dragon-Shade { - background-image: url(spritesmith-main-10.png); - background-position: -1591px -1300px; - width: 81px; - height: 99px; -} -.Pet-Dragon-Skeleton { - background-image: url(spritesmith-main-10.png); - background-position: -1591px -1400px; - width: 81px; - height: 99px; -} -.Pet-Dragon-Spooky { - background-image: url(spritesmith-main-10.png); - background-position: 0px -1506px; - width: 81px; - height: 99px; -} -.Pet-Dragon-White { - background-image: url(spritesmith-main-10.png); - background-position: -82px -1506px; - width: 81px; - height: 99px; -} -.Pet-Dragon-Zombie { - background-image: url(spritesmith-main-10.png); - background-position: -164px -1506px; - width: 81px; - height: 99px; -} -.Pet-Egg-Base { - background-image: url(spritesmith-main-10.png); - background-position: -246px -1506px; - width: 81px; - height: 99px; -} -.Pet-Egg-CottonCandyBlue { - background-image: url(spritesmith-main-10.png); - background-position: -328px -1506px; - width: 81px; - height: 99px; -} -.Pet-Egg-CottonCandyPink { - background-image: url(spritesmith-main-10.png); - background-position: -410px -1506px; - width: 81px; - height: 99px; -} -.Pet-Egg-Desert { - background-image: url(spritesmith-main-10.png); - background-position: -492px -1506px; - width: 81px; - height: 99px; -} -.Pet-Egg-Golden { - background-image: url(spritesmith-main-10.png); - background-position: -574px -1506px; - width: 81px; - height: 99px; -} -.Pet-Egg-Red { - background-image: url(spritesmith-main-10.png); - background-position: -656px -1506px; - width: 81px; - height: 99px; -} -.Pet-Egg-Shade { - background-image: url(spritesmith-main-10.png); - background-position: -738px -1506px; - width: 81px; - height: 99px; -} -.Pet-Egg-Skeleton { - background-image: url(spritesmith-main-10.png); - background-position: -820px -1506px; - width: 81px; - height: 99px; -} -.Pet-Egg-White { - background-image: url(spritesmith-main-10.png); - background-position: -902px -1506px; - width: 81px; - height: 99px; -} -.Pet-Egg-Zombie { - background-image: url(spritesmith-main-10.png); - background-position: -984px -1506px; - width: 81px; - height: 99px; -} -.Pet-FlyingPig-Base { - background-image: url(spritesmith-main-10.png); - background-position: -1066px -1506px; - width: 81px; - height: 99px; -} -.Pet-FlyingPig-CottonCandyBlue { - background-image: url(spritesmith-main-10.png); - background-position: -1148px -1506px; - width: 81px; - height: 99px; -} -.Pet-FlyingPig-CottonCandyPink { - background-image: url(spritesmith-main-10.png); - background-position: -1230px -1506px; - width: 81px; - height: 99px; -} -.Pet-FlyingPig-Desert { - background-image: url(spritesmith-main-10.png); - background-position: -1312px -1506px; - width: 81px; - height: 99px; -} -.Pet-FlyingPig-Golden { - background-image: url(spritesmith-main-10.png); - background-position: -1394px -1506px; - width: 81px; - height: 99px; -} -.Pet-FlyingPig-Peppermint { - background-image: url(spritesmith-main-10.png); - background-position: -1476px -1506px; - width: 81px; - height: 99px; -} -.Pet-FlyingPig-Red { - background-image: url(spritesmith-main-10.png); - background-position: -1558px -1506px; - width: 81px; - height: 99px; -} -.Pet-FlyingPig-Shade { - background-image: url(spritesmith-main-10.png); - background-position: -1673px 0px; - width: 81px; - height: 99px; -} -.Pet-FlyingPig-Skeleton { - background-image: url(spritesmith-main-10.png); - background-position: -1673px -100px; - width: 81px; - height: 99px; -} -.Pet-FlyingPig-Spooky { - background-image: url(spritesmith-main-10.png); - background-position: -1673px -200px; - width: 81px; - height: 99px; -} -.Pet-FlyingPig-White { - background-image: url(spritesmith-main-10.png); - background-position: -1673px -300px; - width: 81px; - height: 99px; -} -.Pet-FlyingPig-Zombie { - background-image: url(spritesmith-main-10.png); - background-position: -1673px -400px; - width: 81px; - height: 99px; -} -.Pet-Fox-Base { - background-image: url(spritesmith-main-10.png); - background-position: -1673px -500px; - width: 81px; - height: 99px; -} -.Pet-Fox-CottonCandyBlue { - background-image: url(spritesmith-main-10.png); - background-position: -1673px -600px; - width: 81px; - height: 99px; -} -.Pet-Fox-CottonCandyPink { - background-image: url(spritesmith-main-10.png); - background-position: -1673px -700px; - width: 81px; - height: 99px; -} -.Pet-Fox-Desert { - background-image: url(spritesmith-main-10.png); - background-position: -1673px -800px; - width: 81px; - height: 99px; -} -.Pet-Fox-Golden { - background-image: url(spritesmith-main-10.png); - background-position: -1673px -900px; - width: 81px; - height: 99px; -} -.Pet-Fox-Peppermint { - background-image: url(spritesmith-main-10.png); - background-position: -1673px -1000px; - width: 81px; - height: 99px; -} -.Pet-Fox-Red { - background-image: url(spritesmith-main-10.png); - background-position: -738px -706px; + background-position: -492px -1108px; width: 81px; height: 99px; } diff --git a/common/dist/sprites/spritesmith-main-10.png b/common/dist/sprites/spritesmith-main-10.png index a737cf31f3..d9d138f30c 100644 Binary files a/common/dist/sprites/spritesmith-main-10.png 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 index 30a691455d..4c8c3933a6 100644 --- a/common/dist/sprites/spritesmith-main-11.css +++ b/common/dist/sprites/spritesmith-main-11.css @@ -1,1698 +1,1992 @@ -.Pet-Fox-Shade { +.Mount_Icon_Sheep-Skeleton { background-image: url(spritesmith-main-11.png); background-position: -82px 0px; width: 81px; height: 99px; } -.Pet-Fox-Skeleton { - background-image: url(spritesmith-main-11.png); - background-position: -82px -1000px; - width: 81px; - height: 99px; -} -.Pet-Fox-Spooky { - background-image: url(spritesmith-main-11.png); - background-position: -164px 0px; - width: 81px; - height: 99px; -} -.Pet-Fox-White { - background-image: url(spritesmith-main-11.png); - background-position: 0px -100px; - width: 81px; - height: 99px; -} -.Pet-Fox-Zombie { - background-image: url(spritesmith-main-11.png); - background-position: -82px -100px; - width: 81px; - height: 99px; -} -.Pet-Frog-Base { - background-image: url(spritesmith-main-11.png); - background-position: -164px -100px; - width: 81px; - height: 99px; -} -.Pet-Frog-CottonCandyBlue { - background-image: url(spritesmith-main-11.png); - background-position: -246px 0px; - width: 81px; - height: 99px; -} -.Pet-Frog-CottonCandyPink { - background-image: url(spritesmith-main-11.png); - background-position: -246px -100px; - width: 81px; - height: 99px; -} -.Pet-Frog-Desert { - background-image: url(spritesmith-main-11.png); - background-position: 0px -200px; - width: 81px; - height: 99px; -} -.Pet-Frog-Golden { - background-image: url(spritesmith-main-11.png); - background-position: -82px -200px; - width: 81px; - height: 99px; -} -.Pet-Frog-Red { - background-image: url(spritesmith-main-11.png); - background-position: -164px -200px; - width: 81px; - height: 99px; -} -.Pet-Frog-Shade { - background-image: url(spritesmith-main-11.png); - background-position: -246px -200px; - width: 81px; - height: 99px; -} -.Pet-Frog-Skeleton { - background-image: url(spritesmith-main-11.png); - background-position: -328px 0px; - width: 81px; - height: 99px; -} -.Pet-Frog-White { - background-image: url(spritesmith-main-11.png); - background-position: -328px -100px; - width: 81px; - height: 99px; -} -.Pet-Frog-Zombie { - background-image: url(spritesmith-main-11.png); - background-position: -328px -200px; - width: 81px; - height: 99px; -} -.Pet-Gryphon-Base { - background-image: url(spritesmith-main-11.png); - background-position: 0px -300px; - width: 81px; - height: 99px; -} -.Pet-Gryphon-CottonCandyBlue { - background-image: url(spritesmith-main-11.png); - background-position: -82px -300px; - width: 81px; - height: 99px; -} -.Pet-Gryphon-CottonCandyPink { - background-image: url(spritesmith-main-11.png); - background-position: -164px -300px; - width: 81px; - height: 99px; -} -.Pet-Gryphon-Desert { - background-image: url(spritesmith-main-11.png); - background-position: -246px -300px; - width: 81px; - height: 99px; -} -.Pet-Gryphon-Golden { - background-image: url(spritesmith-main-11.png); - background-position: -328px -300px; - width: 81px; - height: 99px; -} -.Pet-Gryphon-Red { - background-image: url(spritesmith-main-11.png); - background-position: -410px 0px; - width: 81px; - height: 99px; -} -.Pet-Gryphon-Shade { - background-image: url(spritesmith-main-11.png); - background-position: -410px -100px; - width: 81px; - height: 99px; -} -.Pet-Gryphon-Skeleton { - background-image: url(spritesmith-main-11.png); - background-position: -410px -200px; - width: 81px; - height: 99px; -} -.Pet-Gryphon-White { - background-image: url(spritesmith-main-11.png); - background-position: -410px -300px; - width: 81px; - height: 99px; -} -.Pet-Gryphon-Zombie { - background-image: url(spritesmith-main-11.png); - background-position: -492px 0px; - width: 81px; - height: 99px; -} -.Pet-Hedgehog-Base { - background-image: url(spritesmith-main-11.png); - background-position: -492px -100px; - width: 81px; - height: 99px; -} -.Pet-Hedgehog-CottonCandyBlue { - background-image: url(spritesmith-main-11.png); - background-position: -492px -200px; - width: 81px; - height: 99px; -} -.Pet-Hedgehog-CottonCandyPink { - background-image: url(spritesmith-main-11.png); - background-position: -492px -300px; - width: 81px; - height: 99px; -} -.Pet-Hedgehog-Desert { - background-image: url(spritesmith-main-11.png); - background-position: 0px -400px; - width: 81px; - height: 99px; -} -.Pet-Hedgehog-Golden { - background-image: url(spritesmith-main-11.png); - background-position: -82px -400px; - width: 81px; - height: 99px; -} -.Pet-Hedgehog-Red { - background-image: url(spritesmith-main-11.png); - background-position: -164px -400px; - width: 81px; - height: 99px; -} -.Pet-Hedgehog-Shade { - background-image: url(spritesmith-main-11.png); - background-position: -246px -400px; - width: 81px; - height: 99px; -} -.Pet-Hedgehog-Skeleton { - background-image: url(spritesmith-main-11.png); - background-position: -328px -400px; - width: 81px; - height: 99px; -} -.Pet-Hedgehog-White { - background-image: url(spritesmith-main-11.png); - background-position: -410px -400px; - width: 81px; - height: 99px; -} -.Pet-Hedgehog-Zombie { - background-image: url(spritesmith-main-11.png); - background-position: -492px -400px; - width: 81px; - height: 99px; -} -.Pet-Horse-Base { - background-image: url(spritesmith-main-11.png); - background-position: -574px 0px; - width: 81px; - height: 99px; -} -.Pet-Horse-CottonCandyBlue { - background-image: url(spritesmith-main-11.png); - background-position: -574px -100px; - width: 81px; - height: 99px; -} -.Pet-Horse-CottonCandyPink { - background-image: url(spritesmith-main-11.png); - background-position: -574px -200px; - width: 81px; - height: 99px; -} -.Pet-Horse-Desert { - background-image: url(spritesmith-main-11.png); - background-position: -574px -300px; - width: 81px; - height: 99px; -} -.Pet-Horse-Golden { - background-image: url(spritesmith-main-11.png); - background-position: -574px -400px; - width: 81px; - height: 99px; -} -.Pet-Horse-Red { - background-image: url(spritesmith-main-11.png); - background-position: 0px -500px; - width: 81px; - height: 99px; -} -.Pet-Horse-Shade { - background-image: url(spritesmith-main-11.png); - background-position: -82px -500px; - width: 81px; - height: 99px; -} -.Pet-Horse-Skeleton { - background-image: url(spritesmith-main-11.png); - background-position: -164px -500px; - width: 81px; - height: 99px; -} -.Pet-Horse-White { - background-image: url(spritesmith-main-11.png); - background-position: -246px -500px; - width: 81px; - height: 99px; -} -.Pet-Horse-Zombie { - background-image: url(spritesmith-main-11.png); - background-position: -328px -500px; - width: 81px; - height: 99px; -} -.Pet-JackOLantern-Base { - background-image: url(spritesmith-main-11.png); - background-position: -410px -500px; - width: 81px; - height: 99px; -} -.Pet-LionCub-Base { - background-image: url(spritesmith-main-11.png); - background-position: -492px -500px; - width: 81px; - height: 99px; -} -.Pet-LionCub-CottonCandyBlue { - background-image: url(spritesmith-main-11.png); - background-position: -574px -500px; - width: 81px; - height: 99px; -} -.Pet-LionCub-CottonCandyPink { - background-image: url(spritesmith-main-11.png); - background-position: -656px 0px; - width: 81px; - height: 99px; -} -.Pet-LionCub-Desert { - background-image: url(spritesmith-main-11.png); - background-position: -656px -100px; - width: 81px; - height: 99px; -} -.Pet-LionCub-Golden { - background-image: url(spritesmith-main-11.png); - background-position: -656px -200px; - width: 81px; - height: 99px; -} -.Pet-LionCub-Peppermint { - background-image: url(spritesmith-main-11.png); - background-position: -656px -300px; - width: 81px; - height: 99px; -} -.Pet-LionCub-Red { - background-image: url(spritesmith-main-11.png); - background-position: -656px -400px; - width: 81px; - height: 99px; -} -.Pet-LionCub-Shade { - background-image: url(spritesmith-main-11.png); - background-position: -656px -500px; - width: 81px; - height: 99px; -} -.Pet-LionCub-Skeleton { - background-image: url(spritesmith-main-11.png); - background-position: 0px -600px; - width: 81px; - height: 99px; -} -.Pet-LionCub-Spooky { - background-image: url(spritesmith-main-11.png); - background-position: -82px -600px; - width: 81px; - height: 99px; -} -.Pet-LionCub-White { - background-image: url(spritesmith-main-11.png); - background-position: -164px -600px; - width: 81px; - height: 99px; -} -.Pet-LionCub-Zombie { - background-image: url(spritesmith-main-11.png); - background-position: -246px -600px; - width: 81px; - height: 99px; -} -.Pet-Mammoth-Base { - background-image: url(spritesmith-main-11.png); - background-position: -328px -600px; - width: 81px; - height: 99px; -} -.Pet-MantisShrimp-Base { - background-image: url(spritesmith-main-11.png); - background-position: -410px -600px; - width: 81px; - height: 99px; -} -.Pet-Monkey-Base { - background-image: url(spritesmith-main-11.png); - background-position: -492px -600px; - width: 81px; - height: 99px; -} -.Pet-Monkey-CottonCandyBlue { - background-image: url(spritesmith-main-11.png); - background-position: -574px -600px; - width: 81px; - height: 99px; -} -.Pet-Monkey-CottonCandyPink { - background-image: url(spritesmith-main-11.png); - background-position: -656px -600px; - width: 81px; - height: 99px; -} -.Pet-Monkey-Desert { - background-image: url(spritesmith-main-11.png); - background-position: -738px 0px; - width: 81px; - height: 99px; -} -.Pet-Monkey-Golden { - background-image: url(spritesmith-main-11.png); - background-position: -738px -100px; - width: 81px; - height: 99px; -} -.Pet-Monkey-Red { - background-image: url(spritesmith-main-11.png); - background-position: -738px -200px; - width: 81px; - height: 99px; -} -.Pet-Monkey-Shade { - background-image: url(spritesmith-main-11.png); - background-position: -738px -300px; - width: 81px; - height: 99px; -} -.Pet-Monkey-Skeleton { - background-image: url(spritesmith-main-11.png); - background-position: -738px -400px; - width: 81px; - height: 99px; -} -.Pet-Monkey-White { - background-image: url(spritesmith-main-11.png); - background-position: -738px -500px; - width: 81px; - height: 99px; -} -.Pet-Monkey-Zombie { - background-image: url(spritesmith-main-11.png); - background-position: -738px -600px; - width: 81px; - height: 99px; -} -.Pet-Octopus-Base { - background-image: url(spritesmith-main-11.png); - background-position: 0px -700px; - width: 81px; - height: 99px; -} -.Pet-Octopus-CottonCandyBlue { - background-image: url(spritesmith-main-11.png); - background-position: -82px -700px; - width: 81px; - height: 99px; -} -.Pet-Octopus-CottonCandyPink { - background-image: url(spritesmith-main-11.png); - background-position: -164px -700px; - width: 81px; - height: 99px; -} -.Pet-Octopus-Desert { - background-image: url(spritesmith-main-11.png); - background-position: -246px -700px; - width: 81px; - height: 99px; -} -.Pet-Octopus-Golden { - background-image: url(spritesmith-main-11.png); - background-position: -328px -700px; - width: 81px; - height: 99px; -} -.Pet-Octopus-Red { - background-image: url(spritesmith-main-11.png); - background-position: -410px -700px; - width: 81px; - height: 99px; -} -.Pet-Octopus-Shade { - background-image: url(spritesmith-main-11.png); - background-position: -492px -700px; - width: 81px; - height: 99px; -} -.Pet-Octopus-Skeleton { - background-image: url(spritesmith-main-11.png); - background-position: -574px -700px; - width: 81px; - height: 99px; -} -.Pet-Octopus-White { - background-image: url(spritesmith-main-11.png); - background-position: -656px -700px; - width: 81px; - height: 99px; -} -.Pet-Octopus-Zombie { - background-image: url(spritesmith-main-11.png); - background-position: -738px -700px; - width: 81px; - height: 99px; -} -.Pet-Owl-Base { - background-image: url(spritesmith-main-11.png); - background-position: -820px 0px; - width: 81px; - height: 99px; -} -.Pet-Owl-CottonCandyBlue { - background-image: url(spritesmith-main-11.png); - background-position: -820px -100px; - width: 81px; - height: 99px; -} -.Pet-Owl-CottonCandyPink { - background-image: url(spritesmith-main-11.png); - background-position: -820px -200px; - width: 81px; - height: 99px; -} -.Pet-Owl-Desert { - background-image: url(spritesmith-main-11.png); - background-position: -820px -300px; - width: 81px; - height: 99px; -} -.Pet-Owl-Golden { - background-image: url(spritesmith-main-11.png); - background-position: -820px -400px; - width: 81px; - height: 99px; -} -.Pet-Owl-Red { - background-image: url(spritesmith-main-11.png); - background-position: -820px -500px; - width: 81px; - height: 99px; -} -.Pet-Owl-Shade { - background-image: url(spritesmith-main-11.png); - background-position: -820px -600px; - width: 81px; - height: 99px; -} -.Pet-Owl-Skeleton { - background-image: url(spritesmith-main-11.png); - background-position: -820px -700px; - width: 81px; - height: 99px; -} -.Pet-Owl-White { - background-image: url(spritesmith-main-11.png); - background-position: 0px -800px; - width: 81px; - height: 99px; -} -.Pet-Owl-Zombie { - background-image: url(spritesmith-main-11.png); - background-position: -82px -800px; - width: 81px; - height: 99px; -} -.Pet-PandaCub-Base { - background-image: url(spritesmith-main-11.png); - background-position: -164px -800px; - width: 81px; - height: 99px; -} -.Pet-PandaCub-CottonCandyBlue { - background-image: url(spritesmith-main-11.png); - background-position: -246px -800px; - width: 81px; - height: 99px; -} -.Pet-PandaCub-CottonCandyPink { - background-image: url(spritesmith-main-11.png); - background-position: -328px -800px; - width: 81px; - height: 99px; -} -.Pet-PandaCub-Desert { - background-image: url(spritesmith-main-11.png); - background-position: -410px -800px; - width: 81px; - height: 99px; -} -.Pet-PandaCub-Golden { - background-image: url(spritesmith-main-11.png); - background-position: -492px -800px; - width: 81px; - height: 99px; -} -.Pet-PandaCub-Peppermint { - background-image: url(spritesmith-main-11.png); - background-position: -574px -800px; - width: 81px; - height: 99px; -} -.Pet-PandaCub-Red { - background-image: url(spritesmith-main-11.png); - background-position: -656px -800px; - width: 81px; - height: 99px; -} -.Pet-PandaCub-Shade { - background-image: url(spritesmith-main-11.png); - background-position: -738px -800px; - width: 81px; - height: 99px; -} -.Pet-PandaCub-Skeleton { - background-image: url(spritesmith-main-11.png); - background-position: -820px -800px; - width: 81px; - height: 99px; -} -.Pet-PandaCub-Spooky { - background-image: url(spritesmith-main-11.png); - background-position: -902px 0px; - width: 81px; - height: 99px; -} -.Pet-PandaCub-White { - background-image: url(spritesmith-main-11.png); - background-position: -902px -100px; - width: 81px; - height: 99px; -} -.Pet-PandaCub-Zombie { - background-image: url(spritesmith-main-11.png); - background-position: -902px -200px; - width: 81px; - height: 99px; -} -.Pet-Parrot-Base { - background-image: url(spritesmith-main-11.png); - background-position: -902px -300px; - width: 81px; - height: 99px; -} -.Pet-Parrot-CottonCandyBlue { - background-image: url(spritesmith-main-11.png); - background-position: -902px -400px; - width: 81px; - height: 99px; -} -.Pet-Parrot-CottonCandyPink { - background-image: url(spritesmith-main-11.png); - background-position: -902px -500px; - width: 81px; - height: 99px; -} -.Pet-Parrot-Desert { - background-image: url(spritesmith-main-11.png); - background-position: -902px -600px; - width: 81px; - height: 99px; -} -.Pet-Parrot-Golden { - background-image: url(spritesmith-main-11.png); - background-position: -902px -700px; - width: 81px; - height: 99px; -} -.Pet-Parrot-Red { - background-image: url(spritesmith-main-11.png); - background-position: -902px -800px; - width: 81px; - height: 99px; -} -.Pet-Parrot-Shade { - background-image: url(spritesmith-main-11.png); - background-position: -984px 0px; - width: 81px; - height: 99px; -} -.Pet-Parrot-Skeleton { - background-image: url(spritesmith-main-11.png); - background-position: -984px -100px; - width: 81px; - height: 99px; -} -.Pet-Parrot-White { - background-image: url(spritesmith-main-11.png); - background-position: -984px -200px; - width: 81px; - height: 99px; -} -.Pet-Parrot-Zombie { - background-image: url(spritesmith-main-11.png); - background-position: -984px -300px; - width: 81px; - height: 99px; -} -.Pet-Penguin-Base { - background-image: url(spritesmith-main-11.png); - background-position: -984px -400px; - width: 81px; - height: 99px; -} -.Pet-Penguin-CottonCandyBlue { - background-image: url(spritesmith-main-11.png); - background-position: -984px -500px; - width: 81px; - height: 99px; -} -.Pet-Penguin-CottonCandyPink { - background-image: url(spritesmith-main-11.png); - background-position: -984px -600px; - width: 81px; - height: 99px; -} -.Pet-Penguin-Desert { - background-image: url(spritesmith-main-11.png); - background-position: -984px -700px; - width: 81px; - height: 99px; -} -.Pet-Penguin-Golden { - background-image: url(spritesmith-main-11.png); - background-position: -984px -800px; - width: 81px; - height: 99px; -} -.Pet-Penguin-Red { - background-image: url(spritesmith-main-11.png); - background-position: 0px -900px; - width: 81px; - height: 99px; -} -.Pet-Penguin-Shade { - background-image: url(spritesmith-main-11.png); - background-position: -82px -900px; - width: 81px; - height: 99px; -} -.Pet-Penguin-Skeleton { - background-image: url(spritesmith-main-11.png); - background-position: -164px -900px; - width: 81px; - height: 99px; -} -.Pet-Penguin-White { - background-image: url(spritesmith-main-11.png); - background-position: -246px -900px; - width: 81px; - height: 99px; -} -.Pet-Penguin-Zombie { - background-image: url(spritesmith-main-11.png); - background-position: -328px -900px; - width: 81px; - height: 99px; -} -.Pet-Phoenix-Base { - background-image: url(spritesmith-main-11.png); - background-position: -410px -900px; - width: 81px; - height: 99px; -} -.Pet-Rat-Base { - background-image: url(spritesmith-main-11.png); - background-position: -492px -900px; - width: 81px; - height: 99px; -} -.Pet-Rat-CottonCandyBlue { - background-image: url(spritesmith-main-11.png); - background-position: -574px -900px; - width: 81px; - height: 99px; -} -.Pet-Rat-CottonCandyPink { - background-image: url(spritesmith-main-11.png); - background-position: -656px -900px; - width: 81px; - height: 99px; -} -.Pet-Rat-Desert { - background-image: url(spritesmith-main-11.png); - background-position: -738px -900px; - width: 81px; - height: 99px; -} -.Pet-Rat-Golden { - background-image: url(spritesmith-main-11.png); - background-position: -820px -900px; - width: 81px; - height: 99px; -} -.Pet-Rat-Red { - background-image: url(spritesmith-main-11.png); - background-position: -902px -900px; - width: 81px; - height: 99px; -} -.Pet-Rat-Shade { - background-image: url(spritesmith-main-11.png); - background-position: -984px -900px; - width: 81px; - height: 99px; -} -.Pet-Rat-Skeleton { - background-image: url(spritesmith-main-11.png); - background-position: -1066px 0px; - width: 81px; - height: 99px; -} -.Pet-Rat-White { - background-image: url(spritesmith-main-11.png); - background-position: -1066px -100px; - width: 81px; - height: 99px; -} -.Pet-Rat-Zombie { - background-image: url(spritesmith-main-11.png); - background-position: -1066px -200px; - width: 81px; - height: 99px; -} -.Pet-Rock-Base { - background-image: url(spritesmith-main-11.png); - background-position: -1066px -300px; - width: 81px; - height: 99px; -} -.Pet-Rock-CottonCandyBlue { - background-image: url(spritesmith-main-11.png); - background-position: -1066px -400px; - width: 81px; - height: 99px; -} -.Pet-Rock-CottonCandyPink { - background-image: url(spritesmith-main-11.png); - background-position: -1066px -500px; - width: 81px; - height: 99px; -} -.Pet-Rock-Desert { - background-image: url(spritesmith-main-11.png); - background-position: -1066px -600px; - width: 81px; - height: 99px; -} -.Pet-Rock-Golden { - background-image: url(spritesmith-main-11.png); - background-position: -1066px -700px; - width: 81px; - height: 99px; -} -.Pet-Rock-Red { - background-image: url(spritesmith-main-11.png); - background-position: -1066px -800px; - width: 81px; - height: 99px; -} -.Pet-Rock-Shade { - background-image: url(spritesmith-main-11.png); - background-position: -1066px -900px; - width: 81px; - height: 99px; -} -.Pet-Rock-Skeleton { - background-image: url(spritesmith-main-11.png); - background-position: 0px -1000px; - width: 81px; - height: 99px; -} -.Pet-Rock-White { - background-image: url(spritesmith-main-11.png); - background-position: 0px 0px; - width: 81px; - height: 99px; -} -.Pet-Rock-Zombie { - background-image: url(spritesmith-main-11.png); - background-position: -164px -1000px; - width: 81px; - height: 99px; -} -.Pet-Rooster-Base { - background-image: url(spritesmith-main-11.png); - background-position: -246px -1000px; - width: 81px; - height: 99px; -} -.Pet-Rooster-CottonCandyBlue { - background-image: url(spritesmith-main-11.png); - background-position: -328px -1000px; - width: 81px; - height: 99px; -} -.Pet-Rooster-CottonCandyPink { - background-image: url(spritesmith-main-11.png); - background-position: -410px -1000px; - width: 81px; - height: 99px; -} -.Pet-Rooster-Desert { - background-image: url(spritesmith-main-11.png); - background-position: -492px -1000px; - width: 81px; - height: 99px; -} -.Pet-Rooster-Golden { - background-image: url(spritesmith-main-11.png); - background-position: -574px -1000px; - width: 81px; - height: 99px; -} -.Pet-Rooster-Red { - background-image: url(spritesmith-main-11.png); - background-position: -656px -1000px; - width: 81px; - height: 99px; -} -.Pet-Rooster-Shade { - background-image: url(spritesmith-main-11.png); - background-position: -738px -1000px; - width: 81px; - height: 99px; -} -.Pet-Rooster-Skeleton { - background-image: url(spritesmith-main-11.png); - background-position: -820px -1000px; - width: 81px; - height: 99px; -} -.Pet-Rooster-White { - background-image: url(spritesmith-main-11.png); - background-position: -902px -1000px; - width: 81px; - height: 99px; -} -.Pet-Rooster-Zombie { - background-image: url(spritesmith-main-11.png); - background-position: -984px -1000px; - width: 81px; - height: 99px; -} -.Pet-Sabretooth-Base { - background-image: url(spritesmith-main-11.png); - background-position: -1066px -1000px; - width: 81px; - height: 99px; -} -.Pet-Sabretooth-CottonCandyBlue { - background-image: url(spritesmith-main-11.png); - background-position: -1148px 0px; - width: 81px; - height: 99px; -} -.Pet-Sabretooth-CottonCandyPink { - background-image: url(spritesmith-main-11.png); - background-position: -1148px -100px; - width: 81px; - height: 99px; -} -.Pet-Sabretooth-Desert { - background-image: url(spritesmith-main-11.png); - background-position: -1148px -200px; - width: 81px; - height: 99px; -} -.Pet-Sabretooth-Golden { - background-image: url(spritesmith-main-11.png); - background-position: -1148px -300px; - width: 81px; - height: 99px; -} -.Pet-Sabretooth-Red { - background-image: url(spritesmith-main-11.png); - background-position: -1148px -400px; - width: 81px; - height: 99px; -} -.Pet-Sabretooth-Shade { - background-image: url(spritesmith-main-11.png); - background-position: -1148px -500px; - width: 81px; - height: 99px; -} -.Pet-Sabretooth-Skeleton { - background-image: url(spritesmith-main-11.png); - background-position: -1148px -600px; - width: 81px; - height: 99px; -} -.Pet-Sabretooth-White { - background-image: url(spritesmith-main-11.png); - background-position: -1148px -700px; - width: 81px; - height: 99px; -} -.Pet-Sabretooth-Zombie { - background-image: url(spritesmith-main-11.png); - background-position: -1148px -800px; - width: 81px; - height: 99px; -} -.Pet-Seahorse-Base { - background-image: url(spritesmith-main-11.png); - background-position: -1148px -900px; - width: 81px; - height: 99px; -} -.Pet-Seahorse-CottonCandyBlue { - background-image: url(spritesmith-main-11.png); - background-position: -1148px -1000px; - width: 81px; - height: 99px; -} -.Pet-Seahorse-CottonCandyPink { - background-image: url(spritesmith-main-11.png); - background-position: 0px -1100px; - width: 81px; - height: 99px; -} -.Pet-Seahorse-Desert { +.Mount_Icon_Sheep-White { background-image: url(spritesmith-main-11.png); background-position: -82px -1100px; width: 81px; height: 99px; } -.Pet-Seahorse-Golden { +.Mount_Icon_Sheep-Zombie { + background-image: url(spritesmith-main-11.png); + background-position: -164px 0px; + width: 81px; + height: 99px; +} +.Mount_Icon_Slime-Base { + background-image: url(spritesmith-main-11.png); + background-position: 0px -100px; + width: 81px; + height: 99px; +} +.Mount_Icon_Slime-CottonCandyBlue { + background-image: url(spritesmith-main-11.png); + background-position: -82px -100px; + width: 81px; + height: 99px; +} +.Mount_Icon_Slime-CottonCandyPink { + background-image: url(spritesmith-main-11.png); + background-position: -164px -100px; + width: 81px; + height: 99px; +} +.Mount_Icon_Slime-Desert { + background-image: url(spritesmith-main-11.png); + background-position: -246px 0px; + width: 81px; + height: 99px; +} +.Mount_Icon_Slime-Golden { + background-image: url(spritesmith-main-11.png); + background-position: -246px -100px; + width: 81px; + height: 99px; +} +.Mount_Icon_Slime-Red { + background-image: url(spritesmith-main-11.png); + background-position: 0px -200px; + width: 81px; + height: 99px; +} +.Mount_Icon_Slime-Shade { + background-image: url(spritesmith-main-11.png); + background-position: -82px -200px; + width: 81px; + height: 99px; +} +.Mount_Icon_Slime-Skeleton { + background-image: url(spritesmith-main-11.png); + background-position: -164px -200px; + width: 81px; + height: 99px; +} +.Mount_Icon_Slime-White { + background-image: url(spritesmith-main-11.png); + background-position: -246px -200px; + width: 81px; + height: 99px; +} +.Mount_Icon_Slime-Zombie { + background-image: url(spritesmith-main-11.png); + background-position: -328px 0px; + width: 81px; + height: 99px; +} +.Mount_Icon_Snail-Base { + background-image: url(spritesmith-main-11.png); + background-position: -328px -100px; + width: 81px; + height: 99px; +} +.Mount_Icon_Snail-CottonCandyBlue { + background-image: url(spritesmith-main-11.png); + background-position: -328px -200px; + width: 81px; + height: 99px; +} +.Mount_Icon_Snail-CottonCandyPink { + background-image: url(spritesmith-main-11.png); + background-position: 0px -300px; + width: 81px; + height: 99px; +} +.Mount_Icon_Snail-Desert { + background-image: url(spritesmith-main-11.png); + background-position: -82px -300px; + width: 81px; + height: 99px; +} +.Mount_Icon_Snail-Golden { + background-image: url(spritesmith-main-11.png); + background-position: -164px -300px; + width: 81px; + height: 99px; +} +.Mount_Icon_Snail-Red { + background-image: url(spritesmith-main-11.png); + background-position: -246px -300px; + width: 81px; + height: 99px; +} +.Mount_Icon_Snail-Shade { + background-image: url(spritesmith-main-11.png); + background-position: -328px -300px; + width: 81px; + height: 99px; +} +.Mount_Icon_Snail-Skeleton { + background-image: url(spritesmith-main-11.png); + background-position: -410px 0px; + width: 81px; + height: 99px; +} +.Mount_Icon_Snail-White { + background-image: url(spritesmith-main-11.png); + background-position: -410px -100px; + width: 81px; + height: 99px; +} +.Mount_Icon_Snail-Zombie { + background-image: url(spritesmith-main-11.png); + background-position: -410px -200px; + width: 81px; + height: 99px; +} +.Mount_Icon_Snake-Base { + background-image: url(spritesmith-main-11.png); + background-position: -410px -300px; + width: 81px; + height: 99px; +} +.Mount_Icon_Snake-CottonCandyBlue { + background-image: url(spritesmith-main-11.png); + background-position: -492px 0px; + width: 81px; + height: 99px; +} +.Mount_Icon_Snake-CottonCandyPink { + background-image: url(spritesmith-main-11.png); + background-position: -492px -100px; + width: 81px; + height: 99px; +} +.Mount_Icon_Snake-Desert { + background-image: url(spritesmith-main-11.png); + background-position: -492px -200px; + width: 81px; + height: 99px; +} +.Mount_Icon_Snake-Golden { + background-image: url(spritesmith-main-11.png); + background-position: -492px -300px; + width: 81px; + height: 99px; +} +.Mount_Icon_Snake-Red { + background-image: url(spritesmith-main-11.png); + background-position: 0px -400px; + width: 81px; + height: 99px; +} +.Mount_Icon_Snake-Shade { + background-image: url(spritesmith-main-11.png); + background-position: -82px -400px; + width: 81px; + height: 99px; +} +.Mount_Icon_Snake-Skeleton { + background-image: url(spritesmith-main-11.png); + background-position: -164px -400px; + width: 81px; + height: 99px; +} +.Mount_Icon_Snake-White { + background-image: url(spritesmith-main-11.png); + background-position: -246px -400px; + width: 81px; + height: 99px; +} +.Mount_Icon_Snake-Zombie { + background-image: url(spritesmith-main-11.png); + background-position: -328px -400px; + width: 81px; + height: 99px; +} +.Mount_Icon_Spider-Base { + background-image: url(spritesmith-main-11.png); + background-position: -410px -400px; + width: 81px; + height: 99px; +} +.Mount_Icon_Spider-CottonCandyBlue { + background-image: url(spritesmith-main-11.png); + background-position: -492px -400px; + width: 81px; + height: 99px; +} +.Mount_Icon_Spider-CottonCandyPink { + background-image: url(spritesmith-main-11.png); + background-position: -574px 0px; + width: 81px; + height: 99px; +} +.Mount_Icon_Spider-Desert { + background-image: url(spritesmith-main-11.png); + background-position: -574px -100px; + width: 81px; + height: 99px; +} +.Mount_Icon_Spider-Golden { + background-image: url(spritesmith-main-11.png); + background-position: -574px -200px; + width: 81px; + height: 99px; +} +.Mount_Icon_Spider-Red { + background-image: url(spritesmith-main-11.png); + background-position: -574px -300px; + width: 81px; + height: 99px; +} +.Mount_Icon_Spider-Shade { + background-image: url(spritesmith-main-11.png); + background-position: -574px -400px; + width: 81px; + height: 99px; +} +.Mount_Icon_Spider-Skeleton { + background-image: url(spritesmith-main-11.png); + background-position: 0px -500px; + width: 81px; + height: 99px; +} +.Mount_Icon_Spider-White { + background-image: url(spritesmith-main-11.png); + background-position: -82px -500px; + width: 81px; + height: 99px; +} +.Mount_Icon_Spider-Zombie { + background-image: url(spritesmith-main-11.png); + background-position: -164px -500px; + width: 81px; + height: 99px; +} +.Mount_Icon_TRex-Base { + background-image: url(spritesmith-main-11.png); + background-position: -164px -600px; + width: 81px; + height: 99px; +} +.Mount_Icon_TRex-CottonCandyBlue { + background-image: url(spritesmith-main-11.png); + background-position: -246px -600px; + width: 81px; + height: 99px; +} +.Mount_Icon_TRex-CottonCandyPink { + background-image: url(spritesmith-main-11.png); + background-position: -328px -600px; + width: 81px; + height: 99px; +} +.Mount_Icon_TRex-Desert { + background-image: url(spritesmith-main-11.png); + background-position: -410px -600px; + width: 81px; + height: 99px; +} +.Mount_Icon_TRex-Golden { + background-image: url(spritesmith-main-11.png); + background-position: -492px -600px; + width: 81px; + height: 99px; +} +.Mount_Icon_TRex-Red { + background-image: url(spritesmith-main-11.png); + background-position: -574px -600px; + width: 81px; + height: 99px; +} +.Mount_Icon_TRex-Shade { + background-image: url(spritesmith-main-11.png); + background-position: -656px -600px; + width: 81px; + height: 99px; +} +.Mount_Icon_TRex-Skeleton { + background-image: url(spritesmith-main-11.png); + background-position: -738px 0px; + width: 81px; + height: 99px; +} +.Mount_Icon_TRex-White { + background-image: url(spritesmith-main-11.png); + background-position: -738px -100px; + width: 81px; + height: 99px; +} +.Mount_Icon_TRex-Zombie { + background-image: url(spritesmith-main-11.png); + background-position: -738px -200px; + width: 81px; + height: 99px; +} +.Mount_Icon_TigerCub-Base { + background-image: url(spritesmith-main-11.png); + background-position: -246px -500px; + width: 81px; + height: 99px; +} +.Mount_Icon_TigerCub-CottonCandyBlue { + background-image: url(spritesmith-main-11.png); + background-position: -328px -500px; + width: 81px; + height: 99px; +} +.Mount_Icon_TigerCub-CottonCandyPink { + background-image: url(spritesmith-main-11.png); + background-position: -410px -500px; + width: 81px; + height: 99px; +} +.Mount_Icon_TigerCub-Desert { + background-image: url(spritesmith-main-11.png); + background-position: -492px -500px; + width: 81px; + height: 99px; +} +.Mount_Icon_TigerCub-Floral { + background-image: url(spritesmith-main-11.png); + background-position: -574px -500px; + width: 81px; + height: 99px; +} +.Mount_Icon_TigerCub-Golden { + background-image: url(spritesmith-main-11.png); + background-position: -656px 0px; + width: 81px; + height: 99px; +} +.Mount_Icon_TigerCub-Peppermint { + background-image: url(spritesmith-main-11.png); + background-position: -656px -100px; + width: 81px; + height: 99px; +} +.Mount_Icon_TigerCub-Red { + background-image: url(spritesmith-main-11.png); + background-position: -656px -200px; + width: 81px; + height: 99px; +} +.Mount_Icon_TigerCub-Shade { + background-image: url(spritesmith-main-11.png); + background-position: -656px -300px; + width: 81px; + height: 99px; +} +.Mount_Icon_TigerCub-Skeleton { + background-image: url(spritesmith-main-11.png); + background-position: -656px -400px; + width: 81px; + height: 99px; +} +.Mount_Icon_TigerCub-Spooky { + background-image: url(spritesmith-main-11.png); + background-position: -656px -500px; + width: 81px; + height: 99px; +} +.Mount_Icon_TigerCub-White { + background-image: url(spritesmith-main-11.png); + background-position: 0px -600px; + width: 81px; + height: 99px; +} +.Mount_Icon_TigerCub-Zombie { + background-image: url(spritesmith-main-11.png); + background-position: -82px -600px; + width: 81px; + height: 99px; +} +.Mount_Icon_Turkey-Base { + background-image: url(spritesmith-main-11.png); + background-position: -738px -300px; + width: 81px; + height: 99px; +} +.Mount_Icon_Unicorn-Base { + background-image: url(spritesmith-main-11.png); + background-position: -738px -400px; + width: 81px; + height: 99px; +} +.Mount_Icon_Unicorn-CottonCandyBlue { + background-image: url(spritesmith-main-11.png); + background-position: -738px -500px; + width: 81px; + height: 99px; +} +.Mount_Icon_Unicorn-CottonCandyPink { + background-image: url(spritesmith-main-11.png); + background-position: -738px -600px; + width: 81px; + height: 99px; +} +.Mount_Icon_Unicorn-Desert { + background-image: url(spritesmith-main-11.png); + background-position: 0px -700px; + width: 81px; + height: 99px; +} +.Mount_Icon_Unicorn-Golden { + background-image: url(spritesmith-main-11.png); + background-position: -82px -700px; + width: 81px; + height: 99px; +} +.Mount_Icon_Unicorn-Red { + background-image: url(spritesmith-main-11.png); + background-position: -164px -700px; + width: 81px; + height: 99px; +} +.Mount_Icon_Unicorn-Shade { + background-image: url(spritesmith-main-11.png); + background-position: -246px -700px; + width: 81px; + height: 99px; +} +.Mount_Icon_Unicorn-Skeleton { + background-image: url(spritesmith-main-11.png); + background-position: -328px -700px; + width: 81px; + height: 99px; +} +.Mount_Icon_Unicorn-White { + background-image: url(spritesmith-main-11.png); + background-position: -410px -700px; + width: 81px; + height: 99px; +} +.Mount_Icon_Unicorn-Zombie { + background-image: url(spritesmith-main-11.png); + background-position: -492px -700px; + width: 81px; + height: 99px; +} +.Mount_Icon_Whale-Base { + background-image: url(spritesmith-main-11.png); + background-position: -574px -700px; + width: 81px; + height: 99px; +} +.Mount_Icon_Whale-CottonCandyBlue { + background-image: url(spritesmith-main-11.png); + background-position: -656px -700px; + width: 81px; + height: 99px; +} +.Mount_Icon_Whale-CottonCandyPink { + background-image: url(spritesmith-main-11.png); + background-position: -738px -700px; + width: 81px; + height: 99px; +} +.Mount_Icon_Whale-Desert { + background-image: url(spritesmith-main-11.png); + background-position: -820px 0px; + width: 81px; + height: 99px; +} +.Mount_Icon_Whale-Golden { + background-image: url(spritesmith-main-11.png); + background-position: -820px -100px; + width: 81px; + height: 99px; +} +.Mount_Icon_Whale-Red { + background-image: url(spritesmith-main-11.png); + background-position: -820px -200px; + width: 81px; + height: 99px; +} +.Mount_Icon_Whale-Shade { + background-image: url(spritesmith-main-11.png); + background-position: -820px -300px; + width: 81px; + height: 99px; +} +.Mount_Icon_Whale-Skeleton { + background-image: url(spritesmith-main-11.png); + background-position: -820px -400px; + width: 81px; + height: 99px; +} +.Mount_Icon_Whale-White { + background-image: url(spritesmith-main-11.png); + background-position: -820px -500px; + width: 81px; + height: 99px; +} +.Mount_Icon_Whale-Zombie { + background-image: url(spritesmith-main-11.png); + background-position: -820px -600px; + width: 81px; + height: 99px; +} +.Mount_Icon_Wolf-Base { + background-image: url(spritesmith-main-11.png); + background-position: -820px -700px; + width: 81px; + height: 99px; +} +.Mount_Icon_Wolf-CottonCandyBlue { + background-image: url(spritesmith-main-11.png); + background-position: 0px -800px; + width: 81px; + height: 99px; +} +.Mount_Icon_Wolf-CottonCandyPink { + background-image: url(spritesmith-main-11.png); + background-position: -82px -800px; + width: 81px; + height: 99px; +} +.Mount_Icon_Wolf-Desert { + background-image: url(spritesmith-main-11.png); + background-position: -164px -800px; + width: 81px; + height: 99px; +} +.Mount_Icon_Wolf-Floral { + background-image: url(spritesmith-main-11.png); + background-position: -246px -800px; + width: 81px; + height: 99px; +} +.Mount_Icon_Wolf-Golden { + background-image: url(spritesmith-main-11.png); + background-position: -328px -800px; + width: 81px; + height: 99px; +} +.Mount_Icon_Wolf-Peppermint { + background-image: url(spritesmith-main-11.png); + background-position: -410px -800px; + width: 81px; + height: 99px; +} +.Mount_Icon_Wolf-Red { + background-image: url(spritesmith-main-11.png); + background-position: -492px -800px; + width: 81px; + height: 99px; +} +.Mount_Icon_Wolf-Shade { + background-image: url(spritesmith-main-11.png); + background-position: -574px -800px; + width: 81px; + height: 99px; +} +.Mount_Icon_Wolf-Skeleton { + background-image: url(spritesmith-main-11.png); + background-position: -656px -800px; + width: 81px; + height: 99px; +} +.Mount_Icon_Wolf-Spooky { + background-image: url(spritesmith-main-11.png); + background-position: -738px -800px; + width: 81px; + height: 99px; +} +.Mount_Icon_Wolf-White { + background-image: url(spritesmith-main-11.png); + background-position: -820px -800px; + width: 81px; + height: 99px; +} +.Mount_Icon_Wolf-Zombie { + background-image: url(spritesmith-main-11.png); + background-position: -902px 0px; + width: 81px; + height: 99px; +} +.Pet-BearCub-Base { + background-image: url(spritesmith-main-11.png); + background-position: -902px -100px; + width: 81px; + height: 99px; +} +.Pet-BearCub-CottonCandyBlue { + background-image: url(spritesmith-main-11.png); + background-position: -902px -200px; + width: 81px; + height: 99px; +} +.Pet-BearCub-CottonCandyPink { + background-image: url(spritesmith-main-11.png); + background-position: -902px -300px; + width: 81px; + height: 99px; +} +.Pet-BearCub-Desert { + background-image: url(spritesmith-main-11.png); + background-position: -902px -400px; + width: 81px; + height: 99px; +} +.Pet-BearCub-Floral { + background-image: url(spritesmith-main-11.png); + background-position: -902px -500px; + width: 81px; + height: 99px; +} +.Pet-BearCub-Golden { + background-image: url(spritesmith-main-11.png); + background-position: -902px -600px; + width: 81px; + height: 99px; +} +.Pet-BearCub-Peppermint { + background-image: url(spritesmith-main-11.png); + background-position: -902px -700px; + width: 81px; + height: 99px; +} +.Pet-BearCub-Polar { + background-image: url(spritesmith-main-11.png); + background-position: -902px -800px; + width: 81px; + height: 99px; +} +.Pet-BearCub-Red { + background-image: url(spritesmith-main-11.png); + background-position: -984px 0px; + width: 81px; + height: 99px; +} +.Pet-BearCub-Shade { + background-image: url(spritesmith-main-11.png); + background-position: -984px -100px; + width: 81px; + height: 99px; +} +.Pet-BearCub-Skeleton { + background-image: url(spritesmith-main-11.png); + background-position: -984px -200px; + width: 81px; + height: 99px; +} +.Pet-BearCub-Spooky { + background-image: url(spritesmith-main-11.png); + background-position: -984px -300px; + width: 81px; + height: 99px; +} +.Pet-BearCub-White { + background-image: url(spritesmith-main-11.png); + background-position: -984px -400px; + width: 81px; + height: 99px; +} +.Pet-BearCub-Zombie { + background-image: url(spritesmith-main-11.png); + background-position: -984px -500px; + width: 81px; + height: 99px; +} +.Pet-Bunny-Base { + background-image: url(spritesmith-main-11.png); + background-position: -984px -600px; + width: 81px; + height: 99px; +} +.Pet-Bunny-CottonCandyBlue { + background-image: url(spritesmith-main-11.png); + background-position: -984px -700px; + width: 81px; + height: 99px; +} +.Pet-Bunny-CottonCandyPink { + background-image: url(spritesmith-main-11.png); + background-position: -984px -800px; + width: 81px; + height: 99px; +} +.Pet-Bunny-Desert { + background-image: url(spritesmith-main-11.png); + background-position: 0px -900px; + width: 81px; + height: 99px; +} +.Pet-Bunny-Golden { + background-image: url(spritesmith-main-11.png); + background-position: -82px -900px; + width: 81px; + height: 99px; +} +.Pet-Bunny-Red { + background-image: url(spritesmith-main-11.png); + background-position: -164px -900px; + width: 81px; + height: 99px; +} +.Pet-Bunny-Shade { + background-image: url(spritesmith-main-11.png); + background-position: -246px -900px; + width: 81px; + height: 99px; +} +.Pet-Bunny-Skeleton { + background-image: url(spritesmith-main-11.png); + background-position: -328px -900px; + width: 81px; + height: 99px; +} +.Pet-Bunny-White { + background-image: url(spritesmith-main-11.png); + background-position: -410px -900px; + width: 81px; + height: 99px; +} +.Pet-Bunny-Zombie { + background-image: url(spritesmith-main-11.png); + background-position: -492px -900px; + width: 81px; + height: 99px; +} +.Pet-Cactus-Base { + background-image: url(spritesmith-main-11.png); + background-position: -574px -900px; + width: 81px; + height: 99px; +} +.Pet-Cactus-CottonCandyBlue { + background-image: url(spritesmith-main-11.png); + background-position: -656px -900px; + width: 81px; + height: 99px; +} +.Pet-Cactus-CottonCandyPink { + background-image: url(spritesmith-main-11.png); + background-position: -738px -900px; + width: 81px; + height: 99px; +} +.Pet-Cactus-Desert { + background-image: url(spritesmith-main-11.png); + background-position: -820px -900px; + width: 81px; + height: 99px; +} +.Pet-Cactus-Floral { + background-image: url(spritesmith-main-11.png); + background-position: -902px -900px; + width: 81px; + height: 99px; +} +.Pet-Cactus-Golden { + background-image: url(spritesmith-main-11.png); + background-position: -984px -900px; + width: 81px; + height: 99px; +} +.Pet-Cactus-Peppermint { + background-image: url(spritesmith-main-11.png); + background-position: -1066px 0px; + width: 81px; + height: 99px; +} +.Pet-Cactus-Red { + background-image: url(spritesmith-main-11.png); + background-position: -1066px -100px; + width: 81px; + height: 99px; +} +.Pet-Cactus-Shade { + background-image: url(spritesmith-main-11.png); + background-position: -1066px -200px; + width: 81px; + height: 99px; +} +.Pet-Cactus-Skeleton { + background-image: url(spritesmith-main-11.png); + background-position: -1066px -300px; + width: 81px; + height: 99px; +} +.Pet-Cactus-Spooky { + background-image: url(spritesmith-main-11.png); + background-position: -1066px -400px; + width: 81px; + height: 99px; +} +.Pet-Cactus-White { + background-image: url(spritesmith-main-11.png); + background-position: -1066px -500px; + width: 81px; + height: 99px; +} +.Pet-Cactus-Zombie { + background-image: url(spritesmith-main-11.png); + background-position: -1066px -600px; + width: 81px; + height: 99px; +} +.Pet-Cheetah-Base { + background-image: url(spritesmith-main-11.png); + background-position: -1066px -700px; + width: 81px; + height: 99px; +} +.Pet-Cheetah-CottonCandyBlue { + background-image: url(spritesmith-main-11.png); + background-position: -1066px -800px; + width: 81px; + height: 99px; +} +.Pet-Cheetah-CottonCandyPink { + background-image: url(spritesmith-main-11.png); + background-position: -1066px -900px; + width: 81px; + height: 99px; +} +.Pet-Cheetah-Desert { + background-image: url(spritesmith-main-11.png); + background-position: 0px -1000px; + width: 81px; + height: 99px; +} +.Pet-Cheetah-Golden { + background-image: url(spritesmith-main-11.png); + background-position: -82px -1000px; + width: 81px; + height: 99px; +} +.Pet-Cheetah-Red { + background-image: url(spritesmith-main-11.png); + background-position: -164px -1000px; + width: 81px; + height: 99px; +} +.Pet-Cheetah-Shade { + background-image: url(spritesmith-main-11.png); + background-position: -246px -1000px; + width: 81px; + height: 99px; +} +.Pet-Cheetah-Skeleton { + background-image: url(spritesmith-main-11.png); + background-position: -328px -1000px; + width: 81px; + height: 99px; +} +.Pet-Cheetah-White { + background-image: url(spritesmith-main-11.png); + background-position: -410px -1000px; + width: 81px; + height: 99px; +} +.Pet-Cheetah-Zombie { + background-image: url(spritesmith-main-11.png); + background-position: -492px -1000px; + width: 81px; + height: 99px; +} +.Pet-Cuttlefish-Base { + background-image: url(spritesmith-main-11.png); + background-position: -574px -1000px; + width: 81px; + height: 99px; +} +.Pet-Cuttlefish-CottonCandyBlue { + background-image: url(spritesmith-main-11.png); + background-position: -656px -1000px; + width: 81px; + height: 99px; +} +.Pet-Cuttlefish-CottonCandyPink { + background-image: url(spritesmith-main-11.png); + background-position: -738px -1000px; + width: 81px; + height: 99px; +} +.Pet-Cuttlefish-Desert { + background-image: url(spritesmith-main-11.png); + background-position: -820px -1000px; + width: 81px; + height: 99px; +} +.Pet-Cuttlefish-Golden { + background-image: url(spritesmith-main-11.png); + background-position: -902px -1000px; + width: 81px; + height: 99px; +} +.Pet-Cuttlefish-Red { + background-image: url(spritesmith-main-11.png); + background-position: -984px -1000px; + width: 81px; + height: 99px; +} +.Pet-Cuttlefish-Shade { + background-image: url(spritesmith-main-11.png); + background-position: -1066px -1000px; + width: 81px; + height: 99px; +} +.Pet-Cuttlefish-Skeleton { + background-image: url(spritesmith-main-11.png); + background-position: -1148px 0px; + width: 81px; + height: 99px; +} +.Pet-Cuttlefish-White { + background-image: url(spritesmith-main-11.png); + background-position: -1148px -100px; + width: 81px; + height: 99px; +} +.Pet-Cuttlefish-Zombie { + background-image: url(spritesmith-main-11.png); + background-position: -1148px -200px; + width: 81px; + height: 99px; +} +.Pet-Deer-Base { + background-image: url(spritesmith-main-11.png); + background-position: -1148px -300px; + width: 81px; + height: 99px; +} +.Pet-Deer-CottonCandyBlue { + background-image: url(spritesmith-main-11.png); + background-position: -1148px -400px; + width: 81px; + height: 99px; +} +.Pet-Deer-CottonCandyPink { + background-image: url(spritesmith-main-11.png); + background-position: -1148px -500px; + width: 81px; + height: 99px; +} +.Pet-Deer-Desert { + background-image: url(spritesmith-main-11.png); + background-position: -1148px -600px; + width: 81px; + height: 99px; +} +.Pet-Deer-Golden { + background-image: url(spritesmith-main-11.png); + background-position: -1148px -700px; + width: 81px; + height: 99px; +} +.Pet-Deer-Red { + background-image: url(spritesmith-main-11.png); + background-position: -1148px -800px; + width: 81px; + height: 99px; +} +.Pet-Deer-Shade { + background-image: url(spritesmith-main-11.png); + background-position: -1148px -900px; + width: 81px; + height: 99px; +} +.Pet-Deer-Skeleton { + background-image: url(spritesmith-main-11.png); + background-position: -1148px -1000px; + width: 81px; + height: 99px; +} +.Pet-Deer-White { + background-image: url(spritesmith-main-11.png); + background-position: 0px -1100px; + width: 81px; + height: 99px; +} +.Pet-Deer-Zombie { + background-image: url(spritesmith-main-11.png); + background-position: 0px 0px; + width: 81px; + height: 99px; +} +.Pet-Dragon-Base { background-image: url(spritesmith-main-11.png); background-position: -164px -1100px; width: 81px; height: 99px; } -.Pet-Seahorse-Red { +.Pet-Dragon-CottonCandyBlue { background-image: url(spritesmith-main-11.png); background-position: -246px -1100px; width: 81px; height: 99px; } -.Pet-Seahorse-Shade { +.Pet-Dragon-CottonCandyPink { background-image: url(spritesmith-main-11.png); background-position: -328px -1100px; width: 81px; height: 99px; } -.Pet-Seahorse-Skeleton { +.Pet-Dragon-Desert { background-image: url(spritesmith-main-11.png); background-position: -410px -1100px; width: 81px; height: 99px; } -.Pet-Seahorse-White { +.Pet-Dragon-Floral { background-image: url(spritesmith-main-11.png); background-position: -492px -1100px; width: 81px; height: 99px; } -.Pet-Seahorse-Zombie { +.Pet-Dragon-Golden { background-image: url(spritesmith-main-11.png); background-position: -574px -1100px; width: 81px; height: 99px; } -.Pet-Sheep-Base { +.Pet-Dragon-Hydra { background-image: url(spritesmith-main-11.png); background-position: -656px -1100px; width: 81px; height: 99px; } -.Pet-Sheep-CottonCandyBlue { +.Pet-Dragon-Peppermint { background-image: url(spritesmith-main-11.png); background-position: -738px -1100px; width: 81px; height: 99px; } -.Pet-Sheep-CottonCandyPink { +.Pet-Dragon-Red { background-image: url(spritesmith-main-11.png); background-position: -820px -1100px; width: 81px; height: 99px; } -.Pet-Sheep-Desert { +.Pet-Dragon-Shade { background-image: url(spritesmith-main-11.png); background-position: -902px -1100px; width: 81px; height: 99px; } -.Pet-Sheep-Golden { +.Pet-Dragon-Skeleton { background-image: url(spritesmith-main-11.png); background-position: -984px -1100px; width: 81px; height: 99px; } -.Pet-Sheep-Red { +.Pet-Dragon-Spooky { background-image: url(spritesmith-main-11.png); background-position: -1066px -1100px; width: 81px; height: 99px; } -.Pet-Sheep-Shade { +.Pet-Dragon-White { background-image: url(spritesmith-main-11.png); background-position: -1148px -1100px; width: 81px; height: 99px; } -.Pet-Sheep-Skeleton { +.Pet-Dragon-Zombie { background-image: url(spritesmith-main-11.png); background-position: -1230px 0px; width: 81px; height: 99px; } -.Pet-Sheep-White { +.Pet-Egg-Base { background-image: url(spritesmith-main-11.png); background-position: -1230px -100px; width: 81px; height: 99px; } -.Pet-Sheep-Zombie { +.Pet-Egg-CottonCandyBlue { background-image: url(spritesmith-main-11.png); background-position: -1230px -200px; width: 81px; height: 99px; } -.Pet-Slime-Base { +.Pet-Egg-CottonCandyPink { background-image: url(spritesmith-main-11.png); background-position: -1230px -300px; width: 81px; height: 99px; } -.Pet-Slime-CottonCandyBlue { +.Pet-Egg-Desert { background-image: url(spritesmith-main-11.png); background-position: -1230px -400px; width: 81px; height: 99px; } -.Pet-Slime-CottonCandyPink { +.Pet-Egg-Golden { background-image: url(spritesmith-main-11.png); background-position: -1230px -500px; width: 81px; height: 99px; } -.Pet-Slime-Desert { +.Pet-Egg-Red { background-image: url(spritesmith-main-11.png); background-position: -1230px -600px; width: 81px; height: 99px; } -.Pet-Slime-Golden { +.Pet-Egg-Shade { background-image: url(spritesmith-main-11.png); background-position: -1230px -700px; width: 81px; height: 99px; } -.Pet-Slime-Red { +.Pet-Egg-Skeleton { background-image: url(spritesmith-main-11.png); background-position: -1230px -800px; width: 81px; height: 99px; } -.Pet-Slime-Shade { +.Pet-Egg-White { background-image: url(spritesmith-main-11.png); background-position: -1230px -900px; width: 81px; height: 99px; } -.Pet-Slime-Skeleton { +.Pet-Egg-Zombie { background-image: url(spritesmith-main-11.png); background-position: -1230px -1000px; width: 81px; height: 99px; } -.Pet-Slime-White { +.Pet-Falcon-Base { background-image: url(spritesmith-main-11.png); background-position: -1230px -1100px; width: 81px; height: 99px; } -.Pet-Slime-Zombie { +.Pet-Falcon-CottonCandyBlue { background-image: url(spritesmith-main-11.png); background-position: 0px -1200px; width: 81px; height: 99px; } -.Pet-Snake-Base { +.Pet-Falcon-CottonCandyPink { background-image: url(spritesmith-main-11.png); background-position: -82px -1200px; width: 81px; height: 99px; } -.Pet-Snake-CottonCandyBlue { +.Pet-Falcon-Desert { background-image: url(spritesmith-main-11.png); background-position: -164px -1200px; width: 81px; height: 99px; } -.Pet-Snake-CottonCandyPink { +.Pet-Falcon-Golden { background-image: url(spritesmith-main-11.png); background-position: -246px -1200px; width: 81px; height: 99px; } -.Pet-Snake-Desert { +.Pet-Falcon-Red { background-image: url(spritesmith-main-11.png); background-position: -328px -1200px; width: 81px; height: 99px; } -.Pet-Snake-Golden { +.Pet-Falcon-Shade { background-image: url(spritesmith-main-11.png); background-position: -410px -1200px; width: 81px; height: 99px; } -.Pet-Snake-Red { +.Pet-Falcon-Skeleton { background-image: url(spritesmith-main-11.png); background-position: -492px -1200px; width: 81px; height: 99px; } -.Pet-Snake-Shade { +.Pet-Falcon-White { background-image: url(spritesmith-main-11.png); background-position: -574px -1200px; width: 81px; height: 99px; } -.Pet-Snake-Skeleton { +.Pet-Falcon-Zombie { background-image: url(spritesmith-main-11.png); background-position: -656px -1200px; width: 81px; height: 99px; } -.Pet-Snake-White { +.Pet-FlyingPig-Base { background-image: url(spritesmith-main-11.png); background-position: -738px -1200px; width: 81px; height: 99px; } -.Pet-Snake-Zombie { +.Pet-FlyingPig-CottonCandyBlue { background-image: url(spritesmith-main-11.png); background-position: -820px -1200px; width: 81px; height: 99px; } -.Pet-Spider-Base { +.Pet-FlyingPig-CottonCandyPink { background-image: url(spritesmith-main-11.png); background-position: -902px -1200px; width: 81px; height: 99px; } -.Pet-Spider-CottonCandyBlue { +.Pet-FlyingPig-Desert { background-image: url(spritesmith-main-11.png); background-position: -984px -1200px; width: 81px; height: 99px; } -.Pet-Spider-CottonCandyPink { +.Pet-FlyingPig-Floral { background-image: url(spritesmith-main-11.png); background-position: -1066px -1200px; width: 81px; height: 99px; } -.Pet-Spider-Desert { +.Pet-FlyingPig-Golden { background-image: url(spritesmith-main-11.png); background-position: -1148px -1200px; width: 81px; height: 99px; } -.Pet-Spider-Golden { +.Pet-FlyingPig-Peppermint { background-image: url(spritesmith-main-11.png); background-position: -1230px -1200px; width: 81px; height: 99px; } -.Pet-Spider-Red { +.Pet-FlyingPig-Red { background-image: url(spritesmith-main-11.png); background-position: -1312px 0px; width: 81px; height: 99px; } -.Pet-Spider-Shade { +.Pet-FlyingPig-Shade { background-image: url(spritesmith-main-11.png); background-position: -1312px -100px; width: 81px; height: 99px; } -.Pet-Spider-Skeleton { +.Pet-FlyingPig-Skeleton { background-image: url(spritesmith-main-11.png); background-position: -1312px -200px; width: 81px; height: 99px; } -.Pet-Spider-White { +.Pet-FlyingPig-Spooky { background-image: url(spritesmith-main-11.png); background-position: -1312px -300px; width: 81px; height: 99px; } -.Pet-Spider-Zombie { +.Pet-FlyingPig-White { background-image: url(spritesmith-main-11.png); background-position: -1312px -400px; width: 81px; height: 99px; } -.Pet-TRex-Base { +.Pet-FlyingPig-Zombie { background-image: url(spritesmith-main-11.png); background-position: -1312px -500px; width: 81px; height: 99px; } -.Pet-TRex-CottonCandyBlue { +.Pet-Fox-Base { background-image: url(spritesmith-main-11.png); background-position: -1312px -600px; width: 81px; height: 99px; } -.Pet-TRex-CottonCandyPink { +.Pet-Fox-CottonCandyBlue { background-image: url(spritesmith-main-11.png); background-position: -1312px -700px; width: 81px; height: 99px; } -.Pet-TRex-Desert { +.Pet-Fox-CottonCandyPink { background-image: url(spritesmith-main-11.png); background-position: -1312px -800px; width: 81px; height: 99px; } -.Pet-TRex-Golden { +.Pet-Fox-Desert { background-image: url(spritesmith-main-11.png); background-position: -1312px -900px; width: 81px; height: 99px; } -.Pet-TRex-Red { +.Pet-Fox-Floral { background-image: url(spritesmith-main-11.png); background-position: -1312px -1000px; width: 81px; height: 99px; } -.Pet-TRex-Shade { +.Pet-Fox-Golden { background-image: url(spritesmith-main-11.png); background-position: -1312px -1100px; width: 81px; height: 99px; } -.Pet-TRex-Skeleton { +.Pet-Fox-Peppermint { background-image: url(spritesmith-main-11.png); background-position: -1312px -1200px; width: 81px; height: 99px; } -.Pet-TRex-White { +.Pet-Fox-Red { background-image: url(spritesmith-main-11.png); background-position: -1394px 0px; width: 81px; height: 99px; } -.Pet-TRex-Zombie { +.Pet-Fox-Shade { background-image: url(spritesmith-main-11.png); background-position: -1394px -100px; width: 81px; height: 99px; } -.Pet-Tiger-Veteran { +.Pet-Fox-Skeleton { background-image: url(spritesmith-main-11.png); background-position: -1394px -200px; width: 81px; height: 99px; } -.Pet-TigerCub-Base { +.Pet-Fox-Spooky { background-image: url(spritesmith-main-11.png); background-position: -1394px -300px; width: 81px; height: 99px; } -.Pet-TigerCub-CottonCandyBlue { +.Pet-Fox-White { background-image: url(spritesmith-main-11.png); background-position: -1394px -400px; width: 81px; height: 99px; } -.Pet-TigerCub-CottonCandyPink { +.Pet-Fox-Zombie { background-image: url(spritesmith-main-11.png); background-position: -1394px -500px; width: 81px; height: 99px; } -.Pet-TigerCub-Desert { +.Pet-Frog-Base { background-image: url(spritesmith-main-11.png); background-position: -1394px -600px; width: 81px; height: 99px; } -.Pet-TigerCub-Golden { +.Pet-Frog-CottonCandyBlue { background-image: url(spritesmith-main-11.png); background-position: -1394px -700px; width: 81px; height: 99px; } -.Pet-TigerCub-Peppermint { +.Pet-Frog-CottonCandyPink { background-image: url(spritesmith-main-11.png); background-position: -1394px -800px; width: 81px; height: 99px; } -.Pet-TigerCub-Red { +.Pet-Frog-Desert { background-image: url(spritesmith-main-11.png); background-position: -1394px -900px; width: 81px; height: 99px; } -.Pet-TigerCub-Shade { +.Pet-Frog-Golden { background-image: url(spritesmith-main-11.png); background-position: -1394px -1000px; width: 81px; height: 99px; } -.Pet-TigerCub-Skeleton { +.Pet-Frog-Red { background-image: url(spritesmith-main-11.png); background-position: -1394px -1100px; width: 81px; height: 99px; } -.Pet-TigerCub-Spooky { +.Pet-Frog-Shade { background-image: url(spritesmith-main-11.png); background-position: -1394px -1200px; width: 81px; height: 99px; } -.Pet-TigerCub-White { +.Pet-Frog-Skeleton { background-image: url(spritesmith-main-11.png); background-position: 0px -1300px; width: 81px; height: 99px; } -.Pet-TigerCub-Zombie { +.Pet-Frog-White { background-image: url(spritesmith-main-11.png); background-position: -82px -1300px; width: 81px; height: 99px; } -.Pet-Turkey-Base { +.Pet-Frog-Zombie { background-image: url(spritesmith-main-11.png); background-position: -164px -1300px; width: 81px; height: 99px; } -.Pet-Turkey-Gilded { +.Pet-Gryphon-Base { background-image: url(spritesmith-main-11.png); background-position: -246px -1300px; width: 81px; height: 99px; } -.Pet-Unicorn-Base { +.Pet-Gryphon-CottonCandyBlue { background-image: url(spritesmith-main-11.png); background-position: -328px -1300px; width: 81px; height: 99px; } -.Pet-Unicorn-CottonCandyBlue { +.Pet-Gryphon-CottonCandyPink { background-image: url(spritesmith-main-11.png); background-position: -410px -1300px; width: 81px; height: 99px; } -.Pet-Unicorn-CottonCandyPink { +.Pet-Gryphon-Desert { background-image: url(spritesmith-main-11.png); background-position: -492px -1300px; width: 81px; height: 99px; } -.Pet-Unicorn-Desert { +.Pet-Gryphon-Golden { background-image: url(spritesmith-main-11.png); background-position: -574px -1300px; width: 81px; height: 99px; } -.Pet-Unicorn-Golden { +.Pet-Gryphon-Red { background-image: url(spritesmith-main-11.png); background-position: -656px -1300px; width: 81px; height: 99px; } -.Pet-Unicorn-Red { +.Pet-Gryphon-Shade { background-image: url(spritesmith-main-11.png); background-position: -738px -1300px; width: 81px; height: 99px; } -.Pet-Unicorn-Shade { +.Pet-Gryphon-Skeleton { background-image: url(spritesmith-main-11.png); background-position: -820px -1300px; width: 81px; height: 99px; } -.Pet-Unicorn-Skeleton { +.Pet-Gryphon-White { background-image: url(spritesmith-main-11.png); background-position: -902px -1300px; width: 81px; height: 99px; } -.Pet-Unicorn-White { +.Pet-Gryphon-Zombie { background-image: url(spritesmith-main-11.png); background-position: -984px -1300px; width: 81px; height: 99px; } -.Pet-Unicorn-Zombie { +.Pet-Hedgehog-Base { background-image: url(spritesmith-main-11.png); background-position: -1066px -1300px; width: 81px; height: 99px; } -.Pet-Whale-Base { +.Pet-Hedgehog-CottonCandyBlue { background-image: url(spritesmith-main-11.png); background-position: -1148px -1300px; width: 81px; height: 99px; } -.Pet-Whale-CottonCandyBlue { +.Pet-Hedgehog-CottonCandyPink { background-image: url(spritesmith-main-11.png); background-position: -1230px -1300px; width: 81px; height: 99px; } -.Pet-Whale-CottonCandyPink { +.Pet-Hedgehog-Desert { background-image: url(spritesmith-main-11.png); background-position: -1312px -1300px; width: 81px; height: 99px; } -.Pet-Whale-Desert { +.Pet-Hedgehog-Golden { background-image: url(spritesmith-main-11.png); background-position: -1394px -1300px; width: 81px; height: 99px; } -.Pet-Whale-Golden { +.Pet-Hedgehog-Red { background-image: url(spritesmith-main-11.png); background-position: -1476px 0px; width: 81px; height: 99px; } -.Pet-Whale-Red { +.Pet-Hedgehog-Shade { background-image: url(spritesmith-main-11.png); background-position: -1476px -100px; width: 81px; height: 99px; } -.Pet-Whale-Shade { +.Pet-Hedgehog-Skeleton { background-image: url(spritesmith-main-11.png); background-position: -1476px -200px; width: 81px; height: 99px; } -.Pet-Whale-Skeleton { +.Pet-Hedgehog-White { background-image: url(spritesmith-main-11.png); background-position: -1476px -300px; width: 81px; height: 99px; } -.Pet-Whale-White { +.Pet-Hedgehog-Zombie { background-image: url(spritesmith-main-11.png); background-position: -1476px -400px; width: 81px; height: 99px; } -.Pet-Whale-Zombie { +.Pet-Horse-Base { background-image: url(spritesmith-main-11.png); background-position: -1476px -500px; width: 81px; height: 99px; } -.Pet-Wolf-Base { +.Pet-Horse-CottonCandyBlue { background-image: url(spritesmith-main-11.png); background-position: -1476px -600px; width: 81px; height: 99px; } -.Pet-Wolf-CottonCandyBlue { +.Pet-Horse-CottonCandyPink { background-image: url(spritesmith-main-11.png); background-position: -1476px -700px; width: 81px; height: 99px; } -.Pet-Wolf-CottonCandyPink { +.Pet-Horse-Desert { background-image: url(spritesmith-main-11.png); background-position: -1476px -800px; width: 81px; height: 99px; } -.Pet-Wolf-Desert { +.Pet-Horse-Golden { background-image: url(spritesmith-main-11.png); background-position: -1476px -900px; width: 81px; height: 99px; } -.Pet-Wolf-Golden { +.Pet-Horse-Red { background-image: url(spritesmith-main-11.png); background-position: -1476px -1000px; width: 81px; height: 99px; } -.Pet-Wolf-Peppermint { +.Pet-Horse-Shade { background-image: url(spritesmith-main-11.png); background-position: -1476px -1100px; width: 81px; height: 99px; } -.Pet-Wolf-Red { +.Pet-Horse-Skeleton { background-image: url(spritesmith-main-11.png); background-position: -1476px -1200px; width: 81px; height: 99px; } -.Pet-Wolf-Shade { +.Pet-Horse-White { background-image: url(spritesmith-main-11.png); background-position: -1476px -1300px; width: 81px; height: 99px; } -.Pet-Wolf-Skeleton { +.Pet-Horse-Zombie { background-image: url(spritesmith-main-11.png); background-position: 0px -1400px; width: 81px; height: 99px; } -.Pet-Wolf-Spooky { +.Pet-JackOLantern-Base { background-image: url(spritesmith-main-11.png); background-position: -82px -1400px; width: 81px; height: 99px; } -.Pet-Wolf-Veteran { +.Pet-LionCub-Base { background-image: url(spritesmith-main-11.png); background-position: -164px -1400px; width: 81px; height: 99px; } -.Pet-Wolf-White { +.Pet-LionCub-CottonCandyBlue { background-image: url(spritesmith-main-11.png); background-position: -246px -1400px; width: 81px; height: 99px; } -.Pet-Wolf-Zombie { +.Pet-LionCub-CottonCandyPink { background-image: url(spritesmith-main-11.png); background-position: -328px -1400px; width: 81px; height: 99px; } -.Pet_HatchingPotion_Base { - background-image: url(spritesmith-main-11.png); - background-position: -459px -1400px; - width: 48px; - height: 51px; -} -.Pet_HatchingPotion_CottonCandyBlue { - background-image: url(spritesmith-main-11.png); - background-position: -704px -1400px; - width: 48px; - height: 51px; -} -.Pet_HatchingPotion_CottonCandyPink { - background-image: url(spritesmith-main-11.png); - background-position: -508px -1400px; - width: 48px; - height: 51px; -} -.Pet_HatchingPotion_Desert { - background-image: url(spritesmith-main-11.png); - background-position: -557px -1400px; - width: 48px; - height: 51px; -} -.Pet_HatchingPotion_Golden { - background-image: url(spritesmith-main-11.png); - background-position: -606px -1400px; - width: 48px; - height: 51px; -} -.Pet_HatchingPotion_Peppermint { - background-image: url(spritesmith-main-11.png); - background-position: -655px -1400px; - width: 48px; - height: 51px; -} -.Pet_HatchingPotion_Red { +.Pet-LionCub-Desert { background-image: url(spritesmith-main-11.png); background-position: -410px -1400px; - width: 48px; - height: 51px; + width: 81px; + height: 99px; } -.Pet_HatchingPotion_Shade { +.Pet-LionCub-Floral { background-image: url(spritesmith-main-11.png); - background-position: -753px -1400px; - width: 48px; - height: 51px; + background-position: -492px -1400px; + width: 81px; + height: 99px; } -.Pet_HatchingPotion_Skeleton { +.Pet-LionCub-Golden { background-image: url(spritesmith-main-11.png); - background-position: -802px -1400px; - width: 48px; - height: 51px; + background-position: -574px -1400px; + width: 81px; + height: 99px; } -.Pet_HatchingPotion_Spooky { +.Pet-LionCub-Peppermint { background-image: url(spritesmith-main-11.png); - background-position: -851px -1400px; - width: 48px; - height: 51px; + background-position: -656px -1400px; + width: 81px; + height: 99px; } -.Pet_HatchingPotion_White { +.Pet-LionCub-Red { background-image: url(spritesmith-main-11.png); - background-position: -900px -1400px; - width: 48px; - height: 51px; + background-position: -738px -1400px; + width: 81px; + height: 99px; } -.Pet_HatchingPotion_Zombie { +.Pet-LionCub-Shade { background-image: url(spritesmith-main-11.png); - background-position: -949px -1400px; - width: 48px; - height: 51px; + background-position: -820px -1400px; + width: 81px; + height: 99px; +} +.Pet-LionCub-Skeleton { + background-image: url(spritesmith-main-11.png); + background-position: -902px -1400px; + width: 81px; + height: 99px; +} +.Pet-LionCub-Spooky { + background-image: url(spritesmith-main-11.png); + background-position: -984px -1400px; + width: 81px; + height: 99px; +} +.Pet-LionCub-White { + background-image: url(spritesmith-main-11.png); + background-position: -1066px -1400px; + width: 81px; + height: 99px; +} +.Pet-LionCub-Zombie { + background-image: url(spritesmith-main-11.png); + background-position: -1148px -1400px; + width: 81px; + height: 99px; +} +.Pet-MagicalBee-Base { + background-image: url(spritesmith-main-11.png); + background-position: -1230px -1400px; + width: 81px; + height: 99px; +} +.Pet-Mammoth-Base { + background-image: url(spritesmith-main-11.png); + background-position: -1312px -1400px; + width: 81px; + height: 99px; +} +.Pet-MantisShrimp-Base { + background-image: url(spritesmith-main-11.png); + background-position: -1394px -1400px; + width: 81px; + height: 99px; +} +.Pet-Monkey-Base { + background-image: url(spritesmith-main-11.png); + background-position: -1476px -1400px; + width: 81px; + height: 99px; +} +.Pet-Monkey-CottonCandyBlue { + background-image: url(spritesmith-main-11.png); + background-position: -1558px 0px; + width: 81px; + height: 99px; +} +.Pet-Monkey-CottonCandyPink { + background-image: url(spritesmith-main-11.png); + background-position: -1558px -100px; + width: 81px; + height: 99px; +} +.Pet-Monkey-Desert { + background-image: url(spritesmith-main-11.png); + background-position: -1558px -200px; + width: 81px; + height: 99px; +} +.Pet-Monkey-Golden { + background-image: url(spritesmith-main-11.png); + background-position: -1558px -300px; + width: 81px; + height: 99px; +} +.Pet-Monkey-Red { + background-image: url(spritesmith-main-11.png); + background-position: -1558px -400px; + width: 81px; + height: 99px; +} +.Pet-Monkey-Shade { + background-image: url(spritesmith-main-11.png); + background-position: -1558px -500px; + width: 81px; + height: 99px; +} +.Pet-Monkey-Skeleton { + background-image: url(spritesmith-main-11.png); + background-position: -1558px -600px; + width: 81px; + height: 99px; +} +.Pet-Monkey-White { + background-image: url(spritesmith-main-11.png); + background-position: -1558px -700px; + width: 81px; + height: 99px; +} +.Pet-Monkey-Zombie { + background-image: url(spritesmith-main-11.png); + background-position: -1558px -800px; + width: 81px; + height: 99px; +} +.Pet-Octopus-Base { + background-image: url(spritesmith-main-11.png); + background-position: -1558px -900px; + width: 81px; + height: 99px; +} +.Pet-Octopus-CottonCandyBlue { + background-image: url(spritesmith-main-11.png); + background-position: -1558px -1000px; + width: 81px; + height: 99px; +} +.Pet-Octopus-CottonCandyPink { + background-image: url(spritesmith-main-11.png); + background-position: -1558px -1100px; + width: 81px; + height: 99px; +} +.Pet-Octopus-Desert { + background-image: url(spritesmith-main-11.png); + background-position: -1558px -1200px; + width: 81px; + height: 99px; +} +.Pet-Octopus-Golden { + background-image: url(spritesmith-main-11.png); + background-position: -1558px -1300px; + width: 81px; + height: 99px; +} +.Pet-Octopus-Red { + background-image: url(spritesmith-main-11.png); + background-position: -1558px -1400px; + width: 81px; + height: 99px; +} +.Pet-Octopus-Shade { + background-image: url(spritesmith-main-11.png); + background-position: 0px -1500px; + width: 81px; + height: 99px; +} +.Pet-Octopus-Skeleton { + background-image: url(spritesmith-main-11.png); + background-position: -82px -1500px; + width: 81px; + height: 99px; +} +.Pet-Octopus-White { + background-image: url(spritesmith-main-11.png); + background-position: -164px -1500px; + width: 81px; + height: 99px; +} +.Pet-Octopus-Zombie { + background-image: url(spritesmith-main-11.png); + background-position: -246px -1500px; + width: 81px; + height: 99px; +} +.Pet-Owl-Base { + background-image: url(spritesmith-main-11.png); + background-position: -328px -1500px; + width: 81px; + height: 99px; +} +.Pet-Owl-CottonCandyBlue { + background-image: url(spritesmith-main-11.png); + background-position: -410px -1500px; + width: 81px; + height: 99px; +} +.Pet-Owl-CottonCandyPink { + background-image: url(spritesmith-main-11.png); + background-position: -492px -1500px; + width: 81px; + height: 99px; +} +.Pet-Owl-Desert { + background-image: url(spritesmith-main-11.png); + background-position: -574px -1500px; + width: 81px; + height: 99px; +} +.Pet-Owl-Golden { + background-image: url(spritesmith-main-11.png); + background-position: -656px -1500px; + width: 81px; + height: 99px; +} +.Pet-Owl-Red { + background-image: url(spritesmith-main-11.png); + background-position: -738px -1500px; + width: 81px; + height: 99px; +} +.Pet-Owl-Shade { + background-image: url(spritesmith-main-11.png); + background-position: -820px -1500px; + width: 81px; + height: 99px; +} +.Pet-Owl-Skeleton { + background-image: url(spritesmith-main-11.png); + background-position: -902px -1500px; + width: 81px; + height: 99px; +} +.Pet-Owl-White { + background-image: url(spritesmith-main-11.png); + background-position: -984px -1500px; + width: 81px; + height: 99px; +} +.Pet-Owl-Zombie { + background-image: url(spritesmith-main-11.png); + background-position: -1066px -1500px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-Base { + background-image: url(spritesmith-main-11.png); + background-position: -1148px -1500px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-CottonCandyBlue { + background-image: url(spritesmith-main-11.png); + background-position: -1230px -1500px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-CottonCandyPink { + background-image: url(spritesmith-main-11.png); + background-position: -1312px -1500px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-Desert { + background-image: url(spritesmith-main-11.png); + background-position: -1394px -1500px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-Floral { + background-image: url(spritesmith-main-11.png); + background-position: -1476px -1500px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-Golden { + background-image: url(spritesmith-main-11.png); + background-position: -1558px -1500px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-Peppermint { + background-image: url(spritesmith-main-11.png); + background-position: -1640px 0px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-Red { + background-image: url(spritesmith-main-11.png); + background-position: -1640px -100px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-Shade { + background-image: url(spritesmith-main-11.png); + background-position: -1640px -200px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-Skeleton { + background-image: url(spritesmith-main-11.png); + background-position: -1640px -300px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-Spooky { + background-image: url(spritesmith-main-11.png); + background-position: -1640px -400px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-White { + background-image: url(spritesmith-main-11.png); + background-position: -1640px -500px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-Zombie { + background-image: url(spritesmith-main-11.png); + background-position: -1640px -600px; + width: 81px; + height: 99px; +} +.Pet-Parrot-Base { + background-image: url(spritesmith-main-11.png); + background-position: -1640px -700px; + width: 81px; + height: 99px; +} +.Pet-Parrot-CottonCandyBlue { + background-image: url(spritesmith-main-11.png); + background-position: -1640px -800px; + width: 81px; + height: 99px; +} +.Pet-Parrot-CottonCandyPink { + background-image: url(spritesmith-main-11.png); + background-position: -1640px -900px; + width: 81px; + height: 99px; +} +.Pet-Parrot-Desert { + background-image: url(spritesmith-main-11.png); + background-position: -1640px -1000px; + width: 81px; + height: 99px; +} +.Pet-Parrot-Golden { + background-image: url(spritesmith-main-11.png); + background-position: -1640px -1100px; + width: 81px; + height: 99px; } diff --git a/common/dist/sprites/spritesmith-main-11.png b/common/dist/sprites/spritesmith-main-11.png index 19dd62c573..68903f0555 100644 Binary files a/common/dist/sprites/spritesmith-main-11.png and b/common/dist/sprites/spritesmith-main-11.png differ diff --git a/common/dist/sprites/spritesmith-main-12.css b/common/dist/sprites/spritesmith-main-12.css new file mode 100644 index 0000000000..1137fa17cc --- /dev/null +++ b/common/dist/sprites/spritesmith-main-12.css @@ -0,0 +1,1134 @@ +.Pet-Parrot-Red { + background-image: url(spritesmith-main-12.png); + background-position: -82px 0px; + width: 81px; + height: 99px; +} +.Pet-Parrot-Shade { + background-image: url(spritesmith-main-12.png); + background-position: -492px -800px; + width: 81px; + height: 99px; +} +.Pet-Parrot-Skeleton { + background-image: url(spritesmith-main-12.png); + background-position: -164px 0px; + width: 81px; + height: 99px; +} +.Pet-Parrot-White { + background-image: url(spritesmith-main-12.png); + background-position: 0px -100px; + width: 81px; + height: 99px; +} +.Pet-Parrot-Zombie { + background-image: url(spritesmith-main-12.png); + background-position: -82px -100px; + width: 81px; + height: 99px; +} +.Pet-Penguin-Base { + background-image: url(spritesmith-main-12.png); + background-position: -164px -100px; + width: 81px; + height: 99px; +} +.Pet-Penguin-CottonCandyBlue { + background-image: url(spritesmith-main-12.png); + background-position: -246px 0px; + width: 81px; + height: 99px; +} +.Pet-Penguin-CottonCandyPink { + background-image: url(spritesmith-main-12.png); + background-position: -246px -100px; + width: 81px; + height: 99px; +} +.Pet-Penguin-Desert { + background-image: url(spritesmith-main-12.png); + background-position: 0px -200px; + width: 81px; + height: 99px; +} +.Pet-Penguin-Golden { + background-image: url(spritesmith-main-12.png); + background-position: -82px -200px; + width: 81px; + height: 99px; +} +.Pet-Penguin-Red { + background-image: url(spritesmith-main-12.png); + background-position: -164px -200px; + width: 81px; + height: 99px; +} +.Pet-Penguin-Shade { + background-image: url(spritesmith-main-12.png); + background-position: -246px -200px; + width: 81px; + height: 99px; +} +.Pet-Penguin-Skeleton { + background-image: url(spritesmith-main-12.png); + background-position: -328px 0px; + width: 81px; + height: 99px; +} +.Pet-Penguin-White { + background-image: url(spritesmith-main-12.png); + background-position: -328px -100px; + width: 81px; + height: 99px; +} +.Pet-Penguin-Zombie { + background-image: url(spritesmith-main-12.png); + background-position: -328px -200px; + width: 81px; + height: 99px; +} +.Pet-Phoenix-Base { + background-image: url(spritesmith-main-12.png); + background-position: 0px -300px; + width: 81px; + height: 99px; +} +.Pet-Rat-Base { + background-image: url(spritesmith-main-12.png); + background-position: -82px -300px; + width: 81px; + height: 99px; +} +.Pet-Rat-CottonCandyBlue { + background-image: url(spritesmith-main-12.png); + background-position: -164px -300px; + width: 81px; + height: 99px; +} +.Pet-Rat-CottonCandyPink { + background-image: url(spritesmith-main-12.png); + background-position: -246px -300px; + width: 81px; + height: 99px; +} +.Pet-Rat-Desert { + background-image: url(spritesmith-main-12.png); + background-position: -328px -300px; + width: 81px; + height: 99px; +} +.Pet-Rat-Golden { + background-image: url(spritesmith-main-12.png); + background-position: -410px 0px; + width: 81px; + height: 99px; +} +.Pet-Rat-Red { + background-image: url(spritesmith-main-12.png); + background-position: -410px -100px; + width: 81px; + height: 99px; +} +.Pet-Rat-Shade { + background-image: url(spritesmith-main-12.png); + background-position: -410px -200px; + width: 81px; + height: 99px; +} +.Pet-Rat-Skeleton { + background-image: url(spritesmith-main-12.png); + background-position: -410px -300px; + width: 81px; + height: 99px; +} +.Pet-Rat-White { + background-image: url(spritesmith-main-12.png); + background-position: -492px 0px; + width: 81px; + height: 99px; +} +.Pet-Rat-Zombie { + background-image: url(spritesmith-main-12.png); + background-position: -492px -100px; + width: 81px; + height: 99px; +} +.Pet-Rock-Base { + background-image: url(spritesmith-main-12.png); + background-position: -492px -200px; + width: 81px; + height: 99px; +} +.Pet-Rock-CottonCandyBlue { + background-image: url(spritesmith-main-12.png); + background-position: -492px -300px; + width: 81px; + height: 99px; +} +.Pet-Rock-CottonCandyPink { + background-image: url(spritesmith-main-12.png); + background-position: 0px -400px; + width: 81px; + height: 99px; +} +.Pet-Rock-Desert { + background-image: url(spritesmith-main-12.png); + background-position: -82px -400px; + width: 81px; + height: 99px; +} +.Pet-Rock-Golden { + background-image: url(spritesmith-main-12.png); + background-position: -164px -400px; + width: 81px; + height: 99px; +} +.Pet-Rock-Red { + background-image: url(spritesmith-main-12.png); + background-position: -246px -400px; + width: 81px; + height: 99px; +} +.Pet-Rock-Shade { + background-image: url(spritesmith-main-12.png); + background-position: -328px -400px; + width: 81px; + height: 99px; +} +.Pet-Rock-Skeleton { + background-image: url(spritesmith-main-12.png); + background-position: -410px -400px; + width: 81px; + height: 99px; +} +.Pet-Rock-White { + background-image: url(spritesmith-main-12.png); + background-position: -492px -400px; + width: 81px; + height: 99px; +} +.Pet-Rock-Zombie { + background-image: url(spritesmith-main-12.png); + background-position: -574px 0px; + width: 81px; + height: 99px; +} +.Pet-Rooster-Base { + background-image: url(spritesmith-main-12.png); + background-position: -574px -100px; + width: 81px; + height: 99px; +} +.Pet-Rooster-CottonCandyBlue { + background-image: url(spritesmith-main-12.png); + background-position: -574px -200px; + width: 81px; + height: 99px; +} +.Pet-Rooster-CottonCandyPink { + background-image: url(spritesmith-main-12.png); + background-position: -574px -300px; + width: 81px; + height: 99px; +} +.Pet-Rooster-Desert { + background-image: url(spritesmith-main-12.png); + background-position: -574px -400px; + width: 81px; + height: 99px; +} +.Pet-Rooster-Golden { + background-image: url(spritesmith-main-12.png); + background-position: 0px -500px; + width: 81px; + height: 99px; +} +.Pet-Rooster-Red { + background-image: url(spritesmith-main-12.png); + background-position: -82px -500px; + width: 81px; + height: 99px; +} +.Pet-Rooster-Shade { + background-image: url(spritesmith-main-12.png); + background-position: -164px -500px; + width: 81px; + height: 99px; +} +.Pet-Rooster-Skeleton { + background-image: url(spritesmith-main-12.png); + background-position: -246px -500px; + width: 81px; + height: 99px; +} +.Pet-Rooster-White { + background-image: url(spritesmith-main-12.png); + background-position: -328px -500px; + width: 81px; + height: 99px; +} +.Pet-Rooster-Zombie { + background-image: url(spritesmith-main-12.png); + background-position: -410px -500px; + width: 81px; + height: 99px; +} +.Pet-Sabretooth-Base { + background-image: url(spritesmith-main-12.png); + background-position: -492px -500px; + width: 81px; + height: 99px; +} +.Pet-Sabretooth-CottonCandyBlue { + background-image: url(spritesmith-main-12.png); + background-position: -574px -500px; + width: 81px; + height: 99px; +} +.Pet-Sabretooth-CottonCandyPink { + background-image: url(spritesmith-main-12.png); + background-position: -656px 0px; + width: 81px; + height: 99px; +} +.Pet-Sabretooth-Desert { + background-image: url(spritesmith-main-12.png); + background-position: -656px -100px; + width: 81px; + height: 99px; +} +.Pet-Sabretooth-Golden { + background-image: url(spritesmith-main-12.png); + background-position: -656px -200px; + width: 81px; + height: 99px; +} +.Pet-Sabretooth-Red { + background-image: url(spritesmith-main-12.png); + background-position: -656px -300px; + width: 81px; + height: 99px; +} +.Pet-Sabretooth-Shade { + background-image: url(spritesmith-main-12.png); + background-position: -656px -400px; + width: 81px; + height: 99px; +} +.Pet-Sabretooth-Skeleton { + background-image: url(spritesmith-main-12.png); + background-position: -656px -500px; + width: 81px; + height: 99px; +} +.Pet-Sabretooth-White { + background-image: url(spritesmith-main-12.png); + background-position: 0px -600px; + width: 81px; + height: 99px; +} +.Pet-Sabretooth-Zombie { + background-image: url(spritesmith-main-12.png); + background-position: -82px -600px; + width: 81px; + height: 99px; +} +.Pet-Seahorse-Base { + background-image: url(spritesmith-main-12.png); + background-position: -164px -600px; + width: 81px; + height: 99px; +} +.Pet-Seahorse-CottonCandyBlue { + background-image: url(spritesmith-main-12.png); + background-position: -246px -600px; + width: 81px; + height: 99px; +} +.Pet-Seahorse-CottonCandyPink { + background-image: url(spritesmith-main-12.png); + background-position: -328px -600px; + width: 81px; + height: 99px; +} +.Pet-Seahorse-Desert { + background-image: url(spritesmith-main-12.png); + background-position: -410px -600px; + width: 81px; + height: 99px; +} +.Pet-Seahorse-Golden { + background-image: url(spritesmith-main-12.png); + background-position: -492px -600px; + width: 81px; + height: 99px; +} +.Pet-Seahorse-Red { + background-image: url(spritesmith-main-12.png); + background-position: -574px -600px; + width: 81px; + height: 99px; +} +.Pet-Seahorse-Shade { + background-image: url(spritesmith-main-12.png); + background-position: -656px -600px; + width: 81px; + height: 99px; +} +.Pet-Seahorse-Skeleton { + background-image: url(spritesmith-main-12.png); + background-position: -738px 0px; + width: 81px; + height: 99px; +} +.Pet-Seahorse-White { + background-image: url(spritesmith-main-12.png); + background-position: -738px -100px; + width: 81px; + height: 99px; +} +.Pet-Seahorse-Zombie { + background-image: url(spritesmith-main-12.png); + background-position: -738px -200px; + width: 81px; + height: 99px; +} +.Pet-Sheep-Base { + background-image: url(spritesmith-main-12.png); + background-position: -738px -300px; + width: 81px; + height: 99px; +} +.Pet-Sheep-CottonCandyBlue { + background-image: url(spritesmith-main-12.png); + background-position: -738px -400px; + width: 81px; + height: 99px; +} +.Pet-Sheep-CottonCandyPink { + background-image: url(spritesmith-main-12.png); + background-position: -738px -500px; + width: 81px; + height: 99px; +} +.Pet-Sheep-Desert { + background-image: url(spritesmith-main-12.png); + background-position: -738px -600px; + width: 81px; + height: 99px; +} +.Pet-Sheep-Golden { + background-image: url(spritesmith-main-12.png); + background-position: 0px -700px; + width: 81px; + height: 99px; +} +.Pet-Sheep-Red { + background-image: url(spritesmith-main-12.png); + background-position: -82px -700px; + width: 81px; + height: 99px; +} +.Pet-Sheep-Shade { + background-image: url(spritesmith-main-12.png); + background-position: -164px -700px; + width: 81px; + height: 99px; +} +.Pet-Sheep-Skeleton { + background-image: url(spritesmith-main-12.png); + background-position: -246px -700px; + width: 81px; + height: 99px; +} +.Pet-Sheep-White { + background-image: url(spritesmith-main-12.png); + background-position: -328px -700px; + width: 81px; + height: 99px; +} +.Pet-Sheep-Zombie { + background-image: url(spritesmith-main-12.png); + background-position: -410px -700px; + width: 81px; + height: 99px; +} +.Pet-Slime-Base { + background-image: url(spritesmith-main-12.png); + background-position: -492px -700px; + width: 81px; + height: 99px; +} +.Pet-Slime-CottonCandyBlue { + background-image: url(spritesmith-main-12.png); + background-position: -574px -700px; + width: 81px; + height: 99px; +} +.Pet-Slime-CottonCandyPink { + background-image: url(spritesmith-main-12.png); + background-position: -656px -700px; + width: 81px; + height: 99px; +} +.Pet-Slime-Desert { + background-image: url(spritesmith-main-12.png); + background-position: -738px -700px; + width: 81px; + height: 99px; +} +.Pet-Slime-Golden { + background-image: url(spritesmith-main-12.png); + background-position: -820px 0px; + width: 81px; + height: 99px; +} +.Pet-Slime-Red { + background-image: url(spritesmith-main-12.png); + background-position: -820px -100px; + width: 81px; + height: 99px; +} +.Pet-Slime-Shade { + background-image: url(spritesmith-main-12.png); + background-position: -820px -200px; + width: 81px; + height: 99px; +} +.Pet-Slime-Skeleton { + background-image: url(spritesmith-main-12.png); + background-position: -820px -300px; + width: 81px; + height: 99px; +} +.Pet-Slime-White { + background-image: url(spritesmith-main-12.png); + background-position: -820px -400px; + width: 81px; + height: 99px; +} +.Pet-Slime-Zombie { + background-image: url(spritesmith-main-12.png); + background-position: -820px -500px; + width: 81px; + height: 99px; +} +.Pet-Snail-Base { + background-image: url(spritesmith-main-12.png); + background-position: -820px -600px; + width: 81px; + height: 99px; +} +.Pet-Snail-CottonCandyBlue { + background-image: url(spritesmith-main-12.png); + background-position: -820px -700px; + width: 81px; + height: 99px; +} +.Pet-Snail-CottonCandyPink { + background-image: url(spritesmith-main-12.png); + background-position: 0px -800px; + width: 81px; + height: 99px; +} +.Pet-Snail-Desert { + background-image: url(spritesmith-main-12.png); + background-position: -82px -800px; + width: 81px; + height: 99px; +} +.Pet-Snail-Golden { + background-image: url(spritesmith-main-12.png); + background-position: -164px -800px; + width: 81px; + height: 99px; +} +.Pet-Snail-Red { + background-image: url(spritesmith-main-12.png); + background-position: -246px -800px; + width: 81px; + height: 99px; +} +.Pet-Snail-Shade { + background-image: url(spritesmith-main-12.png); + background-position: -328px -800px; + width: 81px; + height: 99px; +} +.Pet-Snail-Skeleton { + background-image: url(spritesmith-main-12.png); + background-position: -410px -800px; + width: 81px; + height: 99px; +} +.Pet-Snail-White { + background-image: url(spritesmith-main-12.png); + background-position: 0px 0px; + width: 81px; + height: 99px; +} +.Pet-Snail-Zombie { + background-image: url(spritesmith-main-12.png); + background-position: -574px -800px; + width: 81px; + height: 99px; +} +.Pet-Snake-Base { + background-image: url(spritesmith-main-12.png); + background-position: -656px -800px; + width: 81px; + height: 99px; +} +.Pet-Snake-CottonCandyBlue { + background-image: url(spritesmith-main-12.png); + background-position: -738px -800px; + width: 81px; + height: 99px; +} +.Pet-Snake-CottonCandyPink { + background-image: url(spritesmith-main-12.png); + background-position: -820px -800px; + width: 81px; + height: 99px; +} +.Pet-Snake-Desert { + background-image: url(spritesmith-main-12.png); + background-position: -902px 0px; + width: 81px; + height: 99px; +} +.Pet-Snake-Golden { + background-image: url(spritesmith-main-12.png); + background-position: -902px -100px; + width: 81px; + height: 99px; +} +.Pet-Snake-Red { + background-image: url(spritesmith-main-12.png); + background-position: -902px -200px; + width: 81px; + height: 99px; +} +.Pet-Snake-Shade { + background-image: url(spritesmith-main-12.png); + background-position: -902px -300px; + width: 81px; + height: 99px; +} +.Pet-Snake-Skeleton { + background-image: url(spritesmith-main-12.png); + background-position: -902px -400px; + width: 81px; + height: 99px; +} +.Pet-Snake-White { + background-image: url(spritesmith-main-12.png); + background-position: -902px -500px; + width: 81px; + height: 99px; +} +.Pet-Snake-Zombie { + background-image: url(spritesmith-main-12.png); + background-position: -902px -600px; + width: 81px; + height: 99px; +} +.Pet-Spider-Base { + background-image: url(spritesmith-main-12.png); + background-position: -902px -700px; + width: 81px; + height: 99px; +} +.Pet-Spider-CottonCandyBlue { + background-image: url(spritesmith-main-12.png); + background-position: -902px -800px; + width: 81px; + height: 99px; +} +.Pet-Spider-CottonCandyPink { + background-image: url(spritesmith-main-12.png); + background-position: -984px 0px; + width: 81px; + height: 99px; +} +.Pet-Spider-Desert { + background-image: url(spritesmith-main-12.png); + background-position: -984px -100px; + width: 81px; + height: 99px; +} +.Pet-Spider-Golden { + background-image: url(spritesmith-main-12.png); + background-position: -984px -200px; + width: 81px; + height: 99px; +} +.Pet-Spider-Red { + background-image: url(spritesmith-main-12.png); + background-position: -984px -300px; + width: 81px; + height: 99px; +} +.Pet-Spider-Shade { + background-image: url(spritesmith-main-12.png); + background-position: -984px -400px; + width: 81px; + height: 99px; +} +.Pet-Spider-Skeleton { + background-image: url(spritesmith-main-12.png); + background-position: -984px -500px; + width: 81px; + height: 99px; +} +.Pet-Spider-White { + background-image: url(spritesmith-main-12.png); + background-position: -984px -600px; + width: 81px; + height: 99px; +} +.Pet-Spider-Zombie { + background-image: url(spritesmith-main-12.png); + background-position: -984px -700px; + width: 81px; + height: 99px; +} +.Pet-TRex-Base { + background-image: url(spritesmith-main-12.png); + background-position: -1066px 0px; + width: 81px; + height: 99px; +} +.Pet-TRex-CottonCandyBlue { + background-image: url(spritesmith-main-12.png); + background-position: -1066px -100px; + width: 81px; + height: 99px; +} +.Pet-TRex-CottonCandyPink { + background-image: url(spritesmith-main-12.png); + background-position: -1066px -200px; + width: 81px; + height: 99px; +} +.Pet-TRex-Desert { + background-image: url(spritesmith-main-12.png); + background-position: -1066px -300px; + width: 81px; + height: 99px; +} +.Pet-TRex-Golden { + background-image: url(spritesmith-main-12.png); + background-position: -1066px -400px; + width: 81px; + height: 99px; +} +.Pet-TRex-Red { + background-image: url(spritesmith-main-12.png); + background-position: -1066px -500px; + width: 81px; + height: 99px; +} +.Pet-TRex-Shade { + background-image: url(spritesmith-main-12.png); + background-position: -1066px -600px; + width: 81px; + height: 99px; +} +.Pet-TRex-Skeleton { + background-image: url(spritesmith-main-12.png); + background-position: -1066px -700px; + width: 81px; + height: 99px; +} +.Pet-TRex-White { + background-image: url(spritesmith-main-12.png); + background-position: -1066px -800px; + width: 81px; + height: 99px; +} +.Pet-TRex-Zombie { + background-image: url(spritesmith-main-12.png); + background-position: -1066px -900px; + width: 81px; + height: 99px; +} +.Pet-Tiger-Veteran { + background-image: url(spritesmith-main-12.png); + background-position: -984px -800px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-Base { + background-image: url(spritesmith-main-12.png); + background-position: 0px -900px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-CottonCandyBlue { + background-image: url(spritesmith-main-12.png); + background-position: -82px -900px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-CottonCandyPink { + background-image: url(spritesmith-main-12.png); + background-position: -164px -900px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-Desert { + background-image: url(spritesmith-main-12.png); + background-position: -246px -900px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-Floral { + background-image: url(spritesmith-main-12.png); + background-position: -328px -900px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-Golden { + background-image: url(spritesmith-main-12.png); + background-position: -410px -900px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-Peppermint { + background-image: url(spritesmith-main-12.png); + background-position: -492px -900px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-Red { + background-image: url(spritesmith-main-12.png); + background-position: -574px -900px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-Shade { + background-image: url(spritesmith-main-12.png); + background-position: -656px -900px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-Skeleton { + background-image: url(spritesmith-main-12.png); + background-position: -738px -900px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-Spooky { + background-image: url(spritesmith-main-12.png); + background-position: -820px -900px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-White { + background-image: url(spritesmith-main-12.png); + background-position: -902px -900px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-Zombie { + background-image: url(spritesmith-main-12.png); + background-position: -984px -900px; + width: 81px; + height: 99px; +} +.Pet-Turkey-Base { + background-image: url(spritesmith-main-12.png); + background-position: 0px -1000px; + width: 81px; + height: 99px; +} +.Pet-Turkey-Gilded { + background-image: url(spritesmith-main-12.png); + background-position: -82px -1000px; + width: 81px; + height: 99px; +} +.Pet-Unicorn-Base { + background-image: url(spritesmith-main-12.png); + background-position: -164px -1000px; + width: 81px; + height: 99px; +} +.Pet-Unicorn-CottonCandyBlue { + background-image: url(spritesmith-main-12.png); + background-position: -246px -1000px; + width: 81px; + height: 99px; +} +.Pet-Unicorn-CottonCandyPink { + background-image: url(spritesmith-main-12.png); + background-position: -328px -1000px; + width: 81px; + height: 99px; +} +.Pet-Unicorn-Desert { + background-image: url(spritesmith-main-12.png); + background-position: -410px -1000px; + width: 81px; + height: 99px; +} +.Pet-Unicorn-Golden { + background-image: url(spritesmith-main-12.png); + background-position: -492px -1000px; + width: 81px; + height: 99px; +} +.Pet-Unicorn-Red { + background-image: url(spritesmith-main-12.png); + background-position: -574px -1000px; + width: 81px; + height: 99px; +} +.Pet-Unicorn-Shade { + background-image: url(spritesmith-main-12.png); + background-position: -656px -1000px; + width: 81px; + height: 99px; +} +.Pet-Unicorn-Skeleton { + background-image: url(spritesmith-main-12.png); + background-position: -738px -1000px; + width: 81px; + height: 99px; +} +.Pet-Unicorn-White { + background-image: url(spritesmith-main-12.png); + background-position: -820px -1000px; + width: 81px; + height: 99px; +} +.Pet-Unicorn-Zombie { + background-image: url(spritesmith-main-12.png); + background-position: -902px -1000px; + width: 81px; + height: 99px; +} +.Pet-Whale-Base { + background-image: url(spritesmith-main-12.png); + background-position: -984px -1000px; + width: 81px; + height: 99px; +} +.Pet-Whale-CottonCandyBlue { + background-image: url(spritesmith-main-12.png); + background-position: -1066px -1000px; + width: 81px; + height: 99px; +} +.Pet-Whale-CottonCandyPink { + background-image: url(spritesmith-main-12.png); + background-position: -1148px 0px; + width: 81px; + height: 99px; +} +.Pet-Whale-Desert { + background-image: url(spritesmith-main-12.png); + background-position: -1148px -100px; + width: 81px; + height: 99px; +} +.Pet-Whale-Golden { + background-image: url(spritesmith-main-12.png); + background-position: -1148px -200px; + width: 81px; + height: 99px; +} +.Pet-Whale-Red { + background-image: url(spritesmith-main-12.png); + background-position: -1148px -300px; + width: 81px; + height: 99px; +} +.Pet-Whale-Shade { + background-image: url(spritesmith-main-12.png); + background-position: -1148px -400px; + width: 81px; + height: 99px; +} +.Pet-Whale-Skeleton { + background-image: url(spritesmith-main-12.png); + background-position: -1148px -500px; + width: 81px; + height: 99px; +} +.Pet-Whale-White { + background-image: url(spritesmith-main-12.png); + background-position: -1148px -600px; + width: 81px; + height: 99px; +} +.Pet-Whale-Zombie { + background-image: url(spritesmith-main-12.png); + background-position: -1148px -700px; + width: 81px; + height: 99px; +} +.Pet-Wolf-Base { + background-image: url(spritesmith-main-12.png); + background-position: -1148px -800px; + width: 81px; + height: 99px; +} +.Pet-Wolf-CottonCandyBlue { + background-image: url(spritesmith-main-12.png); + background-position: -1148px -900px; + width: 81px; + height: 99px; +} +.Pet-Wolf-CottonCandyPink { + background-image: url(spritesmith-main-12.png); + background-position: -1148px -1000px; + width: 81px; + height: 99px; +} +.Pet-Wolf-Desert { + background-image: url(spritesmith-main-12.png); + background-position: 0px -1100px; + width: 81px; + height: 99px; +} +.Pet-Wolf-Floral { + background-image: url(spritesmith-main-12.png); + background-position: -82px -1100px; + width: 81px; + height: 99px; +} +.Pet-Wolf-Golden { + background-image: url(spritesmith-main-12.png); + background-position: -164px -1100px; + width: 81px; + height: 99px; +} +.Pet-Wolf-Peppermint { + background-image: url(spritesmith-main-12.png); + background-position: -246px -1100px; + width: 81px; + height: 99px; +} +.Pet-Wolf-Red { + background-image: url(spritesmith-main-12.png); + background-position: -328px -1100px; + width: 81px; + height: 99px; +} +.Pet-Wolf-Shade { + background-image: url(spritesmith-main-12.png); + background-position: -410px -1100px; + width: 81px; + height: 99px; +} +.Pet-Wolf-Skeleton { + background-image: url(spritesmith-main-12.png); + background-position: -492px -1100px; + width: 81px; + height: 99px; +} +.Pet-Wolf-Spooky { + background-image: url(spritesmith-main-12.png); + background-position: -574px -1100px; + width: 81px; + height: 99px; +} +.Pet-Wolf-Veteran { + background-image: url(spritesmith-main-12.png); + background-position: -656px -1100px; + width: 81px; + height: 99px; +} +.Pet-Wolf-White { + background-image: url(spritesmith-main-12.png); + background-position: -738px -1100px; + width: 81px; + height: 99px; +} +.Pet-Wolf-Zombie { + background-image: url(spritesmith-main-12.png); + background-position: -820px -1100px; + width: 81px; + height: 99px; +} +.Pet_HatchingPotion_Base { + background-image: url(spritesmith-main-12.png); + background-position: -951px -1100px; + width: 48px; + height: 51px; +} +.Pet_HatchingPotion_CottonCandyBlue { + background-image: url(spritesmith-main-12.png); + background-position: -1230px 0px; + width: 48px; + height: 51px; +} +.Pet_HatchingPotion_CottonCandyPink { + background-image: url(spritesmith-main-12.png); + background-position: -1000px -1100px; + width: 48px; + height: 51px; +} +.Pet_HatchingPotion_Desert { + background-image: url(spritesmith-main-12.png); + background-position: -1049px -1100px; + width: 48px; + height: 51px; +} +.Pet_HatchingPotion_Floral { + background-image: url(spritesmith-main-12.png); + background-position: -1098px -1100px; + width: 48px; + height: 51px; +} +.Pet_HatchingPotion_Golden { + background-image: url(spritesmith-main-12.png); + background-position: -1147px -1100px; + width: 48px; + height: 51px; +} +.Pet_HatchingPotion_Peppermint { + background-image: url(spritesmith-main-12.png); + background-position: -902px -1100px; + width: 48px; + height: 51px; +} +.Pet_HatchingPotion_Red { + background-image: url(spritesmith-main-12.png); + background-position: -1230px -52px; + width: 48px; + height: 51px; +} +.Pet_HatchingPotion_Shade { + background-image: url(spritesmith-main-12.png); + background-position: -1230px -104px; + width: 48px; + height: 51px; +} +.Pet_HatchingPotion_Skeleton { + background-image: url(spritesmith-main-12.png); + background-position: -1230px -156px; + width: 48px; + height: 51px; +} +.Pet_HatchingPotion_Spooky { + background-image: url(spritesmith-main-12.png); + background-position: -1230px -208px; + width: 48px; + height: 51px; +} +.Pet_HatchingPotion_White { + background-image: url(spritesmith-main-12.png); + background-position: -1230px -260px; + width: 48px; + height: 51px; +} +.Pet_HatchingPotion_Zombie { + background-image: url(spritesmith-main-12.png); + background-position: -1230px -312px; + width: 48px; + height: 51px; +} diff --git a/common/dist/sprites/spritesmith-main-12.png b/common/dist/sprites/spritesmith-main-12.png new file mode 100644 index 0000000000..e625410198 Binary files /dev/null and b/common/dist/sprites/spritesmith-main-12.png differ diff --git a/common/dist/sprites/spritesmith-main-2.css b/common/dist/sprites/spritesmith-main-2.css index 4938efacd1..7a3c31119d 100644 --- a/common/dist/sprites/spritesmith-main-2.css +++ b/common/dist/sprites/spritesmith-main-2.css @@ -1,3946 +1,3946 @@ -.hair_base_1_candycane { - background-image: url(spritesmith-main-2.png); - background-position: -91px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_1_candycane { - background-image: url(spritesmith-main-2.png); - background-position: -116px -15px; - width: 60px; - height: 60px; -} -.hair_base_1_candycorn { - background-image: url(spritesmith-main-2.png); - background-position: -728px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_1_candycorn { - background-image: url(spritesmith-main-2.png); - background-position: -753px -1107px; - width: 60px; - height: 60px; -} -.hair_base_1_festive { - background-image: url(spritesmith-main-2.png); - background-position: 0px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_1_festive { - background-image: url(spritesmith-main-2.png); - background-position: -25px -106px; - width: 60px; - height: 60px; -} -.hair_base_1_frost { - background-image: url(spritesmith-main-2.png); - background-position: -91px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_1_frost { - background-image: url(spritesmith-main-2.png); - background-position: -116px -106px; - width: 60px; - height: 60px; -} -.hair_base_1_ghostwhite { - background-image: url(spritesmith-main-2.png); - background-position: -182px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_1_ghostwhite { - background-image: url(spritesmith-main-2.png); - background-position: -207px -15px; - width: 60px; - height: 60px; -} -.hair_base_1_green { +.hair_base_13_TRUred { background-image: url(spritesmith-main-2.png); background-position: -182px -91px; width: 90px; height: 90px; } -.customize-option.hair_base_1_green { +.customize-option.hair_base_13_TRUred { background-image: url(spritesmith-main-2.png); background-position: -207px -106px; width: 60px; height: 60px; } -.hair_base_1_halloween { +.hair_base_13_pyellow { + background-image: url(spritesmith-main-2.png); + background-position: -91px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_13_pyellow { + background-image: url(spritesmith-main-2.png); + background-position: -116px -15px; + width: 60px; + height: 60px; +} +.hair_base_13_pyellow2 { + background-image: url(spritesmith-main-2.png); + background-position: -728px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_13_pyellow2 { + background-image: url(spritesmith-main-2.png); + background-position: -753px -1107px; + width: 60px; + height: 60px; +} +.hair_base_13_rainbow { + background-image: url(spritesmith-main-2.png); + background-position: 0px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_13_rainbow { + background-image: url(spritesmith-main-2.png); + background-position: -25px -106px; + width: 60px; + height: 60px; +} +.hair_base_13_red { + background-image: url(spritesmith-main-2.png); + background-position: -91px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_13_red { + background-image: url(spritesmith-main-2.png); + background-position: -116px -106px; + width: 60px; + height: 60px; +} +.hair_base_13_snowy { + background-image: url(spritesmith-main-2.png); + background-position: -182px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_13_snowy { + background-image: url(spritesmith-main-2.png); + background-position: -207px -15px; + width: 60px; + height: 60px; +} +.hair_base_13_white { background-image: url(spritesmith-main-2.png); background-position: 0px -182px; width: 90px; height: 90px; } -.customize-option.hair_base_1_halloween { +.customize-option.hair_base_13_white { background-image: url(spritesmith-main-2.png); background-position: -25px -197px; width: 60px; height: 60px; } -.hair_base_1_holly { +.hair_base_13_winternight { background-image: url(spritesmith-main-2.png); background-position: -91px -182px; width: 90px; height: 90px; } -.customize-option.hair_base_1_holly { +.customize-option.hair_base_13_winternight { background-image: url(spritesmith-main-2.png); background-position: -116px -197px; width: 60px; height: 60px; } -.hair_base_1_hollygreen { +.hair_base_13_winterstar { background-image: url(spritesmith-main-2.png); background-position: -182px -182px; width: 90px; height: 90px; } -.customize-option.hair_base_1_hollygreen { +.customize-option.hair_base_13_winterstar { background-image: url(spritesmith-main-2.png); background-position: -207px -197px; width: 60px; height: 60px; } -.hair_base_1_midnight { +.hair_base_13_yellow { background-image: url(spritesmith-main-2.png); background-position: -273px 0px; width: 90px; height: 90px; } -.customize-option.hair_base_1_midnight { +.customize-option.hair_base_13_yellow { background-image: url(spritesmith-main-2.png); background-position: -298px -15px; width: 60px; height: 60px; } -.hair_base_1_pblue { +.hair_base_13_zombie { background-image: url(spritesmith-main-2.png); background-position: -273px -91px; width: 90px; height: 90px; } -.customize-option.hair_base_1_pblue { +.customize-option.hair_base_13_zombie { background-image: url(spritesmith-main-2.png); background-position: -298px -106px; width: 60px; height: 60px; } -.hair_base_1_pblue2 { - background-image: url(spritesmith-main-2.png); - background-position: -273px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_1_pblue2 { - background-image: url(spritesmith-main-2.png); - background-position: -298px -197px; - width: 60px; - height: 60px; -} -.hair_base_1_peppermint { - background-image: url(spritesmith-main-2.png); - background-position: 0px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_1_peppermint { - background-image: url(spritesmith-main-2.png); - background-position: -25px -288px; - width: 60px; - height: 60px; -} -.hair_base_1_pgreen { - background-image: url(spritesmith-main-2.png); - background-position: -91px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_1_pgreen { - background-image: url(spritesmith-main-2.png); - background-position: -116px -288px; - width: 60px; - height: 60px; -} -.hair_base_1_pgreen2 { - background-image: url(spritesmith-main-2.png); - background-position: -182px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_1_pgreen2 { - background-image: url(spritesmith-main-2.png); - background-position: -207px -288px; - width: 60px; - height: 60px; -} -.hair_base_1_porange { - background-image: url(spritesmith-main-2.png); - background-position: -273px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_1_porange { - background-image: url(spritesmith-main-2.png); - background-position: -298px -288px; - width: 60px; - height: 60px; -} -.hair_base_1_porange2 { - background-image: url(spritesmith-main-2.png); - background-position: -364px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_1_porange2 { - background-image: url(spritesmith-main-2.png); - background-position: -389px -15px; - width: 60px; - height: 60px; -} -.hair_base_1_ppink { - background-image: url(spritesmith-main-2.png); - background-position: -364px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_1_ppink { - background-image: url(spritesmith-main-2.png); - background-position: -389px -106px; - width: 60px; - height: 60px; -} -.hair_base_1_ppink2 { - background-image: url(spritesmith-main-2.png); - background-position: -364px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_1_ppink2 { - background-image: url(spritesmith-main-2.png); - background-position: -389px -197px; - width: 60px; - height: 60px; -} -.hair_base_1_ppurple { - background-image: url(spritesmith-main-2.png); - background-position: -364px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_1_ppurple { - background-image: url(spritesmith-main-2.png); - background-position: -389px -288px; - width: 60px; - height: 60px; -} -.hair_base_1_ppurple2 { - background-image: url(spritesmith-main-2.png); - background-position: 0px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_1_ppurple2 { - background-image: url(spritesmith-main-2.png); - background-position: -25px -379px; - width: 60px; - height: 60px; -} -.hair_base_1_pumpkin { - background-image: url(spritesmith-main-2.png); - background-position: -91px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_1_pumpkin { - background-image: url(spritesmith-main-2.png); - background-position: -116px -379px; - width: 60px; - height: 60px; -} -.hair_base_1_purple { - background-image: url(spritesmith-main-2.png); - background-position: -182px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_1_purple { - background-image: url(spritesmith-main-2.png); - background-position: -207px -379px; - width: 60px; - height: 60px; -} -.hair_base_1_pyellow { - background-image: url(spritesmith-main-2.png); - background-position: -273px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_1_pyellow { - background-image: url(spritesmith-main-2.png); - background-position: -298px -379px; - width: 60px; - height: 60px; -} -.hair_base_1_pyellow2 { - background-image: url(spritesmith-main-2.png); - background-position: -364px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_1_pyellow2 { - background-image: url(spritesmith-main-2.png); - background-position: -389px -379px; - width: 60px; - height: 60px; -} -.hair_base_1_rainbow { - background-image: url(spritesmith-main-2.png); - background-position: -455px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_1_rainbow { - background-image: url(spritesmith-main-2.png); - background-position: -480px -15px; - width: 60px; - height: 60px; -} -.hair_base_1_red { - background-image: url(spritesmith-main-2.png); - background-position: -455px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_1_red { - background-image: url(spritesmith-main-2.png); - background-position: -480px -106px; - width: 60px; - height: 60px; -} -.hair_base_1_snowy { - background-image: url(spritesmith-main-2.png); - background-position: -455px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_1_snowy { - background-image: url(spritesmith-main-2.png); - background-position: -480px -197px; - width: 60px; - height: 60px; -} -.hair_base_1_white { - background-image: url(spritesmith-main-2.png); - background-position: -455px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_1_white { - background-image: url(spritesmith-main-2.png); - background-position: -480px -288px; - width: 60px; - height: 60px; -} -.hair_base_1_winternight { - background-image: url(spritesmith-main-2.png); - background-position: -455px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_1_winternight { - background-image: url(spritesmith-main-2.png); - background-position: -480px -379px; - width: 60px; - height: 60px; -} -.hair_base_1_winterstar { - background-image: url(spritesmith-main-2.png); - background-position: 0px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_1_winterstar { - background-image: url(spritesmith-main-2.png); - background-position: -25px -470px; - width: 60px; - height: 60px; -} -.hair_base_1_yellow { - background-image: url(spritesmith-main-2.png); - background-position: -91px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_1_yellow { - background-image: url(spritesmith-main-2.png); - background-position: -116px -470px; - width: 60px; - height: 60px; -} -.hair_base_1_zombie { - background-image: url(spritesmith-main-2.png); - background-position: -182px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_1_zombie { - background-image: url(spritesmith-main-2.png); - background-position: -207px -470px; - width: 60px; - height: 60px; -} -.hair_base_2_TRUred { - background-image: url(spritesmith-main-2.png); - background-position: -273px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_2_TRUred { - background-image: url(spritesmith-main-2.png); - background-position: -298px -470px; - width: 60px; - height: 60px; -} -.hair_base_2_aurora { - background-image: url(spritesmith-main-2.png); - background-position: -364px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_2_aurora { - background-image: url(spritesmith-main-2.png); - background-position: -389px -470px; - width: 60px; - height: 60px; -} -.hair_base_2_black { - background-image: url(spritesmith-main-2.png); - background-position: -455px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_2_black { - background-image: url(spritesmith-main-2.png); - background-position: -480px -470px; - width: 60px; - height: 60px; -} -.hair_base_2_blond { - background-image: url(spritesmith-main-2.png); - background-position: -546px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_2_blond { - background-image: url(spritesmith-main-2.png); - background-position: -571px -15px; - width: 60px; - height: 60px; -} -.hair_base_2_blue { - background-image: url(spritesmith-main-2.png); - background-position: -546px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_2_blue { - background-image: url(spritesmith-main-2.png); - background-position: -571px -106px; - width: 60px; - height: 60px; -} -.hair_base_2_brown { - background-image: url(spritesmith-main-2.png); - background-position: -546px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_2_brown { - background-image: url(spritesmith-main-2.png); - background-position: -571px -197px; - width: 60px; - height: 60px; -} -.hair_base_2_candycane { - background-image: url(spritesmith-main-2.png); - background-position: -546px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_2_candycane { - background-image: url(spritesmith-main-2.png); - background-position: -571px -288px; - width: 60px; - height: 60px; -} -.hair_base_2_candycorn { - background-image: url(spritesmith-main-2.png); - background-position: -546px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_2_candycorn { - background-image: url(spritesmith-main-2.png); - background-position: -571px -379px; - width: 60px; - height: 60px; -} -.hair_base_2_festive { - background-image: url(spritesmith-main-2.png); - background-position: -546px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_2_festive { - background-image: url(spritesmith-main-2.png); - background-position: -571px -470px; - width: 60px; - height: 60px; -} -.hair_base_2_frost { - background-image: url(spritesmith-main-2.png); - background-position: 0px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_2_frost { - background-image: url(spritesmith-main-2.png); - background-position: -25px -561px; - width: 60px; - height: 60px; -} -.hair_base_2_ghostwhite { - background-image: url(spritesmith-main-2.png); - background-position: -91px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_2_ghostwhite { - background-image: url(spritesmith-main-2.png); - background-position: -116px -561px; - width: 60px; - height: 60px; -} -.hair_base_2_green { +.hair_base_14_TRUred { background-image: url(spritesmith-main-2.png); background-position: -182px -546px; width: 90px; height: 90px; } -.customize-option.hair_base_2_green { +.customize-option.hair_base_14_TRUred { background-image: url(spritesmith-main-2.png); background-position: -207px -561px; width: 60px; height: 60px; } -.hair_base_2_halloween { +.hair_base_14_aurora { + background-image: url(spritesmith-main-2.png); + background-position: -273px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_aurora { + background-image: url(spritesmith-main-2.png); + background-position: -298px -197px; + width: 60px; + height: 60px; +} +.hair_base_14_black { + background-image: url(spritesmith-main-2.png); + background-position: 0px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_black { + background-image: url(spritesmith-main-2.png); + background-position: -25px -288px; + width: 60px; + height: 60px; +} +.hair_base_14_blond { + background-image: url(spritesmith-main-2.png); + background-position: -91px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_blond { + background-image: url(spritesmith-main-2.png); + background-position: -116px -288px; + width: 60px; + height: 60px; +} +.hair_base_14_blue { + background-image: url(spritesmith-main-2.png); + background-position: -182px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_blue { + background-image: url(spritesmith-main-2.png); + background-position: -207px -288px; + width: 60px; + height: 60px; +} +.hair_base_14_brown { + background-image: url(spritesmith-main-2.png); + background-position: -273px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_brown { + background-image: url(spritesmith-main-2.png); + background-position: -298px -288px; + width: 60px; + height: 60px; +} +.hair_base_14_candycane { + background-image: url(spritesmith-main-2.png); + background-position: -364px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_candycane { + background-image: url(spritesmith-main-2.png); + background-position: -389px -15px; + width: 60px; + height: 60px; +} +.hair_base_14_candycorn { + background-image: url(spritesmith-main-2.png); + background-position: -364px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_candycorn { + background-image: url(spritesmith-main-2.png); + background-position: -389px -106px; + width: 60px; + height: 60px; +} +.hair_base_14_festive { + background-image: url(spritesmith-main-2.png); + background-position: -364px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_festive { + background-image: url(spritesmith-main-2.png); + background-position: -389px -197px; + width: 60px; + height: 60px; +} +.hair_base_14_frost { + background-image: url(spritesmith-main-2.png); + background-position: -364px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_frost { + background-image: url(spritesmith-main-2.png); + background-position: -389px -288px; + width: 60px; + height: 60px; +} +.hair_base_14_ghostwhite { + background-image: url(spritesmith-main-2.png); + background-position: 0px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_ghostwhite { + background-image: url(spritesmith-main-2.png); + background-position: -25px -379px; + width: 60px; + height: 60px; +} +.hair_base_14_green { + background-image: url(spritesmith-main-2.png); + background-position: -91px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_green { + background-image: url(spritesmith-main-2.png); + background-position: -116px -379px; + width: 60px; + height: 60px; +} +.hair_base_14_halloween { + background-image: url(spritesmith-main-2.png); + background-position: -182px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_halloween { + background-image: url(spritesmith-main-2.png); + background-position: -207px -379px; + width: 60px; + height: 60px; +} +.hair_base_14_holly { + background-image: url(spritesmith-main-2.png); + background-position: -273px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_holly { + background-image: url(spritesmith-main-2.png); + background-position: -298px -379px; + width: 60px; + height: 60px; +} +.hair_base_14_hollygreen { + background-image: url(spritesmith-main-2.png); + background-position: -364px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_hollygreen { + background-image: url(spritesmith-main-2.png); + background-position: -389px -379px; + width: 60px; + height: 60px; +} +.hair_base_14_midnight { + background-image: url(spritesmith-main-2.png); + background-position: -455px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_midnight { + background-image: url(spritesmith-main-2.png); + background-position: -480px -15px; + width: 60px; + height: 60px; +} +.hair_base_14_pblue { + background-image: url(spritesmith-main-2.png); + background-position: -455px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_pblue { + background-image: url(spritesmith-main-2.png); + background-position: -480px -106px; + width: 60px; + height: 60px; +} +.hair_base_14_pblue2 { + background-image: url(spritesmith-main-2.png); + background-position: -455px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_pblue2 { + background-image: url(spritesmith-main-2.png); + background-position: -480px -197px; + width: 60px; + height: 60px; +} +.hair_base_14_peppermint { + background-image: url(spritesmith-main-2.png); + background-position: -455px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_peppermint { + background-image: url(spritesmith-main-2.png); + background-position: -480px -288px; + width: 60px; + height: 60px; +} +.hair_base_14_pgreen { + background-image: url(spritesmith-main-2.png); + background-position: -455px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_pgreen { + background-image: url(spritesmith-main-2.png); + background-position: -480px -379px; + width: 60px; + height: 60px; +} +.hair_base_14_pgreen2 { + background-image: url(spritesmith-main-2.png); + background-position: 0px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_pgreen2 { + background-image: url(spritesmith-main-2.png); + background-position: -25px -470px; + width: 60px; + height: 60px; +} +.hair_base_14_porange { + background-image: url(spritesmith-main-2.png); + background-position: -91px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_porange { + background-image: url(spritesmith-main-2.png); + background-position: -116px -470px; + width: 60px; + height: 60px; +} +.hair_base_14_porange2 { + background-image: url(spritesmith-main-2.png); + background-position: -182px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_porange2 { + background-image: url(spritesmith-main-2.png); + background-position: -207px -470px; + width: 60px; + height: 60px; +} +.hair_base_14_ppink { + background-image: url(spritesmith-main-2.png); + background-position: -273px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_ppink { + background-image: url(spritesmith-main-2.png); + background-position: -298px -470px; + width: 60px; + height: 60px; +} +.hair_base_14_ppink2 { + background-image: url(spritesmith-main-2.png); + background-position: -364px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_ppink2 { + background-image: url(spritesmith-main-2.png); + background-position: -389px -470px; + width: 60px; + height: 60px; +} +.hair_base_14_ppurple { + background-image: url(spritesmith-main-2.png); + background-position: -455px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_ppurple { + background-image: url(spritesmith-main-2.png); + background-position: -480px -470px; + width: 60px; + height: 60px; +} +.hair_base_14_ppurple2 { + background-image: url(spritesmith-main-2.png); + background-position: -546px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_ppurple2 { + background-image: url(spritesmith-main-2.png); + background-position: -571px -15px; + width: 60px; + height: 60px; +} +.hair_base_14_pumpkin { + background-image: url(spritesmith-main-2.png); + background-position: -546px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_pumpkin { + background-image: url(spritesmith-main-2.png); + background-position: -571px -106px; + width: 60px; + height: 60px; +} +.hair_base_14_purple { + background-image: url(spritesmith-main-2.png); + background-position: -546px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_purple { + background-image: url(spritesmith-main-2.png); + background-position: -571px -197px; + width: 60px; + height: 60px; +} +.hair_base_14_pyellow { + background-image: url(spritesmith-main-2.png); + background-position: -546px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_pyellow { + background-image: url(spritesmith-main-2.png); + background-position: -571px -288px; + width: 60px; + height: 60px; +} +.hair_base_14_pyellow2 { + background-image: url(spritesmith-main-2.png); + background-position: -546px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_pyellow2 { + background-image: url(spritesmith-main-2.png); + background-position: -571px -379px; + width: 60px; + height: 60px; +} +.hair_base_14_rainbow { + background-image: url(spritesmith-main-2.png); + background-position: -546px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_rainbow { + background-image: url(spritesmith-main-2.png); + background-position: -571px -470px; + width: 60px; + height: 60px; +} +.hair_base_14_red { + background-image: url(spritesmith-main-2.png); + background-position: 0px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_red { + background-image: url(spritesmith-main-2.png); + background-position: -25px -561px; + width: 60px; + height: 60px; +} +.hair_base_14_snowy { + background-image: url(spritesmith-main-2.png); + background-position: -91px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_snowy { + background-image: url(spritesmith-main-2.png); + background-position: -116px -561px; + width: 60px; + height: 60px; +} +.hair_base_14_white { background-image: url(spritesmith-main-2.png); background-position: -273px -546px; width: 90px; height: 90px; } -.customize-option.hair_base_2_halloween { +.customize-option.hair_base_14_white { background-image: url(spritesmith-main-2.png); background-position: -298px -561px; width: 60px; height: 60px; } -.hair_base_2_holly { +.hair_base_14_winternight { background-image: url(spritesmith-main-2.png); background-position: -364px -546px; width: 90px; height: 90px; } -.customize-option.hair_base_2_holly { +.customize-option.hair_base_14_winternight { background-image: url(spritesmith-main-2.png); background-position: -389px -561px; width: 60px; height: 60px; } -.hair_base_2_hollygreen { +.hair_base_14_winterstar { background-image: url(spritesmith-main-2.png); background-position: -455px -546px; width: 90px; height: 90px; } -.customize-option.hair_base_2_hollygreen { +.customize-option.hair_base_14_winterstar { background-image: url(spritesmith-main-2.png); background-position: -480px -561px; width: 60px; height: 60px; } -.hair_base_2_midnight { +.hair_base_14_yellow { background-image: url(spritesmith-main-2.png); background-position: -546px -546px; width: 90px; height: 90px; } -.customize-option.hair_base_2_midnight { +.customize-option.hair_base_14_yellow { background-image: url(spritesmith-main-2.png); background-position: -571px -561px; width: 60px; height: 60px; } -.hair_base_2_pblue { +.hair_base_14_zombie { background-image: url(spritesmith-main-2.png); background-position: -637px 0px; width: 90px; height: 90px; } -.customize-option.hair_base_2_pblue { +.customize-option.hair_base_14_zombie { background-image: url(spritesmith-main-2.png); background-position: -662px -15px; width: 60px; height: 60px; } -.hair_base_2_pblue2 { - background-image: url(spritesmith-main-2.png); - background-position: -637px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_2_pblue2 { - background-image: url(spritesmith-main-2.png); - background-position: -662px -106px; - width: 60px; - height: 60px; -} -.hair_base_2_peppermint { - background-image: url(spritesmith-main-2.png); - background-position: -637px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_2_peppermint { - background-image: url(spritesmith-main-2.png); - background-position: -662px -197px; - width: 60px; - height: 60px; -} -.hair_base_2_pgreen { - background-image: url(spritesmith-main-2.png); - background-position: -637px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_2_pgreen { - background-image: url(spritesmith-main-2.png); - background-position: -662px -288px; - width: 60px; - height: 60px; -} -.hair_base_2_pgreen2 { - background-image: url(spritesmith-main-2.png); - background-position: -637px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_2_pgreen2 { - background-image: url(spritesmith-main-2.png); - background-position: -662px -379px; - width: 60px; - height: 60px; -} -.hair_base_2_porange { - background-image: url(spritesmith-main-2.png); - background-position: -637px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_2_porange { - background-image: url(spritesmith-main-2.png); - background-position: -662px -470px; - width: 60px; - height: 60px; -} -.hair_base_2_porange2 { - background-image: url(spritesmith-main-2.png); - background-position: -637px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_2_porange2 { - background-image: url(spritesmith-main-2.png); - background-position: -662px -561px; - width: 60px; - height: 60px; -} -.hair_base_2_ppink { - background-image: url(spritesmith-main-2.png); - background-position: 0px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_2_ppink { - background-image: url(spritesmith-main-2.png); - background-position: -25px -652px; - width: 60px; - height: 60px; -} -.hair_base_2_ppink2 { - background-image: url(spritesmith-main-2.png); - background-position: -91px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_2_ppink2 { - background-image: url(spritesmith-main-2.png); - background-position: -116px -652px; - width: 60px; - height: 60px; -} -.hair_base_2_ppurple { - background-image: url(spritesmith-main-2.png); - background-position: -182px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_2_ppurple { - background-image: url(spritesmith-main-2.png); - background-position: -207px -652px; - width: 60px; - height: 60px; -} -.hair_base_2_ppurple2 { - background-image: url(spritesmith-main-2.png); - background-position: -273px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_2_ppurple2 { - background-image: url(spritesmith-main-2.png); - background-position: -298px -652px; - width: 60px; - height: 60px; -} -.hair_base_2_pumpkin { - background-image: url(spritesmith-main-2.png); - background-position: -364px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_2_pumpkin { - background-image: url(spritesmith-main-2.png); - background-position: -389px -652px; - width: 60px; - height: 60px; -} -.hair_base_2_purple { - background-image: url(spritesmith-main-2.png); - background-position: -455px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_2_purple { - background-image: url(spritesmith-main-2.png); - background-position: -480px -652px; - width: 60px; - height: 60px; -} -.hair_base_2_pyellow { - background-image: url(spritesmith-main-2.png); - background-position: -546px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_2_pyellow { - background-image: url(spritesmith-main-2.png); - background-position: -571px -652px; - width: 60px; - height: 60px; -} -.hair_base_2_pyellow2 { - background-image: url(spritesmith-main-2.png); - background-position: -637px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_2_pyellow2 { - background-image: url(spritesmith-main-2.png); - background-position: -662px -652px; - width: 60px; - height: 60px; -} -.hair_base_2_rainbow { - background-image: url(spritesmith-main-2.png); - background-position: -728px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_2_rainbow { - background-image: url(spritesmith-main-2.png); - background-position: -753px -15px; - width: 60px; - height: 60px; -} -.hair_base_2_red { - background-image: url(spritesmith-main-2.png); - background-position: -728px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_2_red { - background-image: url(spritesmith-main-2.png); - background-position: -753px -106px; - width: 60px; - height: 60px; -} -.hair_base_2_snowy { - background-image: url(spritesmith-main-2.png); - background-position: -728px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_2_snowy { - background-image: url(spritesmith-main-2.png); - background-position: -753px -197px; - width: 60px; - height: 60px; -} -.hair_base_2_white { - background-image: url(spritesmith-main-2.png); - background-position: -728px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_2_white { - background-image: url(spritesmith-main-2.png); - background-position: -753px -288px; - width: 60px; - height: 60px; -} -.hair_base_2_winternight { - background-image: url(spritesmith-main-2.png); - background-position: -728px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_2_winternight { - background-image: url(spritesmith-main-2.png); - background-position: -753px -379px; - width: 60px; - height: 60px; -} -.hair_base_2_winterstar { - background-image: url(spritesmith-main-2.png); - background-position: -728px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_2_winterstar { - background-image: url(spritesmith-main-2.png); - background-position: -753px -470px; - width: 60px; - height: 60px; -} -.hair_base_2_yellow { - background-image: url(spritesmith-main-2.png); - background-position: -728px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_2_yellow { - background-image: url(spritesmith-main-2.png); - background-position: -753px -561px; - width: 60px; - height: 60px; -} -.hair_base_2_zombie { - background-image: url(spritesmith-main-2.png); - background-position: -728px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_2_zombie { - background-image: url(spritesmith-main-2.png); - background-position: -753px -652px; - width: 60px; - height: 60px; -} -.hair_base_3_TRUred { - background-image: url(spritesmith-main-2.png); - background-position: 0px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_TRUred { - background-image: url(spritesmith-main-2.png); - background-position: -25px -743px; - width: 60px; - height: 60px; -} -.hair_base_3_aurora { - background-image: url(spritesmith-main-2.png); - background-position: -91px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_aurora { - background-image: url(spritesmith-main-2.png); - background-position: -116px -743px; - width: 60px; - height: 60px; -} -.hair_base_3_black { - background-image: url(spritesmith-main-2.png); - background-position: -182px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_black { - background-image: url(spritesmith-main-2.png); - background-position: -207px -743px; - width: 60px; - height: 60px; -} -.hair_base_3_blond { - background-image: url(spritesmith-main-2.png); - background-position: -273px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_blond { - background-image: url(spritesmith-main-2.png); - background-position: -298px -743px; - width: 60px; - height: 60px; -} -.hair_base_3_blue { - background-image: url(spritesmith-main-2.png); - background-position: -364px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_blue { - background-image: url(spritesmith-main-2.png); - background-position: -389px -743px; - width: 60px; - height: 60px; -} -.hair_base_3_brown { - background-image: url(spritesmith-main-2.png); - background-position: -455px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_brown { - background-image: url(spritesmith-main-2.png); - background-position: -480px -743px; - width: 60px; - height: 60px; -} -.hair_base_3_candycane { - background-image: url(spritesmith-main-2.png); - background-position: -546px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_candycane { - background-image: url(spritesmith-main-2.png); - background-position: -571px -743px; - width: 60px; - height: 60px; -} -.hair_base_3_candycorn { - background-image: url(spritesmith-main-2.png); - background-position: -637px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_candycorn { - background-image: url(spritesmith-main-2.png); - background-position: -662px -743px; - width: 60px; - height: 60px; -} -.hair_base_3_festive { - background-image: url(spritesmith-main-2.png); - background-position: -728px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_festive { - background-image: url(spritesmith-main-2.png); - background-position: -753px -743px; - width: 60px; - height: 60px; -} -.hair_base_3_frost { - background-image: url(spritesmith-main-2.png); - background-position: -819px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_frost { - background-image: url(spritesmith-main-2.png); - background-position: -844px -15px; - width: 60px; - height: 60px; -} -.hair_base_3_ghostwhite { - background-image: url(spritesmith-main-2.png); - background-position: -819px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_ghostwhite { - background-image: url(spritesmith-main-2.png); - background-position: -844px -106px; - width: 60px; - height: 60px; -} -.hair_base_3_green { +.hair_base_2_TRUred { background-image: url(spritesmith-main-2.png); background-position: -819px -182px; width: 90px; height: 90px; } -.customize-option.hair_base_3_green { +.customize-option.hair_base_2_TRUred { background-image: url(spritesmith-main-2.png); background-position: -844px -197px; width: 60px; height: 60px; } -.hair_base_3_halloween { +.hair_base_2_aurora { + background-image: url(spritesmith-main-2.png); + background-position: -637px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_aurora { + background-image: url(spritesmith-main-2.png); + background-position: -662px -106px; + width: 60px; + height: 60px; +} +.hair_base_2_black { + background-image: url(spritesmith-main-2.png); + background-position: -637px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_black { + background-image: url(spritesmith-main-2.png); + background-position: -662px -197px; + width: 60px; + height: 60px; +} +.hair_base_2_blond { + background-image: url(spritesmith-main-2.png); + background-position: -637px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_blond { + background-image: url(spritesmith-main-2.png); + background-position: -662px -288px; + width: 60px; + height: 60px; +} +.hair_base_2_blue { + background-image: url(spritesmith-main-2.png); + background-position: -637px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_blue { + background-image: url(spritesmith-main-2.png); + background-position: -662px -379px; + width: 60px; + height: 60px; +} +.hair_base_2_brown { + background-image: url(spritesmith-main-2.png); + background-position: -637px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_brown { + background-image: url(spritesmith-main-2.png); + background-position: -662px -470px; + width: 60px; + height: 60px; +} +.hair_base_2_candycane { + background-image: url(spritesmith-main-2.png); + background-position: -637px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_candycane { + background-image: url(spritesmith-main-2.png); + background-position: -662px -561px; + width: 60px; + height: 60px; +} +.hair_base_2_candycorn { + background-image: url(spritesmith-main-2.png); + background-position: 0px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_candycorn { + background-image: url(spritesmith-main-2.png); + background-position: -25px -652px; + width: 60px; + height: 60px; +} +.hair_base_2_festive { + background-image: url(spritesmith-main-2.png); + background-position: -91px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_festive { + background-image: url(spritesmith-main-2.png); + background-position: -116px -652px; + width: 60px; + height: 60px; +} +.hair_base_2_frost { + background-image: url(spritesmith-main-2.png); + background-position: -182px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_frost { + background-image: url(spritesmith-main-2.png); + background-position: -207px -652px; + width: 60px; + height: 60px; +} +.hair_base_2_ghostwhite { + background-image: url(spritesmith-main-2.png); + background-position: -273px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_ghostwhite { + background-image: url(spritesmith-main-2.png); + background-position: -298px -652px; + width: 60px; + height: 60px; +} +.hair_base_2_green { + background-image: url(spritesmith-main-2.png); + background-position: -364px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_green { + background-image: url(spritesmith-main-2.png); + background-position: -389px -652px; + width: 60px; + height: 60px; +} +.hair_base_2_halloween { + background-image: url(spritesmith-main-2.png); + background-position: -455px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_halloween { + background-image: url(spritesmith-main-2.png); + background-position: -480px -652px; + width: 60px; + height: 60px; +} +.hair_base_2_holly { + background-image: url(spritesmith-main-2.png); + background-position: -546px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_holly { + background-image: url(spritesmith-main-2.png); + background-position: -571px -652px; + width: 60px; + height: 60px; +} +.hair_base_2_hollygreen { + background-image: url(spritesmith-main-2.png); + background-position: -637px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_hollygreen { + background-image: url(spritesmith-main-2.png); + background-position: -662px -652px; + width: 60px; + height: 60px; +} +.hair_base_2_midnight { + background-image: url(spritesmith-main-2.png); + background-position: -728px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_midnight { + background-image: url(spritesmith-main-2.png); + background-position: -753px -15px; + width: 60px; + height: 60px; +} +.hair_base_2_pblue { + background-image: url(spritesmith-main-2.png); + background-position: -728px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_pblue { + background-image: url(spritesmith-main-2.png); + background-position: -753px -106px; + width: 60px; + height: 60px; +} +.hair_base_2_pblue2 { + background-image: url(spritesmith-main-2.png); + background-position: -728px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_pblue2 { + background-image: url(spritesmith-main-2.png); + background-position: -753px -197px; + width: 60px; + height: 60px; +} +.hair_base_2_peppermint { + background-image: url(spritesmith-main-2.png); + background-position: -728px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_peppermint { + background-image: url(spritesmith-main-2.png); + background-position: -753px -288px; + width: 60px; + height: 60px; +} +.hair_base_2_pgreen { + background-image: url(spritesmith-main-2.png); + background-position: -728px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_pgreen { + background-image: url(spritesmith-main-2.png); + background-position: -753px -379px; + width: 60px; + height: 60px; +} +.hair_base_2_pgreen2 { + background-image: url(spritesmith-main-2.png); + background-position: -728px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_pgreen2 { + background-image: url(spritesmith-main-2.png); + background-position: -753px -470px; + width: 60px; + height: 60px; +} +.hair_base_2_porange { + background-image: url(spritesmith-main-2.png); + background-position: -728px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_porange { + background-image: url(spritesmith-main-2.png); + background-position: -753px -561px; + width: 60px; + height: 60px; +} +.hair_base_2_porange2 { + background-image: url(spritesmith-main-2.png); + background-position: -728px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_porange2 { + background-image: url(spritesmith-main-2.png); + background-position: -753px -652px; + width: 60px; + height: 60px; +} +.hair_base_2_ppink { + background-image: url(spritesmith-main-2.png); + background-position: 0px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_ppink { + background-image: url(spritesmith-main-2.png); + background-position: -25px -743px; + width: 60px; + height: 60px; +} +.hair_base_2_ppink2 { + background-image: url(spritesmith-main-2.png); + background-position: -91px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_ppink2 { + background-image: url(spritesmith-main-2.png); + background-position: -116px -743px; + width: 60px; + height: 60px; +} +.hair_base_2_ppurple { + background-image: url(spritesmith-main-2.png); + background-position: -182px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_ppurple { + background-image: url(spritesmith-main-2.png); + background-position: -207px -743px; + width: 60px; + height: 60px; +} +.hair_base_2_ppurple2 { + background-image: url(spritesmith-main-2.png); + background-position: -273px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_ppurple2 { + background-image: url(spritesmith-main-2.png); + background-position: -298px -743px; + width: 60px; + height: 60px; +} +.hair_base_2_pumpkin { + background-image: url(spritesmith-main-2.png); + background-position: -364px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_pumpkin { + background-image: url(spritesmith-main-2.png); + background-position: -389px -743px; + width: 60px; + height: 60px; +} +.hair_base_2_purple { + background-image: url(spritesmith-main-2.png); + background-position: -455px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_purple { + background-image: url(spritesmith-main-2.png); + background-position: -480px -743px; + width: 60px; + height: 60px; +} +.hair_base_2_pyellow { + background-image: url(spritesmith-main-2.png); + background-position: -546px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_pyellow { + background-image: url(spritesmith-main-2.png); + background-position: -571px -743px; + width: 60px; + height: 60px; +} +.hair_base_2_pyellow2 { + background-image: url(spritesmith-main-2.png); + background-position: -637px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_pyellow2 { + background-image: url(spritesmith-main-2.png); + background-position: -662px -743px; + width: 60px; + height: 60px; +} +.hair_base_2_rainbow { + background-image: url(spritesmith-main-2.png); + background-position: -728px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_rainbow { + background-image: url(spritesmith-main-2.png); + background-position: -753px -743px; + width: 60px; + height: 60px; +} +.hair_base_2_red { + background-image: url(spritesmith-main-2.png); + background-position: -819px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_red { + background-image: url(spritesmith-main-2.png); + background-position: -844px -15px; + width: 60px; + height: 60px; +} +.hair_base_2_snowy { + background-image: url(spritesmith-main-2.png); + background-position: -819px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_snowy { + background-image: url(spritesmith-main-2.png); + background-position: -844px -106px; + width: 60px; + height: 60px; +} +.hair_base_2_white { background-image: url(spritesmith-main-2.png); background-position: -819px -273px; width: 90px; height: 90px; } -.customize-option.hair_base_3_halloween { +.customize-option.hair_base_2_white { background-image: url(spritesmith-main-2.png); background-position: -844px -288px; width: 60px; height: 60px; } -.hair_base_3_holly { +.hair_base_2_winternight { background-image: url(spritesmith-main-2.png); background-position: -819px -364px; width: 90px; height: 90px; } -.customize-option.hair_base_3_holly { +.customize-option.hair_base_2_winternight { background-image: url(spritesmith-main-2.png); background-position: -844px -379px; width: 60px; height: 60px; } -.hair_base_3_hollygreen { +.hair_base_2_winterstar { background-image: url(spritesmith-main-2.png); background-position: -819px -455px; width: 90px; height: 90px; } -.customize-option.hair_base_3_hollygreen { +.customize-option.hair_base_2_winterstar { background-image: url(spritesmith-main-2.png); background-position: -844px -470px; width: 60px; height: 60px; } -.hair_base_3_midnight { +.hair_base_2_yellow { background-image: url(spritesmith-main-2.png); background-position: -819px -546px; width: 90px; height: 90px; } -.customize-option.hair_base_3_midnight { +.customize-option.hair_base_2_yellow { background-image: url(spritesmith-main-2.png); background-position: -844px -561px; width: 60px; height: 60px; } -.hair_base_3_pblue { +.hair_base_2_zombie { background-image: url(spritesmith-main-2.png); background-position: -819px -637px; width: 90px; height: 90px; } -.customize-option.hair_base_3_pblue { +.customize-option.hair_base_2_zombie { background-image: url(spritesmith-main-2.png); background-position: -844px -652px; width: 60px; height: 60px; } -.hair_base_3_pblue2 { - background-image: url(spritesmith-main-2.png); - background-position: -819px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_pblue2 { - background-image: url(spritesmith-main-2.png); - background-position: -844px -743px; - width: 60px; - height: 60px; -} -.hair_base_3_peppermint { - background-image: url(spritesmith-main-2.png); - background-position: 0px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_peppermint { - background-image: url(spritesmith-main-2.png); - background-position: -25px -834px; - width: 60px; - height: 60px; -} -.hair_base_3_pgreen { - background-image: url(spritesmith-main-2.png); - background-position: -91px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_pgreen { - background-image: url(spritesmith-main-2.png); - background-position: -116px -834px; - width: 60px; - height: 60px; -} -.hair_base_3_pgreen2 { - background-image: url(spritesmith-main-2.png); - background-position: -182px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_pgreen2 { - background-image: url(spritesmith-main-2.png); - background-position: -207px -834px; - width: 60px; - height: 60px; -} -.hair_base_3_porange { - background-image: url(spritesmith-main-2.png); - background-position: -273px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_porange { - background-image: url(spritesmith-main-2.png); - background-position: -298px -834px; - width: 60px; - height: 60px; -} -.hair_base_3_porange2 { - background-image: url(spritesmith-main-2.png); - background-position: -364px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_porange2 { - background-image: url(spritesmith-main-2.png); - background-position: -389px -834px; - width: 60px; - height: 60px; -} -.hair_base_3_ppink { - background-image: url(spritesmith-main-2.png); - background-position: -455px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_ppink { - background-image: url(spritesmith-main-2.png); - background-position: -480px -834px; - width: 60px; - height: 60px; -} -.hair_base_3_ppink2 { - background-image: url(spritesmith-main-2.png); - background-position: -546px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_ppink2 { - background-image: url(spritesmith-main-2.png); - background-position: -571px -834px; - width: 60px; - height: 60px; -} -.hair_base_3_ppurple { - background-image: url(spritesmith-main-2.png); - background-position: -637px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_ppurple { - background-image: url(spritesmith-main-2.png); - background-position: -662px -834px; - width: 60px; - height: 60px; -} -.hair_base_3_ppurple2 { - background-image: url(spritesmith-main-2.png); - background-position: -728px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_ppurple2 { - background-image: url(spritesmith-main-2.png); - background-position: -753px -834px; - width: 60px; - height: 60px; -} -.hair_base_3_pumpkin { - background-image: url(spritesmith-main-2.png); - background-position: -819px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_pumpkin { - background-image: url(spritesmith-main-2.png); - background-position: -844px -834px; - width: 60px; - height: 60px; -} -.hair_base_3_purple { - background-image: url(spritesmith-main-2.png); - background-position: -910px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_purple { - background-image: url(spritesmith-main-2.png); - background-position: -935px -15px; - width: 60px; - height: 60px; -} -.hair_base_3_pyellow { - background-image: url(spritesmith-main-2.png); - background-position: -910px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_pyellow { - background-image: url(spritesmith-main-2.png); - background-position: -935px -106px; - width: 60px; - height: 60px; -} -.hair_base_3_pyellow2 { - background-image: url(spritesmith-main-2.png); - background-position: -910px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_pyellow2 { - background-image: url(spritesmith-main-2.png); - background-position: -935px -197px; - width: 60px; - height: 60px; -} -.hair_base_3_rainbow { - background-image: url(spritesmith-main-2.png); - background-position: -910px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_rainbow { - background-image: url(spritesmith-main-2.png); - background-position: -935px -288px; - width: 60px; - height: 60px; -} -.hair_base_3_red { - background-image: url(spritesmith-main-2.png); - background-position: -910px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_red { - background-image: url(spritesmith-main-2.png); - background-position: -935px -379px; - width: 60px; - height: 60px; -} -.hair_base_3_snowy { - background-image: url(spritesmith-main-2.png); - background-position: -910px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_snowy { - background-image: url(spritesmith-main-2.png); - background-position: -935px -470px; - width: 60px; - height: 60px; -} -.hair_base_3_white { - background-image: url(spritesmith-main-2.png); - background-position: -910px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_white { - background-image: url(spritesmith-main-2.png); - background-position: -935px -561px; - width: 60px; - height: 60px; -} -.hair_base_3_winternight { - background-image: url(spritesmith-main-2.png); - background-position: -910px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_winternight { - background-image: url(spritesmith-main-2.png); - background-position: -935px -652px; - width: 60px; - height: 60px; -} -.hair_base_3_winterstar { - background-image: url(spritesmith-main-2.png); - background-position: -910px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_winterstar { - background-image: url(spritesmith-main-2.png); - background-position: -935px -743px; - width: 60px; - height: 60px; -} -.hair_base_3_yellow { - background-image: url(spritesmith-main-2.png); - background-position: -910px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_yellow { - background-image: url(spritesmith-main-2.png); - background-position: -935px -834px; - width: 60px; - height: 60px; -} -.hair_base_3_zombie { - background-image: url(spritesmith-main-2.png); - background-position: 0px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_zombie { - background-image: url(spritesmith-main-2.png); - background-position: -25px -925px; - width: 60px; - height: 60px; -} -.hair_base_4_TRUred { - background-image: url(spritesmith-main-2.png); - background-position: -91px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_TRUred { - background-image: url(spritesmith-main-2.png); - background-position: -116px -925px; - width: 60px; - height: 60px; -} -.hair_base_4_aurora { - background-image: url(spritesmith-main-2.png); - background-position: -182px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_aurora { - background-image: url(spritesmith-main-2.png); - background-position: -207px -925px; - width: 60px; - height: 60px; -} -.hair_base_4_black { - background-image: url(spritesmith-main-2.png); - background-position: -273px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_black { - background-image: url(spritesmith-main-2.png); - background-position: -298px -925px; - width: 60px; - height: 60px; -} -.hair_base_4_blond { - background-image: url(spritesmith-main-2.png); - background-position: -364px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_blond { - background-image: url(spritesmith-main-2.png); - background-position: -389px -925px; - width: 60px; - height: 60px; -} -.hair_base_4_blue { - background-image: url(spritesmith-main-2.png); - background-position: -455px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_blue { - background-image: url(spritesmith-main-2.png); - background-position: -480px -925px; - width: 60px; - height: 60px; -} -.hair_base_4_brown { - background-image: url(spritesmith-main-2.png); - background-position: -546px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_brown { - background-image: url(spritesmith-main-2.png); - background-position: -571px -925px; - width: 60px; - height: 60px; -} -.hair_base_4_candycane { - background-image: url(spritesmith-main-2.png); - background-position: -637px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_candycane { - background-image: url(spritesmith-main-2.png); - background-position: -662px -925px; - width: 60px; - height: 60px; -} -.hair_base_4_candycorn { - background-image: url(spritesmith-main-2.png); - background-position: -728px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_candycorn { - background-image: url(spritesmith-main-2.png); - background-position: -753px -925px; - width: 60px; - height: 60px; -} -.hair_base_4_festive { - background-image: url(spritesmith-main-2.png); - background-position: -819px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_festive { - background-image: url(spritesmith-main-2.png); - background-position: -844px -925px; - width: 60px; - height: 60px; -} -.hair_base_4_frost { - background-image: url(spritesmith-main-2.png); - background-position: -910px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_frost { - background-image: url(spritesmith-main-2.png); - background-position: -935px -925px; - width: 60px; - height: 60px; -} -.hair_base_4_ghostwhite { - background-image: url(spritesmith-main-2.png); - background-position: -1001px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_ghostwhite { - background-image: url(spritesmith-main-2.png); - background-position: -1026px -15px; - width: 60px; - height: 60px; -} -.hair_base_4_green { +.hair_base_3_TRUred { background-image: url(spritesmith-main-2.png); background-position: -1001px -91px; width: 90px; height: 90px; } -.customize-option.hair_base_4_green { +.customize-option.hair_base_3_TRUred { background-image: url(spritesmith-main-2.png); background-position: -1026px -106px; width: 60px; height: 60px; } -.hair_base_4_halloween { +.hair_base_3_aurora { + background-image: url(spritesmith-main-2.png); + background-position: -819px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_aurora { + background-image: url(spritesmith-main-2.png); + background-position: -844px -743px; + width: 60px; + height: 60px; +} +.hair_base_3_black { + background-image: url(spritesmith-main-2.png); + background-position: 0px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_black { + background-image: url(spritesmith-main-2.png); + background-position: -25px -834px; + width: 60px; + height: 60px; +} +.hair_base_3_blond { + background-image: url(spritesmith-main-2.png); + background-position: -91px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_blond { + background-image: url(spritesmith-main-2.png); + background-position: -116px -834px; + width: 60px; + height: 60px; +} +.hair_base_3_blue { + background-image: url(spritesmith-main-2.png); + background-position: -182px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_blue { + background-image: url(spritesmith-main-2.png); + background-position: -207px -834px; + width: 60px; + height: 60px; +} +.hair_base_3_brown { + background-image: url(spritesmith-main-2.png); + background-position: -273px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_brown { + background-image: url(spritesmith-main-2.png); + background-position: -298px -834px; + width: 60px; + height: 60px; +} +.hair_base_3_candycane { + background-image: url(spritesmith-main-2.png); + background-position: -364px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_candycane { + background-image: url(spritesmith-main-2.png); + background-position: -389px -834px; + width: 60px; + height: 60px; +} +.hair_base_3_candycorn { + background-image: url(spritesmith-main-2.png); + background-position: -455px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_candycorn { + background-image: url(spritesmith-main-2.png); + background-position: -480px -834px; + width: 60px; + height: 60px; +} +.hair_base_3_festive { + background-image: url(spritesmith-main-2.png); + background-position: -546px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_festive { + background-image: url(spritesmith-main-2.png); + background-position: -571px -834px; + width: 60px; + height: 60px; +} +.hair_base_3_frost { + background-image: url(spritesmith-main-2.png); + background-position: -637px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_frost { + background-image: url(spritesmith-main-2.png); + background-position: -662px -834px; + width: 60px; + height: 60px; +} +.hair_base_3_ghostwhite { + background-image: url(spritesmith-main-2.png); + background-position: -728px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_ghostwhite { + background-image: url(spritesmith-main-2.png); + background-position: -753px -834px; + width: 60px; + height: 60px; +} +.hair_base_3_green { + background-image: url(spritesmith-main-2.png); + background-position: -819px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_green { + background-image: url(spritesmith-main-2.png); + background-position: -844px -834px; + width: 60px; + height: 60px; +} +.hair_base_3_halloween { + background-image: url(spritesmith-main-2.png); + background-position: -910px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_halloween { + background-image: url(spritesmith-main-2.png); + background-position: -935px -15px; + width: 60px; + height: 60px; +} +.hair_base_3_holly { + background-image: url(spritesmith-main-2.png); + background-position: -910px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_holly { + background-image: url(spritesmith-main-2.png); + background-position: -935px -106px; + width: 60px; + height: 60px; +} +.hair_base_3_hollygreen { + background-image: url(spritesmith-main-2.png); + background-position: -910px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_hollygreen { + background-image: url(spritesmith-main-2.png); + background-position: -935px -197px; + width: 60px; + height: 60px; +} +.hair_base_3_midnight { + background-image: url(spritesmith-main-2.png); + background-position: -910px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_midnight { + background-image: url(spritesmith-main-2.png); + background-position: -935px -288px; + width: 60px; + height: 60px; +} +.hair_base_3_pblue { + background-image: url(spritesmith-main-2.png); + background-position: -910px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_pblue { + background-image: url(spritesmith-main-2.png); + background-position: -935px -379px; + width: 60px; + height: 60px; +} +.hair_base_3_pblue2 { + background-image: url(spritesmith-main-2.png); + background-position: -910px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_pblue2 { + background-image: url(spritesmith-main-2.png); + background-position: -935px -470px; + width: 60px; + height: 60px; +} +.hair_base_3_peppermint { + background-image: url(spritesmith-main-2.png); + background-position: -910px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_peppermint { + background-image: url(spritesmith-main-2.png); + background-position: -935px -561px; + width: 60px; + height: 60px; +} +.hair_base_3_pgreen { + background-image: url(spritesmith-main-2.png); + background-position: -910px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_pgreen { + background-image: url(spritesmith-main-2.png); + background-position: -935px -652px; + width: 60px; + height: 60px; +} +.hair_base_3_pgreen2 { + background-image: url(spritesmith-main-2.png); + background-position: -910px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_pgreen2 { + background-image: url(spritesmith-main-2.png); + background-position: -935px -743px; + width: 60px; + height: 60px; +} +.hair_base_3_porange { + background-image: url(spritesmith-main-2.png); + background-position: -910px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_porange { + background-image: url(spritesmith-main-2.png); + background-position: -935px -834px; + width: 60px; + height: 60px; +} +.hair_base_3_porange2 { + background-image: url(spritesmith-main-2.png); + background-position: 0px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_porange2 { + background-image: url(spritesmith-main-2.png); + background-position: -25px -925px; + width: 60px; + height: 60px; +} +.hair_base_3_ppink { + background-image: url(spritesmith-main-2.png); + background-position: -91px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_ppink { + background-image: url(spritesmith-main-2.png); + background-position: -116px -925px; + width: 60px; + height: 60px; +} +.hair_base_3_ppink2 { + background-image: url(spritesmith-main-2.png); + background-position: -182px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_ppink2 { + background-image: url(spritesmith-main-2.png); + background-position: -207px -925px; + width: 60px; + height: 60px; +} +.hair_base_3_ppurple { + background-image: url(spritesmith-main-2.png); + background-position: -273px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_ppurple { + background-image: url(spritesmith-main-2.png); + background-position: -298px -925px; + width: 60px; + height: 60px; +} +.hair_base_3_ppurple2 { + background-image: url(spritesmith-main-2.png); + background-position: -364px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_ppurple2 { + background-image: url(spritesmith-main-2.png); + background-position: -389px -925px; + width: 60px; + height: 60px; +} +.hair_base_3_pumpkin { + background-image: url(spritesmith-main-2.png); + background-position: -455px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_pumpkin { + background-image: url(spritesmith-main-2.png); + background-position: -480px -925px; + width: 60px; + height: 60px; +} +.hair_base_3_purple { + background-image: url(spritesmith-main-2.png); + background-position: -546px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_purple { + background-image: url(spritesmith-main-2.png); + background-position: -571px -925px; + width: 60px; + height: 60px; +} +.hair_base_3_pyellow { + background-image: url(spritesmith-main-2.png); + background-position: -637px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_pyellow { + background-image: url(spritesmith-main-2.png); + background-position: -662px -925px; + width: 60px; + height: 60px; +} +.hair_base_3_pyellow2 { + background-image: url(spritesmith-main-2.png); + background-position: -728px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_pyellow2 { + background-image: url(spritesmith-main-2.png); + background-position: -753px -925px; + width: 60px; + height: 60px; +} +.hair_base_3_rainbow { + background-image: url(spritesmith-main-2.png); + background-position: -819px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_rainbow { + background-image: url(spritesmith-main-2.png); + background-position: -844px -925px; + width: 60px; + height: 60px; +} +.hair_base_3_red { + background-image: url(spritesmith-main-2.png); + background-position: -910px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_red { + background-image: url(spritesmith-main-2.png); + background-position: -935px -925px; + width: 60px; + height: 60px; +} +.hair_base_3_snowy { + background-image: url(spritesmith-main-2.png); + background-position: -1001px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_snowy { + background-image: url(spritesmith-main-2.png); + background-position: -1026px -15px; + width: 60px; + height: 60px; +} +.hair_base_3_white { background-image: url(spritesmith-main-2.png); background-position: -1001px -182px; width: 90px; height: 90px; } -.customize-option.hair_base_4_halloween { +.customize-option.hair_base_3_white { background-image: url(spritesmith-main-2.png); background-position: -1026px -197px; width: 60px; height: 60px; } -.hair_base_4_holly { +.hair_base_3_winternight { background-image: url(spritesmith-main-2.png); background-position: -1001px -273px; width: 90px; height: 90px; } -.customize-option.hair_base_4_holly { +.customize-option.hair_base_3_winternight { background-image: url(spritesmith-main-2.png); background-position: -1026px -288px; width: 60px; height: 60px; } -.hair_base_4_hollygreen { +.hair_base_3_winterstar { background-image: url(spritesmith-main-2.png); background-position: -1001px -364px; width: 90px; height: 90px; } -.customize-option.hair_base_4_hollygreen { +.customize-option.hair_base_3_winterstar { background-image: url(spritesmith-main-2.png); background-position: -1026px -379px; width: 60px; height: 60px; } -.hair_base_4_midnight { +.hair_base_3_yellow { background-image: url(spritesmith-main-2.png); background-position: -1001px -455px; width: 90px; height: 90px; } -.customize-option.hair_base_4_midnight { +.customize-option.hair_base_3_yellow { background-image: url(spritesmith-main-2.png); background-position: -1026px -470px; width: 60px; height: 60px; } -.hair_base_4_pblue { +.hair_base_3_zombie { background-image: url(spritesmith-main-2.png); background-position: -1001px -546px; width: 90px; height: 90px; } -.customize-option.hair_base_4_pblue { +.customize-option.hair_base_3_zombie { background-image: url(spritesmith-main-2.png); background-position: -1026px -561px; width: 60px; height: 60px; } -.hair_base_4_pblue2 { - background-image: url(spritesmith-main-2.png); - background-position: -1001px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_pblue2 { - background-image: url(spritesmith-main-2.png); - background-position: -1026px -652px; - width: 60px; - height: 60px; -} -.hair_base_4_peppermint { - background-image: url(spritesmith-main-2.png); - background-position: -1001px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_peppermint { - background-image: url(spritesmith-main-2.png); - background-position: -1026px -743px; - width: 60px; - height: 60px; -} -.hair_base_4_pgreen { - background-image: url(spritesmith-main-2.png); - background-position: -1001px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_pgreen { - background-image: url(spritesmith-main-2.png); - background-position: -1026px -834px; - width: 60px; - height: 60px; -} -.hair_base_4_pgreen2 { - background-image: url(spritesmith-main-2.png); - background-position: -1001px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_pgreen2 { - background-image: url(spritesmith-main-2.png); - background-position: -1026px -925px; - width: 60px; - height: 60px; -} -.hair_base_4_porange { - background-image: url(spritesmith-main-2.png); - background-position: 0px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_porange { - background-image: url(spritesmith-main-2.png); - background-position: -25px -1016px; - width: 60px; - height: 60px; -} -.hair_base_4_porange2 { - background-image: url(spritesmith-main-2.png); - background-position: -91px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_porange2 { - background-image: url(spritesmith-main-2.png); - background-position: -116px -1016px; - width: 60px; - height: 60px; -} -.hair_base_4_ppink { - background-image: url(spritesmith-main-2.png); - background-position: -182px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_ppink { - background-image: url(spritesmith-main-2.png); - background-position: -207px -1016px; - width: 60px; - height: 60px; -} -.hair_base_4_ppink2 { - background-image: url(spritesmith-main-2.png); - background-position: -273px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_ppink2 { - background-image: url(spritesmith-main-2.png); - background-position: -298px -1016px; - width: 60px; - height: 60px; -} -.hair_base_4_ppurple { - background-image: url(spritesmith-main-2.png); - background-position: -364px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_ppurple { - background-image: url(spritesmith-main-2.png); - background-position: -389px -1016px; - width: 60px; - height: 60px; -} -.hair_base_4_ppurple2 { - background-image: url(spritesmith-main-2.png); - background-position: -455px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_ppurple2 { - background-image: url(spritesmith-main-2.png); - background-position: -480px -1016px; - width: 60px; - height: 60px; -} -.hair_base_4_pumpkin { - background-image: url(spritesmith-main-2.png); - background-position: -546px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_pumpkin { - background-image: url(spritesmith-main-2.png); - background-position: -571px -1016px; - width: 60px; - height: 60px; -} -.hair_base_4_purple { - background-image: url(spritesmith-main-2.png); - background-position: -637px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_purple { - background-image: url(spritesmith-main-2.png); - background-position: -662px -1016px; - width: 60px; - height: 60px; -} -.hair_base_4_pyellow { - background-image: url(spritesmith-main-2.png); - background-position: -728px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_pyellow { - background-image: url(spritesmith-main-2.png); - background-position: -753px -1016px; - width: 60px; - height: 60px; -} -.hair_base_4_pyellow2 { - background-image: url(spritesmith-main-2.png); - background-position: -819px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_pyellow2 { - background-image: url(spritesmith-main-2.png); - background-position: -844px -1016px; - width: 60px; - height: 60px; -} -.hair_base_4_rainbow { - background-image: url(spritesmith-main-2.png); - background-position: -910px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_rainbow { - background-image: url(spritesmith-main-2.png); - background-position: -935px -1016px; - width: 60px; - height: 60px; -} -.hair_base_4_red { - background-image: url(spritesmith-main-2.png); - background-position: -1001px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_red { - background-image: url(spritesmith-main-2.png); - background-position: -1026px -1016px; - width: 60px; - height: 60px; -} -.hair_base_4_snowy { - background-image: url(spritesmith-main-2.png); - background-position: -1092px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_snowy { - background-image: url(spritesmith-main-2.png); - background-position: -1117px -15px; - width: 60px; - height: 60px; -} -.hair_base_4_white { - background-image: url(spritesmith-main-2.png); - background-position: -1092px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_white { - background-image: url(spritesmith-main-2.png); - background-position: -1117px -106px; - width: 60px; - height: 60px; -} -.hair_base_4_winternight { - background-image: url(spritesmith-main-2.png); - background-position: -1092px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_winternight { - background-image: url(spritesmith-main-2.png); - background-position: -1117px -197px; - width: 60px; - height: 60px; -} -.hair_base_4_winterstar { - background-image: url(spritesmith-main-2.png); - background-position: -1092px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_winterstar { - background-image: url(spritesmith-main-2.png); - background-position: -1117px -288px; - width: 60px; - height: 60px; -} -.hair_base_4_yellow { - background-image: url(spritesmith-main-2.png); - background-position: -1092px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_yellow { - background-image: url(spritesmith-main-2.png); - background-position: -1117px -379px; - width: 60px; - height: 60px; -} -.hair_base_4_zombie { - background-image: url(spritesmith-main-2.png); - background-position: -1092px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_zombie { - background-image: url(spritesmith-main-2.png); - background-position: -1117px -470px; - width: 60px; - height: 60px; -} -.hair_base_5_TRUred { - background-image: url(spritesmith-main-2.png); - background-position: -1092px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_TRUred { - background-image: url(spritesmith-main-2.png); - background-position: -1117px -561px; - width: 60px; - height: 60px; -} -.hair_base_5_aurora { - background-image: url(spritesmith-main-2.png); - background-position: -1092px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_aurora { - background-image: url(spritesmith-main-2.png); - background-position: -1117px -652px; - width: 60px; - height: 60px; -} -.hair_base_5_black { - background-image: url(spritesmith-main-2.png); - background-position: -1092px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_black { - background-image: url(spritesmith-main-2.png); - background-position: -1117px -743px; - width: 60px; - height: 60px; -} -.hair_base_5_blond { - background-image: url(spritesmith-main-2.png); - background-position: -1092px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_blond { - background-image: url(spritesmith-main-2.png); - background-position: -1117px -834px; - width: 60px; - height: 60px; -} -.hair_base_5_blue { - background-image: url(spritesmith-main-2.png); - background-position: -1092px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_blue { - background-image: url(spritesmith-main-2.png); - background-position: -1117px -925px; - width: 60px; - height: 60px; -} -.hair_base_5_brown { - background-image: url(spritesmith-main-2.png); - background-position: -1092px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_brown { - background-image: url(spritesmith-main-2.png); - background-position: -1117px -1016px; - width: 60px; - height: 60px; -} -.hair_base_5_candycane { - background-image: url(spritesmith-main-2.png); - background-position: 0px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_candycane { - background-image: url(spritesmith-main-2.png); - background-position: -25px -1107px; - width: 60px; - height: 60px; -} -.hair_base_5_candycorn { - background-image: url(spritesmith-main-2.png); - background-position: -91px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_candycorn { - background-image: url(spritesmith-main-2.png); - background-position: -116px -1107px; - width: 60px; - height: 60px; -} -.hair_base_5_festive { - background-image: url(spritesmith-main-2.png); - background-position: -182px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_festive { - background-image: url(spritesmith-main-2.png); - background-position: -207px -1107px; - width: 60px; - height: 60px; -} -.hair_base_5_frost { - background-image: url(spritesmith-main-2.png); - background-position: -273px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_frost { - background-image: url(spritesmith-main-2.png); - background-position: -298px -1107px; - width: 60px; - height: 60px; -} -.hair_base_5_ghostwhite { - background-image: url(spritesmith-main-2.png); - background-position: -364px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_ghostwhite { - background-image: url(spritesmith-main-2.png); - background-position: -389px -1107px; - width: 60px; - height: 60px; -} -.hair_base_5_green { +.hair_base_4_TRUred { background-image: url(spritesmith-main-2.png); background-position: -455px -1092px; width: 90px; height: 90px; } -.customize-option.hair_base_5_green { +.customize-option.hair_base_4_TRUred { background-image: url(spritesmith-main-2.png); background-position: -480px -1107px; width: 60px; height: 60px; } -.hair_base_5_halloween { +.hair_base_4_aurora { + background-image: url(spritesmith-main-2.png); + background-position: -1001px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_aurora { + background-image: url(spritesmith-main-2.png); + background-position: -1026px -652px; + width: 60px; + height: 60px; +} +.hair_base_4_black { + background-image: url(spritesmith-main-2.png); + background-position: -1001px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_black { + background-image: url(spritesmith-main-2.png); + background-position: -1026px -743px; + width: 60px; + height: 60px; +} +.hair_base_4_blond { + background-image: url(spritesmith-main-2.png); + background-position: -1001px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_blond { + background-image: url(spritesmith-main-2.png); + background-position: -1026px -834px; + width: 60px; + height: 60px; +} +.hair_base_4_blue { + background-image: url(spritesmith-main-2.png); + background-position: -1001px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_blue { + background-image: url(spritesmith-main-2.png); + background-position: -1026px -925px; + width: 60px; + height: 60px; +} +.hair_base_4_brown { + background-image: url(spritesmith-main-2.png); + background-position: 0px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_brown { + background-image: url(spritesmith-main-2.png); + background-position: -25px -1016px; + width: 60px; + height: 60px; +} +.hair_base_4_candycane { + background-image: url(spritesmith-main-2.png); + background-position: -91px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_candycane { + background-image: url(spritesmith-main-2.png); + background-position: -116px -1016px; + width: 60px; + height: 60px; +} +.hair_base_4_candycorn { + background-image: url(spritesmith-main-2.png); + background-position: -182px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_candycorn { + background-image: url(spritesmith-main-2.png); + background-position: -207px -1016px; + width: 60px; + height: 60px; +} +.hair_base_4_festive { + background-image: url(spritesmith-main-2.png); + background-position: -273px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_festive { + background-image: url(spritesmith-main-2.png); + background-position: -298px -1016px; + width: 60px; + height: 60px; +} +.hair_base_4_frost { + background-image: url(spritesmith-main-2.png); + background-position: -364px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_frost { + background-image: url(spritesmith-main-2.png); + background-position: -389px -1016px; + width: 60px; + height: 60px; +} +.hair_base_4_ghostwhite { + background-image: url(spritesmith-main-2.png); + background-position: -455px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_ghostwhite { + background-image: url(spritesmith-main-2.png); + background-position: -480px -1016px; + width: 60px; + height: 60px; +} +.hair_base_4_green { + background-image: url(spritesmith-main-2.png); + background-position: -546px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_green { + background-image: url(spritesmith-main-2.png); + background-position: -571px -1016px; + width: 60px; + height: 60px; +} +.hair_base_4_halloween { + background-image: url(spritesmith-main-2.png); + background-position: -637px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_halloween { + background-image: url(spritesmith-main-2.png); + background-position: -662px -1016px; + width: 60px; + height: 60px; +} +.hair_base_4_holly { + background-image: url(spritesmith-main-2.png); + background-position: -728px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_holly { + background-image: url(spritesmith-main-2.png); + background-position: -753px -1016px; + width: 60px; + height: 60px; +} +.hair_base_4_hollygreen { + background-image: url(spritesmith-main-2.png); + background-position: -819px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_hollygreen { + background-image: url(spritesmith-main-2.png); + background-position: -844px -1016px; + width: 60px; + height: 60px; +} +.hair_base_4_midnight { + background-image: url(spritesmith-main-2.png); + background-position: -910px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_midnight { + background-image: url(spritesmith-main-2.png); + background-position: -935px -1016px; + width: 60px; + height: 60px; +} +.hair_base_4_pblue { + background-image: url(spritesmith-main-2.png); + background-position: -1001px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_pblue { + background-image: url(spritesmith-main-2.png); + background-position: -1026px -1016px; + width: 60px; + height: 60px; +} +.hair_base_4_pblue2 { + background-image: url(spritesmith-main-2.png); + background-position: -1092px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_pblue2 { + background-image: url(spritesmith-main-2.png); + background-position: -1117px -15px; + width: 60px; + height: 60px; +} +.hair_base_4_peppermint { + background-image: url(spritesmith-main-2.png); + background-position: -1092px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_peppermint { + background-image: url(spritesmith-main-2.png); + background-position: -1117px -106px; + width: 60px; + height: 60px; +} +.hair_base_4_pgreen { + background-image: url(spritesmith-main-2.png); + background-position: -1092px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_pgreen { + background-image: url(spritesmith-main-2.png); + background-position: -1117px -197px; + width: 60px; + height: 60px; +} +.hair_base_4_pgreen2 { + background-image: url(spritesmith-main-2.png); + background-position: -1092px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_pgreen2 { + background-image: url(spritesmith-main-2.png); + background-position: -1117px -288px; + width: 60px; + height: 60px; +} +.hair_base_4_porange { + background-image: url(spritesmith-main-2.png); + background-position: -1092px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_porange { + background-image: url(spritesmith-main-2.png); + background-position: -1117px -379px; + width: 60px; + height: 60px; +} +.hair_base_4_porange2 { + background-image: url(spritesmith-main-2.png); + background-position: -1092px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_porange2 { + background-image: url(spritesmith-main-2.png); + background-position: -1117px -470px; + width: 60px; + height: 60px; +} +.hair_base_4_ppink { + background-image: url(spritesmith-main-2.png); + background-position: -1092px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_ppink { + background-image: url(spritesmith-main-2.png); + background-position: -1117px -561px; + width: 60px; + height: 60px; +} +.hair_base_4_ppink2 { + background-image: url(spritesmith-main-2.png); + background-position: -1092px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_ppink2 { + background-image: url(spritesmith-main-2.png); + background-position: -1117px -652px; + width: 60px; + height: 60px; +} +.hair_base_4_ppurple { + background-image: url(spritesmith-main-2.png); + background-position: -1092px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_ppurple { + background-image: url(spritesmith-main-2.png); + background-position: -1117px -743px; + width: 60px; + height: 60px; +} +.hair_base_4_ppurple2 { + background-image: url(spritesmith-main-2.png); + background-position: -1092px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_ppurple2 { + background-image: url(spritesmith-main-2.png); + background-position: -1117px -834px; + width: 60px; + height: 60px; +} +.hair_base_4_pumpkin { + background-image: url(spritesmith-main-2.png); + background-position: -1092px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_pumpkin { + background-image: url(spritesmith-main-2.png); + background-position: -1117px -925px; + width: 60px; + height: 60px; +} +.hair_base_4_purple { + background-image: url(spritesmith-main-2.png); + background-position: -1092px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_purple { + background-image: url(spritesmith-main-2.png); + background-position: -1117px -1016px; + width: 60px; + height: 60px; +} +.hair_base_4_pyellow { + background-image: url(spritesmith-main-2.png); + background-position: 0px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_pyellow { + background-image: url(spritesmith-main-2.png); + background-position: -25px -1107px; + width: 60px; + height: 60px; +} +.hair_base_4_pyellow2 { + background-image: url(spritesmith-main-2.png); + background-position: -91px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_pyellow2 { + background-image: url(spritesmith-main-2.png); + background-position: -116px -1107px; + width: 60px; + height: 60px; +} +.hair_base_4_rainbow { + background-image: url(spritesmith-main-2.png); + background-position: -182px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_rainbow { + background-image: url(spritesmith-main-2.png); + background-position: -207px -1107px; + width: 60px; + height: 60px; +} +.hair_base_4_red { + background-image: url(spritesmith-main-2.png); + background-position: -273px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_red { + background-image: url(spritesmith-main-2.png); + background-position: -298px -1107px; + width: 60px; + height: 60px; +} +.hair_base_4_snowy { + background-image: url(spritesmith-main-2.png); + background-position: -364px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_snowy { + background-image: url(spritesmith-main-2.png); + background-position: -389px -1107px; + width: 60px; + height: 60px; +} +.hair_base_4_white { background-image: url(spritesmith-main-2.png); background-position: -546px -1092px; width: 90px; height: 90px; } -.customize-option.hair_base_5_halloween { +.customize-option.hair_base_4_white { background-image: url(spritesmith-main-2.png); background-position: -571px -1107px; width: 60px; height: 60px; } -.hair_base_5_holly { +.hair_base_4_winternight { background-image: url(spritesmith-main-2.png); background-position: -637px -1092px; width: 90px; height: 90px; } -.customize-option.hair_base_5_holly { +.customize-option.hair_base_4_winternight { background-image: url(spritesmith-main-2.png); background-position: -662px -1107px; width: 60px; height: 60px; } -.hair_base_5_hollygreen { +.hair_base_4_winterstar { background-image: url(spritesmith-main-2.png); background-position: 0px 0px; width: 90px; height: 90px; } -.customize-option.hair_base_5_hollygreen { +.customize-option.hair_base_4_winterstar { background-image: url(spritesmith-main-2.png); background-position: -25px -15px; width: 60px; height: 60px; } -.hair_base_5_midnight { +.hair_base_4_yellow { background-image: url(spritesmith-main-2.png); background-position: -819px -1092px; width: 90px; height: 90px; } -.customize-option.hair_base_5_midnight { +.customize-option.hair_base_4_yellow { background-image: url(spritesmith-main-2.png); background-position: -844px -1107px; width: 60px; height: 60px; } -.hair_base_5_pblue { +.hair_base_4_zombie { background-image: url(spritesmith-main-2.png); background-position: -910px -1092px; width: 90px; height: 90px; } -.customize-option.hair_base_5_pblue { +.customize-option.hair_base_4_zombie { background-image: url(spritesmith-main-2.png); background-position: -935px -1107px; width: 60px; height: 60px; } -.hair_base_5_pblue2 { - background-image: url(spritesmith-main-2.png); - background-position: -1001px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_pblue2 { - background-image: url(spritesmith-main-2.png); - background-position: -1026px -1107px; - width: 60px; - height: 60px; -} -.hair_base_5_peppermint { - background-image: url(spritesmith-main-2.png); - background-position: -1092px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_peppermint { - background-image: url(spritesmith-main-2.png); - background-position: -1117px -1107px; - width: 60px; - height: 60px; -} -.hair_base_5_pgreen { - background-image: url(spritesmith-main-2.png); - background-position: -1183px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_pgreen { - background-image: url(spritesmith-main-2.png); - background-position: -1208px -15px; - width: 60px; - height: 60px; -} -.hair_base_5_pgreen2 { - background-image: url(spritesmith-main-2.png); - background-position: -1183px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_pgreen2 { - background-image: url(spritesmith-main-2.png); - background-position: -1208px -106px; - width: 60px; - height: 60px; -} -.hair_base_5_porange { - background-image: url(spritesmith-main-2.png); - background-position: -1183px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_porange { - background-image: url(spritesmith-main-2.png); - background-position: -1208px -197px; - width: 60px; - height: 60px; -} -.hair_base_5_porange2 { - background-image: url(spritesmith-main-2.png); - background-position: -1183px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_porange2 { - background-image: url(spritesmith-main-2.png); - background-position: -1208px -288px; - width: 60px; - height: 60px; -} -.hair_base_5_ppink { - background-image: url(spritesmith-main-2.png); - background-position: -1183px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_ppink { - background-image: url(spritesmith-main-2.png); - background-position: -1208px -379px; - width: 60px; - height: 60px; -} -.hair_base_5_ppink2 { - background-image: url(spritesmith-main-2.png); - background-position: -1183px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_ppink2 { - background-image: url(spritesmith-main-2.png); - background-position: -1208px -470px; - width: 60px; - height: 60px; -} -.hair_base_5_ppurple { - background-image: url(spritesmith-main-2.png); - background-position: -1183px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_ppurple { - background-image: url(spritesmith-main-2.png); - background-position: -1208px -561px; - width: 60px; - height: 60px; -} -.hair_base_5_ppurple2 { - background-image: url(spritesmith-main-2.png); - background-position: -1183px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_ppurple2 { - background-image: url(spritesmith-main-2.png); - background-position: -1208px -652px; - width: 60px; - height: 60px; -} -.hair_base_5_pumpkin { - background-image: url(spritesmith-main-2.png); - background-position: -1183px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_pumpkin { - background-image: url(spritesmith-main-2.png); - background-position: -1208px -743px; - width: 60px; - height: 60px; -} -.hair_base_5_purple { - background-image: url(spritesmith-main-2.png); - background-position: -1183px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_purple { - background-image: url(spritesmith-main-2.png); - background-position: -1208px -834px; - width: 60px; - height: 60px; -} -.hair_base_5_pyellow { - background-image: url(spritesmith-main-2.png); - background-position: -1183px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_pyellow { - background-image: url(spritesmith-main-2.png); - background-position: -1208px -925px; - width: 60px; - height: 60px; -} -.hair_base_5_pyellow2 { - background-image: url(spritesmith-main-2.png); - background-position: -1183px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_pyellow2 { - background-image: url(spritesmith-main-2.png); - background-position: -1208px -1016px; - width: 60px; - height: 60px; -} -.hair_base_5_rainbow { - background-image: url(spritesmith-main-2.png); - background-position: -1183px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_rainbow { - background-image: url(spritesmith-main-2.png); - background-position: -1208px -1107px; - width: 60px; - height: 60px; -} -.hair_base_5_red { - background-image: url(spritesmith-main-2.png); - background-position: 0px -1183px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_red { - background-image: url(spritesmith-main-2.png); - background-position: -25px -1198px; - width: 60px; - height: 60px; -} -.hair_base_5_snowy { - background-image: url(spritesmith-main-2.png); - background-position: -91px -1183px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_snowy { - background-image: url(spritesmith-main-2.png); - background-position: -116px -1198px; - width: 60px; - height: 60px; -} -.hair_base_5_white { - background-image: url(spritesmith-main-2.png); - background-position: -182px -1183px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_white { - background-image: url(spritesmith-main-2.png); - background-position: -207px -1198px; - width: 60px; - height: 60px; -} -.hair_base_5_winternight { - background-image: url(spritesmith-main-2.png); - background-position: -273px -1183px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_winternight { - background-image: url(spritesmith-main-2.png); - background-position: -298px -1198px; - width: 60px; - height: 60px; -} -.hair_base_5_winterstar { - background-image: url(spritesmith-main-2.png); - background-position: -364px -1183px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_winterstar { - background-image: url(spritesmith-main-2.png); - background-position: -389px -1198px; - width: 60px; - height: 60px; -} -.hair_base_5_yellow { - background-image: url(spritesmith-main-2.png); - background-position: -455px -1183px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_yellow { - background-image: url(spritesmith-main-2.png); - background-position: -480px -1198px; - width: 60px; - height: 60px; -} -.hair_base_5_zombie { - background-image: url(spritesmith-main-2.png); - background-position: -546px -1183px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_zombie { - background-image: url(spritesmith-main-2.png); - background-position: -571px -1198px; - width: 60px; - height: 60px; -} -.hair_base_6_TRUred { - background-image: url(spritesmith-main-2.png); - background-position: -637px -1183px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_TRUred { - background-image: url(spritesmith-main-2.png); - background-position: -662px -1198px; - width: 60px; - height: 60px; -} -.hair_base_6_aurora { - background-image: url(spritesmith-main-2.png); - background-position: -728px -1183px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_aurora { - background-image: url(spritesmith-main-2.png); - background-position: -753px -1198px; - width: 60px; - height: 60px; -} -.hair_base_6_black { - background-image: url(spritesmith-main-2.png); - background-position: -819px -1183px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_black { - background-image: url(spritesmith-main-2.png); - background-position: -844px -1198px; - width: 60px; - height: 60px; -} -.hair_base_6_blond { - background-image: url(spritesmith-main-2.png); - background-position: -910px -1183px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_blond { - background-image: url(spritesmith-main-2.png); - background-position: -935px -1198px; - width: 60px; - height: 60px; -} -.hair_base_6_blue { - background-image: url(spritesmith-main-2.png); - background-position: -1001px -1183px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_blue { - background-image: url(spritesmith-main-2.png); - background-position: -1026px -1198px; - width: 60px; - height: 60px; -} -.hair_base_6_brown { - background-image: url(spritesmith-main-2.png); - background-position: -1092px -1183px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_brown { - background-image: url(spritesmith-main-2.png); - background-position: -1117px -1198px; - width: 60px; - height: 60px; -} -.hair_base_6_candycane { - background-image: url(spritesmith-main-2.png); - background-position: -1183px -1183px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_candycane { - background-image: url(spritesmith-main-2.png); - background-position: -1208px -1198px; - width: 60px; - height: 60px; -} -.hair_base_6_candycorn { - background-image: url(spritesmith-main-2.png); - background-position: -1274px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_candycorn { - background-image: url(spritesmith-main-2.png); - background-position: -1299px -15px; - width: 60px; - height: 60px; -} -.hair_base_6_festive { - background-image: url(spritesmith-main-2.png); - background-position: -1274px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_festive { - background-image: url(spritesmith-main-2.png); - background-position: -1299px -106px; - width: 60px; - height: 60px; -} -.hair_base_6_frost { - background-image: url(spritesmith-main-2.png); - background-position: -1274px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_frost { - background-image: url(spritesmith-main-2.png); - background-position: -1299px -197px; - width: 60px; - height: 60px; -} -.hair_base_6_ghostwhite { - background-image: url(spritesmith-main-2.png); - background-position: -1274px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_ghostwhite { - background-image: url(spritesmith-main-2.png); - background-position: -1299px -288px; - width: 60px; - height: 60px; -} -.hair_base_6_green { +.hair_base_5_TRUred { background-image: url(spritesmith-main-2.png); background-position: -1274px -364px; width: 90px; height: 90px; } -.customize-option.hair_base_6_green { +.customize-option.hair_base_5_TRUred { background-image: url(spritesmith-main-2.png); background-position: -1299px -379px; width: 60px; height: 60px; } -.hair_base_6_halloween { +.hair_base_5_aurora { + background-image: url(spritesmith-main-2.png); + background-position: -1001px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_aurora { + background-image: url(spritesmith-main-2.png); + background-position: -1026px -1107px; + width: 60px; + height: 60px; +} +.hair_base_5_black { + background-image: url(spritesmith-main-2.png); + background-position: -1092px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_black { + background-image: url(spritesmith-main-2.png); + background-position: -1117px -1107px; + width: 60px; + height: 60px; +} +.hair_base_5_blond { + background-image: url(spritesmith-main-2.png); + background-position: -1183px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_blond { + background-image: url(spritesmith-main-2.png); + background-position: -1208px -15px; + width: 60px; + height: 60px; +} +.hair_base_5_blue { + background-image: url(spritesmith-main-2.png); + background-position: -1183px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_blue { + background-image: url(spritesmith-main-2.png); + background-position: -1208px -106px; + width: 60px; + height: 60px; +} +.hair_base_5_brown { + background-image: url(spritesmith-main-2.png); + background-position: -1183px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_brown { + background-image: url(spritesmith-main-2.png); + background-position: -1208px -197px; + width: 60px; + height: 60px; +} +.hair_base_5_candycane { + background-image: url(spritesmith-main-2.png); + background-position: -1183px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_candycane { + background-image: url(spritesmith-main-2.png); + background-position: -1208px -288px; + width: 60px; + height: 60px; +} +.hair_base_5_candycorn { + background-image: url(spritesmith-main-2.png); + background-position: -1183px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_candycorn { + background-image: url(spritesmith-main-2.png); + background-position: -1208px -379px; + width: 60px; + height: 60px; +} +.hair_base_5_festive { + background-image: url(spritesmith-main-2.png); + background-position: -1183px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_festive { + background-image: url(spritesmith-main-2.png); + background-position: -1208px -470px; + width: 60px; + height: 60px; +} +.hair_base_5_frost { + background-image: url(spritesmith-main-2.png); + background-position: -1183px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_frost { + background-image: url(spritesmith-main-2.png); + background-position: -1208px -561px; + width: 60px; + height: 60px; +} +.hair_base_5_ghostwhite { + background-image: url(spritesmith-main-2.png); + background-position: -1183px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_ghostwhite { + background-image: url(spritesmith-main-2.png); + background-position: -1208px -652px; + width: 60px; + height: 60px; +} +.hair_base_5_green { + background-image: url(spritesmith-main-2.png); + background-position: -1183px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_green { + background-image: url(spritesmith-main-2.png); + background-position: -1208px -743px; + width: 60px; + height: 60px; +} +.hair_base_5_halloween { + background-image: url(spritesmith-main-2.png); + background-position: -1183px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_halloween { + background-image: url(spritesmith-main-2.png); + background-position: -1208px -834px; + width: 60px; + height: 60px; +} +.hair_base_5_holly { + background-image: url(spritesmith-main-2.png); + background-position: -1183px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_holly { + background-image: url(spritesmith-main-2.png); + background-position: -1208px -925px; + width: 60px; + height: 60px; +} +.hair_base_5_hollygreen { + background-image: url(spritesmith-main-2.png); + background-position: -1183px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_hollygreen { + background-image: url(spritesmith-main-2.png); + background-position: -1208px -1016px; + width: 60px; + height: 60px; +} +.hair_base_5_midnight { + background-image: url(spritesmith-main-2.png); + background-position: -1183px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_midnight { + background-image: url(spritesmith-main-2.png); + background-position: -1208px -1107px; + width: 60px; + height: 60px; +} +.hair_base_5_pblue { + background-image: url(spritesmith-main-2.png); + background-position: 0px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_pblue { + background-image: url(spritesmith-main-2.png); + background-position: -25px -1198px; + width: 60px; + height: 60px; +} +.hair_base_5_pblue2 { + background-image: url(spritesmith-main-2.png); + background-position: -91px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_pblue2 { + background-image: url(spritesmith-main-2.png); + background-position: -116px -1198px; + width: 60px; + height: 60px; +} +.hair_base_5_peppermint { + background-image: url(spritesmith-main-2.png); + background-position: -182px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_peppermint { + background-image: url(spritesmith-main-2.png); + background-position: -207px -1198px; + width: 60px; + height: 60px; +} +.hair_base_5_pgreen { + background-image: url(spritesmith-main-2.png); + background-position: -273px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_pgreen { + background-image: url(spritesmith-main-2.png); + background-position: -298px -1198px; + width: 60px; + height: 60px; +} +.hair_base_5_pgreen2 { + background-image: url(spritesmith-main-2.png); + background-position: -364px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_pgreen2 { + background-image: url(spritesmith-main-2.png); + background-position: -389px -1198px; + width: 60px; + height: 60px; +} +.hair_base_5_porange { + background-image: url(spritesmith-main-2.png); + background-position: -455px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_porange { + background-image: url(spritesmith-main-2.png); + background-position: -480px -1198px; + width: 60px; + height: 60px; +} +.hair_base_5_porange2 { + background-image: url(spritesmith-main-2.png); + background-position: -546px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_porange2 { + background-image: url(spritesmith-main-2.png); + background-position: -571px -1198px; + width: 60px; + height: 60px; +} +.hair_base_5_ppink { + background-image: url(spritesmith-main-2.png); + background-position: -637px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_ppink { + background-image: url(spritesmith-main-2.png); + background-position: -662px -1198px; + width: 60px; + height: 60px; +} +.hair_base_5_ppink2 { + background-image: url(spritesmith-main-2.png); + background-position: -728px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_ppink2 { + background-image: url(spritesmith-main-2.png); + background-position: -753px -1198px; + width: 60px; + height: 60px; +} +.hair_base_5_ppurple { + background-image: url(spritesmith-main-2.png); + background-position: -819px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_ppurple { + background-image: url(spritesmith-main-2.png); + background-position: -844px -1198px; + width: 60px; + height: 60px; +} +.hair_base_5_ppurple2 { + background-image: url(spritesmith-main-2.png); + background-position: -910px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_ppurple2 { + background-image: url(spritesmith-main-2.png); + background-position: -935px -1198px; + width: 60px; + height: 60px; +} +.hair_base_5_pumpkin { + background-image: url(spritesmith-main-2.png); + background-position: -1001px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_pumpkin { + background-image: url(spritesmith-main-2.png); + background-position: -1026px -1198px; + width: 60px; + height: 60px; +} +.hair_base_5_purple { + background-image: url(spritesmith-main-2.png); + background-position: -1092px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_purple { + background-image: url(spritesmith-main-2.png); + background-position: -1117px -1198px; + width: 60px; + height: 60px; +} +.hair_base_5_pyellow { + background-image: url(spritesmith-main-2.png); + background-position: -1183px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_pyellow { + background-image: url(spritesmith-main-2.png); + background-position: -1208px -1198px; + width: 60px; + height: 60px; +} +.hair_base_5_pyellow2 { + background-image: url(spritesmith-main-2.png); + background-position: -1274px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_pyellow2 { + background-image: url(spritesmith-main-2.png); + background-position: -1299px -15px; + width: 60px; + height: 60px; +} +.hair_base_5_rainbow { + background-image: url(spritesmith-main-2.png); + background-position: -1274px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_rainbow { + background-image: url(spritesmith-main-2.png); + background-position: -1299px -106px; + width: 60px; + height: 60px; +} +.hair_base_5_red { + background-image: url(spritesmith-main-2.png); + background-position: -1274px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_red { + background-image: url(spritesmith-main-2.png); + background-position: -1299px -197px; + width: 60px; + height: 60px; +} +.hair_base_5_snowy { + background-image: url(spritesmith-main-2.png); + background-position: -1274px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_snowy { + background-image: url(spritesmith-main-2.png); + background-position: -1299px -288px; + width: 60px; + height: 60px; +} +.hair_base_5_white { background-image: url(spritesmith-main-2.png); background-position: -1274px -455px; width: 90px; height: 90px; } -.customize-option.hair_base_6_halloween { +.customize-option.hair_base_5_white { background-image: url(spritesmith-main-2.png); background-position: -1299px -470px; width: 60px; height: 60px; } -.hair_base_6_holly { +.hair_base_5_winternight { background-image: url(spritesmith-main-2.png); background-position: -1274px -546px; width: 90px; height: 90px; } -.customize-option.hair_base_6_holly { +.customize-option.hair_base_5_winternight { background-image: url(spritesmith-main-2.png); background-position: -1299px -561px; width: 60px; height: 60px; } -.hair_base_6_hollygreen { +.hair_base_5_winterstar { background-image: url(spritesmith-main-2.png); background-position: -1274px -637px; width: 90px; height: 90px; } -.customize-option.hair_base_6_hollygreen { +.customize-option.hair_base_5_winterstar { background-image: url(spritesmith-main-2.png); background-position: -1299px -652px; width: 60px; height: 60px; } -.hair_base_6_midnight { +.hair_base_5_yellow { background-image: url(spritesmith-main-2.png); background-position: -1274px -728px; width: 90px; height: 90px; } -.customize-option.hair_base_6_midnight { +.customize-option.hair_base_5_yellow { background-image: url(spritesmith-main-2.png); background-position: -1299px -743px; width: 60px; height: 60px; } -.hair_base_6_pblue { +.hair_base_5_zombie { background-image: url(spritesmith-main-2.png); background-position: -1274px -819px; width: 90px; height: 90px; } -.customize-option.hair_base_6_pblue { +.customize-option.hair_base_5_zombie { background-image: url(spritesmith-main-2.png); background-position: -1299px -834px; width: 60px; height: 60px; } -.hair_base_6_pblue2 { - background-image: url(spritesmith-main-2.png); - background-position: -1274px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_pblue2 { - background-image: url(spritesmith-main-2.png); - background-position: -1299px -925px; - width: 60px; - height: 60px; -} -.hair_base_6_peppermint { - background-image: url(spritesmith-main-2.png); - background-position: -1274px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_peppermint { - background-image: url(spritesmith-main-2.png); - background-position: -1299px -1016px; - width: 60px; - height: 60px; -} -.hair_base_6_pgreen { - background-image: url(spritesmith-main-2.png); - background-position: -1274px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_pgreen { - background-image: url(spritesmith-main-2.png); - background-position: -1299px -1107px; - width: 60px; - height: 60px; -} -.hair_base_6_pgreen2 { - background-image: url(spritesmith-main-2.png); - background-position: -1274px -1183px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_pgreen2 { - background-image: url(spritesmith-main-2.png); - background-position: -1299px -1198px; - width: 60px; - height: 60px; -} -.hair_base_6_porange { - background-image: url(spritesmith-main-2.png); - background-position: 0px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_porange { - background-image: url(spritesmith-main-2.png); - background-position: -25px -1289px; - width: 60px; - height: 60px; -} -.hair_base_6_porange2 { - background-image: url(spritesmith-main-2.png); - background-position: -91px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_porange2 { - background-image: url(spritesmith-main-2.png); - background-position: -116px -1289px; - width: 60px; - height: 60px; -} -.hair_base_6_ppink { - background-image: url(spritesmith-main-2.png); - background-position: -182px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_ppink { - background-image: url(spritesmith-main-2.png); - background-position: -207px -1289px; - width: 60px; - height: 60px; -} -.hair_base_6_ppink2 { - background-image: url(spritesmith-main-2.png); - background-position: -273px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_ppink2 { - background-image: url(spritesmith-main-2.png); - background-position: -298px -1289px; - width: 60px; - height: 60px; -} -.hair_base_6_ppurple { - background-image: url(spritesmith-main-2.png); - background-position: -364px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_ppurple { - background-image: url(spritesmith-main-2.png); - background-position: -389px -1289px; - width: 60px; - height: 60px; -} -.hair_base_6_ppurple2 { - background-image: url(spritesmith-main-2.png); - background-position: -455px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_ppurple2 { - background-image: url(spritesmith-main-2.png); - background-position: -480px -1289px; - width: 60px; - height: 60px; -} -.hair_base_6_pumpkin { - background-image: url(spritesmith-main-2.png); - background-position: -546px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_pumpkin { - background-image: url(spritesmith-main-2.png); - background-position: -571px -1289px; - width: 60px; - height: 60px; -} -.hair_base_6_purple { - background-image: url(spritesmith-main-2.png); - background-position: -637px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_purple { - background-image: url(spritesmith-main-2.png); - background-position: -662px -1289px; - width: 60px; - height: 60px; -} -.hair_base_6_pyellow { - background-image: url(spritesmith-main-2.png); - background-position: -728px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_pyellow { - background-image: url(spritesmith-main-2.png); - background-position: -753px -1289px; - width: 60px; - height: 60px; -} -.hair_base_6_pyellow2 { - background-image: url(spritesmith-main-2.png); - background-position: -819px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_pyellow2 { - background-image: url(spritesmith-main-2.png); - background-position: -844px -1289px; - width: 60px; - height: 60px; -} -.hair_base_6_rainbow { - background-image: url(spritesmith-main-2.png); - background-position: -910px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_rainbow { - background-image: url(spritesmith-main-2.png); - background-position: -935px -1289px; - width: 60px; - height: 60px; -} -.hair_base_6_red { - background-image: url(spritesmith-main-2.png); - background-position: -1001px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_red { - background-image: url(spritesmith-main-2.png); - background-position: -1026px -1289px; - width: 60px; - height: 60px; -} -.hair_base_6_snowy { - background-image: url(spritesmith-main-2.png); - background-position: -1092px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_snowy { - background-image: url(spritesmith-main-2.png); - background-position: -1117px -1289px; - width: 60px; - height: 60px; -} -.hair_base_6_white { - background-image: url(spritesmith-main-2.png); - background-position: -1183px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_white { - background-image: url(spritesmith-main-2.png); - background-position: -1208px -1289px; - width: 60px; - height: 60px; -} -.hair_base_6_winternight { - background-image: url(spritesmith-main-2.png); - background-position: -1274px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_winternight { - background-image: url(spritesmith-main-2.png); - background-position: -1299px -1289px; - width: 60px; - height: 60px; -} -.hair_base_6_winterstar { - background-image: url(spritesmith-main-2.png); - background-position: -1365px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_winterstar { - background-image: url(spritesmith-main-2.png); - background-position: -1390px -15px; - width: 60px; - height: 60px; -} -.hair_base_6_yellow { - background-image: url(spritesmith-main-2.png); - background-position: -1365px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_yellow { - background-image: url(spritesmith-main-2.png); - background-position: -1390px -106px; - width: 60px; - height: 60px; -} -.hair_base_6_zombie { - background-image: url(spritesmith-main-2.png); - background-position: -1365px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_zombie { - background-image: url(spritesmith-main-2.png); - background-position: -1390px -197px; - width: 60px; - height: 60px; -} -.hair_base_7_TRUred { - background-image: url(spritesmith-main-2.png); - background-position: -1365px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_TRUred { - background-image: url(spritesmith-main-2.png); - background-position: -1390px -288px; - width: 60px; - height: 60px; -} -.hair_base_7_aurora { - background-image: url(spritesmith-main-2.png); - background-position: -1365px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_aurora { - background-image: url(spritesmith-main-2.png); - background-position: -1390px -379px; - width: 60px; - height: 60px; -} -.hair_base_7_black { - background-image: url(spritesmith-main-2.png); - background-position: -1365px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_black { - background-image: url(spritesmith-main-2.png); - background-position: -1390px -470px; - width: 60px; - height: 60px; -} -.hair_base_7_blond { - background-image: url(spritesmith-main-2.png); - background-position: -1365px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_blond { - background-image: url(spritesmith-main-2.png); - background-position: -1390px -561px; - width: 60px; - height: 60px; -} -.hair_base_7_blue { - background-image: url(spritesmith-main-2.png); - background-position: -1365px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_blue { - background-image: url(spritesmith-main-2.png); - background-position: -1390px -652px; - width: 60px; - height: 60px; -} -.hair_base_7_brown { - background-image: url(spritesmith-main-2.png); - background-position: -1365px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_brown { - background-image: url(spritesmith-main-2.png); - background-position: -1390px -743px; - width: 60px; - height: 60px; -} -.hair_base_7_candycane { - background-image: url(spritesmith-main-2.png); - background-position: -1365px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_candycane { - background-image: url(spritesmith-main-2.png); - background-position: -1390px -834px; - width: 60px; - height: 60px; -} -.hair_base_7_candycorn { - background-image: url(spritesmith-main-2.png); - background-position: -1365px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_candycorn { - background-image: url(spritesmith-main-2.png); - background-position: -1390px -925px; - width: 60px; - height: 60px; -} -.hair_base_7_festive { - background-image: url(spritesmith-main-2.png); - background-position: -1365px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_festive { - background-image: url(spritesmith-main-2.png); - background-position: -1390px -1016px; - width: 60px; - height: 60px; -} -.hair_base_7_frost { - background-image: url(spritesmith-main-2.png); - background-position: -1365px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_frost { - background-image: url(spritesmith-main-2.png); - background-position: -1390px -1107px; - width: 60px; - height: 60px; -} -.hair_base_7_ghostwhite { - background-image: url(spritesmith-main-2.png); - background-position: -1365px -1183px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_ghostwhite { - background-image: url(spritesmith-main-2.png); - background-position: -1390px -1198px; - width: 60px; - height: 60px; -} -.hair_base_7_green { +.hair_base_6_TRUred { background-image: url(spritesmith-main-2.png); background-position: -1365px -1274px; width: 90px; height: 90px; } -.customize-option.hair_base_7_green { +.customize-option.hair_base_6_TRUred { background-image: url(spritesmith-main-2.png); background-position: -1390px -1289px; width: 60px; height: 60px; } -.hair_base_7_halloween { +.hair_base_6_aurora { + background-image: url(spritesmith-main-2.png); + background-position: -1274px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_aurora { + background-image: url(spritesmith-main-2.png); + background-position: -1299px -925px; + width: 60px; + height: 60px; +} +.hair_base_6_black { + background-image: url(spritesmith-main-2.png); + background-position: -1274px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_black { + background-image: url(spritesmith-main-2.png); + background-position: -1299px -1016px; + width: 60px; + height: 60px; +} +.hair_base_6_blond { + background-image: url(spritesmith-main-2.png); + background-position: -1274px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_blond { + background-image: url(spritesmith-main-2.png); + background-position: -1299px -1107px; + width: 60px; + height: 60px; +} +.hair_base_6_blue { + background-image: url(spritesmith-main-2.png); + background-position: -1274px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_blue { + background-image: url(spritesmith-main-2.png); + background-position: -1299px -1198px; + width: 60px; + height: 60px; +} +.hair_base_6_brown { + background-image: url(spritesmith-main-2.png); + background-position: 0px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_brown { + background-image: url(spritesmith-main-2.png); + background-position: -25px -1289px; + width: 60px; + height: 60px; +} +.hair_base_6_candycane { + background-image: url(spritesmith-main-2.png); + background-position: -91px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_candycane { + background-image: url(spritesmith-main-2.png); + background-position: -116px -1289px; + width: 60px; + height: 60px; +} +.hair_base_6_candycorn { + background-image: url(spritesmith-main-2.png); + background-position: -182px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_candycorn { + background-image: url(spritesmith-main-2.png); + background-position: -207px -1289px; + width: 60px; + height: 60px; +} +.hair_base_6_festive { + background-image: url(spritesmith-main-2.png); + background-position: -273px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_festive { + background-image: url(spritesmith-main-2.png); + background-position: -298px -1289px; + width: 60px; + height: 60px; +} +.hair_base_6_frost { + background-image: url(spritesmith-main-2.png); + background-position: -364px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_frost { + background-image: url(spritesmith-main-2.png); + background-position: -389px -1289px; + width: 60px; + height: 60px; +} +.hair_base_6_ghostwhite { + background-image: url(spritesmith-main-2.png); + background-position: -455px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_ghostwhite { + background-image: url(spritesmith-main-2.png); + background-position: -480px -1289px; + width: 60px; + height: 60px; +} +.hair_base_6_green { + background-image: url(spritesmith-main-2.png); + background-position: -546px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_green { + background-image: url(spritesmith-main-2.png); + background-position: -571px -1289px; + width: 60px; + height: 60px; +} +.hair_base_6_halloween { + background-image: url(spritesmith-main-2.png); + background-position: -637px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_halloween { + background-image: url(spritesmith-main-2.png); + background-position: -662px -1289px; + width: 60px; + height: 60px; +} +.hair_base_6_holly { + background-image: url(spritesmith-main-2.png); + background-position: -728px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_holly { + background-image: url(spritesmith-main-2.png); + background-position: -753px -1289px; + width: 60px; + height: 60px; +} +.hair_base_6_hollygreen { + background-image: url(spritesmith-main-2.png); + background-position: -819px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_hollygreen { + background-image: url(spritesmith-main-2.png); + background-position: -844px -1289px; + width: 60px; + height: 60px; +} +.hair_base_6_midnight { + background-image: url(spritesmith-main-2.png); + background-position: -910px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_midnight { + background-image: url(spritesmith-main-2.png); + background-position: -935px -1289px; + width: 60px; + height: 60px; +} +.hair_base_6_pblue { + background-image: url(spritesmith-main-2.png); + background-position: -1001px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_pblue { + background-image: url(spritesmith-main-2.png); + background-position: -1026px -1289px; + width: 60px; + height: 60px; +} +.hair_base_6_pblue2 { + background-image: url(spritesmith-main-2.png); + background-position: -1092px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_pblue2 { + background-image: url(spritesmith-main-2.png); + background-position: -1117px -1289px; + width: 60px; + height: 60px; +} +.hair_base_6_peppermint { + background-image: url(spritesmith-main-2.png); + background-position: -1183px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_peppermint { + background-image: url(spritesmith-main-2.png); + background-position: -1208px -1289px; + width: 60px; + height: 60px; +} +.hair_base_6_pgreen { + background-image: url(spritesmith-main-2.png); + background-position: -1274px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_pgreen { + background-image: url(spritesmith-main-2.png); + background-position: -1299px -1289px; + width: 60px; + height: 60px; +} +.hair_base_6_pgreen2 { + background-image: url(spritesmith-main-2.png); + background-position: -1365px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_pgreen2 { + background-image: url(spritesmith-main-2.png); + background-position: -1390px -15px; + width: 60px; + height: 60px; +} +.hair_base_6_porange { + background-image: url(spritesmith-main-2.png); + background-position: -1365px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_porange { + background-image: url(spritesmith-main-2.png); + background-position: -1390px -106px; + width: 60px; + height: 60px; +} +.hair_base_6_porange2 { + background-image: url(spritesmith-main-2.png); + background-position: -1365px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_porange2 { + background-image: url(spritesmith-main-2.png); + background-position: -1390px -197px; + width: 60px; + height: 60px; +} +.hair_base_6_ppink { + background-image: url(spritesmith-main-2.png); + background-position: -1365px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_ppink { + background-image: url(spritesmith-main-2.png); + background-position: -1390px -288px; + width: 60px; + height: 60px; +} +.hair_base_6_ppink2 { + background-image: url(spritesmith-main-2.png); + background-position: -1365px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_ppink2 { + background-image: url(spritesmith-main-2.png); + background-position: -1390px -379px; + width: 60px; + height: 60px; +} +.hair_base_6_ppurple { + background-image: url(spritesmith-main-2.png); + background-position: -1365px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_ppurple { + background-image: url(spritesmith-main-2.png); + background-position: -1390px -470px; + width: 60px; + height: 60px; +} +.hair_base_6_ppurple2 { + background-image: url(spritesmith-main-2.png); + background-position: -1365px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_ppurple2 { + background-image: url(spritesmith-main-2.png); + background-position: -1390px -561px; + width: 60px; + height: 60px; +} +.hair_base_6_pumpkin { + background-image: url(spritesmith-main-2.png); + background-position: -1365px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_pumpkin { + background-image: url(spritesmith-main-2.png); + background-position: -1390px -652px; + width: 60px; + height: 60px; +} +.hair_base_6_purple { + background-image: url(spritesmith-main-2.png); + background-position: -1365px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_purple { + background-image: url(spritesmith-main-2.png); + background-position: -1390px -743px; + width: 60px; + height: 60px; +} +.hair_base_6_pyellow { + background-image: url(spritesmith-main-2.png); + background-position: -1365px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_pyellow { + background-image: url(spritesmith-main-2.png); + background-position: -1390px -834px; + width: 60px; + height: 60px; +} +.hair_base_6_pyellow2 { + background-image: url(spritesmith-main-2.png); + background-position: -1365px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_pyellow2 { + background-image: url(spritesmith-main-2.png); + background-position: -1390px -925px; + width: 60px; + height: 60px; +} +.hair_base_6_rainbow { + background-image: url(spritesmith-main-2.png); + background-position: -1365px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_rainbow { + background-image: url(spritesmith-main-2.png); + background-position: -1390px -1016px; + width: 60px; + height: 60px; +} +.hair_base_6_red { + background-image: url(spritesmith-main-2.png); + background-position: -1365px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_red { + background-image: url(spritesmith-main-2.png); + background-position: -1390px -1107px; + width: 60px; + height: 60px; +} +.hair_base_6_snowy { + background-image: url(spritesmith-main-2.png); + background-position: -1365px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_snowy { + background-image: url(spritesmith-main-2.png); + background-position: -1390px -1198px; + width: 60px; + height: 60px; +} +.hair_base_6_white { background-image: url(spritesmith-main-2.png); background-position: 0px -1365px; width: 90px; height: 90px; } -.customize-option.hair_base_7_halloween { +.customize-option.hair_base_6_white { background-image: url(spritesmith-main-2.png); background-position: -25px -1380px; width: 60px; height: 60px; } -.hair_base_7_holly { +.hair_base_6_winternight { background-image: url(spritesmith-main-2.png); background-position: -91px -1365px; width: 90px; height: 90px; } -.customize-option.hair_base_7_holly { +.customize-option.hair_base_6_winternight { background-image: url(spritesmith-main-2.png); background-position: -116px -1380px; width: 60px; height: 60px; } -.hair_base_7_hollygreen { +.hair_base_6_winterstar { background-image: url(spritesmith-main-2.png); background-position: -182px -1365px; width: 90px; height: 90px; } -.customize-option.hair_base_7_hollygreen { +.customize-option.hair_base_6_winterstar { background-image: url(spritesmith-main-2.png); background-position: -207px -1380px; width: 60px; height: 60px; } -.hair_base_7_midnight { +.hair_base_6_yellow { background-image: url(spritesmith-main-2.png); background-position: -273px -1365px; width: 90px; height: 90px; } -.customize-option.hair_base_7_midnight { +.customize-option.hair_base_6_yellow { background-image: url(spritesmith-main-2.png); background-position: -298px -1380px; width: 60px; height: 60px; } -.hair_base_7_pblue { +.hair_base_6_zombie { background-image: url(spritesmith-main-2.png); background-position: -364px -1365px; width: 90px; height: 90px; } -.customize-option.hair_base_7_pblue { +.customize-option.hair_base_6_zombie { background-image: url(spritesmith-main-2.png); background-position: -389px -1380px; width: 60px; height: 60px; } -.hair_base_7_pblue2 { - background-image: url(spritesmith-main-2.png); - background-position: -455px -1365px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_pblue2 { - background-image: url(spritesmith-main-2.png); - background-position: -480px -1380px; - width: 60px; - height: 60px; -} -.hair_base_7_peppermint { - background-image: url(spritesmith-main-2.png); - background-position: -546px -1365px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_peppermint { - background-image: url(spritesmith-main-2.png); - background-position: -571px -1380px; - width: 60px; - height: 60px; -} -.hair_base_7_pgreen { - background-image: url(spritesmith-main-2.png); - background-position: -637px -1365px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_pgreen { - background-image: url(spritesmith-main-2.png); - background-position: -662px -1380px; - width: 60px; - height: 60px; -} -.hair_base_7_pgreen2 { - background-image: url(spritesmith-main-2.png); - background-position: -728px -1365px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_pgreen2 { - background-image: url(spritesmith-main-2.png); - background-position: -753px -1380px; - width: 60px; - height: 60px; -} -.hair_base_7_porange { - background-image: url(spritesmith-main-2.png); - background-position: -819px -1365px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_porange { - background-image: url(spritesmith-main-2.png); - background-position: -844px -1380px; - width: 60px; - height: 60px; -} -.hair_base_7_porange2 { - background-image: url(spritesmith-main-2.png); - background-position: -910px -1365px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_porange2 { - background-image: url(spritesmith-main-2.png); - background-position: -935px -1380px; - width: 60px; - height: 60px; -} -.hair_base_7_ppink { - background-image: url(spritesmith-main-2.png); - background-position: -1001px -1365px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_ppink { - background-image: url(spritesmith-main-2.png); - background-position: -1026px -1380px; - width: 60px; - height: 60px; -} -.hair_base_7_ppink2 { - background-image: url(spritesmith-main-2.png); - background-position: -1092px -1365px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_ppink2 { - background-image: url(spritesmith-main-2.png); - background-position: -1117px -1380px; - width: 60px; - height: 60px; -} -.hair_base_7_ppurple { - background-image: url(spritesmith-main-2.png); - background-position: -1183px -1365px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_ppurple { - background-image: url(spritesmith-main-2.png); - background-position: -1208px -1380px; - width: 60px; - height: 60px; -} -.hair_base_7_ppurple2 { - background-image: url(spritesmith-main-2.png); - background-position: -1274px -1365px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_ppurple2 { - background-image: url(spritesmith-main-2.png); - background-position: -1299px -1380px; - width: 60px; - height: 60px; -} -.hair_base_7_pumpkin { - background-image: url(spritesmith-main-2.png); - background-position: -1365px -1365px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_pumpkin { - background-image: url(spritesmith-main-2.png); - background-position: -1390px -1380px; - width: 60px; - height: 60px; -} -.hair_base_7_purple { - background-image: url(spritesmith-main-2.png); - background-position: -1456px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_purple { - background-image: url(spritesmith-main-2.png); - background-position: -1481px -15px; - width: 60px; - height: 60px; -} -.hair_base_7_pyellow { - background-image: url(spritesmith-main-2.png); - background-position: -1456px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_pyellow { - background-image: url(spritesmith-main-2.png); - background-position: -1481px -106px; - width: 60px; - height: 60px; -} -.hair_base_7_pyellow2 { - background-image: url(spritesmith-main-2.png); - background-position: -1456px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_pyellow2 { - background-image: url(spritesmith-main-2.png); - background-position: -1481px -197px; - width: 60px; - height: 60px; -} -.hair_base_7_rainbow { - background-image: url(spritesmith-main-2.png); - background-position: -1456px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_rainbow { - background-image: url(spritesmith-main-2.png); - background-position: -1481px -288px; - width: 60px; - height: 60px; -} -.hair_base_7_red { - background-image: url(spritesmith-main-2.png); - background-position: -1456px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_red { - background-image: url(spritesmith-main-2.png); - background-position: -1481px -379px; - width: 60px; - height: 60px; -} -.hair_base_7_snowy { - background-image: url(spritesmith-main-2.png); - background-position: -1456px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_snowy { - background-image: url(spritesmith-main-2.png); - background-position: -1481px -470px; - width: 60px; - height: 60px; -} -.hair_base_7_white { - background-image: url(spritesmith-main-2.png); - background-position: -1456px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_white { - background-image: url(spritesmith-main-2.png); - background-position: -1481px -561px; - width: 60px; - height: 60px; -} -.hair_base_7_winternight { - background-image: url(spritesmith-main-2.png); - background-position: -1456px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_winternight { - background-image: url(spritesmith-main-2.png); - background-position: -1481px -652px; - width: 60px; - height: 60px; -} -.hair_base_7_winterstar { - background-image: url(spritesmith-main-2.png); - background-position: -1456px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_winterstar { - background-image: url(spritesmith-main-2.png); - background-position: -1481px -743px; - width: 60px; - height: 60px; -} -.hair_base_7_yellow { - background-image: url(spritesmith-main-2.png); - background-position: -1456px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_yellow { - background-image: url(spritesmith-main-2.png); - background-position: -1481px -834px; - width: 60px; - height: 60px; -} -.hair_base_7_zombie { - background-image: url(spritesmith-main-2.png); - background-position: -1456px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_zombie { - background-image: url(spritesmith-main-2.png); - background-position: -1481px -925px; - width: 60px; - height: 60px; -} -.hair_base_8_TRUred { - background-image: url(spritesmith-main-2.png); - background-position: -1456px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_TRUred { - background-image: url(spritesmith-main-2.png); - background-position: -1481px -1016px; - width: 60px; - height: 60px; -} -.hair_base_8_aurora { - background-image: url(spritesmith-main-2.png); - background-position: -1456px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_aurora { - background-image: url(spritesmith-main-2.png); - background-position: -1481px -1107px; - width: 60px; - height: 60px; -} -.hair_base_8_black { - background-image: url(spritesmith-main-2.png); - background-position: -1456px -1183px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_black { - background-image: url(spritesmith-main-2.png); - background-position: -1481px -1198px; - width: 60px; - height: 60px; -} -.hair_base_8_blond { - background-image: url(spritesmith-main-2.png); - background-position: -1456px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_blond { - background-image: url(spritesmith-main-2.png); - background-position: -1481px -1289px; - width: 60px; - height: 60px; -} -.hair_base_8_blue { - background-image: url(spritesmith-main-2.png); - background-position: -1456px -1365px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_blue { - background-image: url(spritesmith-main-2.png); - background-position: -1481px -1380px; - width: 60px; - height: 60px; -} -.hair_base_8_brown { - background-image: url(spritesmith-main-2.png); - background-position: 0px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_brown { - background-image: url(spritesmith-main-2.png); - background-position: -25px -1471px; - width: 60px; - height: 60px; -} -.hair_base_8_candycane { - background-image: url(spritesmith-main-2.png); - background-position: -91px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_candycane { - background-image: url(spritesmith-main-2.png); - background-position: -116px -1471px; - width: 60px; - height: 60px; -} -.hair_base_8_candycorn { - background-image: url(spritesmith-main-2.png); - background-position: -182px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_candycorn { - background-image: url(spritesmith-main-2.png); - background-position: -207px -1471px; - width: 60px; - height: 60px; -} -.hair_base_8_festive { - background-image: url(spritesmith-main-2.png); - background-position: -273px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_festive { - background-image: url(spritesmith-main-2.png); - background-position: -298px -1471px; - width: 60px; - height: 60px; -} -.hair_base_8_frost { - background-image: url(spritesmith-main-2.png); - background-position: -364px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_frost { - background-image: url(spritesmith-main-2.png); - background-position: -389px -1471px; - width: 60px; - height: 60px; -} -.hair_base_8_ghostwhite { - background-image: url(spritesmith-main-2.png); - background-position: -455px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_ghostwhite { - background-image: url(spritesmith-main-2.png); - background-position: -480px -1471px; - width: 60px; - height: 60px; -} -.hair_base_8_green { +.hair_base_7_TRUred { background-image: url(spritesmith-main-2.png); background-position: -546px -1456px; width: 90px; height: 90px; } -.customize-option.hair_base_8_green { +.customize-option.hair_base_7_TRUred { background-image: url(spritesmith-main-2.png); background-position: -571px -1471px; width: 60px; height: 60px; } -.hair_base_8_halloween { +.hair_base_7_aurora { + background-image: url(spritesmith-main-2.png); + background-position: -455px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_aurora { + background-image: url(spritesmith-main-2.png); + background-position: -480px -1380px; + width: 60px; + height: 60px; +} +.hair_base_7_black { + background-image: url(spritesmith-main-2.png); + background-position: -546px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_black { + background-image: url(spritesmith-main-2.png); + background-position: -571px -1380px; + width: 60px; + height: 60px; +} +.hair_base_7_blond { + background-image: url(spritesmith-main-2.png); + background-position: -637px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_blond { + background-image: url(spritesmith-main-2.png); + background-position: -662px -1380px; + width: 60px; + height: 60px; +} +.hair_base_7_blue { + background-image: url(spritesmith-main-2.png); + background-position: -728px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_blue { + background-image: url(spritesmith-main-2.png); + background-position: -753px -1380px; + width: 60px; + height: 60px; +} +.hair_base_7_brown { + background-image: url(spritesmith-main-2.png); + background-position: -819px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_brown { + background-image: url(spritesmith-main-2.png); + background-position: -844px -1380px; + width: 60px; + height: 60px; +} +.hair_base_7_candycane { + background-image: url(spritesmith-main-2.png); + background-position: -910px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_candycane { + background-image: url(spritesmith-main-2.png); + background-position: -935px -1380px; + width: 60px; + height: 60px; +} +.hair_base_7_candycorn { + background-image: url(spritesmith-main-2.png); + background-position: -1001px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_candycorn { + background-image: url(spritesmith-main-2.png); + background-position: -1026px -1380px; + width: 60px; + height: 60px; +} +.hair_base_7_festive { + background-image: url(spritesmith-main-2.png); + background-position: -1092px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_festive { + background-image: url(spritesmith-main-2.png); + background-position: -1117px -1380px; + width: 60px; + height: 60px; +} +.hair_base_7_frost { + background-image: url(spritesmith-main-2.png); + background-position: -1183px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_frost { + background-image: url(spritesmith-main-2.png); + background-position: -1208px -1380px; + width: 60px; + height: 60px; +} +.hair_base_7_ghostwhite { + background-image: url(spritesmith-main-2.png); + background-position: -1274px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_ghostwhite { + background-image: url(spritesmith-main-2.png); + background-position: -1299px -1380px; + width: 60px; + height: 60px; +} +.hair_base_7_green { + background-image: url(spritesmith-main-2.png); + background-position: -1365px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_green { + background-image: url(spritesmith-main-2.png); + background-position: -1390px -1380px; + width: 60px; + height: 60px; +} +.hair_base_7_halloween { + background-image: url(spritesmith-main-2.png); + background-position: -1456px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_halloween { + background-image: url(spritesmith-main-2.png); + background-position: -1481px -15px; + width: 60px; + height: 60px; +} +.hair_base_7_holly { + background-image: url(spritesmith-main-2.png); + background-position: -1456px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_holly { + background-image: url(spritesmith-main-2.png); + background-position: -1481px -106px; + width: 60px; + height: 60px; +} +.hair_base_7_hollygreen { + background-image: url(spritesmith-main-2.png); + background-position: -1456px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_hollygreen { + background-image: url(spritesmith-main-2.png); + background-position: -1481px -197px; + width: 60px; + height: 60px; +} +.hair_base_7_midnight { + background-image: url(spritesmith-main-2.png); + background-position: -1456px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_midnight { + background-image: url(spritesmith-main-2.png); + background-position: -1481px -288px; + width: 60px; + height: 60px; +} +.hair_base_7_pblue { + background-image: url(spritesmith-main-2.png); + background-position: -1456px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_pblue { + background-image: url(spritesmith-main-2.png); + background-position: -1481px -379px; + width: 60px; + height: 60px; +} +.hair_base_7_pblue2 { + background-image: url(spritesmith-main-2.png); + background-position: -1456px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_pblue2 { + background-image: url(spritesmith-main-2.png); + background-position: -1481px -470px; + width: 60px; + height: 60px; +} +.hair_base_7_peppermint { + background-image: url(spritesmith-main-2.png); + background-position: -1456px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_peppermint { + background-image: url(spritesmith-main-2.png); + background-position: -1481px -561px; + width: 60px; + height: 60px; +} +.hair_base_7_pgreen { + background-image: url(spritesmith-main-2.png); + background-position: -1456px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_pgreen { + background-image: url(spritesmith-main-2.png); + background-position: -1481px -652px; + width: 60px; + height: 60px; +} +.hair_base_7_pgreen2 { + background-image: url(spritesmith-main-2.png); + background-position: -1456px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_pgreen2 { + background-image: url(spritesmith-main-2.png); + background-position: -1481px -743px; + width: 60px; + height: 60px; +} +.hair_base_7_porange { + background-image: url(spritesmith-main-2.png); + background-position: -1456px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_porange { + background-image: url(spritesmith-main-2.png); + background-position: -1481px -834px; + width: 60px; + height: 60px; +} +.hair_base_7_porange2 { + background-image: url(spritesmith-main-2.png); + background-position: -1456px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_porange2 { + background-image: url(spritesmith-main-2.png); + background-position: -1481px -925px; + width: 60px; + height: 60px; +} +.hair_base_7_ppink { + background-image: url(spritesmith-main-2.png); + background-position: -1456px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_ppink { + background-image: url(spritesmith-main-2.png); + background-position: -1481px -1016px; + width: 60px; + height: 60px; +} +.hair_base_7_ppink2 { + background-image: url(spritesmith-main-2.png); + background-position: -1456px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_ppink2 { + background-image: url(spritesmith-main-2.png); + background-position: -1481px -1107px; + width: 60px; + height: 60px; +} +.hair_base_7_ppurple { + background-image: url(spritesmith-main-2.png); + background-position: -1456px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_ppurple { + background-image: url(spritesmith-main-2.png); + background-position: -1481px -1198px; + width: 60px; + height: 60px; +} +.hair_base_7_ppurple2 { + background-image: url(spritesmith-main-2.png); + background-position: -1456px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_ppurple2 { + background-image: url(spritesmith-main-2.png); + background-position: -1481px -1289px; + width: 60px; + height: 60px; +} +.hair_base_7_pumpkin { + background-image: url(spritesmith-main-2.png); + background-position: -1456px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_pumpkin { + background-image: url(spritesmith-main-2.png); + background-position: -1481px -1380px; + width: 60px; + height: 60px; +} +.hair_base_7_purple { + background-image: url(spritesmith-main-2.png); + background-position: 0px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_purple { + background-image: url(spritesmith-main-2.png); + background-position: -25px -1471px; + width: 60px; + height: 60px; +} +.hair_base_7_pyellow { + background-image: url(spritesmith-main-2.png); + background-position: -91px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_pyellow { + background-image: url(spritesmith-main-2.png); + background-position: -116px -1471px; + width: 60px; + height: 60px; +} +.hair_base_7_pyellow2 { + background-image: url(spritesmith-main-2.png); + background-position: -182px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_pyellow2 { + background-image: url(spritesmith-main-2.png); + background-position: -207px -1471px; + width: 60px; + height: 60px; +} +.hair_base_7_rainbow { + background-image: url(spritesmith-main-2.png); + background-position: -273px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_rainbow { + background-image: url(spritesmith-main-2.png); + background-position: -298px -1471px; + width: 60px; + height: 60px; +} +.hair_base_7_red { + background-image: url(spritesmith-main-2.png); + background-position: -364px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_red { + background-image: url(spritesmith-main-2.png); + background-position: -389px -1471px; + width: 60px; + height: 60px; +} +.hair_base_7_snowy { + background-image: url(spritesmith-main-2.png); + background-position: -455px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_snowy { + background-image: url(spritesmith-main-2.png); + background-position: -480px -1471px; + width: 60px; + height: 60px; +} +.hair_base_7_white { background-image: url(spritesmith-main-2.png); background-position: -637px -1456px; width: 90px; height: 90px; } -.customize-option.hair_base_8_halloween { +.customize-option.hair_base_7_white { background-image: url(spritesmith-main-2.png); background-position: -662px -1471px; width: 60px; height: 60px; } -.hair_base_8_holly { +.hair_base_7_winternight { background-image: url(spritesmith-main-2.png); background-position: -728px -1456px; width: 90px; height: 90px; } -.customize-option.hair_base_8_holly { +.customize-option.hair_base_7_winternight { background-image: url(spritesmith-main-2.png); background-position: -753px -1471px; width: 60px; height: 60px; } -.hair_base_8_hollygreen { +.hair_base_7_winterstar { background-image: url(spritesmith-main-2.png); background-position: -819px -1456px; width: 90px; height: 90px; } -.customize-option.hair_base_8_hollygreen { +.customize-option.hair_base_7_winterstar { background-image: url(spritesmith-main-2.png); background-position: -844px -1471px; width: 60px; height: 60px; } -.hair_base_8_midnight { +.hair_base_7_yellow { background-image: url(spritesmith-main-2.png); background-position: -910px -1456px; width: 90px; height: 90px; } -.customize-option.hair_base_8_midnight { +.customize-option.hair_base_7_yellow { background-image: url(spritesmith-main-2.png); background-position: -935px -1471px; width: 60px; height: 60px; } -.hair_base_8_pblue { +.hair_base_7_zombie { background-image: url(spritesmith-main-2.png); background-position: -1001px -1456px; width: 90px; height: 90px; } -.customize-option.hair_base_8_pblue { +.customize-option.hair_base_7_zombie { background-image: url(spritesmith-main-2.png); background-position: -1026px -1471px; width: 60px; height: 60px; } -.hair_base_8_pblue2 { - background-image: url(spritesmith-main-2.png); - background-position: -1092px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_pblue2 { - background-image: url(spritesmith-main-2.png); - background-position: -1117px -1471px; - width: 60px; - height: 60px; -} -.hair_base_8_peppermint { - background-image: url(spritesmith-main-2.png); - background-position: -1183px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_peppermint { - background-image: url(spritesmith-main-2.png); - background-position: -1208px -1471px; - width: 60px; - height: 60px; -} -.hair_base_8_pgreen { - background-image: url(spritesmith-main-2.png); - background-position: -1274px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_pgreen { - background-image: url(spritesmith-main-2.png); - background-position: -1299px -1471px; - width: 60px; - height: 60px; -} -.hair_base_8_pgreen2 { - background-image: url(spritesmith-main-2.png); - background-position: -1365px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_pgreen2 { - background-image: url(spritesmith-main-2.png); - background-position: -1390px -1471px; - width: 60px; - height: 60px; -} -.hair_base_8_porange { - background-image: url(spritesmith-main-2.png); - background-position: -1456px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_porange { - background-image: url(spritesmith-main-2.png); - background-position: -1481px -1471px; - width: 60px; - height: 60px; -} -.hair_base_8_porange2 { - background-image: url(spritesmith-main-2.png); - background-position: -1547px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_porange2 { - background-image: url(spritesmith-main-2.png); - background-position: -1572px -15px; - width: 60px; - height: 60px; -} -.hair_base_8_ppink { - background-image: url(spritesmith-main-2.png); - background-position: -1547px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_ppink { - background-image: url(spritesmith-main-2.png); - background-position: -1572px -106px; - width: 60px; - height: 60px; -} -.hair_base_8_ppink2 { - background-image: url(spritesmith-main-2.png); - background-position: -1547px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_ppink2 { - background-image: url(spritesmith-main-2.png); - background-position: -1572px -197px; - width: 60px; - height: 60px; -} -.hair_base_8_ppurple { - background-image: url(spritesmith-main-2.png); - background-position: -1547px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_ppurple { - background-image: url(spritesmith-main-2.png); - background-position: -1572px -288px; - width: 60px; - height: 60px; -} -.hair_base_8_ppurple2 { - background-image: url(spritesmith-main-2.png); - background-position: -1547px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_ppurple2 { - background-image: url(spritesmith-main-2.png); - background-position: -1572px -379px; - width: 60px; - height: 60px; -} -.hair_base_8_pumpkin { - background-image: url(spritesmith-main-2.png); - background-position: -1547px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_pumpkin { - background-image: url(spritesmith-main-2.png); - background-position: -1572px -470px; - width: 60px; - height: 60px; -} -.hair_base_8_purple { - background-image: url(spritesmith-main-2.png); - background-position: -1547px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_purple { - background-image: url(spritesmith-main-2.png); - background-position: -1572px -561px; - width: 60px; - height: 60px; -} -.hair_base_8_pyellow { - background-image: url(spritesmith-main-2.png); - background-position: -1547px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_pyellow { - background-image: url(spritesmith-main-2.png); - background-position: -1572px -652px; - width: 60px; - height: 60px; -} -.hair_base_8_pyellow2 { - background-image: url(spritesmith-main-2.png); - background-position: -1547px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_pyellow2 { - background-image: url(spritesmith-main-2.png); - background-position: -1572px -743px; - width: 60px; - height: 60px; -} -.hair_base_8_rainbow { - background-image: url(spritesmith-main-2.png); - background-position: -1547px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_rainbow { - background-image: url(spritesmith-main-2.png); - background-position: -1572px -834px; - width: 60px; - height: 60px; -} -.hair_base_8_red { - background-image: url(spritesmith-main-2.png); - background-position: -1547px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_red { - background-image: url(spritesmith-main-2.png); - background-position: -1572px -925px; - width: 60px; - height: 60px; -} -.hair_base_8_snowy { - background-image: url(spritesmith-main-2.png); - background-position: -1547px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_snowy { - background-image: url(spritesmith-main-2.png); - background-position: -1572px -1016px; - width: 60px; - height: 60px; -} -.hair_base_8_white { - background-image: url(spritesmith-main-2.png); - background-position: -1547px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_white { - background-image: url(spritesmith-main-2.png); - background-position: -1572px -1107px; - width: 60px; - height: 60px; -} -.hair_base_8_winternight { - background-image: url(spritesmith-main-2.png); - background-position: -1547px -1183px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_winternight { - background-image: url(spritesmith-main-2.png); - background-position: -1572px -1198px; - width: 60px; - height: 60px; -} -.hair_base_8_winterstar { - background-image: url(spritesmith-main-2.png); - background-position: -1547px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_winterstar { - background-image: url(spritesmith-main-2.png); - background-position: -1572px -1289px; - width: 60px; - height: 60px; -} -.hair_base_8_yellow { - background-image: url(spritesmith-main-2.png); - background-position: -1547px -1365px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_yellow { - background-image: url(spritesmith-main-2.png); - background-position: -1572px -1380px; - width: 60px; - height: 60px; -} -.hair_base_8_zombie { - background-image: url(spritesmith-main-2.png); - background-position: -1547px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_zombie { - background-image: url(spritesmith-main-2.png); - background-position: -1572px -1471px; - width: 60px; - height: 60px; -} -.hair_base_9_TRUred { - background-image: url(spritesmith-main-2.png); - background-position: 0px -1547px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_9_TRUred { - background-image: url(spritesmith-main-2.png); - background-position: -25px -1562px; - width: 60px; - height: 60px; -} -.hair_base_9_aurora { - background-image: url(spritesmith-main-2.png); - background-position: -91px -1547px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_9_aurora { - background-image: url(spritesmith-main-2.png); - background-position: -116px -1562px; - width: 60px; - height: 60px; -} -.hair_base_9_black { - background-image: url(spritesmith-main-2.png); - background-position: -182px -1547px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_9_black { - background-image: url(spritesmith-main-2.png); - background-position: -207px -1562px; - width: 60px; - height: 60px; -} -.hair_base_9_blond { - background-image: url(spritesmith-main-2.png); - background-position: -273px -1547px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_9_blond { - background-image: url(spritesmith-main-2.png); - background-position: -298px -1562px; - width: 60px; - height: 60px; -} -.hair_base_9_blue { - background-image: url(spritesmith-main-2.png); - background-position: -364px -1547px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_9_blue { - background-image: url(spritesmith-main-2.png); - background-position: -389px -1562px; - width: 60px; - height: 60px; -} -.hair_base_9_brown { - background-image: url(spritesmith-main-2.png); - background-position: -455px -1547px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_9_brown { - background-image: url(spritesmith-main-2.png); - background-position: -480px -1562px; - width: 60px; - height: 60px; -} -.hair_base_9_candycane { - background-image: url(spritesmith-main-2.png); - background-position: -546px -1547px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_9_candycane { - background-image: url(spritesmith-main-2.png); - background-position: -571px -1562px; - width: 60px; - height: 60px; -} -.hair_base_9_candycorn { - background-image: url(spritesmith-main-2.png); - background-position: -637px -1547px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_9_candycorn { - background-image: url(spritesmith-main-2.png); - background-position: -662px -1562px; - width: 60px; - height: 60px; -} -.hair_base_9_festive { - background-image: url(spritesmith-main-2.png); - background-position: -728px -1547px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_9_festive { - background-image: url(spritesmith-main-2.png); - background-position: -753px -1562px; - width: 60px; - height: 60px; -} -.hair_base_9_frost { - background-image: url(spritesmith-main-2.png); - background-position: -819px -1547px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_9_frost { - background-image: url(spritesmith-main-2.png); - background-position: -844px -1562px; - width: 60px; - height: 60px; -} -.hair_base_9_ghostwhite { - background-image: url(spritesmith-main-2.png); - background-position: -910px -1547px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_9_ghostwhite { - background-image: url(spritesmith-main-2.png); - background-position: -935px -1562px; - width: 60px; - height: 60px; -} -.hair_base_9_green { +.hair_base_8_TRUred { background-image: url(spritesmith-main-2.png); background-position: -1001px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_9_green { +.customize-option.hair_base_8_TRUred { background-image: url(spritesmith-main-2.png); background-position: -1026px -1562px; width: 60px; height: 60px; } -.hair_base_9_halloween { +.hair_base_8_aurora { + background-image: url(spritesmith-main-2.png); + background-position: -1092px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_aurora { + background-image: url(spritesmith-main-2.png); + background-position: -1117px -1471px; + width: 60px; + height: 60px; +} +.hair_base_8_black { + background-image: url(spritesmith-main-2.png); + background-position: -1183px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_black { + background-image: url(spritesmith-main-2.png); + background-position: -1208px -1471px; + width: 60px; + height: 60px; +} +.hair_base_8_blond { + background-image: url(spritesmith-main-2.png); + background-position: -1274px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_blond { + background-image: url(spritesmith-main-2.png); + background-position: -1299px -1471px; + width: 60px; + height: 60px; +} +.hair_base_8_blue { + background-image: url(spritesmith-main-2.png); + background-position: -1365px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_blue { + background-image: url(spritesmith-main-2.png); + background-position: -1390px -1471px; + width: 60px; + height: 60px; +} +.hair_base_8_brown { + background-image: url(spritesmith-main-2.png); + background-position: -1456px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_brown { + background-image: url(spritesmith-main-2.png); + background-position: -1481px -1471px; + width: 60px; + height: 60px; +} +.hair_base_8_candycane { + background-image: url(spritesmith-main-2.png); + background-position: -1547px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_candycane { + background-image: url(spritesmith-main-2.png); + background-position: -1572px -15px; + width: 60px; + height: 60px; +} +.hair_base_8_candycorn { + background-image: url(spritesmith-main-2.png); + background-position: -1547px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_candycorn { + background-image: url(spritesmith-main-2.png); + background-position: -1572px -106px; + width: 60px; + height: 60px; +} +.hair_base_8_festive { + background-image: url(spritesmith-main-2.png); + background-position: -1547px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_festive { + background-image: url(spritesmith-main-2.png); + background-position: -1572px -197px; + width: 60px; + height: 60px; +} +.hair_base_8_frost { + background-image: url(spritesmith-main-2.png); + background-position: -1547px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_frost { + background-image: url(spritesmith-main-2.png); + background-position: -1572px -288px; + width: 60px; + height: 60px; +} +.hair_base_8_ghostwhite { + background-image: url(spritesmith-main-2.png); + background-position: -1547px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_ghostwhite { + background-image: url(spritesmith-main-2.png); + background-position: -1572px -379px; + width: 60px; + height: 60px; +} +.hair_base_8_green { + background-image: url(spritesmith-main-2.png); + background-position: -1547px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_green { + background-image: url(spritesmith-main-2.png); + background-position: -1572px -470px; + width: 60px; + height: 60px; +} +.hair_base_8_halloween { + background-image: url(spritesmith-main-2.png); + background-position: -1547px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_halloween { + background-image: url(spritesmith-main-2.png); + background-position: -1572px -561px; + width: 60px; + height: 60px; +} +.hair_base_8_holly { + background-image: url(spritesmith-main-2.png); + background-position: -1547px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_holly { + background-image: url(spritesmith-main-2.png); + background-position: -1572px -652px; + width: 60px; + height: 60px; +} +.hair_base_8_hollygreen { + background-image: url(spritesmith-main-2.png); + background-position: -1547px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_hollygreen { + background-image: url(spritesmith-main-2.png); + background-position: -1572px -743px; + width: 60px; + height: 60px; +} +.hair_base_8_midnight { + background-image: url(spritesmith-main-2.png); + background-position: -1547px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_midnight { + background-image: url(spritesmith-main-2.png); + background-position: -1572px -834px; + width: 60px; + height: 60px; +} +.hair_base_8_pblue { + background-image: url(spritesmith-main-2.png); + background-position: -1547px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_pblue { + background-image: url(spritesmith-main-2.png); + background-position: -1572px -925px; + width: 60px; + height: 60px; +} +.hair_base_8_pblue2 { + background-image: url(spritesmith-main-2.png); + background-position: -1547px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_pblue2 { + background-image: url(spritesmith-main-2.png); + background-position: -1572px -1016px; + width: 60px; + height: 60px; +} +.hair_base_8_peppermint { + background-image: url(spritesmith-main-2.png); + background-position: -1547px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_peppermint { + background-image: url(spritesmith-main-2.png); + background-position: -1572px -1107px; + width: 60px; + height: 60px; +} +.hair_base_8_pgreen { + background-image: url(spritesmith-main-2.png); + background-position: -1547px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_pgreen { + background-image: url(spritesmith-main-2.png); + background-position: -1572px -1198px; + width: 60px; + height: 60px; +} +.hair_base_8_pgreen2 { + background-image: url(spritesmith-main-2.png); + background-position: -1547px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_pgreen2 { + background-image: url(spritesmith-main-2.png); + background-position: -1572px -1289px; + width: 60px; + height: 60px; +} +.hair_base_8_porange { + background-image: url(spritesmith-main-2.png); + background-position: -1547px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_porange { + background-image: url(spritesmith-main-2.png); + background-position: -1572px -1380px; + width: 60px; + height: 60px; +} +.hair_base_8_porange2 { + background-image: url(spritesmith-main-2.png); + background-position: -1547px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_porange2 { + background-image: url(spritesmith-main-2.png); + background-position: -1572px -1471px; + width: 60px; + height: 60px; +} +.hair_base_8_ppink { + background-image: url(spritesmith-main-2.png); + background-position: 0px -1547px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_ppink { + background-image: url(spritesmith-main-2.png); + background-position: -25px -1562px; + width: 60px; + height: 60px; +} +.hair_base_8_ppink2 { + background-image: url(spritesmith-main-2.png); + background-position: -91px -1547px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_ppink2 { + background-image: url(spritesmith-main-2.png); + background-position: -116px -1562px; + width: 60px; + height: 60px; +} +.hair_base_8_ppurple { + background-image: url(spritesmith-main-2.png); + background-position: -182px -1547px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_ppurple { + background-image: url(spritesmith-main-2.png); + background-position: -207px -1562px; + width: 60px; + height: 60px; +} +.hair_base_8_ppurple2 { + background-image: url(spritesmith-main-2.png); + background-position: -273px -1547px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_ppurple2 { + background-image: url(spritesmith-main-2.png); + background-position: -298px -1562px; + width: 60px; + height: 60px; +} +.hair_base_8_pumpkin { + background-image: url(spritesmith-main-2.png); + background-position: -364px -1547px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_pumpkin { + background-image: url(spritesmith-main-2.png); + background-position: -389px -1562px; + width: 60px; + height: 60px; +} +.hair_base_8_purple { + background-image: url(spritesmith-main-2.png); + background-position: -455px -1547px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_purple { + background-image: url(spritesmith-main-2.png); + background-position: -480px -1562px; + width: 60px; + height: 60px; +} +.hair_base_8_pyellow { + background-image: url(spritesmith-main-2.png); + background-position: -546px -1547px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_pyellow { + background-image: url(spritesmith-main-2.png); + background-position: -571px -1562px; + width: 60px; + height: 60px; +} +.hair_base_8_pyellow2 { + background-image: url(spritesmith-main-2.png); + background-position: -637px -1547px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_pyellow2 { + background-image: url(spritesmith-main-2.png); + background-position: -662px -1562px; + width: 60px; + height: 60px; +} +.hair_base_8_rainbow { + background-image: url(spritesmith-main-2.png); + background-position: -728px -1547px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_rainbow { + background-image: url(spritesmith-main-2.png); + background-position: -753px -1562px; + width: 60px; + height: 60px; +} +.hair_base_8_red { + background-image: url(spritesmith-main-2.png); + background-position: -819px -1547px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_red { + background-image: url(spritesmith-main-2.png); + background-position: -844px -1562px; + width: 60px; + height: 60px; +} +.hair_base_8_snowy { + background-image: url(spritesmith-main-2.png); + background-position: -910px -1547px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_snowy { + background-image: url(spritesmith-main-2.png); + background-position: -935px -1562px; + width: 60px; + height: 60px; +} +.hair_base_8_white { background-image: url(spritesmith-main-2.png); background-position: -1092px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_9_halloween { +.customize-option.hair_base_8_white { background-image: url(spritesmith-main-2.png); background-position: -1117px -1562px; width: 60px; height: 60px; } -.hair_base_9_holly { +.hair_base_8_winternight { background-image: url(spritesmith-main-2.png); background-position: -1183px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_9_holly { +.customize-option.hair_base_8_winternight { background-image: url(spritesmith-main-2.png); background-position: -1208px -1562px; width: 60px; height: 60px; } -.hair_base_9_hollygreen { +.hair_base_8_winterstar { background-image: url(spritesmith-main-2.png); background-position: -1274px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_9_hollygreen { +.customize-option.hair_base_8_winterstar { background-image: url(spritesmith-main-2.png); background-position: -1299px -1562px; width: 60px; height: 60px; } -.hair_base_9_midnight { +.hair_base_8_yellow { background-image: url(spritesmith-main-2.png); background-position: -1365px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_9_midnight { +.customize-option.hair_base_8_yellow { background-image: url(spritesmith-main-2.png); background-position: -1390px -1562px; width: 60px; height: 60px; } -.hair_base_9_pblue { +.hair_base_8_zombie { background-image: url(spritesmith-main-2.png); background-position: -1456px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_9_pblue { +.customize-option.hair_base_8_zombie { background-image: url(spritesmith-main-2.png); background-position: -1481px -1562px; width: 60px; height: 60px; } -.hair_base_9_pblue2 { +.hair_base_9_aurora { background-image: url(spritesmith-main-2.png); background-position: -1547px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_9_pblue2 { +.customize-option.hair_base_9_aurora { background-image: url(spritesmith-main-2.png); background-position: -1572px -1562px; width: 60px; height: 60px; } -.hair_base_9_peppermint { +.hair_base_9_black { background-image: url(spritesmith-main-2.png); background-position: -1638px 0px; width: 90px; height: 90px; } -.customize-option.hair_base_9_peppermint { +.customize-option.hair_base_9_black { background-image: url(spritesmith-main-2.png); background-position: -1663px -15px; width: 60px; height: 60px; } -.hair_base_9_pgreen { +.hair_base_9_blond { background-image: url(spritesmith-main-2.png); background-position: -1638px -91px; width: 90px; height: 90px; } -.customize-option.hair_base_9_pgreen { +.customize-option.hair_base_9_blond { background-image: url(spritesmith-main-2.png); background-position: -1663px -106px; width: 60px; height: 60px; } -.hair_base_9_pgreen2 { +.hair_base_9_blue { background-image: url(spritesmith-main-2.png); background-position: -1638px -182px; width: 90px; height: 90px; } -.customize-option.hair_base_9_pgreen2 { +.customize-option.hair_base_9_blue { background-image: url(spritesmith-main-2.png); background-position: -1663px -197px; width: 60px; height: 60px; } -.hair_base_9_porange { +.hair_base_9_brown { background-image: url(spritesmith-main-2.png); background-position: -1638px -273px; width: 90px; height: 90px; } -.customize-option.hair_base_9_porange { +.customize-option.hair_base_9_brown { background-image: url(spritesmith-main-2.png); background-position: -1663px -288px; width: 60px; height: 60px; } -.hair_base_9_porange2 { +.hair_base_9_candycane { background-image: url(spritesmith-main-2.png); background-position: -1638px -364px; width: 90px; height: 90px; } -.customize-option.hair_base_9_porange2 { +.customize-option.hair_base_9_candycane { 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 d2bb77f317..92089ade2b 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 f0cb5e2e21..e58c3a94b8 100644 --- a/common/dist/sprites/spritesmith-main-3.css +++ b/common/dist/sprites/spritesmith-main-3.css @@ -1,3450 +1,3582 @@ -.hair_base_9_ppink { +.hair_base_9_TRUred { background-image: url(spritesmith-main-3.png); - background-position: -1413px 0px; + background-position: -455px -182px; width: 90px; height: 90px; } -.customize-option.hair_base_9_ppink { +.customize-option.hair_base_9_TRUred { background-image: url(spritesmith-main-3.png); - background-position: -1438px -15px; + background-position: -480px -197px; width: 60px; height: 60px; } -.hair_base_9_ppink2 { +.hair_base_9_candycorn { background-image: url(spritesmith-main-3.png); - background-position: -1001px -1183px; + background-position: -91px 0px; width: 90px; height: 90px; } -.customize-option.hair_base_9_ppink2 { +.customize-option.hair_base_9_candycorn { background-image: url(spritesmith-main-3.png); - background-position: -1026px -1198px; + background-position: -116px -15px; width: 60px; height: 60px; } -.hair_base_9_ppurple { +.hair_base_9_festive { background-image: url(spritesmith-main-3.png); - background-position: -1413px -182px; + background-position: -1274px 0px; width: 90px; height: 90px; } -.customize-option.hair_base_9_ppurple { +.customize-option.hair_base_9_festive { background-image: url(spritesmith-main-3.png); - background-position: -1438px -197px; + background-position: -1299px -15px; width: 60px; height: 60px; } -.hair_base_9_ppurple2 { +.hair_base_9_frost { background-image: url(spritesmith-main-3.png); - background-position: -1413px -273px; + background-position: 0px -91px; width: 90px; height: 90px; } -.customize-option.hair_base_9_ppurple2 { +.customize-option.hair_base_9_frost { background-image: url(spritesmith-main-3.png); - background-position: -1438px -288px; + background-position: -25px -106px; width: 60px; height: 60px; } -.hair_base_9_pumpkin { +.hair_base_9_ghostwhite { background-image: url(spritesmith-main-3.png); - background-position: -1413px -637px; + background-position: -91px -91px; width: 90px; height: 90px; } -.customize-option.hair_base_9_pumpkin { +.customize-option.hair_base_9_ghostwhite { background-image: url(spritesmith-main-3.png); - background-position: -1438px -652px; + background-position: -116px -106px; width: 60px; height: 60px; } -.hair_base_9_purple { +.hair_base_9_green { background-image: url(spritesmith-main-3.png); - background-position: -1413px -728px; + background-position: -182px 0px; width: 90px; height: 90px; } -.customize-option.hair_base_9_purple { +.customize-option.hair_base_9_green { background-image: url(spritesmith-main-3.png); - background-position: -1438px -743px; + background-position: -207px -15px; width: 60px; height: 60px; } -.hair_base_9_pyellow { +.hair_base_9_halloween { + background-image: url(spritesmith-main-3.png); + background-position: -182px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_9_halloween { + background-image: url(spritesmith-main-3.png); + background-position: -207px -106px; + width: 60px; + height: 60px; +} +.hair_base_9_holly { background-image: url(spritesmith-main-3.png); background-position: 0px -182px; width: 90px; height: 90px; } -.customize-option.hair_base_9_pyellow { +.customize-option.hair_base_9_holly { background-image: url(spritesmith-main-3.png); background-position: -25px -197px; width: 60px; height: 60px; } -.hair_base_9_pyellow2 { +.hair_base_9_hollygreen { background-image: url(spritesmith-main-3.png); background-position: -91px -182px; width: 90px; height: 90px; } -.customize-option.hair_base_9_pyellow2 { +.customize-option.hair_base_9_hollygreen { background-image: url(spritesmith-main-3.png); background-position: -116px -197px; width: 60px; height: 60px; } -.hair_base_9_rainbow { +.hair_base_9_midnight { background-image: url(spritesmith-main-3.png); background-position: -182px -182px; width: 90px; height: 90px; } -.customize-option.hair_base_9_rainbow { +.customize-option.hair_base_9_midnight { background-image: url(spritesmith-main-3.png); background-position: -207px -197px; width: 60px; height: 60px; } -.hair_base_9_red { +.hair_base_9_pblue { background-image: url(spritesmith-main-3.png); - background-position: -321px 0px; + background-position: -273px 0px; width: 90px; height: 90px; } -.customize-option.hair_base_9_red { +.customize-option.hair_base_9_pblue { background-image: url(spritesmith-main-3.png); - background-position: -346px -15px; + background-position: -298px -15px; width: 60px; height: 60px; } -.hair_base_9_snowy { +.hair_base_9_pblue2 { background-image: url(spritesmith-main-3.png); - background-position: -321px -91px; + background-position: -273px -91px; width: 90px; height: 90px; } -.customize-option.hair_base_9_snowy { +.customize-option.hair_base_9_pblue2 { background-image: url(spritesmith-main-3.png); - background-position: -346px -106px; + background-position: -298px -106px; width: 60px; height: 60px; } -.hair_base_9_white { +.hair_base_9_peppermint { background-image: url(spritesmith-main-3.png); - background-position: -321px -182px; + background-position: -273px -182px; width: 90px; height: 90px; } -.customize-option.hair_base_9_white { +.customize-option.hair_base_9_peppermint { background-image: url(spritesmith-main-3.png); - background-position: -346px -197px; + background-position: -298px -197px; width: 60px; height: 60px; } -.hair_base_9_winternight { +.hair_base_9_pgreen { background-image: url(spritesmith-main-3.png); background-position: 0px -273px; width: 90px; height: 90px; } -.customize-option.hair_base_9_winternight { +.customize-option.hair_base_9_pgreen { background-image: url(spritesmith-main-3.png); background-position: -25px -288px; width: 60px; height: 60px; } -.hair_base_9_winterstar { +.hair_base_9_pgreen2 { background-image: url(spritesmith-main-3.png); background-position: -91px -273px; width: 90px; height: 90px; } -.customize-option.hair_base_9_winterstar { +.customize-option.hair_base_9_pgreen2 { background-image: url(spritesmith-main-3.png); background-position: -116px -288px; width: 60px; height: 60px; } -.hair_base_9_yellow { +.hair_base_9_porange { background-image: url(spritesmith-main-3.png); background-position: -182px -273px; width: 90px; height: 90px; } -.customize-option.hair_base_9_yellow { +.customize-option.hair_base_9_porange { background-image: url(spritesmith-main-3.png); background-position: -207px -288px; width: 60px; height: 60px; } -.hair_base_9_zombie { +.hair_base_9_porange2 { background-image: url(spritesmith-main-3.png); background-position: -273px -273px; width: 90px; height: 90px; } -.customize-option.hair_base_9_zombie { +.customize-option.hair_base_9_porange2 { background-image: url(spritesmith-main-3.png); background-position: -298px -288px; width: 60px; height: 60px; } -.hair_beard_1_pblue2 { +.hair_base_9_ppink { background-image: url(spritesmith-main-3.png); - background-position: -412px 0px; + background-position: -364px 0px; width: 90px; height: 90px; } -.customize-option.hair_beard_1_pblue2 { +.customize-option.hair_base_9_ppink { background-image: url(spritesmith-main-3.png); - background-position: -437px -15px; + background-position: -389px -15px; width: 60px; height: 60px; } -.hair_beard_1_pgreen2 { +.hair_base_9_ppink2 { background-image: url(spritesmith-main-3.png); - background-position: -412px -91px; + background-position: -364px -91px; width: 90px; height: 90px; } -.customize-option.hair_beard_1_pgreen2 { +.customize-option.hair_base_9_ppink2 { background-image: url(spritesmith-main-3.png); - background-position: -437px -106px; + background-position: -389px -106px; width: 60px; height: 60px; } -.hair_beard_1_porange2 { +.hair_base_9_ppurple { background-image: url(spritesmith-main-3.png); - background-position: -412px -182px; + background-position: -364px -182px; width: 90px; height: 90px; } -.customize-option.hair_beard_1_porange2 { +.customize-option.hair_base_9_ppurple { background-image: url(spritesmith-main-3.png); - background-position: -437px -197px; + background-position: -389px -197px; width: 60px; height: 60px; } -.hair_beard_1_ppink2 { +.hair_base_9_ppurple2 { background-image: url(spritesmith-main-3.png); - background-position: -412px -273px; + background-position: -364px -273px; width: 90px; height: 90px; } -.customize-option.hair_beard_1_ppink2 { +.customize-option.hair_base_9_ppurple2 { background-image: url(spritesmith-main-3.png); - background-position: -437px -288px; + background-position: -389px -288px; width: 60px; height: 60px; } -.hair_beard_1_ppurple2 { +.hair_base_9_pumpkin { background-image: url(spritesmith-main-3.png); background-position: 0px -364px; width: 90px; height: 90px; } -.customize-option.hair_beard_1_ppurple2 { +.customize-option.hair_base_9_pumpkin { background-image: url(spritesmith-main-3.png); background-position: -25px -379px; width: 60px; height: 60px; } -.hair_beard_1_pyellow2 { +.hair_base_9_purple { background-image: url(spritesmith-main-3.png); background-position: -91px -364px; width: 90px; height: 90px; } -.customize-option.hair_beard_1_pyellow2 { +.customize-option.hair_base_9_purple { background-image: url(spritesmith-main-3.png); background-position: -116px -379px; width: 60px; height: 60px; } -.hair_beard_2_pblue2 { +.hair_base_9_pyellow { background-image: url(spritesmith-main-3.png); background-position: -182px -364px; width: 90px; height: 90px; } -.customize-option.hair_beard_2_pblue2 { +.customize-option.hair_base_9_pyellow { background-image: url(spritesmith-main-3.png); background-position: -207px -379px; width: 60px; height: 60px; } -.hair_beard_2_pgreen2 { +.hair_base_9_pyellow2 { background-image: url(spritesmith-main-3.png); background-position: -273px -364px; width: 90px; height: 90px; } -.customize-option.hair_beard_2_pgreen2 { +.customize-option.hair_base_9_pyellow2 { background-image: url(spritesmith-main-3.png); background-position: -298px -379px; width: 60px; height: 60px; } -.hair_beard_2_porange2 { +.hair_base_9_rainbow { background-image: url(spritesmith-main-3.png); background-position: -364px -364px; width: 90px; height: 90px; } -.customize-option.hair_beard_2_porange2 { +.customize-option.hair_base_9_rainbow { background-image: url(spritesmith-main-3.png); background-position: -389px -379px; width: 60px; height: 60px; } -.hair_beard_2_ppink2 { +.hair_base_9_red { background-image: url(spritesmith-main-3.png); - background-position: -503px 0px; + background-position: -455px 0px; width: 90px; height: 90px; } -.customize-option.hair_beard_2_ppink2 { +.customize-option.hair_base_9_red { background-image: url(spritesmith-main-3.png); - background-position: -528px -15px; + background-position: -480px -15px; width: 60px; height: 60px; } -.hair_beard_2_ppurple2 { +.hair_base_9_snowy { background-image: url(spritesmith-main-3.png); - background-position: -503px -91px; + background-position: -455px -91px; width: 90px; height: 90px; } -.customize-option.hair_beard_2_ppurple2 { +.customize-option.hair_base_9_snowy { background-image: url(spritesmith-main-3.png); - background-position: -528px -106px; + background-position: -480px -106px; width: 60px; height: 60px; } -.hair_beard_2_pyellow2 { +.hair_base_9_white { background-image: url(spritesmith-main-3.png); - background-position: -503px -182px; + background-position: -455px -273px; width: 90px; height: 90px; } -.customize-option.hair_beard_2_pyellow2 { +.customize-option.hair_base_9_white { background-image: url(spritesmith-main-3.png); - background-position: -528px -197px; + background-position: -480px -288px; width: 60px; height: 60px; } -.hair_beard_3_pblue2 { +.hair_base_9_winternight { background-image: url(spritesmith-main-3.png); - background-position: -503px -273px; + background-position: -455px -364px; width: 90px; height: 90px; } -.customize-option.hair_beard_3_pblue2 { +.customize-option.hair_base_9_winternight { background-image: url(spritesmith-main-3.png); - background-position: -528px -288px; + background-position: -480px -379px; width: 60px; height: 60px; } -.hair_beard_3_pgreen2 { - background-image: url(spritesmith-main-3.png); - background-position: -503px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_3_pgreen2 { - background-image: url(spritesmith-main-3.png); - background-position: -528px -379px; - width: 60px; - height: 60px; -} -.hair_beard_3_porange2 { +.hair_base_9_winterstar { background-image: url(spritesmith-main-3.png); background-position: 0px -455px; width: 90px; height: 90px; } -.customize-option.hair_beard_3_porange2 { +.customize-option.hair_base_9_winterstar { background-image: url(spritesmith-main-3.png); background-position: -25px -470px; width: 60px; height: 60px; } -.hair_beard_3_ppink2 { +.hair_base_9_yellow { background-image: url(spritesmith-main-3.png); background-position: -91px -455px; width: 90px; height: 90px; } -.customize-option.hair_beard_3_ppink2 { +.customize-option.hair_base_9_yellow { background-image: url(spritesmith-main-3.png); background-position: -116px -470px; width: 60px; height: 60px; } -.hair_beard_3_ppurple2 { +.hair_base_9_zombie { background-image: url(spritesmith-main-3.png); background-position: -182px -455px; width: 90px; height: 90px; } -.customize-option.hair_beard_3_ppurple2 { +.customize-option.hair_base_9_zombie { background-image: url(spritesmith-main-3.png); background-position: -207px -470px; width: 60px; height: 60px; } -.hair_beard_3_pyellow2 { +.hair_beard_1_pblue2 { background-image: url(spritesmith-main-3.png); background-position: -273px -455px; width: 90px; height: 90px; } -.customize-option.hair_beard_3_pyellow2 { +.customize-option.hair_beard_1_pblue2 { background-image: url(spritesmith-main-3.png); background-position: -298px -470px; width: 60px; height: 60px; } -.hair_mustache_1_pblue2 { +.hair_beard_1_pgreen2 { background-image: url(spritesmith-main-3.png); background-position: -364px -455px; width: 90px; height: 90px; } -.customize-option.hair_mustache_1_pblue2 { +.customize-option.hair_beard_1_pgreen2 { background-image: url(spritesmith-main-3.png); background-position: -389px -470px; width: 60px; height: 60px; } -.hair_mustache_1_pgreen2 { +.hair_beard_1_porange2 { background-image: url(spritesmith-main-3.png); background-position: -455px -455px; width: 90px; height: 90px; } -.customize-option.hair_mustache_1_pgreen2 { +.customize-option.hair_beard_1_porange2 { background-image: url(spritesmith-main-3.png); background-position: -480px -470px; width: 60px; height: 60px; } -.hair_mustache_1_porange2 { +.hair_beard_1_ppink2 { background-image: url(spritesmith-main-3.png); - background-position: -594px 0px; + background-position: -546px 0px; width: 90px; height: 90px; } -.customize-option.hair_mustache_1_porange2 { +.customize-option.hair_beard_1_ppink2 { background-image: url(spritesmith-main-3.png); - background-position: -619px -15px; + background-position: -571px -15px; width: 60px; height: 60px; } -.hair_mustache_1_ppink2 { +.hair_beard_1_ppurple2 { background-image: url(spritesmith-main-3.png); - background-position: -594px -91px; + background-position: -546px -91px; width: 90px; height: 90px; } -.customize-option.hair_mustache_1_ppink2 { +.customize-option.hair_beard_1_ppurple2 { background-image: url(spritesmith-main-3.png); - background-position: -619px -106px; + background-position: -571px -106px; width: 60px; height: 60px; } -.hair_mustache_1_ppurple2 { +.hair_beard_1_pyellow2 { background-image: url(spritesmith-main-3.png); - background-position: -594px -182px; + background-position: -546px -182px; width: 90px; height: 90px; } -.customize-option.hair_mustache_1_ppurple2 { +.customize-option.hair_beard_1_pyellow2 { background-image: url(spritesmith-main-3.png); - background-position: -619px -197px; + background-position: -571px -197px; width: 60px; height: 60px; } -.hair_mustache_1_pyellow2 { +.hair_beard_2_pblue2 { background-image: url(spritesmith-main-3.png); - background-position: -594px -273px; + background-position: -546px -273px; width: 90px; height: 90px; } -.customize-option.hair_mustache_1_pyellow2 { +.customize-option.hair_beard_2_pblue2 { background-image: url(spritesmith-main-3.png); - background-position: -619px -288px; + background-position: -571px -288px; width: 60px; height: 60px; } -.hair_mustache_2_pblue2 { +.hair_beard_2_pgreen2 { background-image: url(spritesmith-main-3.png); - background-position: -594px -364px; + background-position: -546px -364px; width: 90px; height: 90px; } -.customize-option.hair_mustache_2_pblue2 { +.customize-option.hair_beard_2_pgreen2 { background-image: url(spritesmith-main-3.png); - background-position: -619px -379px; + background-position: -571px -379px; width: 60px; height: 60px; } -.hair_mustache_2_pgreen2 { +.hair_beard_2_porange2 { background-image: url(spritesmith-main-3.png); - background-position: -594px -455px; + background-position: -546px -455px; width: 90px; height: 90px; } -.customize-option.hair_mustache_2_pgreen2 { +.customize-option.hair_beard_2_porange2 { background-image: url(spritesmith-main-3.png); - background-position: -619px -470px; + background-position: -571px -470px; width: 60px; height: 60px; } -.hair_mustache_2_porange2 { +.hair_beard_2_ppink2 { background-image: url(spritesmith-main-3.png); background-position: 0px -546px; width: 90px; height: 90px; } -.customize-option.hair_mustache_2_porange2 { +.customize-option.hair_beard_2_ppink2 { background-image: url(spritesmith-main-3.png); background-position: -25px -561px; width: 60px; height: 60px; } -.hair_mustache_2_ppink2 { +.hair_beard_2_ppurple2 { background-image: url(spritesmith-main-3.png); background-position: -91px -546px; width: 90px; height: 90px; } -.customize-option.hair_mustache_2_ppink2 { +.customize-option.hair_beard_2_ppurple2 { background-image: url(spritesmith-main-3.png); background-position: -116px -561px; width: 60px; height: 60px; } -.hair_mustache_2_ppurple2 { +.hair_beard_2_pyellow2 { background-image: url(spritesmith-main-3.png); background-position: -182px -546px; width: 90px; height: 90px; } -.customize-option.hair_mustache_2_ppurple2 { +.customize-option.hair_beard_2_pyellow2 { background-image: url(spritesmith-main-3.png); background-position: -207px -561px; width: 60px; height: 60px; } -.hair_mustache_2_pyellow2 { +.hair_beard_3_pblue2 { background-image: url(spritesmith-main-3.png); background-position: -273px -546px; width: 90px; height: 90px; } -.customize-option.hair_mustache_2_pyellow2 { +.customize-option.hair_beard_3_pblue2 { background-image: url(spritesmith-main-3.png); background-position: -298px -561px; width: 60px; height: 60px; } -.broad_shirt_black { +.hair_beard_3_pgreen2 { background-image: url(spritesmith-main-3.png); background-position: -364px -546px; width: 90px; height: 90px; } -.customize-option.broad_shirt_black { +.customize-option.hair_beard_3_pgreen2 { background-image: url(spritesmith-main-3.png); - background-position: -389px -576px; + background-position: -389px -561px; width: 60px; height: 60px; } -.broad_shirt_blue { +.hair_beard_3_porange2 { background-image: url(spritesmith-main-3.png); background-position: -455px -546px; width: 90px; height: 90px; } -.customize-option.broad_shirt_blue { +.customize-option.hair_beard_3_porange2 { background-image: url(spritesmith-main-3.png); - background-position: -480px -576px; + background-position: -480px -561px; width: 60px; height: 60px; } -.broad_shirt_convict { +.hair_beard_3_ppink2 { background-image: url(spritesmith-main-3.png); background-position: -546px -546px; width: 90px; height: 90px; } -.customize-option.broad_shirt_convict { +.customize-option.hair_beard_3_ppink2 { background-image: url(spritesmith-main-3.png); - background-position: -571px -576px; + background-position: -571px -561px; width: 60px; height: 60px; } -.broad_shirt_cross { +.hair_beard_3_ppurple2 { background-image: url(spritesmith-main-3.png); - background-position: -685px 0px; + background-position: -637px 0px; width: 90px; height: 90px; } -.customize-option.broad_shirt_cross { +.customize-option.hair_beard_3_ppurple2 { background-image: url(spritesmith-main-3.png); - background-position: -710px -30px; + background-position: -662px -15px; width: 60px; height: 60px; } -.broad_shirt_fire { +.hair_beard_3_pyellow2 { background-image: url(spritesmith-main-3.png); - background-position: -685px -91px; + background-position: -637px -91px; width: 90px; height: 90px; } -.customize-option.broad_shirt_fire { +.customize-option.hair_beard_3_pyellow2 { background-image: url(spritesmith-main-3.png); - background-position: -710px -121px; + background-position: -662px -106px; width: 60px; height: 60px; } -.broad_shirt_green { +.hair_mustache_1_pblue2 { background-image: url(spritesmith-main-3.png); - background-position: -685px -182px; + background-position: -637px -182px; width: 90px; height: 90px; } -.customize-option.broad_shirt_green { +.customize-option.hair_mustache_1_pblue2 { background-image: url(spritesmith-main-3.png); - background-position: -710px -212px; + background-position: -662px -197px; width: 60px; height: 60px; } -.broad_shirt_horizon { +.hair_mustache_1_pgreen2 { background-image: url(spritesmith-main-3.png); - background-position: -685px -273px; + background-position: -637px -273px; width: 90px; height: 90px; } -.customize-option.broad_shirt_horizon { +.customize-option.hair_mustache_1_pgreen2 { background-image: url(spritesmith-main-3.png); - background-position: -710px -303px; + background-position: -662px -288px; width: 60px; height: 60px; } -.broad_shirt_ocean { +.hair_mustache_1_porange2 { background-image: url(spritesmith-main-3.png); - background-position: -685px -364px; + background-position: -637px -364px; width: 90px; height: 90px; } -.customize-option.broad_shirt_ocean { +.customize-option.hair_mustache_1_porange2 { background-image: url(spritesmith-main-3.png); - background-position: -710px -394px; + background-position: -662px -379px; width: 60px; height: 60px; } -.broad_shirt_pink { +.hair_mustache_1_ppink2 { background-image: url(spritesmith-main-3.png); - background-position: -685px -455px; + background-position: -637px -455px; width: 90px; height: 90px; } -.customize-option.broad_shirt_pink { +.customize-option.hair_mustache_1_ppink2 { background-image: url(spritesmith-main-3.png); - background-position: -710px -485px; + background-position: -662px -470px; width: 60px; height: 60px; } -.broad_shirt_purple { +.hair_mustache_1_ppurple2 { background-image: url(spritesmith-main-3.png); - background-position: -685px -546px; + background-position: -637px -546px; width: 90px; height: 90px; } -.customize-option.broad_shirt_purple { +.customize-option.hair_mustache_1_ppurple2 { background-image: url(spritesmith-main-3.png); - background-position: -710px -576px; + background-position: -662px -561px; width: 60px; height: 60px; } -.broad_shirt_rainbow { +.hair_mustache_1_pyellow2 { background-image: url(spritesmith-main-3.png); background-position: 0px -637px; width: 90px; height: 90px; } -.customize-option.broad_shirt_rainbow { +.customize-option.hair_mustache_1_pyellow2 { background-image: url(spritesmith-main-3.png); - background-position: -25px -667px; + background-position: -25px -652px; width: 60px; height: 60px; } -.broad_shirt_redblue { +.hair_mustache_2_pblue2 { background-image: url(spritesmith-main-3.png); background-position: -91px -637px; width: 90px; height: 90px; } -.customize-option.broad_shirt_redblue { +.customize-option.hair_mustache_2_pblue2 { background-image: url(spritesmith-main-3.png); - background-position: -116px -667px; + background-position: -116px -652px; width: 60px; height: 60px; } -.broad_shirt_thunder { +.hair_mustache_2_pgreen2 { background-image: url(spritesmith-main-3.png); background-position: -182px -637px; width: 90px; height: 90px; } -.customize-option.broad_shirt_thunder { +.customize-option.hair_mustache_2_pgreen2 { background-image: url(spritesmith-main-3.png); - background-position: -207px -667px; + background-position: -207px -652px; width: 60px; height: 60px; } -.broad_shirt_tropical { +.hair_mustache_2_porange2 { background-image: url(spritesmith-main-3.png); background-position: -273px -637px; width: 90px; height: 90px; } -.customize-option.broad_shirt_tropical { +.customize-option.hair_mustache_2_porange2 { background-image: url(spritesmith-main-3.png); - background-position: -298px -667px; + background-position: -298px -652px; width: 60px; height: 60px; } -.broad_shirt_white { +.hair_mustache_2_ppink2 { background-image: url(spritesmith-main-3.png); background-position: -364px -637px; width: 90px; height: 90px; } -.customize-option.broad_shirt_white { +.customize-option.hair_mustache_2_ppink2 { background-image: url(spritesmith-main-3.png); - background-position: -389px -667px; + background-position: -389px -652px; width: 60px; height: 60px; } -.broad_shirt_yellow { +.hair_mustache_2_ppurple2 { background-image: url(spritesmith-main-3.png); background-position: -455px -637px; width: 90px; height: 90px; } -.customize-option.broad_shirt_yellow { +.customize-option.hair_mustache_2_ppurple2 { background-image: url(spritesmith-main-3.png); - background-position: -480px -667px; + background-position: -480px -652px; width: 60px; height: 60px; } -.broad_shirt_zombie { +.hair_mustache_2_pyellow2 { background-image: url(spritesmith-main-3.png); background-position: -546px -637px; width: 90px; height: 90px; } -.customize-option.broad_shirt_zombie { +.customize-option.hair_mustache_2_pyellow2 { background-image: url(spritesmith-main-3.png); - background-position: -571px -667px; + background-position: -571px -652px; width: 60px; height: 60px; } -.slim_shirt_black { +.broad_shirt_black { background-image: url(spritesmith-main-3.png); background-position: -637px -637px; width: 90px; height: 90px; } -.customize-option.slim_shirt_black { +.customize-option.broad_shirt_black { background-image: url(spritesmith-main-3.png); background-position: -662px -667px; width: 60px; height: 60px; } -.slim_shirt_blue { +.broad_shirt_blue { background-image: url(spritesmith-main-3.png); - background-position: -776px 0px; + background-position: -728px 0px; width: 90px; height: 90px; } -.customize-option.slim_shirt_blue { +.customize-option.broad_shirt_blue { background-image: url(spritesmith-main-3.png); - background-position: -801px -30px; + background-position: -753px -30px; width: 60px; height: 60px; } -.slim_shirt_convict { +.broad_shirt_convict { background-image: url(spritesmith-main-3.png); - background-position: -776px -91px; + background-position: -728px -91px; width: 90px; height: 90px; } -.customize-option.slim_shirt_convict { +.customize-option.broad_shirt_convict { background-image: url(spritesmith-main-3.png); - background-position: -801px -121px; + background-position: -753px -121px; width: 60px; height: 60px; } -.slim_shirt_cross { +.broad_shirt_cross { background-image: url(spritesmith-main-3.png); - background-position: -776px -182px; + background-position: -728px -182px; width: 90px; height: 90px; } -.customize-option.slim_shirt_cross { +.customize-option.broad_shirt_cross { background-image: url(spritesmith-main-3.png); - background-position: -801px -212px; + background-position: -753px -212px; width: 60px; height: 60px; } -.slim_shirt_fire { +.broad_shirt_fire { background-image: url(spritesmith-main-3.png); - background-position: -776px -273px; + background-position: -728px -273px; width: 90px; height: 90px; } -.customize-option.slim_shirt_fire { +.customize-option.broad_shirt_fire { background-image: url(spritesmith-main-3.png); - background-position: -801px -303px; + background-position: -753px -303px; width: 60px; height: 60px; } -.slim_shirt_green { +.broad_shirt_green { background-image: url(spritesmith-main-3.png); - background-position: -776px -364px; + background-position: -728px -364px; width: 90px; height: 90px; } -.customize-option.slim_shirt_green { +.customize-option.broad_shirt_green { background-image: url(spritesmith-main-3.png); - background-position: -801px -394px; + background-position: -753px -394px; width: 60px; height: 60px; } -.slim_shirt_horizon { +.broad_shirt_horizon { background-image: url(spritesmith-main-3.png); - background-position: -776px -455px; + background-position: -728px -455px; width: 90px; height: 90px; } -.customize-option.slim_shirt_horizon { +.customize-option.broad_shirt_horizon { background-image: url(spritesmith-main-3.png); - background-position: -801px -485px; + background-position: -753px -485px; width: 60px; height: 60px; } -.slim_shirt_ocean { +.broad_shirt_ocean { background-image: url(spritesmith-main-3.png); - background-position: -776px -546px; + background-position: -728px -546px; width: 90px; height: 90px; } -.customize-option.slim_shirt_ocean { +.customize-option.broad_shirt_ocean { background-image: url(spritesmith-main-3.png); - background-position: -801px -576px; + background-position: -753px -576px; width: 60px; height: 60px; } -.slim_shirt_pink { +.broad_shirt_pink { background-image: url(spritesmith-main-3.png); - background-position: -776px -637px; + background-position: -728px -637px; width: 90px; height: 90px; } -.customize-option.slim_shirt_pink { +.customize-option.broad_shirt_pink { background-image: url(spritesmith-main-3.png); - background-position: -801px -667px; + background-position: -753px -667px; width: 60px; height: 60px; } -.slim_shirt_purple { +.broad_shirt_purple { background-image: url(spritesmith-main-3.png); background-position: 0px -728px; width: 90px; height: 90px; } -.customize-option.slim_shirt_purple { +.customize-option.broad_shirt_purple { background-image: url(spritesmith-main-3.png); background-position: -25px -758px; width: 60px; height: 60px; } -.slim_shirt_rainbow { +.broad_shirt_rainbow { background-image: url(spritesmith-main-3.png); background-position: -91px -728px; width: 90px; height: 90px; } -.customize-option.slim_shirt_rainbow { +.customize-option.broad_shirt_rainbow { background-image: url(spritesmith-main-3.png); background-position: -116px -758px; width: 60px; height: 60px; } -.slim_shirt_redblue { +.broad_shirt_redblue { background-image: url(spritesmith-main-3.png); background-position: -182px -728px; width: 90px; height: 90px; } -.customize-option.slim_shirt_redblue { +.customize-option.broad_shirt_redblue { background-image: url(spritesmith-main-3.png); background-position: -207px -758px; width: 60px; height: 60px; } -.slim_shirt_thunder { +.broad_shirt_thunder { background-image: url(spritesmith-main-3.png); background-position: -273px -728px; width: 90px; height: 90px; } -.customize-option.slim_shirt_thunder { +.customize-option.broad_shirt_thunder { background-image: url(spritesmith-main-3.png); background-position: -298px -758px; width: 60px; height: 60px; } -.slim_shirt_tropical { +.broad_shirt_tropical { background-image: url(spritesmith-main-3.png); background-position: -364px -728px; width: 90px; height: 90px; } -.customize-option.slim_shirt_tropical { +.customize-option.broad_shirt_tropical { background-image: url(spritesmith-main-3.png); background-position: -389px -758px; width: 60px; height: 60px; } -.slim_shirt_white { +.broad_shirt_white { background-image: url(spritesmith-main-3.png); background-position: -455px -728px; width: 90px; height: 90px; } -.customize-option.slim_shirt_white { +.customize-option.broad_shirt_white { background-image: url(spritesmith-main-3.png); background-position: -480px -758px; width: 60px; height: 60px; } -.slim_shirt_yellow { +.broad_shirt_yellow { background-image: url(spritesmith-main-3.png); background-position: -546px -728px; width: 90px; height: 90px; } -.customize-option.slim_shirt_yellow { +.customize-option.broad_shirt_yellow { background-image: url(spritesmith-main-3.png); background-position: -571px -758px; width: 60px; height: 60px; } -.slim_shirt_zombie { +.broad_shirt_zombie { background-image: url(spritesmith-main-3.png); background-position: -637px -728px; width: 90px; height: 90px; } -.customize-option.slim_shirt_zombie { +.customize-option.broad_shirt_zombie { background-image: url(spritesmith-main-3.png); background-position: -662px -758px; width: 60px; height: 60px; } -.skin_0ff591 { +.slim_shirt_black { background-image: url(spritesmith-main-3.png); background-position: -728px -728px; width: 90px; height: 90px; } -.customize-option.skin_0ff591 { +.customize-option.slim_shirt_black { background-image: url(spritesmith-main-3.png); - background-position: -753px -743px; + background-position: -753px -758px; width: 60px; height: 60px; } -.skin_0ff591_sleep { +.slim_shirt_blue { background-image: url(spritesmith-main-3.png); - background-position: -867px 0px; + background-position: -819px 0px; width: 90px; height: 90px; } -.customize-option.skin_0ff591_sleep { +.customize-option.slim_shirt_blue { background-image: url(spritesmith-main-3.png); - background-position: -892px -15px; + background-position: -844px -30px; width: 60px; height: 60px; } -.skin_2b43f6 { +.slim_shirt_convict { background-image: url(spritesmith-main-3.png); - background-position: -867px -91px; + background-position: -819px -91px; width: 90px; height: 90px; } -.customize-option.skin_2b43f6 { +.customize-option.slim_shirt_convict { background-image: url(spritesmith-main-3.png); - background-position: -892px -106px; + background-position: -844px -121px; width: 60px; height: 60px; } -.skin_2b43f6_sleep { +.slim_shirt_cross { background-image: url(spritesmith-main-3.png); - background-position: -867px -182px; + background-position: -819px -182px; width: 90px; height: 90px; } -.customize-option.skin_2b43f6_sleep { +.customize-option.slim_shirt_cross { background-image: url(spritesmith-main-3.png); - background-position: -892px -197px; + background-position: -844px -212px; width: 60px; height: 60px; } -.skin_6bd049 { +.slim_shirt_fire { background-image: url(spritesmith-main-3.png); - background-position: -867px -273px; + background-position: -819px -273px; width: 90px; height: 90px; } -.customize-option.skin_6bd049 { +.customize-option.slim_shirt_fire { background-image: url(spritesmith-main-3.png); - background-position: -892px -288px; + background-position: -844px -303px; width: 60px; height: 60px; } -.skin_6bd049_sleep { +.slim_shirt_green { background-image: url(spritesmith-main-3.png); - background-position: -867px -364px; + background-position: -819px -364px; width: 90px; height: 90px; } -.customize-option.skin_6bd049_sleep { +.customize-option.slim_shirt_green { background-image: url(spritesmith-main-3.png); - background-position: -892px -379px; + background-position: -844px -394px; width: 60px; height: 60px; } -.skin_800ed0 { +.slim_shirt_horizon { background-image: url(spritesmith-main-3.png); - background-position: -867px -455px; + background-position: -819px -455px; width: 90px; height: 90px; } -.customize-option.skin_800ed0 { +.customize-option.slim_shirt_horizon { background-image: url(spritesmith-main-3.png); - background-position: -892px -470px; + background-position: -844px -485px; width: 60px; height: 60px; } -.skin_800ed0_sleep { +.slim_shirt_ocean { background-image: url(spritesmith-main-3.png); - background-position: -867px -546px; + background-position: -819px -546px; width: 90px; height: 90px; } -.customize-option.skin_800ed0_sleep { +.customize-option.slim_shirt_ocean { background-image: url(spritesmith-main-3.png); - background-position: -892px -561px; + background-position: -844px -576px; width: 60px; height: 60px; } -.skin_915533 { +.slim_shirt_pink { background-image: url(spritesmith-main-3.png); - background-position: -867px -637px; + background-position: -819px -637px; width: 90px; height: 90px; } -.customize-option.skin_915533 { +.customize-option.slim_shirt_pink { background-image: url(spritesmith-main-3.png); - background-position: -892px -652px; + background-position: -844px -667px; width: 60px; height: 60px; } -.skin_915533_sleep { +.slim_shirt_purple { background-image: url(spritesmith-main-3.png); - background-position: -867px -728px; + background-position: -819px -728px; width: 90px; height: 90px; } -.customize-option.skin_915533_sleep { +.customize-option.slim_shirt_purple { background-image: url(spritesmith-main-3.png); - background-position: -892px -743px; + background-position: -844px -758px; width: 60px; height: 60px; } -.skin_98461a { +.slim_shirt_rainbow { background-image: url(spritesmith-main-3.png); background-position: 0px -819px; width: 90px; height: 90px; } -.customize-option.skin_98461a { +.customize-option.slim_shirt_rainbow { background-image: url(spritesmith-main-3.png); - background-position: -25px -834px; + background-position: -25px -849px; width: 60px; height: 60px; } -.skin_98461a_sleep { +.slim_shirt_redblue { background-image: url(spritesmith-main-3.png); background-position: -91px -819px; width: 90px; height: 90px; } -.customize-option.skin_98461a_sleep { +.customize-option.slim_shirt_redblue { background-image: url(spritesmith-main-3.png); - background-position: -116px -834px; + background-position: -116px -849px; width: 60px; height: 60px; } -.skin_bear { +.slim_shirt_thunder { background-image: url(spritesmith-main-3.png); background-position: -182px -819px; width: 90px; height: 90px; } -.customize-option.skin_bear { +.customize-option.slim_shirt_thunder { background-image: url(spritesmith-main-3.png); - background-position: -207px -834px; + background-position: -207px -849px; width: 60px; height: 60px; } -.skin_bear_sleep { +.slim_shirt_tropical { background-image: url(spritesmith-main-3.png); background-position: -273px -819px; width: 90px; height: 90px; } -.customize-option.skin_bear_sleep { +.customize-option.slim_shirt_tropical { background-image: url(spritesmith-main-3.png); - background-position: -298px -834px; + background-position: -298px -849px; width: 60px; height: 60px; } -.skin_c06534 { +.slim_shirt_white { background-image: url(spritesmith-main-3.png); background-position: -364px -819px; width: 90px; height: 90px; } -.customize-option.skin_c06534 { +.customize-option.slim_shirt_white { background-image: url(spritesmith-main-3.png); - background-position: -389px -834px; + background-position: -389px -849px; width: 60px; height: 60px; } -.skin_c06534_sleep { +.slim_shirt_yellow { background-image: url(spritesmith-main-3.png); background-position: -455px -819px; width: 90px; height: 90px; } -.customize-option.skin_c06534_sleep { +.customize-option.slim_shirt_yellow { background-image: url(spritesmith-main-3.png); - background-position: -480px -834px; + background-position: -480px -849px; width: 60px; height: 60px; } -.skin_c3e1dc { +.slim_shirt_zombie { background-image: url(spritesmith-main-3.png); background-position: -546px -819px; width: 90px; height: 90px; } -.customize-option.skin_c3e1dc { +.customize-option.slim_shirt_zombie { background-image: url(spritesmith-main-3.png); - background-position: -571px -834px; + background-position: -571px -849px; width: 60px; height: 60px; } -.skin_c3e1dc_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -637px -819px; - width: 90px; - height: 90px; -} -.customize-option.skin_c3e1dc_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -662px -834px; - width: 60px; - height: 60px; -} -.skin_cactus { +.skin_0ff591 { background-image: url(spritesmith-main-3.png); background-position: -728px -819px; width: 90px; height: 90px; } -.customize-option.skin_cactus { +.customize-option.skin_0ff591 { background-image: url(spritesmith-main-3.png); background-position: -753px -834px; width: 60px; height: 60px; } -.skin_cactus_sleep { +.skin_0ff591_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -637px -819px; + width: 90px; + height: 90px; +} +.customize-option.skin_0ff591_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -662px -834px; + width: 60px; + height: 60px; +} +.skin_2b43f6 { + background-image: url(spritesmith-main-3.png); + background-position: -910px 0px; + width: 90px; + height: 90px; +} +.customize-option.skin_2b43f6 { + background-image: url(spritesmith-main-3.png); + background-position: -935px -15px; + width: 60px; + height: 60px; +} +.skin_2b43f6_sleep { background-image: url(spritesmith-main-3.png); background-position: -819px -819px; width: 90px; height: 90px; } -.customize-option.skin_cactus_sleep { +.customize-option.skin_2b43f6_sleep { background-image: url(spritesmith-main-3.png); background-position: -844px -834px; width: 60px; height: 60px; } -.skin_candycorn { +.skin_6bd049 { background-image: url(spritesmith-main-3.png); - background-position: -958px 0px; + background-position: -910px -182px; width: 90px; height: 90px; } -.customize-option.skin_candycorn { +.customize-option.skin_6bd049 { background-image: url(spritesmith-main-3.png); - background-position: -983px -15px; + background-position: -935px -197px; width: 60px; height: 60px; } -.skin_candycorn_sleep { +.skin_6bd049_sleep { background-image: url(spritesmith-main-3.png); - background-position: -958px -91px; + background-position: -910px -91px; width: 90px; height: 90px; } -.customize-option.skin_candycorn_sleep { +.customize-option.skin_6bd049_sleep { background-image: url(spritesmith-main-3.png); - background-position: -983px -106px; + background-position: -935px -106px; width: 60px; height: 60px; } -.skin_clownfish { +.skin_800ed0 { background-image: url(spritesmith-main-3.png); - background-position: -958px -182px; + background-position: -910px -364px; width: 90px; height: 90px; } -.customize-option.skin_clownfish { +.customize-option.skin_800ed0 { background-image: url(spritesmith-main-3.png); - background-position: -983px -197px; + background-position: -935px -379px; width: 60px; height: 60px; } -.skin_clownfish_sleep { +.skin_800ed0_sleep { background-image: url(spritesmith-main-3.png); - background-position: -958px -273px; + background-position: -910px -273px; width: 90px; height: 90px; } -.customize-option.skin_clownfish_sleep { +.customize-option.skin_800ed0_sleep { background-image: url(spritesmith-main-3.png); - background-position: -983px -288px; + background-position: -935px -288px; width: 60px; height: 60px; } -.skin_d7a9f7 { +.skin_915533 { background-image: url(spritesmith-main-3.png); - background-position: -958px -364px; + background-position: -910px -546px; width: 90px; height: 90px; } -.customize-option.skin_d7a9f7 { +.customize-option.skin_915533 { background-image: url(spritesmith-main-3.png); - background-position: -983px -379px; + background-position: -935px -561px; width: 60px; height: 60px; } -.skin_d7a9f7_sleep { +.skin_915533_sleep { background-image: url(spritesmith-main-3.png); - background-position: -958px -455px; + background-position: -910px -455px; width: 90px; height: 90px; } -.customize-option.skin_d7a9f7_sleep { +.customize-option.skin_915533_sleep { background-image: url(spritesmith-main-3.png); - background-position: -983px -470px; + background-position: -935px -470px; width: 60px; height: 60px; } -.skin_ddc994 { +.skin_98461a { background-image: url(spritesmith-main-3.png); - background-position: -958px -546px; + background-position: -910px -728px; width: 90px; height: 90px; } -.customize-option.skin_ddc994 { +.customize-option.skin_98461a { background-image: url(spritesmith-main-3.png); - background-position: -983px -561px; + background-position: -935px -743px; width: 60px; height: 60px; } -.skin_ddc994_sleep { +.skin_98461a_sleep { background-image: url(spritesmith-main-3.png); - background-position: -958px -637px; + background-position: -910px -637px; width: 90px; height: 90px; } -.customize-option.skin_ddc994_sleep { +.customize-option.skin_98461a_sleep { background-image: url(spritesmith-main-3.png); - background-position: -983px -652px; + background-position: -935px -652px; width: 60px; height: 60px; } -.skin_deepocean { - background-image: url(spritesmith-main-3.png); - background-position: -958px -728px; - width: 90px; - height: 90px; -} -.customize-option.skin_deepocean { - background-image: url(spritesmith-main-3.png); - background-position: -983px -743px; - width: 60px; - height: 60px; -} -.skin_deepocean_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -958px -819px; - width: 90px; - height: 90px; -} -.customize-option.skin_deepocean_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -983px -834px; - width: 60px; - height: 60px; -} -.skin_ea8349 { +.skin_bear { background-image: url(spritesmith-main-3.png); background-position: 0px -910px; width: 90px; height: 90px; } -.customize-option.skin_ea8349 { +.customize-option.skin_bear { background-image: url(spritesmith-main-3.png); background-position: -25px -925px; width: 60px; height: 60px; } -.skin_ea8349_sleep { +.skin_bear_sleep { background-image: url(spritesmith-main-3.png); - background-position: -91px -910px; + background-position: -910px -819px; width: 90px; height: 90px; } -.customize-option.skin_ea8349_sleep { +.customize-option.skin_bear_sleep { background-image: url(spritesmith-main-3.png); - background-position: -116px -925px; + background-position: -935px -834px; width: 60px; height: 60px; } -.skin_eb052b { +.skin_c06534 { background-image: url(spritesmith-main-3.png); background-position: -182px -910px; width: 90px; height: 90px; } -.customize-option.skin_eb052b { +.customize-option.skin_c06534 { background-image: url(spritesmith-main-3.png); background-position: -207px -925px; width: 60px; height: 60px; } -.skin_eb052b_sleep { +.skin_c06534_sleep { background-image: url(spritesmith-main-3.png); - background-position: -273px -910px; + background-position: -91px -910px; width: 90px; height: 90px; } -.customize-option.skin_eb052b_sleep { +.customize-option.skin_c06534_sleep { background-image: url(spritesmith-main-3.png); - background-position: -298px -925px; + background-position: -116px -925px; width: 60px; height: 60px; } -.skin_f5a76e { +.skin_c3e1dc { background-image: url(spritesmith-main-3.png); background-position: -364px -910px; width: 90px; height: 90px; } -.customize-option.skin_f5a76e { +.customize-option.skin_c3e1dc { background-image: url(spritesmith-main-3.png); background-position: -389px -925px; width: 60px; height: 60px; } -.skin_f5a76e_sleep { +.skin_c3e1dc_sleep { background-image: url(spritesmith-main-3.png); - background-position: -455px -910px; + background-position: -273px -910px; width: 90px; height: 90px; } -.customize-option.skin_f5a76e_sleep { +.customize-option.skin_c3e1dc_sleep { background-image: url(spritesmith-main-3.png); - background-position: -480px -925px; + background-position: -298px -925px; width: 60px; height: 60px; } -.skin_f5d70f { +.skin_cactus { background-image: url(spritesmith-main-3.png); background-position: -546px -910px; width: 90px; height: 90px; } -.customize-option.skin_f5d70f { +.customize-option.skin_cactus { background-image: url(spritesmith-main-3.png); background-position: -571px -925px; width: 60px; height: 60px; } -.skin_f5d70f_sleep { +.skin_cactus_sleep { background-image: url(spritesmith-main-3.png); - background-position: -637px -910px; + background-position: -455px -910px; width: 90px; height: 90px; } -.customize-option.skin_f5d70f_sleep { +.customize-option.skin_cactus_sleep { background-image: url(spritesmith-main-3.png); - background-position: -662px -925px; + background-position: -480px -925px; width: 60px; height: 60px; } -.skin_f69922 { +.skin_candycorn { background-image: url(spritesmith-main-3.png); background-position: -728px -910px; width: 90px; height: 90px; } -.customize-option.skin_f69922 { +.customize-option.skin_candycorn { background-image: url(spritesmith-main-3.png); background-position: -753px -925px; width: 60px; height: 60px; } -.skin_f69922_sleep { +.skin_candycorn_sleep { background-image: url(spritesmith-main-3.png); - background-position: -819px -910px; + background-position: -637px -910px; width: 90px; height: 90px; } -.customize-option.skin_f69922_sleep { +.customize-option.skin_candycorn_sleep { background-image: url(spritesmith-main-3.png); - background-position: -844px -925px; + background-position: -662px -925px; width: 60px; height: 60px; } -.skin_fox { +.skin_clownfish { background-image: url(spritesmith-main-3.png); background-position: -910px -910px; width: 90px; height: 90px; } -.customize-option.skin_fox { +.customize-option.skin_clownfish { background-image: url(spritesmith-main-3.png); background-position: -935px -925px; width: 60px; height: 60px; } -.skin_fox_sleep { +.skin_clownfish_sleep { background-image: url(spritesmith-main-3.png); - background-position: -1049px 0px; + background-position: -819px -910px; width: 90px; height: 90px; } -.customize-option.skin_fox_sleep { +.customize-option.skin_clownfish_sleep { background-image: url(spritesmith-main-3.png); - background-position: -1074px -15px; + background-position: -844px -925px; width: 60px; height: 60px; } -.skin_ghost { +.skin_d7a9f7 { background-image: url(spritesmith-main-3.png); - background-position: -1049px -91px; + background-position: -1001px -91px; width: 90px; height: 90px; } -.customize-option.skin_ghost { +.customize-option.skin_d7a9f7 { background-image: url(spritesmith-main-3.png); - background-position: -1074px -106px; + background-position: -1026px -106px; width: 60px; height: 60px; } -.skin_ghost_sleep { +.skin_d7a9f7_sleep { background-image: url(spritesmith-main-3.png); - background-position: -1049px -182px; + background-position: -1001px 0px; width: 90px; height: 90px; } -.customize-option.skin_ghost_sleep { +.customize-option.skin_d7a9f7_sleep { background-image: url(spritesmith-main-3.png); - background-position: -1074px -197px; + background-position: -1026px -15px; width: 60px; height: 60px; } -.skin_lion { +.skin_ddc994 { background-image: url(spritesmith-main-3.png); - background-position: -1049px -273px; + background-position: -1001px -273px; width: 90px; height: 90px; } -.customize-option.skin_lion { +.customize-option.skin_ddc994 { background-image: url(spritesmith-main-3.png); - background-position: -1074px -288px; + background-position: -1026px -288px; width: 60px; height: 60px; } -.skin_lion_sleep { +.skin_ddc994_sleep { background-image: url(spritesmith-main-3.png); - background-position: -1049px -364px; + background-position: -1001px -182px; width: 90px; height: 90px; } -.customize-option.skin_lion_sleep { +.customize-option.skin_ddc994_sleep { background-image: url(spritesmith-main-3.png); - background-position: -1074px -379px; + background-position: -1026px -197px; width: 60px; height: 60px; } -.skin_merblue { +.skin_deepocean { background-image: url(spritesmith-main-3.png); - background-position: -1049px -455px; + background-position: -1001px -455px; width: 90px; height: 90px; } -.customize-option.skin_merblue { +.customize-option.skin_deepocean { background-image: url(spritesmith-main-3.png); - background-position: -1074px -470px; + background-position: -1026px -470px; width: 60px; height: 60px; } -.skin_merblue_sleep { +.skin_deepocean_sleep { background-image: url(spritesmith-main-3.png); - background-position: -1049px -546px; + background-position: -1001px -364px; width: 90px; height: 90px; } -.customize-option.skin_merblue_sleep { +.customize-option.skin_deepocean_sleep { background-image: url(spritesmith-main-3.png); - background-position: -1074px -561px; + background-position: -1026px -379px; width: 60px; height: 60px; } -.skin_mergold { +.skin_ea8349 { background-image: url(spritesmith-main-3.png); - background-position: -1049px -637px; + background-position: -1001px -637px; width: 90px; height: 90px; } -.customize-option.skin_mergold { +.customize-option.skin_ea8349 { background-image: url(spritesmith-main-3.png); - background-position: -1074px -652px; + background-position: -1026px -652px; width: 60px; height: 60px; } -.skin_mergold_sleep { +.skin_ea8349_sleep { background-image: url(spritesmith-main-3.png); - background-position: -1049px -728px; + background-position: -1001px -546px; width: 90px; height: 90px; } -.customize-option.skin_mergold_sleep { +.customize-option.skin_ea8349_sleep { background-image: url(spritesmith-main-3.png); - background-position: -1074px -743px; + background-position: -1026px -561px; width: 60px; height: 60px; } -.skin_mergreen { +.skin_eb052b { background-image: url(spritesmith-main-3.png); - background-position: -1049px -819px; + background-position: -1001px -819px; width: 90px; height: 90px; } -.customize-option.skin_mergreen { +.customize-option.skin_eb052b { background-image: url(spritesmith-main-3.png); - background-position: -1074px -834px; + background-position: -1026px -834px; width: 60px; height: 60px; } -.skin_mergreen_sleep { +.skin_eb052b_sleep { background-image: url(spritesmith-main-3.png); - background-position: -1049px -910px; + background-position: -1001px -728px; width: 90px; height: 90px; } -.customize-option.skin_mergreen_sleep { +.customize-option.skin_eb052b_sleep { background-image: url(spritesmith-main-3.png); - background-position: -1074px -925px; + background-position: -1026px -743px; width: 60px; height: 60px; } -.skin_merruby { +.skin_f5a76e { background-image: url(spritesmith-main-3.png); background-position: 0px -1001px; width: 90px; height: 90px; } -.customize-option.skin_merruby { +.customize-option.skin_f5a76e { background-image: url(spritesmith-main-3.png); background-position: -25px -1016px; width: 60px; height: 60px; } -.skin_merruby_sleep { +.skin_f5a76e_sleep { background-image: url(spritesmith-main-3.png); - background-position: -91px -1001px; + background-position: -1001px -910px; width: 90px; height: 90px; } -.customize-option.skin_merruby_sleep { +.customize-option.skin_f5a76e_sleep { background-image: url(spritesmith-main-3.png); - background-position: -116px -1016px; + background-position: -1026px -925px; width: 60px; height: 60px; } -.skin_monster { +.skin_f5d70f { background-image: url(spritesmith-main-3.png); background-position: -182px -1001px; width: 90px; height: 90px; } -.customize-option.skin_monster { +.customize-option.skin_f5d70f { background-image: url(spritesmith-main-3.png); background-position: -207px -1016px; width: 60px; height: 60px; } -.skin_monster_sleep { +.skin_f5d70f_sleep { background-image: url(spritesmith-main-3.png); - background-position: -273px -1001px; + background-position: -91px -1001px; width: 90px; height: 90px; } -.customize-option.skin_monster_sleep { +.customize-option.skin_f5d70f_sleep { background-image: url(spritesmith-main-3.png); - background-position: -298px -1016px; + background-position: -116px -1016px; width: 60px; height: 60px; } -.skin_ogre { +.skin_f69922 { background-image: url(spritesmith-main-3.png); background-position: -364px -1001px; width: 90px; height: 90px; } -.customize-option.skin_ogre { +.customize-option.skin_f69922 { background-image: url(spritesmith-main-3.png); background-position: -389px -1016px; width: 60px; height: 60px; } -.skin_ogre_sleep { +.skin_f69922_sleep { background-image: url(spritesmith-main-3.png); - background-position: -455px -1001px; + background-position: -273px -1001px; width: 90px; height: 90px; } -.customize-option.skin_ogre_sleep { +.customize-option.skin_f69922_sleep { background-image: url(spritesmith-main-3.png); - background-position: -480px -1016px; + background-position: -298px -1016px; width: 60px; height: 60px; } -.skin_panda { +.skin_fox { background-image: url(spritesmith-main-3.png); background-position: -546px -1001px; width: 90px; height: 90px; } -.customize-option.skin_panda { +.customize-option.skin_fox { background-image: url(spritesmith-main-3.png); background-position: -571px -1016px; width: 60px; height: 60px; } -.skin_panda_sleep { +.skin_fox_sleep { background-image: url(spritesmith-main-3.png); - background-position: -637px -1001px; + background-position: -455px -1001px; width: 90px; height: 90px; } -.customize-option.skin_panda_sleep { +.customize-option.skin_fox_sleep { background-image: url(spritesmith-main-3.png); - background-position: -662px -1016px; + background-position: -480px -1016px; width: 60px; height: 60px; } -.skin_pastelBlue { +.skin_ghost { background-image: url(spritesmith-main-3.png); background-position: -728px -1001px; width: 90px; height: 90px; } -.customize-option.skin_pastelBlue { +.customize-option.skin_ghost { background-image: url(spritesmith-main-3.png); background-position: -753px -1016px; width: 60px; height: 60px; } -.skin_pastelBlue_sleep { +.skin_ghost_sleep { background-image: url(spritesmith-main-3.png); - background-position: -819px -1001px; + background-position: -637px -1001px; width: 90px; height: 90px; } -.customize-option.skin_pastelBlue_sleep { +.customize-option.skin_ghost_sleep { background-image: url(spritesmith-main-3.png); - background-position: -844px -1016px; + background-position: -662px -1016px; width: 60px; height: 60px; } -.skin_pastelGreen { +.skin_lion { background-image: url(spritesmith-main-3.png); background-position: -910px -1001px; width: 90px; height: 90px; } -.customize-option.skin_pastelGreen { +.customize-option.skin_lion { background-image: url(spritesmith-main-3.png); background-position: -935px -1016px; width: 60px; height: 60px; } -.skin_pastelGreen_sleep { +.skin_lion_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -819px -1001px; + width: 90px; + height: 90px; +} +.customize-option.skin_lion_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -844px -1016px; + width: 60px; + height: 60px; +} +.skin_merblue { + background-image: url(spritesmith-main-3.png); + background-position: -1092px 0px; + width: 90px; + height: 90px; +} +.customize-option.skin_merblue { + background-image: url(spritesmith-main-3.png); + background-position: -1117px -15px; + width: 60px; + height: 60px; +} +.skin_merblue_sleep { background-image: url(spritesmith-main-3.png); background-position: -1001px -1001px; width: 90px; height: 90px; } -.customize-option.skin_pastelGreen_sleep { +.customize-option.skin_merblue_sleep { background-image: url(spritesmith-main-3.png); background-position: -1026px -1016px; width: 60px; height: 60px; } -.skin_pastelOrange { +.skin_mergold { background-image: url(spritesmith-main-3.png); - background-position: -1140px 0px; + background-position: -1092px -182px; width: 90px; height: 90px; } -.customize-option.skin_pastelOrange { +.customize-option.skin_mergold { background-image: url(spritesmith-main-3.png); - background-position: -1165px -15px; + background-position: -1117px -197px; width: 60px; height: 60px; } -.skin_pastelOrange_sleep { +.skin_mergold_sleep { background-image: url(spritesmith-main-3.png); - background-position: -1140px -91px; + background-position: -1092px -91px; width: 90px; height: 90px; } -.customize-option.skin_pastelOrange_sleep { +.customize-option.skin_mergold_sleep { background-image: url(spritesmith-main-3.png); - background-position: -1165px -106px; + background-position: -1117px -106px; width: 60px; height: 60px; } -.skin_pastelPink { +.skin_mergreen { background-image: url(spritesmith-main-3.png); - background-position: -1140px -182px; + background-position: -1092px -364px; width: 90px; height: 90px; } -.customize-option.skin_pastelPink { +.customize-option.skin_mergreen { background-image: url(spritesmith-main-3.png); - background-position: -1165px -197px; + background-position: -1117px -379px; width: 60px; height: 60px; } -.skin_pastelPink_sleep { +.skin_mergreen_sleep { background-image: url(spritesmith-main-3.png); - background-position: -1140px -273px; + background-position: -1092px -273px; width: 90px; height: 90px; } -.customize-option.skin_pastelPink_sleep { +.customize-option.skin_mergreen_sleep { background-image: url(spritesmith-main-3.png); - background-position: -1165px -288px; + background-position: -1117px -288px; width: 60px; height: 60px; } -.skin_pastelPurple { +.skin_merruby { background-image: url(spritesmith-main-3.png); - background-position: -1140px -364px; + background-position: -1092px -546px; width: 90px; height: 90px; } -.customize-option.skin_pastelPurple { +.customize-option.skin_merruby { background-image: url(spritesmith-main-3.png); - background-position: -1165px -379px; + background-position: -1117px -561px; width: 60px; height: 60px; } -.skin_pastelPurple_sleep { +.skin_merruby_sleep { background-image: url(spritesmith-main-3.png); - background-position: -1140px -455px; + background-position: -1092px -455px; width: 90px; height: 90px; } -.customize-option.skin_pastelPurple_sleep { +.customize-option.skin_merruby_sleep { background-image: url(spritesmith-main-3.png); - background-position: -1165px -470px; + background-position: -1117px -470px; width: 60px; height: 60px; } -.skin_pastelRainbowChevron { +.skin_monster { background-image: url(spritesmith-main-3.png); - background-position: -1140px -546px; + background-position: -1092px -728px; width: 90px; height: 90px; } -.customize-option.skin_pastelRainbowChevron { +.customize-option.skin_monster { background-image: url(spritesmith-main-3.png); - background-position: -1165px -561px; + background-position: -1117px -743px; width: 60px; height: 60px; } -.skin_pastelRainbowChevron_sleep { +.skin_monster_sleep { background-image: url(spritesmith-main-3.png); - background-position: -1140px -637px; + background-position: -1092px -637px; width: 90px; height: 90px; } -.customize-option.skin_pastelRainbowChevron_sleep { +.customize-option.skin_monster_sleep { background-image: url(spritesmith-main-3.png); - background-position: -1165px -652px; + background-position: -1117px -652px; width: 60px; height: 60px; } -.skin_pastelRainbowDiagonal { +.skin_ogre { background-image: url(spritesmith-main-3.png); - background-position: -1140px -728px; + background-position: -1092px -910px; width: 90px; height: 90px; } -.customize-option.skin_pastelRainbowDiagonal { +.customize-option.skin_ogre { background-image: url(spritesmith-main-3.png); - background-position: -1165px -743px; + background-position: -1117px -925px; width: 60px; height: 60px; } -.skin_pastelRainbowDiagonal_sleep { +.skin_ogre_sleep { background-image: url(spritesmith-main-3.png); - background-position: -1140px -819px; + background-position: -1092px -819px; width: 90px; height: 90px; } -.customize-option.skin_pastelRainbowDiagonal_sleep { +.customize-option.skin_ogre_sleep { background-image: url(spritesmith-main-3.png); - background-position: -1165px -834px; + background-position: -1117px -834px; width: 60px; height: 60px; } -.skin_pastelYellow { - background-image: url(spritesmith-main-3.png); - background-position: -1140px -910px; - width: 90px; - height: 90px; -} -.customize-option.skin_pastelYellow { - background-image: url(spritesmith-main-3.png); - background-position: -1165px -925px; - width: 60px; - height: 60px; -} -.skin_pastelYellow_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -1140px -1001px; - width: 90px; - height: 90px; -} -.customize-option.skin_pastelYellow_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -1165px -1016px; - width: 60px; - height: 60px; -} -.skin_pig { +.skin_panda { background-image: url(spritesmith-main-3.png); background-position: 0px -1092px; width: 90px; height: 90px; } -.customize-option.skin_pig { +.customize-option.skin_panda { background-image: url(spritesmith-main-3.png); background-position: -25px -1107px; width: 60px; height: 60px; } -.skin_pig_sleep { +.skin_panda_sleep { background-image: url(spritesmith-main-3.png); - background-position: -91px -1092px; + background-position: -1092px -1001px; width: 90px; height: 90px; } -.customize-option.skin_pig_sleep { +.customize-option.skin_panda_sleep { background-image: url(spritesmith-main-3.png); - background-position: -116px -1107px; + background-position: -1117px -1016px; width: 60px; height: 60px; } -.skin_pumpkin { +.skin_pastelBlue { background-image: url(spritesmith-main-3.png); background-position: -182px -1092px; width: 90px; height: 90px; } -.customize-option.skin_pumpkin { +.customize-option.skin_pastelBlue { background-image: url(spritesmith-main-3.png); background-position: -207px -1107px; width: 60px; height: 60px; } -.skin_pumpkin2 { +.skin_pastelBlue_sleep { background-image: url(spritesmith-main-3.png); - background-position: -273px -1092px; + background-position: -91px -1092px; width: 90px; height: 90px; } -.customize-option.skin_pumpkin2 { +.customize-option.skin_pastelBlue_sleep { background-image: url(spritesmith-main-3.png); - background-position: -298px -1107px; + background-position: -116px -1107px; width: 60px; height: 60px; } -.skin_pumpkin2_sleep { +.skin_pastelGreen { background-image: url(spritesmith-main-3.png); background-position: -364px -1092px; width: 90px; height: 90px; } -.customize-option.skin_pumpkin2_sleep { +.customize-option.skin_pastelGreen { background-image: url(spritesmith-main-3.png); background-position: -389px -1107px; width: 60px; height: 60px; } -.skin_pumpkin_sleep { +.skin_pastelGreen_sleep { background-image: url(spritesmith-main-3.png); - background-position: -455px -1092px; + background-position: -273px -1092px; width: 90px; height: 90px; } -.customize-option.skin_pumpkin_sleep { +.customize-option.skin_pastelGreen_sleep { background-image: url(spritesmith-main-3.png); - background-position: -480px -1107px; + background-position: -298px -1107px; width: 60px; height: 60px; } -.skin_rainbow { +.skin_pastelOrange { background-image: url(spritesmith-main-3.png); background-position: -546px -1092px; width: 90px; height: 90px; } -.customize-option.skin_rainbow { +.customize-option.skin_pastelOrange { background-image: url(spritesmith-main-3.png); background-position: -571px -1107px; width: 60px; height: 60px; } -.skin_rainbow_sleep { +.skin_pastelOrange_sleep { background-image: url(spritesmith-main-3.png); - background-position: -637px -1092px; + background-position: -455px -1092px; width: 90px; height: 90px; } -.customize-option.skin_rainbow_sleep { +.customize-option.skin_pastelOrange_sleep { background-image: url(spritesmith-main-3.png); - background-position: -662px -1107px; + background-position: -480px -1107px; width: 60px; height: 60px; } -.skin_reptile { +.skin_pastelPink { background-image: url(spritesmith-main-3.png); background-position: -728px -1092px; width: 90px; height: 90px; } -.customize-option.skin_reptile { +.customize-option.skin_pastelPink { background-image: url(spritesmith-main-3.png); background-position: -753px -1107px; width: 60px; height: 60px; } -.skin_reptile_sleep { +.skin_pastelPink_sleep { background-image: url(spritesmith-main-3.png); - background-position: -819px -1092px; + background-position: -637px -1092px; width: 90px; height: 90px; } -.customize-option.skin_reptile_sleep { +.customize-option.skin_pastelPink_sleep { background-image: url(spritesmith-main-3.png); - background-position: -844px -1107px; + background-position: -662px -1107px; width: 60px; height: 60px; } -.skin_shadow { +.skin_pastelPurple { background-image: url(spritesmith-main-3.png); background-position: -910px -1092px; width: 90px; height: 90px; } -.customize-option.skin_shadow { +.customize-option.skin_pastelPurple { background-image: url(spritesmith-main-3.png); background-position: -935px -1107px; width: 60px; height: 60px; } -.skin_shadow2 { +.skin_pastelPurple_sleep { background-image: url(spritesmith-main-3.png); - background-position: -1001px -1092px; + background-position: -819px -1092px; width: 90px; height: 90px; } -.customize-option.skin_shadow2 { +.customize-option.skin_pastelPurple_sleep { background-image: url(spritesmith-main-3.png); - background-position: -1026px -1107px; + background-position: -844px -1107px; width: 60px; height: 60px; } -.skin_shadow2_sleep { +.skin_pastelRainbowChevron { background-image: url(spritesmith-main-3.png); background-position: -1092px -1092px; width: 90px; height: 90px; } -.customize-option.skin_shadow2_sleep { +.customize-option.skin_pastelRainbowChevron { background-image: url(spritesmith-main-3.png); background-position: -1117px -1107px; width: 60px; height: 60px; } -.skin_shadow_sleep { +.skin_pastelRainbowChevron_sleep { background-image: url(spritesmith-main-3.png); - background-position: -1231px 0px; + background-position: -1001px -1092px; width: 90px; height: 90px; } -.customize-option.skin_shadow_sleep { +.customize-option.skin_pastelRainbowChevron_sleep { background-image: url(spritesmith-main-3.png); - background-position: -1256px -15px; + background-position: -1026px -1107px; width: 60px; height: 60px; } -.skin_shark { +.skin_pastelRainbowDiagonal { background-image: url(spritesmith-main-3.png); - background-position: -1231px -91px; + background-position: -1183px -91px; width: 90px; height: 90px; } -.customize-option.skin_shark { +.customize-option.skin_pastelRainbowDiagonal { background-image: url(spritesmith-main-3.png); - background-position: -1256px -106px; + background-position: -1208px -106px; width: 60px; height: 60px; } -.skin_shark_sleep { +.skin_pastelRainbowDiagonal_sleep { background-image: url(spritesmith-main-3.png); - background-position: -1231px -182px; + background-position: -1183px 0px; width: 90px; height: 90px; } -.customize-option.skin_shark_sleep { +.customize-option.skin_pastelRainbowDiagonal_sleep { background-image: url(spritesmith-main-3.png); - background-position: -1256px -197px; + background-position: -1208px -15px; width: 60px; height: 60px; } -.skin_skeleton { +.skin_pastelYellow { background-image: url(spritesmith-main-3.png); - background-position: -1231px -273px; + background-position: -1183px -273px; width: 90px; height: 90px; } -.customize-option.skin_skeleton { +.customize-option.skin_pastelYellow { background-image: url(spritesmith-main-3.png); - background-position: -1256px -288px; + background-position: -1208px -288px; width: 60px; height: 60px; } -.skin_skeleton2 { +.skin_pastelYellow_sleep { background-image: url(spritesmith-main-3.png); - background-position: -1231px -364px; + background-position: -1183px -182px; width: 90px; height: 90px; } -.customize-option.skin_skeleton2 { +.customize-option.skin_pastelYellow_sleep { background-image: url(spritesmith-main-3.png); - background-position: -1256px -379px; + background-position: -1208px -197px; width: 60px; height: 60px; } -.skin_skeleton2_sleep { +.skin_pig { background-image: url(spritesmith-main-3.png); - background-position: -1231px -455px; + background-position: -1183px -455px; width: 90px; height: 90px; } -.customize-option.skin_skeleton2_sleep { +.customize-option.skin_pig { background-image: url(spritesmith-main-3.png); - background-position: -1256px -470px; + background-position: -1208px -470px; width: 60px; height: 60px; } -.skin_skeleton_sleep { +.skin_pig_sleep { background-image: url(spritesmith-main-3.png); - background-position: -1231px -546px; + background-position: -1183px -364px; width: 90px; height: 90px; } -.customize-option.skin_skeleton_sleep { +.customize-option.skin_pig_sleep { background-image: url(spritesmith-main-3.png); - background-position: -1256px -561px; + background-position: -1208px -379px; width: 60px; height: 60px; } -.skin_tiger { +.skin_pumpkin { background-image: url(spritesmith-main-3.png); - background-position: -1231px -637px; + background-position: -1183px -637px; width: 90px; height: 90px; } -.customize-option.skin_tiger { +.customize-option.skin_pumpkin { background-image: url(spritesmith-main-3.png); - background-position: -1256px -652px; + background-position: -1208px -652px; width: 60px; height: 60px; } -.skin_tiger_sleep { +.skin_pumpkin2 { background-image: url(spritesmith-main-3.png); - background-position: -1231px -728px; + background-position: -1183px -819px; width: 90px; height: 90px; } -.customize-option.skin_tiger_sleep { +.customize-option.skin_pumpkin2 { background-image: url(spritesmith-main-3.png); - background-position: -1256px -743px; + background-position: -1208px -834px; width: 60px; height: 60px; } -.skin_transparent { +.skin_pumpkin2_sleep { background-image: url(spritesmith-main-3.png); - background-position: -1231px -819px; + background-position: -1183px -728px; width: 90px; height: 90px; } -.customize-option.skin_transparent { +.customize-option.skin_pumpkin2_sleep { background-image: url(spritesmith-main-3.png); - background-position: -1256px -834px; + background-position: -1208px -743px; width: 60px; height: 60px; } -.skin_transparent_sleep { +.skin_pumpkin_sleep { background-image: url(spritesmith-main-3.png); - background-position: -1231px -910px; + background-position: -1183px -546px; width: 90px; height: 90px; } -.customize-option.skin_transparent_sleep { +.customize-option.skin_pumpkin_sleep { background-image: url(spritesmith-main-3.png); - background-position: -1256px -925px; + background-position: -1208px -561px; width: 60px; height: 60px; } -.skin_tropicalwater { +.skin_rainbow { background-image: url(spritesmith-main-3.png); - background-position: -1231px -1001px; + background-position: -1183px -1001px; width: 90px; height: 90px; } -.customize-option.skin_tropicalwater { +.customize-option.skin_rainbow { background-image: url(spritesmith-main-3.png); - background-position: -1256px -1016px; + background-position: -1208px -1016px; width: 60px; height: 60px; } -.skin_tropicalwater_sleep { +.skin_rainbow_sleep { background-image: url(spritesmith-main-3.png); - background-position: -1231px -1092px; + background-position: -1183px -910px; width: 90px; height: 90px; } -.customize-option.skin_tropicalwater_sleep { +.customize-option.skin_rainbow_sleep { background-image: url(spritesmith-main-3.png); - background-position: -1256px -1107px; + background-position: -1208px -925px; width: 60px; height: 60px; } -.skin_wolf { +.skin_reptile { background-image: url(spritesmith-main-3.png); background-position: 0px -1183px; width: 90px; height: 90px; } -.customize-option.skin_wolf { +.customize-option.skin_reptile { background-image: url(spritesmith-main-3.png); background-position: -25px -1198px; width: 60px; height: 60px; } -.skin_wolf_sleep { +.skin_reptile_sleep { background-image: url(spritesmith-main-3.png); - background-position: -91px -1183px; + background-position: -1183px -1092px; width: 90px; height: 90px; } -.customize-option.skin_wolf_sleep { +.customize-option.skin_reptile_sleep { background-image: url(spritesmith-main-3.png); - background-position: -116px -1198px; + background-position: -1208px -1107px; width: 60px; height: 60px; } -.skin_zombie { +.skin_shadow { background-image: url(spritesmith-main-3.png); background-position: -182px -1183px; width: 90px; height: 90px; } -.customize-option.skin_zombie { +.customize-option.skin_shadow { background-image: url(spritesmith-main-3.png); background-position: -207px -1198px; width: 60px; height: 60px; } -.skin_zombie2 { - background-image: url(spritesmith-main-3.png); - background-position: -273px -1183px; - width: 90px; - height: 90px; -} -.customize-option.skin_zombie2 { - background-image: url(spritesmith-main-3.png); - background-position: -298px -1198px; - width: 60px; - height: 60px; -} -.skin_zombie2_sleep { +.skin_shadow2 { background-image: url(spritesmith-main-3.png); background-position: -364px -1183px; width: 90px; height: 90px; } -.customize-option.skin_zombie2_sleep { +.customize-option.skin_shadow2 { background-image: url(spritesmith-main-3.png); background-position: -389px -1198px; width: 60px; height: 60px; } -.skin_zombie_sleep { +.skin_shadow2_sleep { background-image: url(spritesmith-main-3.png); - background-position: -455px -1183px; + background-position: -273px -1183px; width: 90px; height: 90px; } -.customize-option.skin_zombie_sleep { +.customize-option.skin_shadow2_sleep { background-image: url(spritesmith-main-3.png); - background-position: -480px -1198px; + background-position: -298px -1198px; width: 60px; height: 60px; } -.broad_armor_armoire_barristerRobes { +.skin_shadow_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -91px -1183px; + width: 90px; + height: 90px; +} +.customize-option.skin_shadow_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -116px -1198px; + width: 60px; + height: 60px; +} +.skin_shark { background-image: url(spritesmith-main-3.png); background-position: -546px -1183px; width: 90px; height: 90px; } -.broad_armor_armoire_crystalCrescentRobes { +.customize-option.skin_shark { background-image: url(spritesmith-main-3.png); - background-position: -637px -1183px; + background-position: -571px -1198px; + width: 60px; + height: 60px; +} +.skin_shark_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -455px -1183px; width: 90px; height: 90px; } -.broad_armor_armoire_dragonTamerArmor { +.customize-option.skin_shark_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -480px -1198px; + width: 60px; + height: 60px; +} +.skin_skeleton { background-image: url(spritesmith-main-3.png); background-position: -728px -1183px; width: 90px; height: 90px; } -.broad_armor_armoire_gladiatorArmor { +.customize-option.skin_skeleton { background-image: url(spritesmith-main-3.png); - background-position: -819px -1183px; - width: 90px; - height: 90px; + background-position: -753px -1198px; + width: 60px; + height: 60px; } -.broad_armor_armoire_goldenToga { +.skin_skeleton2 { background-image: url(spritesmith-main-3.png); background-position: -910px -1183px; width: 90px; height: 90px; } -.broad_armor_armoire_hornedIronArmor { +.customize-option.skin_skeleton2 { background-image: url(spritesmith-main-3.png); - background-position: -273px -1547px; + background-position: -935px -1198px; + width: 60px; + height: 60px; +} +.skin_skeleton2_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -819px -1183px; width: 90px; height: 90px; } -.broad_armor_armoire_jesterCostume { +.customize-option.skin_skeleton2_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -844px -1198px; + width: 60px; + height: 60px; +} +.skin_skeleton_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -637px -1183px; + width: 90px; + height: 90px; +} +.customize-option.skin_skeleton_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -662px -1198px; + width: 60px; + height: 60px; +} +.skin_tiger { background-image: url(spritesmith-main-3.png); background-position: -1092px -1183px; width: 90px; height: 90px; } -.broad_armor_armoire_lunarArmor { +.customize-option.skin_tiger { + background-image: url(spritesmith-main-3.png); + background-position: -1117px -1198px; + width: 60px; + height: 60px; +} +.skin_tiger_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -1001px -1183px; + width: 90px; + height: 90px; +} +.customize-option.skin_tiger_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -1026px -1198px; + width: 60px; + height: 60px; +} +.skin_transparent { + background-image: url(spritesmith-main-3.png); + background-position: 0px 0px; + width: 90px; + height: 90px; +} +.customize-option.skin_transparent { + background-image: url(spritesmith-main-3.png); + background-position: -25px -15px; + width: 60px; + height: 60px; +} +.skin_transparent_sleep { background-image: url(spritesmith-main-3.png); background-position: -1183px -1183px; width: 90px; height: 90px; } -.broad_armor_armoire_plagueDoctorOvercoat { +.customize-option.skin_transparent_sleep { background-image: url(spritesmith-main-3.png); - background-position: -1322px 0px; + background-position: -1208px -1198px; + width: 60px; + height: 60px; +} +.skin_tropicalwater { + background-image: url(spritesmith-main-3.png); + background-position: -1274px -182px; width: 90px; height: 90px; } -.broad_armor_armoire_rancherRobes { +.customize-option.skin_tropicalwater { background-image: url(spritesmith-main-3.png); - background-position: -1322px -91px; + background-position: -1299px -197px; + width: 60px; + height: 60px; +} +.skin_tropicalwater_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -1274px -91px; width: 90px; height: 90px; } -.broad_armor_armoire_royalRobes { +.customize-option.skin_tropicalwater_sleep { background-image: url(spritesmith-main-3.png); - background-position: -1322px -182px; + background-position: -1299px -106px; + width: 60px; + height: 60px; +} +.skin_wolf { + background-image: url(spritesmith-main-3.png); + background-position: -1274px -364px; width: 90px; height: 90px; } -.broad_armor_armoire_shepherdRobes { +.customize-option.skin_wolf { background-image: url(spritesmith-main-3.png); - background-position: -1322px -273px; + background-position: -1299px -379px; + width: 60px; + height: 60px; +} +.skin_wolf_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -1274px -273px; width: 90px; height: 90px; } -.eyewear_armoire_plagueDoctorMask { +.customize-option.skin_wolf_sleep { background-image: url(spritesmith-main-3.png); - background-position: -1322px -364px; + background-position: -1299px -288px; + width: 60px; + height: 60px; +} +.skin_zombie { + background-image: url(spritesmith-main-3.png); + background-position: -1274px -546px; width: 90px; height: 90px; } -.head_armoire_barristerWig { +.customize-option.skin_zombie { background-image: url(spritesmith-main-3.png); - background-position: -1322px -455px; + background-position: -1299px -561px; + width: 60px; + height: 60px; +} +.skin_zombie2 { + background-image: url(spritesmith-main-3.png); + background-position: -1274px -728px; width: 90px; height: 90px; } -.head_armoire_blackCat { +.customize-option.skin_zombie2 { background-image: url(spritesmith-main-3.png); - background-position: -1322px -546px; + background-position: -1299px -743px; + width: 60px; + height: 60px; +} +.skin_zombie2_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -1274px -637px; width: 90px; height: 90px; } -.head_armoire_blueFloppyHat { +.customize-option.skin_zombie2_sleep { background-image: url(spritesmith-main-3.png); - background-position: -1322px -637px; + background-position: -1299px -652px; + width: 60px; + height: 60px; +} +.skin_zombie_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -1274px -455px; width: 90px; height: 90px; } -.head_armoire_blueHairbow { +.customize-option.skin_zombie_sleep { background-image: url(spritesmith-main-3.png); - background-position: -1322px -728px; + background-position: -1299px -470px; + width: 60px; + height: 60px; +} +.broad_armor_armoire_barristerRobes { + background-image: url(spritesmith-main-3.png); + background-position: -1274px -819px; width: 90px; height: 90px; } -.head_armoire_crystalCrescentHat { +.broad_armor_armoire_basicArcherArmor { background-image: url(spritesmith-main-3.png); - background-position: -1322px -819px; + background-position: -1274px -910px; width: 90px; height: 90px; } -.head_armoire_dragonTamerHelm { +.broad_armor_armoire_crystalCrescentRobes { background-image: url(spritesmith-main-3.png); - background-position: -1322px -910px; + background-position: -1274px -1001px; width: 90px; height: 90px; } -.head_armoire_gladiatorHelm { +.broad_armor_armoire_dragonTamerArmor { background-image: url(spritesmith-main-3.png); - background-position: -1322px -1001px; + background-position: -1274px -1092px; width: 90px; height: 90px; } -.head_armoire_goldenLaurels { +.broad_armor_armoire_gladiatorArmor { background-image: url(spritesmith-main-3.png); - background-position: -1322px -1092px; + background-position: -1274px -1183px; width: 90px; height: 90px; } -.head_armoire_hornedIronHelm { - background-image: url(spritesmith-main-3.png); - background-position: -1322px -1183px; - width: 90px; - height: 90px; -} -.head_armoire_jesterCap { +.broad_armor_armoire_goldenToga { background-image: url(spritesmith-main-3.png); background-position: 0px -1274px; width: 90px; height: 90px; } -.head_armoire_lunarCrown { +.broad_armor_armoire_hornedIronArmor { background-image: url(spritesmith-main-3.png); background-position: -91px -1274px; width: 90px; height: 90px; } -.head_armoire_orangeCat { +.broad_armor_armoire_jesterCostume { background-image: url(spritesmith-main-3.png); background-position: -182px -1274px; width: 90px; height: 90px; } -.head_armoire_plagueDoctorHat { +.broad_armor_armoire_lunarArmor { background-image: url(spritesmith-main-3.png); background-position: -273px -1274px; width: 90px; height: 90px; } -.head_armoire_rancherHat { +.broad_armor_armoire_minerOveralls { background-image: url(spritesmith-main-3.png); background-position: -364px -1274px; width: 90px; height: 90px; } -.head_armoire_redFloppyHat { +.broad_armor_armoire_plagueDoctorOvercoat { background-image: url(spritesmith-main-3.png); background-position: -455px -1274px; width: 90px; height: 90px; } -.head_armoire_redHairbow { +.broad_armor_armoire_rancherRobes { background-image: url(spritesmith-main-3.png); background-position: -546px -1274px; width: 90px; height: 90px; } -.head_armoire_royalCrown { +.broad_armor_armoire_royalRobes { background-image: url(spritesmith-main-3.png); background-position: -637px -1274px; width: 90px; height: 90px; } -.head_armoire_shepherdHeaddress { +.broad_armor_armoire_shepherdRobes { background-image: url(spritesmith-main-3.png); background-position: -728px -1274px; width: 90px; height: 90px; } -.head_armoire_violetFloppyHat { +.eyewear_armoire_plagueDoctorMask { background-image: url(spritesmith-main-3.png); background-position: -819px -1274px; width: 90px; height: 90px; } -.head_armoire_yellowHairbow { - background-image: url(spritesmith-main-3.png); - background-position: -910px -1274px; - width: 90px; - height: 90px; -} -.shield_armoire_dragonTamerShield { - background-image: url(spritesmith-main-3.png); - background-position: -1001px -1274px; - width: 90px; - height: 90px; -} -.shield_armoire_gladiatorShield { - background-image: url(spritesmith-main-3.png); - background-position: -1092px -1274px; - width: 90px; - height: 90px; -} -.shield_armoire_midnightShield { - background-image: url(spritesmith-main-3.png); - background-position: -1183px -1274px; - width: 90px; - height: 90px; -} -.shield_armoire_royalCane { - background-image: url(spritesmith-main-3.png); - background-position: -1274px -1274px; - width: 90px; - height: 90px; -} -.shop_armor_armoire_barristerRobes { - background-image: url(spritesmith-main-3.png); - background-position: -897px -1588px; - width: 40px; - height: 40px; -} -.shop_armor_armoire_crystalCrescentRobes { - background-image: url(spritesmith-main-3.png); - background-position: -856px -1588px; - width: 40px; - height: 40px; -} -.shop_armor_armoire_dragonTamerArmor { - background-image: url(spritesmith-main-3.png); - background-position: -815px -1588px; - width: 40px; - height: 40px; -} -.shop_armor_armoire_gladiatorArmor { - background-image: url(spritesmith-main-3.png); - background-position: -774px -1588px; - width: 40px; - height: 40px; -} -.shop_armor_armoire_goldenToga { - background-image: url(spritesmith-main-3.png); - background-position: -733px -1588px; - width: 40px; - height: 40px; -} -.shop_armor_armoire_hornedIronArmor { - background-image: url(spritesmith-main-3.png); - background-position: -692px -1588px; - width: 40px; - height: 40px; -} -.shop_armor_armoire_jesterCostume { - background-image: url(spritesmith-main-3.png); - background-position: -651px -1588px; - width: 40px; - height: 40px; -} -.shop_armor_armoire_lunarArmor { - background-image: url(spritesmith-main-3.png); - background-position: -610px -1588px; - width: 40px; - height: 40px; -} -.shop_armor_armoire_plagueDoctorOvercoat { - background-image: url(spritesmith-main-3.png); - background-position: -569px -1588px; - width: 40px; - height: 40px; -} -.shop_armor_armoire_rancherRobes { - background-image: url(spritesmith-main-3.png); - background-position: -528px -1588px; - width: 40px; - height: 40px; -} -.shop_armor_armoire_royalRobes { - background-image: url(spritesmith-main-3.png); - background-position: -487px -1588px; - width: 40px; - height: 40px; -} -.shop_armor_armoire_shepherdRobes { - background-image: url(spritesmith-main-3.png); - background-position: -446px -1588px; - width: 40px; - height: 40px; -} -.shop_eyewear_armoire_plagueDoctorMask { - background-image: url(spritesmith-main-3.png); - background-position: -1594px -1547px; - width: 40px; - height: 40px; -} -.shop_head_armoire_barristerWig { - background-image: url(spritesmith-main-3.png); - background-position: -1553px -1547px; - width: 40px; - height: 40px; -} -.shop_head_armoire_blackCat { - background-image: url(spritesmith-main-3.png); - background-position: -1512px -1547px; - width: 40px; - height: 40px; -} -.shop_head_armoire_blueFloppyHat { - background-image: url(spritesmith-main-3.png); - background-position: -1471px -1547px; - width: 40px; - height: 40px; -} -.shop_head_armoire_blueHairbow { - background-image: url(spritesmith-main-3.png); - background-position: -1430px -1547px; - width: 40px; - height: 40px; -} -.shop_head_armoire_crystalCrescentHat { - background-image: url(spritesmith-main-3.png); - background-position: -1389px -1547px; - width: 40px; - height: 40px; -} -.shop_head_armoire_dragonTamerHelm { - background-image: url(spritesmith-main-3.png); - background-position: -1348px -1547px; - width: 40px; - height: 40px; -} -.shop_head_armoire_gladiatorHelm { - background-image: url(spritesmith-main-3.png); - background-position: -1307px -1547px; - width: 40px; - height: 40px; -} -.shop_head_armoire_goldenLaurels { - background-image: url(spritesmith-main-3.png); - background-position: -1266px -1547px; - width: 40px; - height: 40px; -} -.shop_head_armoire_hornedIronHelm { - background-image: url(spritesmith-main-3.png); - background-position: -1225px -1547px; - width: 40px; - height: 40px; -} -.shop_head_armoire_jesterCap { - background-image: url(spritesmith-main-3.png); - background-position: -1184px -1547px; - width: 40px; - height: 40px; -} -.shop_head_armoire_lunarCrown { - background-image: url(spritesmith-main-3.png); - background-position: -1143px -1547px; - width: 40px; - height: 40px; -} -.shop_head_armoire_orangeCat { - background-image: url(spritesmith-main-3.png); - background-position: -1102px -1547px; - width: 40px; - height: 40px; -} -.shop_head_armoire_plagueDoctorHat { - background-image: url(spritesmith-main-3.png); - background-position: -1061px -1547px; - width: 40px; - height: 40px; -} -.shop_head_armoire_rancherHat { - background-image: url(spritesmith-main-3.png); - background-position: -1020px -1547px; - width: 40px; - height: 40px; -} -.shop_head_armoire_redFloppyHat { - background-image: url(spritesmith-main-3.png); - background-position: -979px -1547px; - width: 40px; - height: 40px; -} -.shop_head_armoire_redHairbow { - background-image: url(spritesmith-main-3.png); - background-position: -938px -1547px; - width: 40px; - height: 40px; -} -.shop_head_armoire_royalCrown { - background-image: url(spritesmith-main-3.png); - background-position: -897px -1547px; - width: 40px; - height: 40px; -} -.shop_head_armoire_shepherdHeaddress { - background-image: url(spritesmith-main-3.png); - background-position: -856px -1547px; - width: 40px; - height: 40px; -} -.shop_head_armoire_violetFloppyHat { - background-image: url(spritesmith-main-3.png); - background-position: -815px -1547px; - width: 40px; - height: 40px; -} -.shop_head_armoire_yellowHairbow { - background-image: url(spritesmith-main-3.png); - background-position: -774px -1547px; - width: 40px; - height: 40px; -} -.shop_shield_armoire_dragonTamerShield { - background-image: url(spritesmith-main-3.png); - background-position: -733px -1547px; - width: 40px; - height: 40px; -} -.shop_shield_armoire_gladiatorShield { - background-image: url(spritesmith-main-3.png); - background-position: -938px -1588px; - width: 40px; - height: 40px; -} -.shop_shield_armoire_midnightShield { - background-image: url(spritesmith-main-3.png); - background-position: -651px -1547px; - width: 40px; - height: 40px; -} -.shop_shield_armoire_royalCane { - background-image: url(spritesmith-main-3.png); - background-position: -610px -1547px; - width: 40px; - height: 40px; -} -.shop_weapon_armoire_barristerGavel { - background-image: url(spritesmith-main-3.png); - background-position: -728px -678px; - width: 40px; - height: 40px; -} -.shop_weapon_armoire_basicCrossbow { - background-image: url(spritesmith-main-3.png); - background-position: -728px -637px; - width: 40px; - height: 40px; -} -.shop_weapon_armoire_batWand { - background-image: url(spritesmith-main-3.png); - background-position: -637px -587px; - width: 40px; - height: 40px; -} -.shop_weapon_armoire_blueLongbow { - background-image: url(spritesmith-main-3.png); - background-position: -637px -546px; - width: 40px; - height: 40px; -} -.shop_weapon_armoire_crystalCrescentStaff { - background-image: url(spritesmith-main-3.png); - background-position: -546px -496px; - width: 40px; - height: 40px; -} -.shop_weapon_armoire_glowingSpear { - background-image: url(spritesmith-main-3.png); - background-position: -546px -455px; - width: 40px; - height: 40px; -} -.shop_weapon_armoire_goldWingStaff { - background-image: url(spritesmith-main-3.png); - background-position: -455px -405px; - width: 40px; - height: 40px; -} -.shop_weapon_armoire_ironCrook { - background-image: url(spritesmith-main-3.png); - background-position: -455px -364px; - width: 40px; - height: 40px; -} -.shop_weapon_armoire_jesterBaton { - background-image: url(spritesmith-main-3.png); - background-position: -364px -314px; - width: 40px; - height: 40px; -} -.shop_weapon_armoire_lunarSceptre { - background-image: url(spritesmith-main-3.png); - background-position: -364px -273px; - width: 40px; - height: 40px; -} -.shop_weapon_armoire_mythmakerSword { - background-image: url(spritesmith-main-3.png); - background-position: -273px -223px; - width: 40px; - height: 40px; -} -.shop_weapon_armoire_rancherLasso { - background-image: url(spritesmith-main-3.png); - background-position: -692px -1547px; - width: 40px; - height: 40px; -} -.shop_weapon_armoire_shepherdsCrook { - background-image: url(spritesmith-main-3.png); - background-position: -273px -182px; - width: 40px; - height: 40px; -} -.slim_armor_armoire_barristerRobes { - background-image: url(spritesmith-main-3.png); - background-position: -273px -1456px; - width: 90px; - height: 90px; -} -.slim_armor_armoire_crystalCrescentRobes { - background-image: url(spritesmith-main-3.png); - background-position: -364px -1456px; - width: 90px; - height: 90px; -} -.slim_armor_armoire_dragonTamerArmor { - background-image: url(spritesmith-main-3.png); - background-position: -455px -1456px; - width: 90px; - height: 90px; -} -.slim_armor_armoire_gladiatorArmor { - background-image: url(spritesmith-main-3.png); - background-position: -546px -1456px; - width: 90px; - height: 90px; -} -.slim_armor_armoire_goldenToga { - background-image: url(spritesmith-main-3.png); - background-position: -637px -1456px; - width: 90px; - height: 90px; -} -.slim_armor_armoire_hornedIronArmor { - background-image: url(spritesmith-main-3.png); - background-position: -728px -1456px; - width: 90px; - height: 90px; -} -.slim_armor_armoire_jesterCostume { - background-image: url(spritesmith-main-3.png); - background-position: -819px -1456px; - width: 90px; - height: 90px; -} -.slim_armor_armoire_lunarArmor { - background-image: url(spritesmith-main-3.png); - background-position: -910px -1456px; - width: 90px; - height: 90px; -} -.slim_armor_armoire_plagueDoctorOvercoat { - background-image: url(spritesmith-main-3.png); - background-position: -1001px -1456px; - width: 90px; - height: 90px; -} -.slim_armor_armoire_rancherRobes { - background-image: url(spritesmith-main-3.png); - background-position: -1092px -1456px; - width: 90px; - height: 90px; -} -.slim_armor_armoire_royalRobes { - background-image: url(spritesmith-main-3.png); - background-position: -1183px -1456px; - width: 90px; - height: 90px; -} -.slim_armor_armoire_shepherdRobes { - background-image: url(spritesmith-main-3.png); - background-position: -1274px -1456px; - width: 90px; - height: 90px; -} -.weapon_armoire_barristerGavel { - background-image: url(spritesmith-main-3.png); - background-position: -1365px -1456px; - width: 90px; - height: 90px; -} -.weapon_armoire_basicCrossbow { - background-image: url(spritesmith-main-3.png); - background-position: -1456px -1456px; - width: 90px; - height: 90px; -} -.weapon_armoire_batWand { - background-image: url(spritesmith-main-3.png); - background-position: -1595px 0px; - width: 90px; - height: 90px; -} -.weapon_armoire_blueLongbow { - background-image: url(spritesmith-main-3.png); - background-position: -1595px -91px; - width: 90px; - height: 90px; -} -.weapon_armoire_crystalCrescentStaff { - background-image: url(spritesmith-main-3.png); - background-position: -1595px -182px; - width: 90px; - height: 90px; -} -.weapon_armoire_glowingSpear { - background-image: url(spritesmith-main-3.png); - background-position: -1595px -273px; - width: 90px; - height: 90px; -} -.weapon_armoire_goldWingStaff { - background-image: url(spritesmith-main-3.png); - background-position: -1595px -364px; - width: 90px; - height: 90px; -} -.weapon_armoire_ironCrook { - background-image: url(spritesmith-main-3.png); - background-position: -1595px -455px; - width: 90px; - height: 90px; -} -.weapon_armoire_jesterBaton { - background-image: url(spritesmith-main-3.png); - background-position: -1595px -546px; - width: 90px; - height: 90px; -} -.weapon_armoire_lunarSceptre { - background-image: url(spritesmith-main-3.png); - background-position: -1595px -637px; - width: 90px; - height: 90px; -} -.weapon_armoire_mythmakerSword { - background-image: url(spritesmith-main-3.png); - background-position: -1595px -728px; - width: 90px; - height: 90px; -} -.weapon_armoire_rancherLasso { - background-image: url(spritesmith-main-3.png); - background-position: -1595px -819px; - width: 90px; - height: 90px; -} -.weapon_armoire_shepherdsCrook { - background-image: url(spritesmith-main-3.png); - background-position: -1595px -910px; - width: 90px; - height: 90px; -} -.broad_armor_healer_1 { - background-image: url(spritesmith-main-3.png); - background-position: -1595px -1001px; - width: 90px; - height: 90px; -} -.broad_armor_healer_2 { - background-image: url(spritesmith-main-3.png); - background-position: -1595px -1092px; - width: 90px; - height: 90px; -} -.broad_armor_healer_3 { - background-image: url(spritesmith-main-3.png); - background-position: -1595px -1183px; - width: 90px; - height: 90px; -} -.broad_armor_healer_4 { - background-image: url(spritesmith-main-3.png); - background-position: -1595px -1274px; - width: 90px; - height: 90px; -} -.broad_armor_healer_5 { - background-image: url(spritesmith-main-3.png); - background-position: -1595px -1365px; - width: 90px; - height: 90px; -} -.broad_armor_rogue_1 { - background-image: url(spritesmith-main-3.png); - background-position: -1595px -1456px; - width: 90px; - height: 90px; -} -.broad_armor_rogue_2 { - background-image: url(spritesmith-main-3.png); - background-position: 0px -1547px; - width: 90px; - height: 90px; -} -.broad_armor_rogue_3 { - background-image: url(spritesmith-main-3.png); - background-position: -91px -1547px; - width: 90px; - height: 90px; -} -.broad_armor_rogue_4 { - background-image: url(spritesmith-main-3.png); - background-position: -182px -1547px; - width: 90px; - height: 90px; -} -.broad_armor_rogue_5 { - background-image: url(spritesmith-main-3.png); - background-position: -182px -1456px; - width: 90px; - height: 90px; -} -.broad_armor_special_2 { - background-image: url(spritesmith-main-3.png); - background-position: -91px -1456px; - width: 90px; - height: 90px; -} -.broad_armor_special_finnedOceanicArmor { - background-image: url(spritesmith-main-3.png); - background-position: 0px -1456px; - width: 90px; - height: 90px; -} -.broad_armor_warrior_1 { - background-image: url(spritesmith-main-3.png); - background-position: -1504px -1365px; - width: 90px; - height: 90px; -} -.broad_armor_warrior_2 { - background-image: url(spritesmith-main-3.png); - background-position: -1504px -1274px; - width: 90px; - height: 90px; -} -.broad_armor_warrior_3 { - background-image: url(spritesmith-main-3.png); - background-position: -1504px -1183px; - width: 90px; - height: 90px; -} -.broad_armor_warrior_4 { - background-image: url(spritesmith-main-3.png); - background-position: -1504px -1092px; - width: 90px; - height: 90px; -} -.broad_armor_warrior_5 { - background-image: url(spritesmith-main-3.png); - background-position: -1504px -1001px; - width: 90px; - height: 90px; -} -.broad_armor_wizard_1 { - background-image: url(spritesmith-main-3.png); - background-position: -1504px -910px; - width: 90px; - height: 90px; -} -.broad_armor_wizard_2 { - background-image: url(spritesmith-main-3.png); - background-position: -1504px -819px; - width: 90px; - height: 90px; -} -.broad_armor_wizard_3 { - background-image: url(spritesmith-main-3.png); - background-position: -1504px -728px; - width: 90px; - height: 90px; -} -.broad_armor_wizard_4 { - background-image: url(spritesmith-main-3.png); - background-position: -1504px -637px; - width: 90px; - height: 90px; -} -.broad_armor_wizard_5 { - background-image: url(spritesmith-main-3.png); - background-position: -1504px -546px; - width: 90px; - height: 90px; -} -.shop_armor_healer_1 { - background-image: url(spritesmith-main-3.png); - background-position: -819px -728px; - width: 40px; - height: 40px; -} -.shop_armor_healer_2 { - background-image: url(spritesmith-main-3.png); - background-position: -819px -769px; - width: 40px; - height: 40px; -} -.shop_armor_healer_3 { - background-image: url(spritesmith-main-3.png); - background-position: -910px -819px; - width: 40px; - height: 40px; -} -.shop_armor_healer_4 { - background-image: url(spritesmith-main-3.png); - background-position: -910px -860px; - width: 40px; - height: 40px; -} -.shop_armor_healer_5 { - background-image: url(spritesmith-main-3.png); - background-position: -1001px -910px; - width: 40px; - height: 40px; -} -.shop_armor_rogue_1 { - background-image: url(spritesmith-main-3.png); - background-position: -1001px -951px; - width: 40px; - height: 40px; -} -.shop_armor_rogue_2 { - background-image: url(spritesmith-main-3.png); - background-position: -1092px -1001px; - width: 40px; - height: 40px; -} -.shop_armor_rogue_3 { - background-image: url(spritesmith-main-3.png); - background-position: -1092px -1042px; - width: 40px; - height: 40px; -} -.shop_armor_rogue_4 { - background-image: url(spritesmith-main-3.png); - background-position: -1183px -1092px; - width: 40px; - height: 40px; -} -.shop_armor_rogue_5 { - background-image: url(spritesmith-main-3.png); - background-position: -1183px -1133px; - width: 40px; - height: 40px; -} -.shop_armor_special_0 { - background-image: url(spritesmith-main-3.png); - background-position: -1274px -1183px; - width: 40px; - height: 40px; -} -.shop_armor_special_1 { - background-image: url(spritesmith-main-3.png); - background-position: -1274px -1224px; - width: 40px; - height: 40px; -} -.shop_armor_special_2 { - background-image: url(spritesmith-main-3.png); - background-position: -1365px -1274px; - width: 40px; - height: 40px; -} -.shop_armor_special_finnedOceanicArmor { - background-image: url(spritesmith-main-3.png); - background-position: -1365px -1315px; - width: 40px; - height: 40px; -} -.shop_armor_warrior_1 { - background-image: url(spritesmith-main-3.png); - background-position: -1456px -1365px; - width: 40px; - height: 40px; -} -.shop_armor_warrior_2 { - background-image: url(spritesmith-main-3.png); - background-position: -1456px -1406px; - width: 40px; - height: 40px; -} -.shop_armor_warrior_3 { - background-image: url(spritesmith-main-3.png); - background-position: -1547px -1456px; - width: 40px; - height: 40px; -} -.shop_armor_warrior_4 { - background-image: url(spritesmith-main-3.png); - background-position: -1547px -1497px; - width: 40px; - height: 40px; -} -.shop_armor_warrior_5 { - background-image: url(spritesmith-main-3.png); - background-position: -364px -1547px; - width: 40px; - height: 40px; -} -.shop_armor_wizard_1 { - background-image: url(spritesmith-main-3.png); - background-position: -405px -1547px; - width: 40px; - height: 40px; -} -.shop_armor_wizard_2 { - background-image: url(spritesmith-main-3.png); - background-position: -446px -1547px; - width: 40px; - height: 40px; -} -.shop_armor_wizard_3 { - background-image: url(spritesmith-main-3.png); - background-position: -487px -1547px; - width: 40px; - height: 40px; -} -.shop_armor_wizard_4 { - background-image: url(spritesmith-main-3.png); - background-position: -528px -1547px; - width: 40px; - height: 40px; -} -.shop_armor_wizard_5 { - background-image: url(spritesmith-main-3.png); - background-position: -569px -1547px; - width: 40px; - height: 40px; -} -.slim_armor_healer_1 { - background-image: url(spritesmith-main-3.png); - background-position: -1504px -455px; - width: 90px; - height: 90px; -} -.slim_armor_healer_2 { - background-image: url(spritesmith-main-3.png); - background-position: -1504px -364px; - width: 90px; - height: 90px; -} -.slim_armor_healer_3 { - background-image: url(spritesmith-main-3.png); - background-position: -1504px -273px; - width: 90px; - height: 90px; -} -.slim_armor_healer_4 { - background-image: url(spritesmith-main-3.png); - background-position: -1504px -182px; - width: 90px; - height: 90px; -} -.slim_armor_healer_5 { - background-image: url(spritesmith-main-3.png); - background-position: -1504px -91px; - width: 90px; - height: 90px; -} -.slim_armor_rogue_1 { - background-image: url(spritesmith-main-3.png); - background-position: -1504px 0px; - width: 90px; - height: 90px; -} -.slim_armor_rogue_2 { - background-image: url(spritesmith-main-3.png); - background-position: -1365px -1365px; - width: 90px; - height: 90px; -} -.slim_armor_rogue_3 { - background-image: url(spritesmith-main-3.png); - background-position: -1274px -1365px; - width: 90px; - height: 90px; -} -.slim_armor_rogue_4 { - background-image: url(spritesmith-main-3.png); - background-position: -1183px -1365px; - width: 90px; - height: 90px; -} -.slim_armor_rogue_5 { - background-image: url(spritesmith-main-3.png); - background-position: -1092px -1365px; - width: 90px; - height: 90px; -} -.slim_armor_special_2 { - background-image: url(spritesmith-main-3.png); - background-position: -1001px -1365px; - width: 90px; - height: 90px; -} -.slim_armor_special_finnedOceanicArmor { - background-image: url(spritesmith-main-3.png); - background-position: -910px -1365px; - width: 90px; - height: 90px; -} -.slim_armor_warrior_1 { - background-image: url(spritesmith-main-3.png); - background-position: -819px -1365px; - width: 90px; - height: 90px; -} -.slim_armor_warrior_2 { - background-image: url(spritesmith-main-3.png); - background-position: -728px -1365px; - width: 90px; - height: 90px; -} -.slim_armor_warrior_3 { - background-image: url(spritesmith-main-3.png); - background-position: -637px -1365px; - width: 90px; - height: 90px; -} -.slim_armor_warrior_4 { - background-image: url(spritesmith-main-3.png); - background-position: -546px -1365px; - width: 90px; - height: 90px; -} -.slim_armor_warrior_5 { - background-image: url(spritesmith-main-3.png); - background-position: -455px -1365px; - width: 90px; - height: 90px; -} -.slim_armor_wizard_1 { - background-image: url(spritesmith-main-3.png); - background-position: -364px -1365px; - width: 90px; - height: 90px; -} -.slim_armor_wizard_2 { - background-image: url(spritesmith-main-3.png); - background-position: -273px -1365px; - width: 90px; - height: 90px; -} -.slim_armor_wizard_3 { +.headAccessory_armoire_comicalArrow { background-image: url(spritesmith-main-3.png); background-position: -182px -1365px; width: 90px; height: 90px; } -.slim_armor_wizard_4 { +.head_armoire_barristerWig { background-image: url(spritesmith-main-3.png); - background-position: -91px -1365px; + background-position: -910px -1274px; width: 90px; height: 90px; } -.slim_armor_wizard_5 { +.head_armoire_basicArcherCap { + background-image: url(spritesmith-main-3.png); + background-position: -1001px -1274px; + width: 90px; + height: 90px; +} +.head_armoire_blackCat { + background-image: url(spritesmith-main-3.png); + background-position: -1092px -1274px; + width: 90px; + height: 90px; +} +.head_armoire_blueFloppyHat { + background-image: url(spritesmith-main-3.png); + background-position: -1183px -1274px; + width: 90px; + height: 90px; +} +.head_armoire_blueHairbow { + background-image: url(spritesmith-main-3.png); + background-position: -1274px -1274px; + width: 90px; + height: 90px; +} +.head_armoire_crystalCrescentHat { + background-image: url(spritesmith-main-3.png); + background-position: -1365px 0px; + width: 90px; + height: 90px; +} +.head_armoire_dragonTamerHelm { + background-image: url(spritesmith-main-3.png); + background-position: -1365px -91px; + width: 90px; + height: 90px; +} +.head_armoire_gladiatorHelm { + background-image: url(spritesmith-main-3.png); + background-position: -1365px -182px; + width: 90px; + height: 90px; +} +.head_armoire_goldenLaurels { + background-image: url(spritesmith-main-3.png); + background-position: -1365px -273px; + width: 90px; + height: 90px; +} +.head_armoire_hornedIronHelm { + background-image: url(spritesmith-main-3.png); + background-position: -1365px -364px; + width: 90px; + height: 90px; +} +.head_armoire_jesterCap { + background-image: url(spritesmith-main-3.png); + background-position: -1365px -455px; + width: 90px; + height: 90px; +} +.head_armoire_lunarCrown { + background-image: url(spritesmith-main-3.png); + background-position: -1365px -546px; + width: 90px; + height: 90px; +} +.head_armoire_minerHelmet { + background-image: url(spritesmith-main-3.png); + background-position: -1365px -637px; + width: 90px; + height: 90px; +} +.head_armoire_orangeCat { + background-image: url(spritesmith-main-3.png); + background-position: -1365px -728px; + width: 90px; + height: 90px; +} +.head_armoire_plagueDoctorHat { + background-image: url(spritesmith-main-3.png); + background-position: -1365px -819px; + width: 90px; + height: 90px; +} +.head_armoire_rancherHat { + background-image: url(spritesmith-main-3.png); + background-position: -1365px -910px; + width: 90px; + height: 90px; +} +.head_armoire_redFloppyHat { + background-image: url(spritesmith-main-3.png); + background-position: -1365px -1001px; + width: 90px; + height: 90px; +} +.head_armoire_redHairbow { + background-image: url(spritesmith-main-3.png); + background-position: -1365px -1092px; + width: 90px; + height: 90px; +} +.head_armoire_royalCrown { + background-image: url(spritesmith-main-3.png); + background-position: -1365px -1183px; + width: 90px; + height: 90px; +} +.head_armoire_shepherdHeaddress { + background-image: url(spritesmith-main-3.png); + background-position: -1365px -1274px; + width: 90px; + height: 90px; +} +.head_armoire_violetFloppyHat { background-image: url(spritesmith-main-3.png); background-position: 0px -1365px; width: 90px; height: 90px; } -.broad_armor_special_birthday { +.head_armoire_yellowHairbow { background-image: url(spritesmith-main-3.png); - background-position: -1413px -1274px; + background-position: -91px -1365px; width: 90px; height: 90px; } -.broad_armor_special_birthday2015 { +.shield_armoire_dragonTamerShield { background-image: url(spritesmith-main-3.png); - background-position: -1413px -1183px; + background-position: -273px -1365px; width: 90px; height: 90px; } -.broad_armor_special_birthday2016 { +.shield_armoire_gladiatorShield { background-image: url(spritesmith-main-3.png); - background-position: -1413px -1092px; + background-position: -364px -1365px; width: 90px; height: 90px; } -.shop_armor_special_birthday { +.shield_armoire_midnightShield { background-image: url(spritesmith-main-3.png); - background-position: -1635px -1547px; + background-position: -455px -1365px; + width: 90px; + height: 90px; +} +.shield_armoire_mysticLamp { + background-image: url(spritesmith-main-3.png); + background-position: -546px -1365px; + width: 90px; + height: 90px; +} +.shield_armoire_royalCane { + background-image: url(spritesmith-main-3.png); + background-position: -637px -1365px; + width: 90px; + height: 90px; +} +.shop_armor_armoire_barristerRobes { + background-image: url(spritesmith-main-3.png); + background-position: -1638px -738px; width: 40px; height: 40px; } -.shop_armor_special_birthday2015 { +.shop_armor_armoire_basicArcherArmor { background-image: url(spritesmith-main-3.png); - background-position: -364px -1588px; + background-position: -1638px -697px; width: 40px; height: 40px; } -.shop_armor_special_birthday2016 { +.shop_armor_armoire_crystalCrescentRobes { + background-image: url(spritesmith-main-3.png); + background-position: -1638px -656px; + width: 40px; + height: 40px; +} +.shop_armor_armoire_dragonTamerArmor { + background-image: url(spritesmith-main-3.png); + background-position: -1638px -615px; + width: 40px; + height: 40px; +} +.shop_armor_armoire_gladiatorArmor { + background-image: url(spritesmith-main-3.png); + background-position: -1638px -574px; + width: 40px; + height: 40px; +} +.shop_armor_armoire_goldenToga { + background-image: url(spritesmith-main-3.png); + background-position: -1638px -533px; + width: 40px; + height: 40px; +} +.shop_armor_armoire_hornedIronArmor { + background-image: url(spritesmith-main-3.png); + background-position: -1638px -492px; + width: 40px; + height: 40px; +} +.shop_armor_armoire_jesterCostume { + background-image: url(spritesmith-main-3.png); + background-position: -1638px -451px; + width: 40px; + height: 40px; +} +.shop_armor_armoire_lunarArmor { + background-image: url(spritesmith-main-3.png); + background-position: -1638px -410px; + width: 40px; + height: 40px; +} +.shop_armor_armoire_minerOveralls { + background-image: url(spritesmith-main-3.png); + background-position: -1638px -369px; + width: 40px; + height: 40px; +} +.shop_armor_armoire_plagueDoctorOvercoat { + background-image: url(spritesmith-main-3.png); + background-position: -979px -1588px; + width: 40px; + height: 40px; +} +.shop_armor_armoire_rancherRobes { + background-image: url(spritesmith-main-3.png); + background-position: -938px -1588px; + width: 40px; + height: 40px; +} +.shop_armor_armoire_royalRobes { + background-image: url(spritesmith-main-3.png); + background-position: -897px -1588px; + width: 40px; + height: 40px; +} +.shop_armor_armoire_shepherdRobes { + background-image: url(spritesmith-main-3.png); + background-position: -856px -1588px; + width: 40px; + height: 40px; +} +.shop_eyewear_armoire_plagueDoctorMask { + background-image: url(spritesmith-main-3.png); + background-position: -815px -1588px; + width: 40px; + height: 40px; +} +.shop_headAccessory_armoire_comicalArrow { + background-image: url(spritesmith-main-3.png); + background-position: -1143px -1547px; + width: 40px; + height: 40px; +} +.shop_head_armoire_barristerWig { + background-image: url(spritesmith-main-3.png); + background-position: -774px -1588px; + width: 40px; + height: 40px; +} +.shop_head_armoire_basicArcherCap { + background-image: url(spritesmith-main-3.png); + background-position: -1638px -779px; + width: 40px; + height: 40px; +} +.shop_head_armoire_blackCat { + background-image: url(spritesmith-main-3.png); + background-position: -692px -1588px; + width: 40px; + height: 40px; +} +.shop_head_armoire_blueFloppyHat { + background-image: url(spritesmith-main-3.png); + background-position: -651px -1588px; + width: 40px; + height: 40px; +} +.shop_head_armoire_blueHairbow { + background-image: url(spritesmith-main-3.png); + background-position: -610px -1588px; + width: 40px; + height: 40px; +} +.shop_head_armoire_crystalCrescentHat { + background-image: url(spritesmith-main-3.png); + background-position: -569px -1588px; + width: 40px; + height: 40px; +} +.shop_head_armoire_dragonTamerHelm { + background-image: url(spritesmith-main-3.png); + background-position: -528px -1588px; + width: 40px; + height: 40px; +} +.shop_head_armoire_gladiatorHelm { + background-image: url(spritesmith-main-3.png); + background-position: -487px -1588px; + width: 40px; + height: 40px; +} +.shop_head_armoire_goldenLaurels { + background-image: url(spritesmith-main-3.png); + background-position: -446px -1588px; + width: 40px; + height: 40px; +} +.shop_head_armoire_hornedIronHelm { background-image: url(spritesmith-main-3.png); background-position: -405px -1588px; width: 40px; height: 40px; } -.slim_armor_special_birthday { +.shop_head_armoire_jesterCap { background-image: url(spritesmith-main-3.png); - background-position: -1413px -1001px; + background-position: -364px -1588px; + width: 40px; + height: 40px; +} +.shop_head_armoire_lunarCrown { + background-image: url(spritesmith-main-3.png); + background-position: -1594px -1547px; + width: 40px; + height: 40px; +} +.shop_head_armoire_minerHelmet { + background-image: url(spritesmith-main-3.png); + background-position: -1553px -1547px; + width: 40px; + height: 40px; +} +.shop_head_armoire_orangeCat { + background-image: url(spritesmith-main-3.png); + background-position: -1512px -1547px; + width: 40px; + height: 40px; +} +.shop_head_armoire_plagueDoctorHat { + background-image: url(spritesmith-main-3.png); + background-position: -1471px -1547px; + width: 40px; + height: 40px; +} +.shop_head_armoire_rancherHat { + background-image: url(spritesmith-main-3.png); + background-position: -1430px -1547px; + width: 40px; + height: 40px; +} +.shop_head_armoire_redFloppyHat { + background-image: url(spritesmith-main-3.png); + background-position: -1389px -1547px; + width: 40px; + height: 40px; +} +.shop_head_armoire_redHairbow { + background-image: url(spritesmith-main-3.png); + background-position: -1348px -1547px; + width: 40px; + height: 40px; +} +.shop_head_armoire_royalCrown { + background-image: url(spritesmith-main-3.png); + background-position: -1307px -1547px; + width: 40px; + height: 40px; +} +.shop_head_armoire_shepherdHeaddress { + background-image: url(spritesmith-main-3.png); + background-position: -1266px -1547px; + width: 40px; + height: 40px; +} +.shop_head_armoire_violetFloppyHat { + background-image: url(spritesmith-main-3.png); + background-position: -1225px -1547px; + width: 40px; + height: 40px; +} +.shop_head_armoire_yellowHairbow { + background-image: url(spritesmith-main-3.png); + background-position: -1184px -1547px; + width: 40px; + height: 40px; +} +.shop_shield_armoire_dragonTamerShield { + background-image: url(spritesmith-main-3.png); + background-position: -1102px -1547px; + width: 40px; + height: 40px; +} +.shop_shield_armoire_gladiatorShield { + background-image: url(spritesmith-main-3.png); + background-position: -1061px -1547px; + width: 40px; + height: 40px; +} +.shop_shield_armoire_midnightShield { + background-image: url(spritesmith-main-3.png); + background-position: -1020px -1547px; + width: 40px; + height: 40px; +} +.shop_shield_armoire_mysticLamp { + background-image: url(spritesmith-main-3.png); + background-position: -979px -1547px; + width: 40px; + height: 40px; +} +.shop_shield_armoire_royalCane { + background-image: url(spritesmith-main-3.png); + background-position: -938px -1547px; + width: 40px; + height: 40px; +} +.shop_weapon_armoire_barristerGavel { + background-image: url(spritesmith-main-3.png); + background-position: -897px -1547px; + width: 40px; + height: 40px; +} +.shop_weapon_armoire_basicCrossbow { + background-image: url(spritesmith-main-3.png); + background-position: -856px -1547px; + width: 40px; + height: 40px; +} +.shop_weapon_armoire_basicLongbow { + background-image: url(spritesmith-main-3.png); + background-position: -815px -1547px; + width: 40px; + height: 40px; +} +.shop_weapon_armoire_batWand { + background-image: url(spritesmith-main-3.png); + background-position: -774px -1547px; + width: 40px; + height: 40px; +} +.shop_weapon_armoire_blueLongbow { + background-image: url(spritesmith-main-3.png); + background-position: -733px -1547px; + width: 40px; + height: 40px; +} +.shop_weapon_armoire_crystalCrescentStaff { + background-image: url(spritesmith-main-3.png); + background-position: -692px -1547px; + width: 40px; + height: 40px; +} +.shop_weapon_armoire_glowingSpear { + background-image: url(spritesmith-main-3.png); + background-position: -651px -1547px; + width: 40px; + height: 40px; +} +.shop_weapon_armoire_goldWingStaff { + background-image: url(spritesmith-main-3.png); + background-position: -610px -1547px; + width: 40px; + height: 40px; +} +.shop_weapon_armoire_ironCrook { + background-image: url(spritesmith-main-3.png); + background-position: -569px -1547px; + width: 40px; + height: 40px; +} +.shop_weapon_armoire_jesterBaton { + background-image: url(spritesmith-main-3.png); + background-position: -528px -1547px; + width: 40px; + height: 40px; +} +.shop_weapon_armoire_lunarSceptre { + background-image: url(spritesmith-main-3.png); + background-position: -487px -1547px; + width: 40px; + height: 40px; +} +.shop_weapon_armoire_miningPickax { + background-image: url(spritesmith-main-3.png); + background-position: -446px -1547px; + width: 40px; + height: 40px; +} +.shop_weapon_armoire_mythmakerSword { + background-image: url(spritesmith-main-3.png); + background-position: -405px -1547px; + width: 40px; + height: 40px; +} +.shop_weapon_armoire_rancherLasso { + background-image: url(spritesmith-main-3.png); + background-position: -733px -1588px; + width: 40px; + height: 40px; +} +.shop_weapon_armoire_shepherdsCrook { + background-image: url(spritesmith-main-3.png); + background-position: -364px -1547px; + width: 40px; + height: 40px; +} +.slim_armor_armoire_barristerRobes { + background-image: url(spritesmith-main-3.png); + background-position: 0px -1547px; width: 90px; height: 90px; } -.slim_armor_special_birthday2015 { +.slim_armor_armoire_basicArcherArmor { background-image: url(spritesmith-main-3.png); - background-position: -1413px -910px; + background-position: -91px -1547px; width: 90px; height: 90px; } -.slim_armor_special_birthday2016 { +.slim_armor_armoire_crystalCrescentRobes { background-image: url(spritesmith-main-3.png); - background-position: -1413px -819px; + background-position: -182px -1547px; width: 90px; height: 90px; } -.broad_armor_special_fall2015Healer { +.slim_armor_armoire_dragonTamerArmor { background-image: url(spritesmith-main-3.png); - background-position: -227px -91px; - width: 93px; - height: 90px; -} -.broad_armor_special_fall2015Mage { - background-image: url(spritesmith-main-3.png); - background-position: -106px -91px; - width: 105px; - height: 90px; -} -.broad_armor_special_fall2015Rogue { - background-image: url(spritesmith-main-3.png); - background-position: -1413px -546px; + background-position: -1547px -1456px; width: 90px; height: 90px; } -.broad_armor_special_fall2015Warrior { +.slim_armor_armoire_gladiatorArmor { background-image: url(spritesmith-main-3.png); - background-position: -1413px -455px; + background-position: -1547px -1365px; width: 90px; height: 90px; } -.broad_armor_special_fallHealer { +.slim_armor_armoire_goldenToga { background-image: url(spritesmith-main-3.png); - background-position: -1413px -364px; + background-position: -1547px -1274px; width: 90px; height: 90px; } -.broad_armor_special_fallMage { +.slim_armor_armoire_hornedIronArmor { background-image: url(spritesmith-main-3.png); - background-position: 0px 0px; - width: 120px; - height: 90px; -} -.broad_armor_special_fallRogue { - background-image: url(spritesmith-main-3.png); - background-position: 0px -91px; - width: 105px; - height: 90px; -} -.broad_armor_special_fallWarrior { - background-image: url(spritesmith-main-3.png); - background-position: -1413px -91px; + background-position: -1547px -1183px; width: 90px; height: 90px; } -.head_special_fall2015Healer { +.slim_armor_armoire_jesterCostume { background-image: url(spritesmith-main-3.png); - background-position: -227px 0px; - width: 93px; + background-position: -1547px -1092px; + width: 90px; height: 90px; } -.head_special_fall2015Mage { +.slim_armor_armoire_lunarArmor { background-image: url(spritesmith-main-3.png); - background-position: -121px 0px; - width: 105px; + background-position: -1547px -1001px; + width: 90px; + height: 90px; +} +.slim_armor_armoire_minerOveralls { + background-image: url(spritesmith-main-3.png); + background-position: -1547px -910px; + width: 90px; + height: 90px; +} +.slim_armor_armoire_plagueDoctorOvercoat { + background-image: url(spritesmith-main-3.png); + background-position: -1547px -819px; + width: 90px; + height: 90px; +} +.slim_armor_armoire_rancherRobes { + background-image: url(spritesmith-main-3.png); + background-position: -1547px -728px; + width: 90px; + height: 90px; +} +.slim_armor_armoire_royalRobes { + background-image: url(spritesmith-main-3.png); + background-position: -1547px -637px; + width: 90px; + height: 90px; +} +.slim_armor_armoire_shepherdRobes { + background-image: url(spritesmith-main-3.png); + background-position: -1547px -546px; + width: 90px; + height: 90px; +} +.weapon_armoire_barristerGavel { + background-image: url(spritesmith-main-3.png); + background-position: -1547px -455px; + width: 90px; + height: 90px; +} +.weapon_armoire_basicCrossbow { + background-image: url(spritesmith-main-3.png); + background-position: -1547px -364px; + width: 90px; + height: 90px; +} +.weapon_armoire_basicLongbow { + background-image: url(spritesmith-main-3.png); + background-position: -1547px -273px; + width: 90px; + height: 90px; +} +.weapon_armoire_batWand { + background-image: url(spritesmith-main-3.png); + background-position: -1547px -182px; + width: 90px; + height: 90px; +} +.weapon_armoire_blueLongbow { + background-image: url(spritesmith-main-3.png); + background-position: -1547px -91px; + width: 90px; + height: 90px; +} +.weapon_armoire_crystalCrescentStaff { + background-image: url(spritesmith-main-3.png); + background-position: -1547px 0px; + width: 90px; + height: 90px; +} +.weapon_armoire_glowingSpear { + background-image: url(spritesmith-main-3.png); + background-position: -1456px -1456px; + width: 90px; + height: 90px; +} +.weapon_armoire_goldWingStaff { + background-image: url(spritesmith-main-3.png); + background-position: -1365px -1456px; + width: 90px; + height: 90px; +} +.weapon_armoire_ironCrook { + background-image: url(spritesmith-main-3.png); + background-position: -1274px -1456px; + width: 90px; + height: 90px; +} +.weapon_armoire_jesterBaton { + background-image: url(spritesmith-main-3.png); + background-position: -1183px -1456px; + width: 90px; + height: 90px; +} +.weapon_armoire_lunarSceptre { + background-image: url(spritesmith-main-3.png); + background-position: -1092px -1456px; + width: 90px; + height: 90px; +} +.weapon_armoire_miningPickax { + background-image: url(spritesmith-main-3.png); + background-position: -1001px -1456px; + width: 90px; + height: 90px; +} +.weapon_armoire_mythmakerSword { + background-image: url(spritesmith-main-3.png); + background-position: -910px -1456px; + width: 90px; + height: 90px; +} +.weapon_armoire_rancherLasso { + background-image: url(spritesmith-main-3.png); + background-position: -819px -1456px; + width: 90px; + height: 90px; +} +.weapon_armoire_shepherdsCrook { + background-image: url(spritesmith-main-3.png); + background-position: -728px -1456px; + width: 90px; + height: 90px; +} +.broad_armor_healer_1 { + background-image: url(spritesmith-main-3.png); + background-position: -637px -1456px; + width: 90px; + height: 90px; +} +.broad_armor_healer_2 { + background-image: url(spritesmith-main-3.png); + background-position: -546px -1456px; + width: 90px; + height: 90px; +} +.broad_armor_healer_3 { + background-image: url(spritesmith-main-3.png); + background-position: -455px -1456px; + width: 90px; + height: 90px; +} +.broad_armor_healer_4 { + background-image: url(spritesmith-main-3.png); + background-position: -364px -1456px; + width: 90px; + height: 90px; +} +.broad_armor_healer_5 { + background-image: url(spritesmith-main-3.png); + background-position: -273px -1456px; + width: 90px; + height: 90px; +} +.broad_armor_rogue_1 { + background-image: url(spritesmith-main-3.png); + background-position: -182px -1456px; + width: 90px; + height: 90px; +} +.broad_armor_rogue_2 { + background-image: url(spritesmith-main-3.png); + background-position: -91px -1456px; + width: 90px; + height: 90px; +} +.broad_armor_rogue_3 { + background-image: url(spritesmith-main-3.png); + background-position: 0px -1456px; + width: 90px; + height: 90px; +} +.broad_armor_rogue_4 { + background-image: url(spritesmith-main-3.png); + background-position: -1456px -1365px; + width: 90px; + height: 90px; +} +.broad_armor_rogue_5 { + background-image: url(spritesmith-main-3.png); + background-position: -1456px -1274px; + width: 90px; + height: 90px; +} +.broad_armor_special_2 { + background-image: url(spritesmith-main-3.png); + background-position: -1456px -1183px; + width: 90px; + height: 90px; +} +.broad_armor_special_finnedOceanicArmor { + background-image: url(spritesmith-main-3.png); + background-position: -1456px -1092px; + width: 90px; + height: 90px; +} +.broad_armor_warrior_1 { + background-image: url(spritesmith-main-3.png); + background-position: -1456px -1001px; + width: 90px; + height: 90px; +} +.broad_armor_warrior_2 { + background-image: url(spritesmith-main-3.png); + background-position: -1456px -910px; + width: 90px; + height: 90px; +} +.broad_armor_warrior_3 { + background-image: url(spritesmith-main-3.png); + background-position: -1456px -819px; + width: 90px; + height: 90px; +} +.broad_armor_warrior_4 { + background-image: url(spritesmith-main-3.png); + background-position: -1456px -728px; + width: 90px; + height: 90px; +} +.broad_armor_warrior_5 { + background-image: url(spritesmith-main-3.png); + background-position: -1456px -637px; + width: 90px; + height: 90px; +} +.broad_armor_wizard_1 { + background-image: url(spritesmith-main-3.png); + background-position: -1456px -546px; + width: 90px; + height: 90px; +} +.broad_armor_wizard_2 { + background-image: url(spritesmith-main-3.png); + background-position: -1456px -455px; + width: 90px; + height: 90px; +} +.broad_armor_wizard_3 { + background-image: url(spritesmith-main-3.png); + background-position: -1456px -364px; + width: 90px; + height: 90px; +} +.broad_armor_wizard_4 { + background-image: url(spritesmith-main-3.png); + background-position: -1456px -273px; + width: 90px; + height: 90px; +} +.broad_armor_wizard_5 { + background-image: url(spritesmith-main-3.png); + background-position: -1456px -182px; + width: 90px; + height: 90px; +} +.shop_armor_healer_1 { + background-image: url(spritesmith-main-3.png); + background-position: -1020px -1588px; + width: 40px; + height: 40px; +} +.shop_armor_healer_2 { + background-image: url(spritesmith-main-3.png); + background-position: -1061px -1588px; + width: 40px; + height: 40px; +} +.shop_armor_healer_3 { + background-image: url(spritesmith-main-3.png); + background-position: -1102px -1588px; + width: 40px; + height: 40px; +} +.shop_armor_healer_4 { + background-image: url(spritesmith-main-3.png); + background-position: -1143px -1588px; + width: 40px; + height: 40px; +} +.shop_armor_healer_5 { + background-image: url(spritesmith-main-3.png); + background-position: -1184px -1588px; + width: 40px; + height: 40px; +} +.shop_armor_rogue_1 { + background-image: url(spritesmith-main-3.png); + background-position: -1225px -1588px; + width: 40px; + height: 40px; +} +.shop_armor_rogue_2 { + background-image: url(spritesmith-main-3.png); + background-position: -1266px -1588px; + width: 40px; + height: 40px; +} +.shop_armor_rogue_3 { + background-image: url(spritesmith-main-3.png); + background-position: -1307px -1588px; + width: 40px; + height: 40px; +} +.shop_armor_rogue_4 { + background-image: url(spritesmith-main-3.png); + background-position: -1348px -1588px; + width: 40px; + height: 40px; +} +.shop_armor_rogue_5 { + background-image: url(spritesmith-main-3.png); + background-position: -1389px -1588px; + width: 40px; + height: 40px; +} +.shop_armor_special_0 { + background-image: url(spritesmith-main-3.png); + background-position: -1430px -1588px; + width: 40px; + height: 40px; +} +.shop_armor_special_1 { + background-image: url(spritesmith-main-3.png); + background-position: -1471px -1588px; + width: 40px; + height: 40px; +} +.shop_armor_special_2 { + background-image: url(spritesmith-main-3.png); + background-position: -1512px -1588px; + width: 40px; + height: 40px; +} +.shop_armor_special_finnedOceanicArmor { + background-image: url(spritesmith-main-3.png); + background-position: -1553px -1588px; + width: 40px; + height: 40px; +} +.shop_armor_warrior_1 { + background-image: url(spritesmith-main-3.png); + background-position: -1594px -1588px; + width: 40px; + height: 40px; +} +.shop_armor_warrior_2 { + background-image: url(spritesmith-main-3.png); + background-position: -1638px 0px; + width: 40px; + height: 40px; +} +.shop_armor_warrior_3 { + background-image: url(spritesmith-main-3.png); + background-position: -1638px -41px; + width: 40px; + height: 40px; +} +.shop_armor_warrior_4 { + background-image: url(spritesmith-main-3.png); + background-position: -1638px -82px; + width: 40px; + height: 40px; +} +.shop_armor_warrior_5 { + background-image: url(spritesmith-main-3.png); + background-position: -1638px -123px; + width: 40px; + height: 40px; +} +.shop_armor_wizard_1 { + background-image: url(spritesmith-main-3.png); + background-position: -1638px -164px; + width: 40px; + height: 40px; +} +.shop_armor_wizard_2 { + background-image: url(spritesmith-main-3.png); + background-position: -1638px -205px; + width: 40px; + height: 40px; +} +.shop_armor_wizard_3 { + background-image: url(spritesmith-main-3.png); + background-position: -1638px -246px; + width: 40px; + height: 40px; +} +.shop_armor_wizard_4 { + background-image: url(spritesmith-main-3.png); + background-position: -1638px -287px; + width: 40px; + height: 40px; +} +.shop_armor_wizard_5 { + background-image: url(spritesmith-main-3.png); + background-position: -1638px -328px; + width: 40px; + height: 40px; +} +.slim_armor_healer_1 { + background-image: url(spritesmith-main-3.png); + background-position: -1456px -91px; + width: 90px; + height: 90px; +} +.slim_armor_healer_2 { + background-image: url(spritesmith-main-3.png); + background-position: -1456px 0px; + width: 90px; + height: 90px; +} +.slim_armor_healer_3 { + background-image: url(spritesmith-main-3.png); + background-position: -1365px -1365px; + width: 90px; + height: 90px; +} +.slim_armor_healer_4 { + background-image: url(spritesmith-main-3.png); + background-position: -1274px -1365px; + width: 90px; + height: 90px; +} +.slim_armor_healer_5 { + background-image: url(spritesmith-main-3.png); + background-position: -1183px -1365px; + width: 90px; + height: 90px; +} +.slim_armor_rogue_1 { + background-image: url(spritesmith-main-3.png); + background-position: -1092px -1365px; + width: 90px; + height: 90px; +} +.slim_armor_rogue_2 { + background-image: url(spritesmith-main-3.png); + background-position: -1001px -1365px; + width: 90px; + height: 90px; +} +.slim_armor_rogue_3 { + background-image: url(spritesmith-main-3.png); + background-position: -910px -1365px; + width: 90px; + height: 90px; +} +.slim_armor_rogue_4 { + background-image: url(spritesmith-main-3.png); + background-position: -819px -1365px; + width: 90px; + height: 90px; +} +.slim_armor_rogue_5 { + background-image: url(spritesmith-main-3.png); + background-position: -728px -1365px; + width: 90px; + height: 90px; +} +.slim_armor_special_2 { + background-image: url(spritesmith-main-3.png); + background-position: -273px -1547px; + width: 90px; height: 90px; } diff --git a/common/dist/sprites/spritesmith-main-3.png b/common/dist/sprites/spritesmith-main-3.png index 069382f714..47ddc14180 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 32670882a2..70d9e5bd3f 100644 --- a/common/dist/sprites/spritesmith-main-4.css +++ b/common/dist/sprites/spritesmith-main-4.css @@ -1,2880 +1,2778 @@ -.head_special_fall2015Rogue { +.slim_armor_special_finnedOceanicArmor { background-image: url(spritesmith-main-4.png); - background-position: -942px -728px; + background-position: -455px -946px; width: 90px; height: 90px; } -.head_special_fall2015Warrior { - background-image: url(spritesmith-main-4.png); - background-position: -1491px -1092px; - width: 90px; - height: 90px; -} -.head_special_fallHealer { - background-image: url(spritesmith-main-4.png); - background-position: -851px -564px; - width: 90px; - height: 90px; -} -.head_special_fallMage { - background-image: url(spritesmith-main-4.png); - background-position: 0px 0px; - width: 120px; - height: 90px; -} -.head_special_fallRogue { - background-image: url(spritesmith-main-4.png); - background-position: -218px -485px; - width: 105px; - height: 90px; -} -.head_special_fallWarrior { - background-image: url(spritesmith-main-4.png); - background-position: -1218px -637px; - width: 90px; - height: 90px; -} -.shield_special_fall2015Healer { - background-image: url(spritesmith-main-4.png); - background-position: -942px -546px; - width: 93px; - height: 90px; -} -.shield_special_fall2015Rogue { - background-image: url(spritesmith-main-4.png); - background-position: -324px -485px; - width: 105px; - height: 90px; -} -.shield_special_fall2015Warrior { - background-image: url(spritesmith-main-4.png); - background-position: -910px -1046px; - width: 90px; - height: 90px; -} -.shield_special_fallHealer { - background-image: url(spritesmith-main-4.png); - background-position: -1092px -1046px; - width: 90px; - height: 90px; -} -.shield_special_fallRogue { - background-image: url(spritesmith-main-4.png); - background-position: -318px -682px; - width: 105px; - height: 90px; -} -.shield_special_fallWarrior { - background-image: url(spritesmith-main-4.png); - background-position: -1218px -728px; - width: 90px; - height: 90px; -} -.shop_armor_special_fall2015Healer { - background-image: url(spritesmith-main-4.png); - background-position: -779px -1624px; - width: 40px; - height: 40px; -} -.shop_armor_special_fall2015Mage { - background-image: url(spritesmith-main-4.png); - background-position: -738px -1624px; - width: 40px; - height: 40px; -} -.shop_armor_special_fall2015Rogue { - background-image: url(spritesmith-main-4.png); - background-position: -697px -1624px; - width: 40px; - height: 40px; -} -.shop_armor_special_fall2015Warrior { - background-image: url(spritesmith-main-4.png); - background-position: -656px -1624px; - width: 40px; - height: 40px; -} -.shop_armor_special_fallHealer { - background-image: url(spritesmith-main-4.png); - background-position: -615px -1624px; - width: 40px; - height: 40px; -} -.shop_armor_special_fallMage { - background-image: url(spritesmith-main-4.png); - background-position: -574px -1624px; - width: 40px; - height: 40px; -} -.shop_armor_special_fallRogue { - background-image: url(spritesmith-main-4.png); - background-position: -533px -1624px; - width: 40px; - height: 40px; -} -.shop_armor_special_fallWarrior { - background-image: url(spritesmith-main-4.png); - background-position: -492px -1624px; - width: 40px; - height: 40px; -} -.shop_head_special_fall2015Healer { - background-image: url(spritesmith-main-4.png); - background-position: -451px -1624px; - width: 40px; - height: 40px; -} -.shop_head_special_fall2015Mage { - background-image: url(spritesmith-main-4.png); - background-position: -410px -1624px; - width: 40px; - height: 40px; -} -.shop_head_special_fall2015Rogue { - background-image: url(spritesmith-main-4.png); - background-position: -369px -1624px; - width: 40px; - height: 40px; -} -.shop_head_special_fall2015Warrior { - background-image: url(spritesmith-main-4.png); - background-position: -328px -1624px; - width: 40px; - height: 40px; -} -.shop_head_special_fallHealer { - background-image: url(spritesmith-main-4.png); - background-position: -287px -1624px; - width: 40px; - height: 40px; -} -.shop_head_special_fallMage { - background-image: url(spritesmith-main-4.png); - background-position: -246px -1624px; - width: 40px; - height: 40px; -} -.shop_head_special_fallRogue { - background-image: url(spritesmith-main-4.png); - background-position: -205px -1624px; - width: 40px; - height: 40px; -} -.shop_head_special_fallWarrior { - background-image: url(spritesmith-main-4.png); - background-position: -164px -1624px; - width: 40px; - height: 40px; -} -.shop_shield_special_fall2015Healer { - background-image: url(spritesmith-main-4.png); - background-position: -123px -1624px; - width: 40px; - height: 40px; -} -.shop_shield_special_fall2015Rogue { - background-image: url(spritesmith-main-4.png); - background-position: -82px -1624px; - width: 40px; - height: 40px; -} -.shop_shield_special_fall2015Warrior { - background-image: url(spritesmith-main-4.png); - background-position: -41px -1624px; - width: 40px; - height: 40px; -} -.shop_shield_special_fallHealer { - background-image: url(spritesmith-main-4.png); - background-position: 0px -1624px; - width: 40px; - height: 40px; -} -.shop_shield_special_fallRogue { - background-image: url(spritesmith-main-4.png); - background-position: -1599px -1583px; - width: 40px; - height: 40px; -} -.shop_shield_special_fallWarrior { - background-image: url(spritesmith-main-4.png); - background-position: -1558px -1583px; - width: 40px; - height: 40px; -} -.shop_weapon_special_fall2015Healer { - background-image: url(spritesmith-main-4.png); - background-position: -1517px -1583px; - width: 40px; - height: 40px; -} -.shop_weapon_special_fall2015Mage { - background-image: url(spritesmith-main-4.png); - background-position: -1476px -1583px; - width: 40px; - height: 40px; -} -.shop_weapon_special_fall2015Rogue { - background-image: url(spritesmith-main-4.png); - background-position: -1435px -1583px; - width: 40px; - height: 40px; -} -.shop_weapon_special_fall2015Warrior { - background-image: url(spritesmith-main-4.png); - background-position: -1394px -1583px; - width: 40px; - height: 40px; -} -.shop_weapon_special_fallHealer { - background-image: url(spritesmith-main-4.png); - background-position: -1353px -1583px; - width: 40px; - height: 40px; -} -.shop_weapon_special_fallMage { - background-image: url(spritesmith-main-4.png); - background-position: -1312px -1583px; - width: 40px; - height: 40px; -} -.shop_weapon_special_fallRogue { - background-image: url(spritesmith-main-4.png); - background-position: -943px -1542px; - width: 40px; - height: 40px; -} -.shop_weapon_special_fallWarrior { - background-image: url(spritesmith-main-4.png); - background-position: -902px -1542px; - width: 40px; - height: 40px; -} -.slim_armor_special_fall2015Healer { - background-image: url(spritesmith-main-4.png); - background-position: -194px -773px; - width: 93px; - height: 90px; -} -.slim_armor_special_fall2015Mage { - background-image: url(spritesmith-main-4.png); - background-position: -212px -682px; - width: 105px; - height: 90px; -} -.slim_armor_special_fall2015Rogue { - background-image: url(spritesmith-main-4.png); - background-position: -1218px -910px; - width: 90px; - height: 90px; -} -.slim_armor_special_fall2015Warrior { - background-image: url(spritesmith-main-4.png); - background-position: -182px -1137px; - width: 90px; - height: 90px; -} -.slim_armor_special_fallHealer { - background-image: url(spritesmith-main-4.png); - background-position: -364px -1137px; - width: 90px; - height: 90px; -} -.slim_armor_special_fallMage { - background-image: url(spritesmith-main-4.png); - background-position: -121px 0px; - width: 120px; - height: 90px; -} -.slim_armor_special_fallRogue { - background-image: url(spritesmith-main-4.png); - background-position: -106px -682px; - width: 105px; - height: 90px; -} -.slim_armor_special_fallWarrior { - background-image: url(spritesmith-main-4.png); - background-position: -637px -1137px; - width: 90px; - height: 90px; -} -.weapon_special_fall2015Healer { - background-image: url(spritesmith-main-4.png); - background-position: -942px -455px; - width: 93px; - height: 90px; -} -.weapon_special_fall2015Mage { - background-image: url(spritesmith-main-4.png); - background-position: 0px -682px; - width: 105px; - height: 90px; -} -.weapon_special_fall2015Rogue { - background-image: url(spritesmith-main-4.png); - background-position: -1309px -91px; - width: 90px; - height: 90px; -} -.weapon_special_fall2015Warrior { - background-image: url(spritesmith-main-4.png); - background-position: -1309px -364px; - width: 90px; - height: 90px; -} -.weapon_special_fallHealer { - background-image: url(spritesmith-main-4.png); - background-position: -1309px -455px; - width: 90px; - height: 90px; -} -.weapon_special_fallMage { - background-image: url(spritesmith-main-4.png); - background-position: 0px -91px; - width: 120px; - height: 90px; -} -.weapon_special_fallRogue { - background-image: url(spritesmith-main-4.png); - background-position: -430px -485px; - width: 105px; - height: 90px; -} -.weapon_special_fallWarrior { - background-image: url(spritesmith-main-4.png); - background-position: -1309px -1092px; - width: 90px; - height: 90px; -} -.broad_armor_special_gaymerx { - background-image: url(spritesmith-main-4.png); - background-position: 0px -1228px; - width: 90px; - height: 90px; -} -.head_special_gaymerx { - background-image: url(spritesmith-main-4.png); - background-position: -91px -1228px; - width: 90px; - height: 90px; -} -.shop_armor_special_gaymerx { - background-image: url(spritesmith-main-4.png); - background-position: -861px -1542px; - width: 40px; - height: 40px; -} -.shop_head_special_gaymerx { - background-image: url(spritesmith-main-4.png); - background-position: -820px -1542px; - width: 40px; - height: 40px; -} -.slim_armor_special_gaymerx { - background-image: url(spritesmith-main-4.png); - background-position: -1001px -1228px; - width: 90px; - height: 90px; -} -.back_mystery_201402 { - background-image: url(spritesmith-main-4.png); - background-position: -1183px -1319px; - width: 90px; - height: 90px; -} -.broad_armor_mystery_201402 { - background-image: url(spritesmith-main-4.png); - background-position: -1274px -1319px; - width: 90px; - height: 90px; -} -.head_mystery_201402 { - background-image: url(spritesmith-main-4.png); - background-position: -1365px -1319px; - width: 90px; - height: 90px; -} -.shop_armor_mystery_201402 { - background-image: url(spritesmith-main-4.png); - background-position: -779px -1542px; - width: 40px; - height: 40px; -} -.shop_back_mystery_201402 { - background-image: url(spritesmith-main-4.png); - background-position: -738px -1542px; - width: 40px; - height: 40px; -} -.shop_head_mystery_201402 { - background-image: url(spritesmith-main-4.png); - background-position: -697px -1542px; - width: 40px; - height: 40px; -} -.slim_armor_mystery_201402 { - background-image: url(spritesmith-main-4.png); - background-position: -1491px -273px; - width: 90px; - height: 90px; -} -.broad_armor_mystery_201403 { - background-image: url(spritesmith-main-4.png); - background-position: -1491px -546px; - width: 90px; - height: 90px; -} -.headAccessory_mystery_201403 { - background-image: url(spritesmith-main-4.png); - background-position: -1491px -637px; - width: 90px; - height: 90px; -} -.shop_armor_mystery_201403 { - background-image: url(spritesmith-main-4.png); - background-position: -656px -1542px; - width: 40px; - height: 40px; -} -.shop_headAccessory_mystery_201403 { - background-image: url(spritesmith-main-4.png); - background-position: -615px -1542px; - width: 40px; - height: 40px; -} -.slim_armor_mystery_201403 { - background-image: url(spritesmith-main-4.png); - background-position: -1491px -910px; - width: 90px; - height: 90px; -} -.back_mystery_201404 { - background-image: url(spritesmith-main-4.png); - background-position: -1491px -1001px; - width: 90px; - height: 90px; -} -.headAccessory_mystery_201404 { - background-image: url(spritesmith-main-4.png); - background-position: -1491px -1183px; - width: 90px; - height: 90px; -} -.shop_back_mystery_201404 { - background-image: url(spritesmith-main-4.png); - background-position: -574px -1542px; - width: 40px; - height: 40px; -} -.shop_headAccessory_mystery_201404 { - background-image: url(spritesmith-main-4.png); - background-position: -533px -1542px; - width: 40px; - height: 40px; -} -.broad_armor_mystery_201405 { - background-image: url(spritesmith-main-4.png); - background-position: -273px -1410px; - width: 90px; - height: 90px; -} -.head_mystery_201405 { - background-image: url(spritesmith-main-4.png); - background-position: -364px -1410px; - width: 90px; - height: 90px; -} -.shop_armor_mystery_201405 { - background-image: url(spritesmith-main-4.png); - background-position: -492px -1542px; - width: 40px; - height: 40px; -} -.shop_head_mystery_201405 { - background-image: url(spritesmith-main-4.png); - background-position: -451px -1542px; - width: 40px; - height: 40px; -} -.slim_armor_mystery_201405 { - background-image: url(spritesmith-main-4.png); - background-position: -851px -382px; - width: 90px; - height: 90px; -} -.broad_armor_mystery_201406 { - background-image: url(spritesmith-main-4.png); - background-position: -851px 0px; - width: 90px; - height: 96px; -} -.head_mystery_201406 { - background-image: url(spritesmith-main-4.png); - background-position: -851px -97px; - width: 90px; - height: 96px; -} -.shop_armor_mystery_201406 { - background-image: url(spritesmith-main-4.png); - background-position: -410px -1542px; - width: 40px; - height: 40px; -} -.shop_head_mystery_201406 { - background-image: url(spritesmith-main-4.png); - background-position: -369px -1542px; - width: 40px; - height: 40px; -} -.slim_armor_mystery_201406 { - background-image: url(spritesmith-main-4.png); - background-position: -851px -194px; - width: 90px; - height: 96px; -} -.broad_armor_mystery_201407 { - background-image: url(spritesmith-main-4.png); - background-position: -182px -864px; - width: 90px; - height: 90px; -} -.head_mystery_201407 { - background-image: url(spritesmith-main-4.png); - background-position: -273px -864px; - width: 90px; - height: 90px; -} -.shop_armor_mystery_201407 { - background-image: url(spritesmith-main-4.png); - background-position: -328px -1542px; - width: 40px; - height: 40px; -} -.shop_head_mystery_201407 { - background-image: url(spritesmith-main-4.png); - background-position: -287px -1542px; - width: 40px; - height: 40px; -} -.slim_armor_mystery_201407 { - background-image: url(spritesmith-main-4.png); - background-position: -546px -864px; - width: 90px; - height: 90px; -} -.broad_armor_mystery_201408 { - background-image: url(spritesmith-main-4.png); - background-position: -637px -864px; - width: 90px; - height: 90px; -} -.head_mystery_201408 { - background-image: url(spritesmith-main-4.png); - background-position: -728px -864px; - width: 90px; - height: 90px; -} -.shop_armor_mystery_201408 { - background-image: url(spritesmith-main-4.png); - background-position: -246px -1542px; - width: 40px; - height: 40px; -} -.shop_head_mystery_201408 { - background-image: url(spritesmith-main-4.png); - background-position: -205px -1542px; - width: 40px; - height: 40px; -} -.slim_armor_mystery_201408 { - background-image: url(spritesmith-main-4.png); - background-position: -1036px 0px; - width: 90px; - height: 90px; -} -.broad_armor_mystery_201409 { - background-image: url(spritesmith-main-4.png); - background-position: -1036px -91px; - width: 90px; - height: 90px; -} -.headAccessory_mystery_201409 { - background-image: url(spritesmith-main-4.png); - background-position: -1036px -182px; - width: 90px; - height: 90px; -} -.shop_armor_mystery_201409 { - background-image: url(spritesmith-main-4.png); - background-position: -164px -1542px; - width: 40px; - height: 40px; -} -.shop_headAccessory_mystery_201409 { - background-image: url(spritesmith-main-4.png); - background-position: -123px -1542px; - width: 40px; - height: 40px; -} -.slim_armor_mystery_201409 { - background-image: url(spritesmith-main-4.png); - background-position: -1036px -455px; - width: 90px; - height: 90px; -} -.back_mystery_201410 { - background-image: url(spritesmith-main-4.png); - background-position: -382px -773px; - width: 93px; - height: 90px; -} -.broad_armor_mystery_201410 { - background-image: url(spritesmith-main-4.png); - background-position: -476px -773px; - width: 93px; - height: 90px; -} -.shop_armor_mystery_201410 { - background-image: url(spritesmith-main-4.png); - background-position: -82px -1542px; - width: 40px; - height: 40px; -} -.shop_back_mystery_201410 { - background-image: url(spritesmith-main-4.png); - background-position: -41px -1542px; - width: 40px; - height: 40px; -} -.slim_armor_mystery_201410 { - background-image: url(spritesmith-main-4.png); - background-position: -570px -773px; - width: 93px; - height: 90px; -} -.head_mystery_201411 { - background-image: url(spritesmith-main-4.png); - background-position: -91px -955px; - width: 90px; - height: 90px; -} -.shop_head_mystery_201411 { - background-image: url(spritesmith-main-4.png); - background-position: 0px -1542px; - width: 40px; - height: 40px; -} -.shop_weapon_mystery_201411 { - background-image: url(spritesmith-main-4.png); - background-position: -1599px -1501px; - width: 40px; - height: 40px; -} -.weapon_mystery_201411 { - background-image: url(spritesmith-main-4.png); - background-position: -364px -955px; - width: 90px; - height: 90px; -} -.broad_armor_mystery_201412 { - background-image: url(spritesmith-main-4.png); - background-position: -455px -955px; - width: 90px; - height: 90px; -} -.head_mystery_201412 { - background-image: url(spritesmith-main-4.png); - background-position: -546px -955px; - width: 90px; - height: 90px; -} -.shop_armor_mystery_201412 { - background-image: url(spritesmith-main-4.png); - background-position: -1558px -1501px; - width: 40px; - height: 40px; -} -.shop_head_mystery_201412 { - background-image: url(spritesmith-main-4.png); - background-position: -1517px -1501px; - width: 40px; - height: 40px; -} -.slim_armor_mystery_201412 { - background-image: url(spritesmith-main-4.png); - background-position: -819px -955px; - width: 90px; - height: 90px; -} -.broad_armor_mystery_201501 { - background-image: url(spritesmith-main-4.png); - background-position: -910px -955px; - width: 90px; - height: 90px; -} -.head_mystery_201501 { - background-image: url(spritesmith-main-4.png); - background-position: -1001px -955px; - width: 90px; - height: 90px; -} -.shop_armor_mystery_201501 { - background-image: url(spritesmith-main-4.png); - background-position: -1476px -1501px; - width: 40px; - height: 40px; -} -.shop_head_mystery_201501 { - background-image: url(spritesmith-main-4.png); - background-position: -1435px -1501px; - width: 40px; - height: 40px; -} -.slim_armor_mystery_201501 { - background-image: url(spritesmith-main-4.png); - background-position: -1127px -182px; - width: 90px; - height: 90px; -} -.headAccessory_mystery_201502 { - background-image: url(spritesmith-main-4.png); - background-position: -1127px -273px; - width: 90px; - height: 90px; -} -.shop_headAccessory_mystery_201502 { - background-image: url(spritesmith-main-4.png); - background-position: -1582px -680px; - width: 40px; - height: 40px; -} -.shop_weapon_mystery_201502 { - background-image: url(spritesmith-main-4.png); - background-position: -1353px -1501px; - width: 40px; - height: 40px; -} -.weapon_mystery_201502 { - background-image: url(spritesmith-main-4.png); - background-position: -1127px -546px; - width: 90px; - height: 90px; -} -.broad_armor_mystery_201503 { - background-image: url(spritesmith-main-4.png); - background-position: -1127px -637px; - width: 90px; - height: 90px; -} -.eyewear_mystery_201503 { - background-image: url(spritesmith-main-4.png); - background-position: -1127px -728px; - width: 90px; - height: 90px; -} -.shop_armor_mystery_201503 { - background-image: url(spritesmith-main-4.png); - background-position: -1312px -1501px; - width: 40px; - height: 40px; -} -.shop_eyewear_mystery_201503 { - background-image: url(spritesmith-main-4.png); - background-position: -1271px -1501px; - width: 40px; - height: 40px; -} -.slim_armor_mystery_201503 { - background-image: url(spritesmith-main-4.png); - background-position: 0px -1046px; - width: 90px; - height: 90px; -} -.back_mystery_201504 { - background-image: url(spritesmith-main-4.png); - background-position: -91px -1046px; - width: 90px; - height: 90px; -} -.broad_armor_mystery_201504 { - background-image: url(spritesmith-main-4.png); - background-position: -182px -1046px; - width: 90px; - height: 90px; -} -.shop_armor_mystery_201504 { - background-image: url(spritesmith-main-4.png); - background-position: -1230px -1501px; - width: 40px; - height: 40px; -} -.shop_back_mystery_201504 { - background-image: url(spritesmith-main-4.png); - background-position: -1189px -1501px; - width: 40px; - height: 40px; -} -.slim_armor_mystery_201504 { - background-image: url(spritesmith-main-4.png); - background-position: -455px -1046px; - width: 90px; - height: 90px; -} -.head_mystery_201505 { - background-image: url(spritesmith-main-4.png); - background-position: -546px -1046px; - width: 90px; - height: 90px; -} -.shop_head_mystery_201505 { - background-image: url(spritesmith-main-4.png); - background-position: -1148px -1501px; - width: 40px; - height: 40px; -} -.shop_weapon_mystery_201505 { - background-image: url(spritesmith-main-4.png); - background-position: -1107px -1501px; - width: 40px; - height: 40px; -} -.weapon_mystery_201505 { - background-image: url(spritesmith-main-4.png); - background-position: -819px -1046px; - width: 90px; - height: 90px; -} -.broad_armor_mystery_201506 { - background-image: url(spritesmith-main-4.png); - background-position: 0px -576px; - width: 90px; - height: 105px; -} -.eyewear_mystery_201506 { - background-image: url(spritesmith-main-4.png); - background-position: -669px -106px; - width: 90px; - height: 105px; -} -.shop_armor_mystery_201506 { - background-image: url(spritesmith-main-4.png); - background-position: -1066px -1501px; - width: 40px; - height: 40px; -} -.shop_eyewear_mystery_201506 { - background-image: url(spritesmith-main-4.png); - background-position: -1025px -1501px; - width: 40px; - height: 40px; -} -.slim_armor_mystery_201506 { - background-image: url(spritesmith-main-4.png); - background-position: -578px -424px; - width: 90px; - height: 105px; -} -.back_mystery_201507 { - background-image: url(spritesmith-main-4.png); - background-position: -578px 0px; - width: 90px; - height: 105px; -} -.eyewear_mystery_201507 { - background-image: url(spritesmith-main-4.png); - background-position: -637px -576px; - width: 90px; - height: 105px; -} -.shop_back_mystery_201507 { - background-image: url(spritesmith-main-4.png); - background-position: -984px -1501px; - width: 40px; - height: 40px; -} -.shop_eyewear_mystery_201507 { - background-image: url(spritesmith-main-4.png); - background-position: -943px -1501px; - width: 40px; - height: 40px; -} -.broad_armor_mystery_201508 { - background-image: url(spritesmith-main-4.png); - background-position: -942px -182px; - width: 93px; - height: 90px; -} -.head_mystery_201508 { - background-image: url(spritesmith-main-4.png); - background-position: -758px -773px; - width: 93px; - height: 90px; -} -.shop_armor_mystery_201508 { - background-image: url(spritesmith-main-4.png); - background-position: -902px -1501px; - width: 40px; - height: 40px; -} -.shop_head_mystery_201508 { - background-image: url(spritesmith-main-4.png); - background-position: -861px -1501px; - width: 40px; - height: 40px; -} -.slim_armor_mystery_201508 { - background-image: url(spritesmith-main-4.png); - background-position: -942px -91px; - width: 93px; - height: 90px; -} -.broad_armor_mystery_201509 { - background-image: url(spritesmith-main-4.png); - background-position: -1218px -1001px; - width: 90px; - height: 90px; -} -.head_mystery_201509 { - background-image: url(spritesmith-main-4.png); - background-position: 0px -1137px; - width: 90px; - height: 90px; -} -.shop_armor_mystery_201509 { - background-image: url(spritesmith-main-4.png); - background-position: -820px -1501px; - width: 40px; - height: 40px; -} -.shop_head_mystery_201509 { - background-image: url(spritesmith-main-4.png); - background-position: -779px -1501px; - width: 40px; - height: 40px; -} -.slim_armor_mystery_201509 { - background-image: url(spritesmith-main-4.png); - background-position: -273px -1137px; - width: 90px; - height: 90px; -} -.back_mystery_201510 { - background-image: url(spritesmith-main-4.png); - background-position: -112px -485px; - width: 105px; - height: 90px; -} -.headAccessory_mystery_201510 { - background-image: url(spritesmith-main-4.png); - background-position: -942px -364px; - width: 93px; - height: 90px; -} -.shop_back_mystery_201510 { - background-image: url(spritesmith-main-4.png); - background-position: -738px -1501px; - width: 40px; - height: 40px; -} -.shop_headAccessory_mystery_201510 { - background-image: url(spritesmith-main-4.png); - background-position: -697px -1501px; - width: 40px; - height: 40px; -} -.broad_armor_mystery_201511 { - background-image: url(spritesmith-main-4.png); - background-position: -728px -1137px; - width: 90px; - height: 90px; -} -.head_mystery_201511 { - background-image: url(spritesmith-main-4.png); - background-position: -819px -1137px; - width: 90px; - height: 90px; -} -.shop_armor_mystery_201511 { - background-image: url(spritesmith-main-4.png); - background-position: -1625px -637px; - width: 42px; - height: 42px; -} -.shop_head_mystery_201511 { - background-image: url(spritesmith-main-4.png); - background-position: -1582px -637px; - width: 42px; - height: 42px; -} -.slim_armor_mystery_201511 { - background-image: url(spritesmith-main-4.png); - background-position: -1092px -1137px; - width: 90px; - height: 90px; -} -.broad_armor_mystery_201512 { - background-image: url(spritesmith-main-4.png); - background-position: -1183px -1137px; - width: 90px; - height: 90px; -} -.head_mystery_201512 { - background-image: url(spritesmith-main-4.png); - background-position: -1309px 0px; - width: 90px; - height: 90px; -} -.shop_armor_mystery_201512 { - background-image: url(spritesmith-main-4.png); - background-position: -574px -1501px; - width: 40px; - height: 40px; -} -.shop_head_mystery_201512 { - background-image: url(spritesmith-main-4.png); - background-position: -533px -1501px; - width: 40px; - height: 40px; -} -.slim_armor_mystery_201512 { - background-image: url(spritesmith-main-4.png); - background-position: -1309px -273px; - width: 90px; - height: 90px; -} -.head_mystery_201601 { - background-image: url(spritesmith-main-4.png); - background-position: -242px 0px; - width: 120px; - height: 90px; -} -.shield_mystery_201601 { - background-image: url(spritesmith-main-4.png); - background-position: -121px -91px; - width: 120px; - height: 90px; -} -.shop_head_mystery_201601 { - background-image: url(spritesmith-main-4.png); - background-position: -492px -1501px; - width: 40px; - height: 40px; -} -.shop_shield_mystery_201601 { - background-image: url(spritesmith-main-4.png); - background-position: -1441px -1274px; - width: 40px; - height: 40px; -} -.broad_armor_mystery_301404 { - background-image: url(spritesmith-main-4.png); - background-position: -1309px -728px; - width: 90px; - height: 90px; -} -.eyewear_mystery_301404 { - background-image: url(spritesmith-main-4.png); - background-position: -1309px -819px; - width: 90px; - height: 90px; -} -.head_mystery_301404 { - background-image: url(spritesmith-main-4.png); - background-position: -1309px -910px; - width: 90px; - height: 90px; -} -.shop_armor_mystery_301404 { - background-image: url(spritesmith-main-4.png); - background-position: -1400px -1274px; - width: 40px; - height: 40px; -} -.shop_eyewear_mystery_301404 { - background-image: url(spritesmith-main-4.png); - background-position: -1532px -1365px; - width: 40px; - height: 40px; -} -.shop_head_mystery_301404 { - background-image: url(spritesmith-main-4.png); - background-position: -1491px -1365px; - width: 40px; - height: 40px; -} -.shop_weapon_mystery_301404 { - background-image: url(spritesmith-main-4.png); - background-position: -1623px -1459px; - width: 40px; - height: 40px; -} -.slim_armor_mystery_301404 { - background-image: url(spritesmith-main-4.png); - background-position: -182px -1228px; - width: 90px; - height: 90px; -} -.weapon_mystery_301404 { - background-image: url(spritesmith-main-4.png); - background-position: -273px -1228px; - width: 90px; - height: 90px; -} -.eyewear_mystery_301405 { - background-image: url(spritesmith-main-4.png); - background-position: -364px -1228px; - width: 90px; - height: 90px; -} -.headAccessory_mystery_301405 { - background-image: url(spritesmith-main-4.png); - background-position: -455px -1228px; - width: 90px; - height: 90px; -} -.head_mystery_301405 { - background-image: url(spritesmith-main-4.png); - background-position: -546px -1228px; - width: 90px; - height: 90px; -} -.shield_mystery_301405 { - background-image: url(spritesmith-main-4.png); - background-position: -637px -1228px; - width: 90px; - height: 90px; -} -.shop_eyewear_mystery_301405 { - background-image: url(spritesmith-main-4.png); - background-position: -1582px -1459px; - width: 40px; - height: 40px; -} -.shop_headAccessory_mystery_301405 { - background-image: url(spritesmith-main-4.png); - background-position: -1623px -1418px; - width: 40px; - height: 40px; -} -.shop_head_mystery_301405 { - background-image: url(spritesmith-main-4.png); - background-position: -1582px -1418px; - width: 40px; - height: 40px; -} -.shop_shield_mystery_301405 { - background-image: url(spritesmith-main-4.png); - background-position: -1623px -1377px; - width: 40px; - height: 40px; -} -.broad_armor_special_spring2015Healer { - background-image: url(spritesmith-main-4.png); - background-position: -1092px -1228px; - width: 90px; - height: 90px; -} -.broad_armor_special_spring2015Mage { - background-image: url(spritesmith-main-4.png); - background-position: -1183px -1228px; - width: 90px; - height: 90px; -} -.broad_armor_special_spring2015Rogue { - background-image: url(spritesmith-main-4.png); - background-position: -1274px -1228px; - width: 90px; - height: 90px; -} -.broad_armor_special_spring2015Warrior { - background-image: url(spritesmith-main-4.png); - background-position: -1400px 0px; - width: 90px; - height: 90px; -} -.broad_armor_special_springHealer { - background-image: url(spritesmith-main-4.png); - background-position: -1400px -91px; - width: 90px; - height: 90px; -} -.broad_armor_special_springMage { - background-image: url(spritesmith-main-4.png); - background-position: -1400px -182px; - width: 90px; - height: 90px; -} -.broad_armor_special_springRogue { - background-image: url(spritesmith-main-4.png); - background-position: -1400px -273px; - width: 90px; - height: 90px; -} -.broad_armor_special_springWarrior { - background-image: url(spritesmith-main-4.png); - background-position: -1400px -364px; - width: 90px; - height: 90px; -} -.headAccessory_special_spring2015Healer { - background-image: url(spritesmith-main-4.png); - background-position: -1400px -455px; - width: 90px; - height: 90px; -} -.headAccessory_special_spring2015Mage { - background-image: url(spritesmith-main-4.png); - background-position: -1400px -546px; - width: 90px; - height: 90px; -} -.headAccessory_special_spring2015Rogue { - background-image: url(spritesmith-main-4.png); - background-position: -1400px -637px; - width: 90px; - height: 90px; -} -.headAccessory_special_spring2015Warrior { - background-image: url(spritesmith-main-4.png); - background-position: -1400px -728px; - width: 90px; - height: 90px; -} -.headAccessory_special_springHealer { - background-image: url(spritesmith-main-4.png); - background-position: -1400px -819px; - width: 90px; - height: 90px; -} -.headAccessory_special_springMage { - background-image: url(spritesmith-main-4.png); - background-position: -1400px -910px; - width: 90px; - height: 90px; -} -.headAccessory_special_springRogue { - background-image: url(spritesmith-main-4.png); - background-position: -1400px -1001px; - width: 90px; - height: 90px; -} -.headAccessory_special_springWarrior { - background-image: url(spritesmith-main-4.png); - background-position: -1400px -1092px; - width: 90px; - height: 90px; -} -.head_special_spring2015Healer { - background-image: url(spritesmith-main-4.png); - background-position: -1400px -1183px; - width: 90px; - height: 90px; -} -.head_special_spring2015Mage { - background-image: url(spritesmith-main-4.png); - background-position: 0px -1319px; - width: 90px; - height: 90px; -} -.head_special_spring2015Rogue { - background-image: url(spritesmith-main-4.png); - background-position: -91px -1319px; - width: 90px; - height: 90px; -} -.head_special_spring2015Warrior { - background-image: url(spritesmith-main-4.png); - background-position: -182px -1319px; - width: 90px; - height: 90px; -} -.head_special_springHealer { - background-image: url(spritesmith-main-4.png); - background-position: -273px -1319px; - width: 90px; - height: 90px; -} -.head_special_springMage { - background-image: url(spritesmith-main-4.png); - background-position: -364px -1319px; - width: 90px; - height: 90px; -} -.head_special_springRogue { - background-image: url(spritesmith-main-4.png); - background-position: -455px -1319px; - width: 90px; - height: 90px; -} -.head_special_springWarrior { - background-image: url(spritesmith-main-4.png); - background-position: -546px -1319px; - width: 90px; - height: 90px; -} -.shield_special_spring2015Healer { - background-image: url(spritesmith-main-4.png); - background-position: -637px -1319px; - width: 90px; - height: 90px; -} -.shield_special_spring2015Rogue { - background-image: url(spritesmith-main-4.png); - background-position: -728px -1319px; - width: 90px; - height: 90px; -} -.shield_special_spring2015Warrior { - background-image: url(spritesmith-main-4.png); - background-position: -819px -1319px; - width: 90px; - height: 90px; -} -.shield_special_springHealer { - background-image: url(spritesmith-main-4.png); - background-position: -910px -1319px; - width: 90px; - height: 90px; -} -.shield_special_springRogue { - background-image: url(spritesmith-main-4.png); - background-position: -1001px -1319px; - width: 90px; - height: 90px; -} -.shield_special_springWarrior { - background-image: url(spritesmith-main-4.png); - background-position: -1092px -1319px; - width: 90px; - height: 90px; -} -.shop_armor_special_spring2015Healer { - background-image: url(spritesmith-main-4.png); - background-position: -1582px -1377px; - width: 40px; - height: 40px; -} -.shop_armor_special_spring2015Mage { - background-image: url(spritesmith-main-4.png); - background-position: -1623px -1336px; - width: 40px; - height: 40px; -} -.shop_armor_special_spring2015Rogue { - background-image: url(spritesmith-main-4.png); - background-position: -1582px -1336px; - width: 40px; - height: 40px; -} -.shop_armor_special_spring2015Warrior { - background-image: url(spritesmith-main-4.png); - background-position: -1623px -1295px; - width: 40px; - height: 40px; -} -.shop_armor_special_springHealer { - background-image: url(spritesmith-main-4.png); - background-position: -1582px -1295px; - width: 40px; - height: 40px; -} -.shop_armor_special_springMage { - background-image: url(spritesmith-main-4.png); - background-position: -1623px -1254px; - width: 40px; - height: 40px; -} -.shop_armor_special_springRogue { - background-image: url(spritesmith-main-4.png); - background-position: -1582px -1254px; - width: 40px; - height: 40px; -} -.shop_armor_special_springWarrior { - background-image: url(spritesmith-main-4.png); - background-position: -1623px -1213px; - width: 40px; - height: 40px; -} -.shop_headAccessory_special_spring2015Healer { - background-image: url(spritesmith-main-4.png); - background-position: -1582px -1213px; - width: 40px; - height: 40px; -} -.shop_headAccessory_special_spring2015Mage { - background-image: url(spritesmith-main-4.png); - background-position: -1623px -1172px; - width: 40px; - height: 40px; -} -.shop_headAccessory_special_spring2015Rogue { - background-image: url(spritesmith-main-4.png); - background-position: -1582px -1172px; - width: 40px; - height: 40px; -} -.shop_headAccessory_special_spring2015Warrior { - background-image: url(spritesmith-main-4.png); - background-position: -1623px -1131px; - width: 40px; - height: 40px; -} -.shop_headAccessory_special_springHealer { - background-image: url(spritesmith-main-4.png); - background-position: -1582px -1131px; - width: 40px; - height: 40px; -} -.shop_headAccessory_special_springMage { - background-image: url(spritesmith-main-4.png); - background-position: -1623px -1090px; - width: 40px; - height: 40px; -} -.shop_headAccessory_special_springRogue { - background-image: url(spritesmith-main-4.png); - background-position: -1582px -1090px; - width: 40px; - height: 40px; -} -.shop_headAccessory_special_springWarrior { - background-image: url(spritesmith-main-4.png); - background-position: -820px -1624px; - width: 40px; - height: 40px; -} -.shop_head_special_spring2015Healer { - background-image: url(spritesmith-main-4.png); - background-position: -1623px -1049px; - width: 40px; - height: 40px; -} -.shop_head_special_spring2015Mage { - background-image: url(spritesmith-main-4.png); - background-position: -1582px -1049px; - width: 40px; - height: 40px; -} -.shop_head_special_spring2015Rogue { - background-image: url(spritesmith-main-4.png); - background-position: -1623px -1008px; - width: 40px; - height: 40px; -} -.shop_head_special_spring2015Warrior { - background-image: url(spritesmith-main-4.png); - background-position: -1582px -1008px; - width: 40px; - height: 40px; -} -.shop_head_special_springHealer { - background-image: url(spritesmith-main-4.png); - background-position: -1623px -967px; - width: 40px; - height: 40px; -} -.shop_head_special_springMage { - background-image: url(spritesmith-main-4.png); - background-position: -1582px -967px; - width: 40px; - height: 40px; -} -.shop_head_special_springRogue { - background-image: url(spritesmith-main-4.png); - background-position: -1623px -926px; - width: 40px; - height: 40px; -} -.shop_head_special_springWarrior { - background-image: url(spritesmith-main-4.png); - background-position: -1582px -926px; - width: 40px; - height: 40px; -} -.shop_shield_special_spring2015Healer { - background-image: url(spritesmith-main-4.png); - background-position: -1623px -885px; - width: 40px; - height: 40px; -} -.shop_shield_special_spring2015Rogue { - background-image: url(spritesmith-main-4.png); - background-position: -1582px -885px; - width: 40px; - height: 40px; -} -.shop_shield_special_spring2015Warrior { - background-image: url(spritesmith-main-4.png); - background-position: -1623px -844px; - width: 40px; - height: 40px; -} -.shop_shield_special_springHealer { - background-image: url(spritesmith-main-4.png); - background-position: -1582px -844px; - width: 40px; - height: 40px; -} -.shop_shield_special_springRogue { - background-image: url(spritesmith-main-4.png); - background-position: -1623px -803px; - width: 40px; - height: 40px; -} -.shop_shield_special_springWarrior { - background-image: url(spritesmith-main-4.png); - background-position: -1582px -803px; - width: 40px; - height: 40px; -} -.shop_weapon_special_spring2015Healer { - background-image: url(spritesmith-main-4.png); - background-position: -1623px -762px; - width: 40px; - height: 40px; -} -.shop_weapon_special_spring2015Mage { - background-image: url(spritesmith-main-4.png); - background-position: -1582px -762px; - width: 40px; - height: 40px; -} -.shop_weapon_special_spring2015Rogue { - background-image: url(spritesmith-main-4.png); - background-position: -1623px -721px; - width: 40px; - height: 40px; -} -.shop_weapon_special_spring2015Warrior { - background-image: url(spritesmith-main-4.png); - background-position: -1582px -721px; - width: 40px; - height: 40px; -} -.shop_weapon_special_springHealer { - background-image: url(spritesmith-main-4.png); - background-position: -1623px -680px; - width: 40px; - height: 40px; -} -.shop_weapon_special_springMage { - background-image: url(spritesmith-main-4.png); - background-position: -656px -1501px; - width: 40px; - height: 40px; -} -.shop_weapon_special_springRogue { - background-image: url(spritesmith-main-4.png); - background-position: -1394px -1501px; - width: 40px; - height: 40px; -} -.shop_weapon_special_springWarrior { - background-image: url(spritesmith-main-4.png); - background-position: -615px -1501px; - width: 40px; - height: 40px; -} -.slim_armor_special_spring2015Healer { - background-image: url(spritesmith-main-4.png); - background-position: -1582px -273px; - width: 90px; - height: 90px; -} -.slim_armor_special_spring2015Mage { - background-image: url(spritesmith-main-4.png); - background-position: -1582px -364px; - width: 90px; - height: 90px; -} -.slim_armor_special_spring2015Rogue { - background-image: url(spritesmith-main-4.png); - background-position: -1582px -455px; - width: 90px; - height: 90px; -} -.slim_armor_special_spring2015Warrior { - background-image: url(spritesmith-main-4.png); - background-position: -1582px -546px; - width: 90px; - height: 90px; -} -.slim_armor_special_springHealer { - background-image: url(spritesmith-main-4.png); - background-position: -1582px -182px; - width: 90px; - height: 90px; -} -.slim_armor_special_springMage { - background-image: url(spritesmith-main-4.png); - background-position: -1582px -91px; - width: 90px; - height: 90px; -} -.slim_armor_special_springRogue { - background-image: url(spritesmith-main-4.png); - background-position: -1582px 0px; - width: 90px; - height: 90px; -} -.slim_armor_special_springWarrior { - background-image: url(spritesmith-main-4.png); - background-position: -1456px -1410px; - width: 90px; - height: 90px; -} -.weapon_special_spring2015Healer { - background-image: url(spritesmith-main-4.png); - background-position: -1365px -1410px; - width: 90px; - height: 90px; -} -.weapon_special_spring2015Mage { - background-image: url(spritesmith-main-4.png); - background-position: -1274px -1410px; - width: 90px; - height: 90px; -} -.weapon_special_spring2015Rogue { - background-image: url(spritesmith-main-4.png); - background-position: -1183px -1410px; - width: 90px; - height: 90px; -} -.weapon_special_spring2015Warrior { - background-image: url(spritesmith-main-4.png); - background-position: -1092px -1410px; - width: 90px; - height: 90px; -} -.weapon_special_springHealer { - background-image: url(spritesmith-main-4.png); - background-position: -1001px -1410px; - width: 90px; - height: 90px; -} -.weapon_special_springMage { - background-image: url(spritesmith-main-4.png); - background-position: -910px -1410px; - width: 90px; - height: 90px; -} -.weapon_special_springRogue { - background-image: url(spritesmith-main-4.png); - background-position: -819px -1410px; - width: 90px; - height: 90px; -} -.weapon_special_springWarrior { - background-image: url(spritesmith-main-4.png); - background-position: -728px -1410px; - width: 90px; - height: 90px; -} -.body_special_summer2015Healer { - background-image: url(spritesmith-main-4.png); - background-position: -637px -1410px; - width: 90px; - height: 90px; -} -.body_special_summer2015Mage { - background-image: url(spritesmith-main-4.png); - background-position: -546px -1410px; - width: 90px; - height: 90px; -} -.body_special_summer2015Rogue { - background-image: url(spritesmith-main-4.png); - background-position: -206px -182px; - width: 102px; - height: 105px; -} -.body_special_summer2015Warrior { - background-image: url(spritesmith-main-4.png); - background-position: -578px -106px; - width: 90px; - height: 105px; -} -.body_special_summerHealer { - background-image: url(spritesmith-main-4.png); - background-position: -91px -576px; - width: 90px; - height: 105px; -} -.body_special_summerMage { - background-image: url(spritesmith-main-4.png); - background-position: -182px -576px; - width: 90px; - height: 105px; -} -.broad_armor_special_summer2015Healer { - background-image: url(spritesmith-main-4.png); - background-position: -91px -1410px; - width: 90px; - height: 90px; -} -.broad_armor_special_summer2015Mage { - background-image: url(spritesmith-main-4.png); - background-position: 0px -1410px; - width: 90px; - height: 90px; -} -.broad_armor_special_summer2015Rogue { - background-image: url(spritesmith-main-4.png); - background-position: 0px -182px; - width: 102px; - height: 105px; -} -.broad_armor_special_summer2015Warrior { - background-image: url(spritesmith-main-4.png); - background-position: -273px -576px; - width: 90px; - height: 105px; -} -.broad_armor_special_summerHealer { - background-image: url(spritesmith-main-4.png); - background-position: -546px -576px; - width: 90px; - height: 105px; -} -.broad_armor_special_summerMage { - background-image: url(spritesmith-main-4.png); - background-position: -760px 0px; - 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: 0px -485px; - width: 111px; - height: 90px; -} -.eyewear_special_summerRogue { - background-image: url(spritesmith-main-4.png); - background-position: -327px -288px; - width: 111px; - height: 90px; -} -.eyewear_special_summerWarrior { - background-image: url(spritesmith-main-4.png); - background-position: -466px -182px; - width: 111px; - height: 90px; -} -.head_special_summer2015Healer { - background-image: url(spritesmith-main-4.png); - background-position: -1491px -455px; - width: 90px; - height: 90px; -} -.head_special_summer2015Mage { +.slim_armor_warrior_1 { background-image: url(spritesmith-main-4.png); background-position: -1491px -364px; width: 90px; height: 90px; } -.head_special_summer2015Rogue { +.slim_armor_warrior_2 { background-image: url(spritesmith-main-4.png); - background-position: -103px -182px; - width: 102px; - height: 105px; -} -.head_special_summer2015Warrior { - background-image: url(spritesmith-main-4.png); - background-position: -760px -530px; - width: 90px; - height: 105px; -} -.head_special_summerHealer { - background-image: url(spritesmith-main-4.png); - background-position: -760px -424px; - width: 90px; - height: 105px; -} -.head_special_summerMage { - background-image: url(spritesmith-main-4.png); - background-position: -760px -318px; - width: 90px; - height: 105px; -} -.head_special_summerRogue { - background-image: url(spritesmith-main-4.png); - background-position: -448px -394px; - width: 111px; - height: 90px; -} -.head_special_summerWarrior { - background-image: url(spritesmith-main-4.png); - background-position: -242px -91px; - width: 111px; - height: 90px; -} -.Healer_Summer { - background-image: url(spritesmith-main-4.png); - background-position: -760px -212px; - width: 90px; - height: 105px; -} -.Mage_Summer { - background-image: url(spritesmith-main-4.png); - background-position: -760px -106px; - width: 90px; - height: 105px; -} -.SummerRogue14 { - background-image: url(spritesmith-main-4.png); - background-position: -103px -288px; - width: 111px; - height: 90px; -} -.SummerWarrior14 { - background-image: url(spritesmith-main-4.png); - background-position: -215px -288px; - width: 111px; - height: 90px; -} -.shield_special_summer2015Healer { - background-image: url(spritesmith-main-4.png); - background-position: -728px -1228px; + background-position: -1127px -273px; width: 90px; height: 90px; } -.shield_special_summer2015Rogue { +.slim_armor_warrior_3 { background-image: url(spritesmith-main-4.png); - background-position: 0px -288px; - width: 102px; - height: 105px; -} -.shield_special_summer2015Warrior { - background-image: url(spritesmith-main-4.png); - background-position: -455px -576px; - width: 90px; - height: 105px; -} -.shield_special_summerHealer { - background-image: url(spritesmith-main-4.png); - background-position: -364px -576px; - width: 90px; - height: 105px; -} -.shield_special_summerRogue { - background-image: url(spritesmith-main-4.png); - background-position: -466px 0px; - width: 111px; - height: 90px; -} -.shield_special_summerWarrior { - background-image: url(spritesmith-main-4.png); - background-position: -466px -91px; - width: 111px; - height: 90px; -} -.shop_armor_special_summer2015Healer { - background-image: url(spritesmith-main-4.png); - background-position: -1309px -1183px; - width: 40px; - height: 40px; -} -.shop_armor_special_summer2015Mage { - background-image: url(spritesmith-main-4.png); - background-position: -1350px -1183px; - width: 40px; - height: 40px; -} -.shop_armor_special_summer2015Rogue { - background-image: url(spritesmith-main-4.png); - background-position: -1218px -1092px; - width: 40px; - height: 40px; -} -.shop_armor_special_summer2015Warrior { - background-image: url(spritesmith-main-4.png); - background-position: -1259px -1092px; - width: 40px; - height: 40px; -} -.shop_armor_special_summerHealer { - background-image: url(spritesmith-main-4.png); - background-position: -1127px -1001px; - width: 40px; - height: 40px; -} -.shop_armor_special_summerMage { - background-image: url(spritesmith-main-4.png); - background-position: -1168px -1001px; - width: 40px; - height: 40px; -} -.shop_armor_special_summerRogue { - background-image: url(spritesmith-main-4.png); - background-position: -1036px -910px; - width: 40px; - height: 40px; -} -.shop_armor_special_summerWarrior { - background-image: url(spritesmith-main-4.png); - background-position: -1077px -910px; - width: 40px; - height: 40px; -} -.shop_body_special_summer2015Healer { - background-image: url(spritesmith-main-4.png); - background-position: -942px -819px; - width: 40px; - height: 40px; -} -.shop_body_special_summer2015Mage { - background-image: url(spritesmith-main-4.png); - background-position: -983px -819px; - width: 40px; - height: 40px; -} -.shop_body_special_summer2015Rogue { - background-image: url(spritesmith-main-4.png); - background-position: -760px -636px; - width: 40px; - height: 40px; -} -.shop_body_special_summer2015Warrior { - background-image: url(spritesmith-main-4.png); - background-position: -801px -636px; - width: 40px; - height: 40px; -} -.shop_body_special_summerHealer { - background-image: url(spritesmith-main-4.png); - background-position: -669px -530px; - width: 40px; - height: 40px; -} -.shop_body_special_summerMage { - background-image: url(spritesmith-main-4.png); - background-position: -710px -530px; - width: 40px; - height: 40px; -} -.shop_eyewear_special_summerRogue { - background-image: url(spritesmith-main-4.png); - background-position: -578px -530px; - width: 40px; - height: 40px; -} -.shop_eyewear_special_summerWarrior { - background-image: url(spritesmith-main-4.png); - background-position: -619px -530px; - width: 40px; - height: 40px; -} -.shop_head_special_summer2015Healer { - background-image: url(spritesmith-main-4.png); - background-position: -363px -212px; - width: 40px; - height: 40px; -} -.shop_head_special_summer2015Mage { - background-image: url(spritesmith-main-4.png); - background-position: -404px -212px; - width: 40px; - height: 40px; -} -.shop_head_special_summer2015Rogue { - background-image: url(spritesmith-main-4.png); - background-position: -309px -182px; - width: 40px; - height: 40px; -} -.shop_head_special_summer2015Warrior { - background-image: url(spritesmith-main-4.png); - background-position: -309px -223px; - width: 40px; - height: 40px; -} -.shop_head_special_summerHealer { - background-image: url(spritesmith-main-4.png); - background-position: -536px -485px; - width: 40px; - height: 40px; -} -.shop_head_special_summerMage { - background-image: url(spritesmith-main-4.png); - background-position: -536px -526px; - width: 40px; - height: 40px; -} -.shop_head_special_summerRogue { - background-image: url(spritesmith-main-4.png); - background-position: -852px -773px; - width: 40px; - height: 40px; -} -.shop_head_special_summerWarrior { - background-image: url(spritesmith-main-4.png); - background-position: -893px -773px; - width: 40px; - height: 40px; -} -.shop_shield_special_summer2015Healer { - background-image: url(spritesmith-main-4.png); - background-position: -852px -814px; - width: 40px; - height: 40px; -} -.shop_shield_special_summer2015Rogue { - background-image: url(spritesmith-main-4.png); - background-position: -893px -814px; - width: 40px; - height: 40px; -} -.shop_shield_special_summer2015Warrior { - background-image: url(spritesmith-main-4.png); - background-position: 0px -1501px; - width: 40px; - height: 40px; -} -.shop_shield_special_summerHealer { - background-image: url(spritesmith-main-4.png); - background-position: -41px -1501px; - width: 40px; - height: 40px; -} -.shop_shield_special_summerRogue { - background-image: url(spritesmith-main-4.png); - background-position: -82px -1501px; - width: 40px; - height: 40px; -} -.shop_shield_special_summerWarrior { - background-image: url(spritesmith-main-4.png); - background-position: -123px -1501px; - width: 40px; - height: 40px; -} -.shop_weapon_special_summer2015Healer { - background-image: url(spritesmith-main-4.png); - background-position: -164px -1501px; - width: 40px; - height: 40px; -} -.shop_weapon_special_summer2015Mage { - background-image: url(spritesmith-main-4.png); - background-position: -205px -1501px; - width: 40px; - height: 40px; -} -.shop_weapon_special_summer2015Rogue { - background-image: url(spritesmith-main-4.png); - background-position: -246px -1501px; - width: 40px; - height: 40px; -} -.shop_weapon_special_summer2015Warrior { - background-image: url(spritesmith-main-4.png); - background-position: -287px -1501px; - width: 40px; - height: 40px; -} -.shop_weapon_special_summerHealer { - background-image: url(spritesmith-main-4.png); - background-position: -328px -1501px; - width: 40px; - height: 40px; -} -.shop_weapon_special_summerMage { - background-image: url(spritesmith-main-4.png); - background-position: -369px -1501px; - width: 40px; - height: 40px; -} -.shop_weapon_special_summerRogue { - background-image: url(spritesmith-main-4.png); - background-position: -410px -1501px; - width: 40px; - height: 40px; -} -.shop_weapon_special_summerWarrior { - background-image: url(spritesmith-main-4.png); - background-position: -451px -1501px; - width: 40px; - height: 40px; -} -.slim_armor_special_summer2015Healer { - background-image: url(spritesmith-main-4.png); - background-position: -1309px -546px; + background-position: -1127px -637px; width: 90px; height: 90px; } -.slim_armor_special_summer2015Mage { +.slim_armor_warrior_4 { background-image: url(spritesmith-main-4.png); - background-position: -1309px -182px; + background-position: -455px -1037px; width: 90px; height: 90px; } -.slim_armor_special_summer2015Rogue { +.slim_armor_warrior_5 { background-image: url(spritesmith-main-4.png); - background-position: -363px 0px; - width: 102px; - height: 105px; -} -.slim_armor_special_summer2015Warrior { - background-image: url(spritesmith-main-4.png); - background-position: -669px -424px; - width: 90px; - height: 105px; -} -.slim_armor_special_summerHealer { - background-image: url(spritesmith-main-4.png); - background-position: -669px -318px; - width: 90px; - height: 105px; -} -.slim_armor_special_summerMage { - background-image: url(spritesmith-main-4.png); - background-position: -669px -212px; - width: 90px; - height: 105px; -} -.slim_armor_special_summerRogue { - background-image: url(spritesmith-main-4.png); - background-position: -466px -273px; - width: 111px; - height: 90px; -} -.slim_armor_special_summerWarrior { - background-image: url(spritesmith-main-4.png); - background-position: -224px -394px; - width: 111px; - height: 90px; -} -.weapon_special_summer2015Healer { - background-image: url(spritesmith-main-4.png); - background-position: -91px -1137px; + background-position: -910px -1037px; width: 90px; height: 90px; } -.weapon_special_summer2015Mage { - background-image: url(spritesmith-main-4.png); - background-position: -1218px -819px; - width: 90px; - height: 90px; -} -.weapon_special_summer2015Rogue { - background-image: url(spritesmith-main-4.png); - background-position: -363px -106px; - width: 102px; - height: 105px; -} -.weapon_special_summer2015Warrior { - background-image: url(spritesmith-main-4.png); - background-position: -578px -318px; - width: 90px; - height: 105px; -} -.weapon_special_summerHealer { - background-image: url(spritesmith-main-4.png); - background-position: -578px -212px; - width: 90px; - height: 105px; -} -.weapon_special_summerMage { - background-image: url(spritesmith-main-4.png); - background-position: -669px 0px; - width: 90px; - height: 105px; -} -.weapon_special_summerRogue { - background-image: url(spritesmith-main-4.png); - background-position: -336px -394px; - width: 111px; - height: 90px; -} -.weapon_special_summerWarrior { - background-image: url(spritesmith-main-4.png); - background-position: 0px -394px; - width: 111px; - height: 90px; -} -.broad_armor_special_candycane { - background-image: url(spritesmith-main-4.png); - background-position: -637px -1046px; - width: 90px; - height: 90px; -} -.broad_armor_special_ski { - background-image: url(spritesmith-main-4.png); - background-position: -364px -1046px; - width: 90px; - height: 90px; -} -.broad_armor_special_snowflake { - background-image: url(spritesmith-main-4.png); - background-position: -273px -1046px; - width: 90px; - height: 90px; -} -.broad_armor_special_winter2015Healer { - background-image: url(spritesmith-main-4.png); - background-position: -1127px -910px; - width: 90px; - height: 90px; -} -.broad_armor_special_winter2015Mage { - background-image: url(spritesmith-main-4.png); - background-position: -1127px -819px; - width: 90px; - height: 90px; -} -.broad_armor_special_winter2015Rogue { - background-image: url(spritesmith-main-4.png); - background-position: -97px -773px; - width: 96px; - height: 90px; -} -.broad_armor_special_winter2015Warrior { - background-image: url(spritesmith-main-4.png); - background-position: -1127px -364px; - width: 90px; - height: 90px; -} -.broad_armor_special_winter2016Healer { - background-image: url(spritesmith-main-4.png); - background-position: -664px -773px; - width: 93px; - height: 90px; -} -.broad_armor_special_winter2016Mage { - background-image: url(spritesmith-main-4.png); - background-position: -1127px 0px; - width: 90px; - height: 90px; -} -.broad_armor_special_winter2016Rogue { - background-image: url(spritesmith-main-4.png); - background-position: -728px -955px; - width: 90px; - height: 90px; -} -.broad_armor_special_winter2016Warrior { - background-image: url(spritesmith-main-4.png); - background-position: -637px -955px; - width: 90px; - height: 90px; -} -.broad_armor_special_yeti { - background-image: url(spritesmith-main-4.png); - background-position: -273px -955px; - width: 90px; - height: 90px; -} -.head_special_candycane { - background-image: url(spritesmith-main-4.png); - background-position: -182px -955px; - width: 90px; - height: 90px; -} -.head_special_nye { - background-image: url(spritesmith-main-4.png); - background-position: -1036px -819px; - width: 90px; - height: 90px; -} -.head_special_nye2014 { - background-image: url(spritesmith-main-4.png); - background-position: -1036px -728px; - width: 90px; - height: 90px; -} -.head_special_nye2015 { - background-image: url(spritesmith-main-4.png); - background-position: -1036px -364px; - width: 90px; - height: 90px; -} -.head_special_ski { - background-image: url(spritesmith-main-4.png); - background-position: -1036px -273px; - width: 90px; - height: 90px; -} -.head_special_snowflake { - background-image: url(spritesmith-main-4.png); - background-position: -910px -864px; - width: 90px; - height: 90px; -} -.head_special_winter2015Healer { - background-image: url(spritesmith-main-4.png); - background-position: -819px -864px; - width: 90px; - height: 90px; -} -.head_special_winter2015Mage { - background-image: url(spritesmith-main-4.png); - background-position: -455px -864px; - width: 90px; - height: 90px; -} -.head_special_winter2015Rogue { - background-image: url(spritesmith-main-4.png); - background-position: 0px -773px; - width: 96px; - height: 90px; -} -.head_special_winter2015Warrior { - background-image: url(spritesmith-main-4.png); - background-position: 0px -864px; - width: 90px; - height: 90px; -} -.head_special_winter2016Healer { - background-image: url(spritesmith-main-4.png); - background-position: -942px -637px; - width: 93px; - height: 90px; -} -.head_special_winter2016Mage { - background-image: url(spritesmith-main-4.png); - background-position: -851px -291px; - width: 90px; - height: 90px; -} -.head_special_winter2016Rogue { - background-image: url(spritesmith-main-4.png); - background-position: -455px -1410px; - width: 90px; - height: 90px; -} -.head_special_winter2016Warrior { - background-image: url(spritesmith-main-4.png); - background-position: -182px -1410px; - width: 90px; - height: 90px; -} -.head_special_yeti { - background-image: url(spritesmith-main-4.png); - background-position: -1491px -1274px; - width: 90px; - height: 90px; -} -.shield_special_ski { - background-image: url(spritesmith-main-4.png); - background-position: -424px -682px; - width: 104px; - height: 90px; -} -.shield_special_snowflake { - background-image: url(spritesmith-main-4.png); - background-position: -1491px -728px; - width: 90px; - height: 90px; -} -.shield_special_winter2015Healer { - background-image: url(spritesmith-main-4.png); - background-position: -1491px -182px; - width: 90px; - height: 90px; -} -.shield_special_winter2015Rogue { - background-image: url(spritesmith-main-4.png); - background-position: -723px -682px; - width: 96px; - height: 90px; -} -.shield_special_winter2015Warrior { - background-image: url(spritesmith-main-4.png); - background-position: -1491px 0px; - width: 90px; - height: 90px; -} -.shield_special_winter2016Healer { - background-image: url(spritesmith-main-4.png); - background-position: -942px 0px; - width: 93px; - height: 90px; -} -.shield_special_winter2016Rogue { - background-image: url(spritesmith-main-4.png); - background-position: -819px -1228px; - width: 90px; - height: 90px; -} -.shield_special_winter2016Warrior { - background-image: url(spritesmith-main-4.png); - background-position: -1218px -546px; - width: 90px; - height: 90px; -} -.shield_special_yeti { - background-image: url(spritesmith-main-4.png); - background-position: -1218px -455px; - width: 90px; - height: 90px; -} -.shop_armor_special_candycane { - background-image: url(spritesmith-main-4.png); - background-position: -984px -1542px; - width: 40px; - height: 40px; -} -.shop_armor_special_ski { - background-image: url(spritesmith-main-4.png); - background-position: -1025px -1542px; - width: 40px; - height: 40px; -} -.shop_armor_special_snowflake { - background-image: url(spritesmith-main-4.png); - background-position: -1066px -1542px; - width: 40px; - height: 40px; -} -.shop_armor_special_winter2015Healer { - background-image: url(spritesmith-main-4.png); - background-position: -1107px -1542px; - width: 40px; - height: 40px; -} -.shop_armor_special_winter2015Mage { - background-image: url(spritesmith-main-4.png); - background-position: -1148px -1542px; - width: 40px; - height: 40px; -} -.shop_armor_special_winter2015Rogue { - background-image: url(spritesmith-main-4.png); - background-position: -1189px -1542px; - width: 40px; - height: 40px; -} -.shop_armor_special_winter2015Warrior { - background-image: url(spritesmith-main-4.png); - background-position: -1230px -1542px; - width: 40px; - height: 40px; -} -.shop_armor_special_winter2016Healer { - background-image: url(spritesmith-main-4.png); - background-position: -1271px -1542px; - width: 40px; - height: 40px; -} -.shop_armor_special_winter2016Mage { - background-image: url(spritesmith-main-4.png); - background-position: -1312px -1542px; - width: 40px; - height: 40px; -} -.shop_armor_special_winter2016Rogue { - background-image: url(spritesmith-main-4.png); - background-position: -1353px -1542px; - width: 40px; - height: 40px; -} -.shop_armor_special_winter2016Warrior { - background-image: url(spritesmith-main-4.png); - background-position: -1394px -1542px; - width: 40px; - height: 40px; -} -.shop_armor_special_yeti { - background-image: url(spritesmith-main-4.png); - background-position: -1435px -1542px; - width: 40px; - height: 40px; -} -.shop_head_special_candycane { - background-image: url(spritesmith-main-4.png); - background-position: -1476px -1542px; - width: 40px; - height: 40px; -} -.shop_head_special_nye { - background-image: url(spritesmith-main-4.png); - background-position: -1517px -1542px; - width: 40px; - height: 40px; -} -.shop_head_special_nye2014 { - background-image: url(spritesmith-main-4.png); - background-position: -1558px -1542px; - width: 40px; - height: 40px; -} -.shop_head_special_nye2015 { - background-image: url(spritesmith-main-4.png); - background-position: -1599px -1542px; - width: 40px; - height: 40px; -} -.shop_head_special_ski { - background-image: url(spritesmith-main-4.png); - background-position: 0px -1583px; - width: 40px; - height: 40px; -} -.shop_head_special_snowflake { - background-image: url(spritesmith-main-4.png); - background-position: -41px -1583px; - width: 40px; - height: 40px; -} -.shop_head_special_winter2015Healer { - background-image: url(spritesmith-main-4.png); - background-position: -82px -1583px; - width: 40px; - height: 40px; -} -.shop_head_special_winter2015Mage { - background-image: url(spritesmith-main-4.png); - background-position: -123px -1583px; - width: 40px; - height: 40px; -} -.shop_head_special_winter2015Rogue { - background-image: url(spritesmith-main-4.png); - background-position: -164px -1583px; - width: 40px; - height: 40px; -} -.shop_head_special_winter2015Warrior { - background-image: url(spritesmith-main-4.png); - background-position: -205px -1583px; - width: 40px; - height: 40px; -} -.shop_head_special_winter2016Healer { - background-image: url(spritesmith-main-4.png); - background-position: -246px -1583px; - width: 40px; - height: 40px; -} -.shop_head_special_winter2016Mage { - background-image: url(spritesmith-main-4.png); - background-position: -287px -1583px; - width: 40px; - height: 40px; -} -.shop_head_special_winter2016Rogue { - background-image: url(spritesmith-main-4.png); - background-position: -328px -1583px; - width: 40px; - height: 40px; -} -.shop_head_special_winter2016Warrior { - background-image: url(spritesmith-main-4.png); - background-position: -369px -1583px; - width: 40px; - height: 40px; -} -.shop_head_special_yeti { - background-image: url(spritesmith-main-4.png); - background-position: -410px -1583px; - width: 40px; - height: 40px; -} -.shop_shield_special_ski { - background-image: url(spritesmith-main-4.png); - background-position: -451px -1583px; - width: 40px; - height: 40px; -} -.shop_shield_special_snowflake { - background-image: url(spritesmith-main-4.png); - background-position: -492px -1583px; - width: 40px; - height: 40px; -} -.shop_shield_special_winter2015Healer { - background-image: url(spritesmith-main-4.png); - background-position: -533px -1583px; - width: 40px; - height: 40px; -} -.shop_shield_special_winter2015Rogue { - background-image: url(spritesmith-main-4.png); - background-position: -574px -1583px; - width: 40px; - height: 40px; -} -.shop_shield_special_winter2015Warrior { - background-image: url(spritesmith-main-4.png); - background-position: -615px -1583px; - width: 40px; - height: 40px; -} -.shop_shield_special_winter2016Healer { - background-image: url(spritesmith-main-4.png); - background-position: -656px -1583px; - width: 40px; - height: 40px; -} -.shop_shield_special_winter2016Rogue { - background-image: url(spritesmith-main-4.png); - background-position: -697px -1583px; - width: 40px; - height: 40px; -} -.shop_shield_special_winter2016Warrior { - background-image: url(spritesmith-main-4.png); - background-position: -738px -1583px; - width: 40px; - height: 40px; -} -.shop_shield_special_yeti { - background-image: url(spritesmith-main-4.png); - background-position: -779px -1583px; - width: 40px; - height: 40px; -} -.shop_weapon_special_candycane { - background-image: url(spritesmith-main-4.png); - background-position: -820px -1583px; - width: 40px; - height: 40px; -} -.shop_weapon_special_ski { - background-image: url(spritesmith-main-4.png); - background-position: -861px -1583px; - width: 40px; - height: 40px; -} -.shop_weapon_special_snowflake { - background-image: url(spritesmith-main-4.png); - background-position: -902px -1583px; - width: 40px; - height: 40px; -} -.shop_weapon_special_winter2015Healer { - background-image: url(spritesmith-main-4.png); - background-position: -943px -1583px; - width: 40px; - height: 40px; -} -.shop_weapon_special_winter2015Mage { - background-image: url(spritesmith-main-4.png); - background-position: -984px -1583px; - width: 40px; - height: 40px; -} -.shop_weapon_special_winter2015Rogue { - background-image: url(spritesmith-main-4.png); - background-position: -1025px -1583px; - width: 40px; - height: 40px; -} -.shop_weapon_special_winter2015Warrior { - background-image: url(spritesmith-main-4.png); - background-position: -1066px -1583px; - width: 40px; - height: 40px; -} -.shop_weapon_special_winter2016Healer { - background-image: url(spritesmith-main-4.png); - background-position: -1107px -1583px; - width: 40px; - height: 40px; -} -.shop_weapon_special_winter2016Mage { - background-image: url(spritesmith-main-4.png); - background-position: -1148px -1583px; - width: 40px; - height: 40px; -} -.shop_weapon_special_winter2016Rogue { - background-image: url(spritesmith-main-4.png); - background-position: -1189px -1583px; - width: 40px; - height: 40px; -} -.shop_weapon_special_winter2016Warrior { - background-image: url(spritesmith-main-4.png); - background-position: -1230px -1583px; - width: 40px; - height: 40px; -} -.shop_weapon_special_yeti { - background-image: url(spritesmith-main-4.png); - background-position: -1271px -1583px; - width: 40px; - height: 40px; -} -.slim_armor_special_candycane { - background-image: url(spritesmith-main-4.png); - background-position: -1218px -364px; - width: 90px; - height: 90px; -} -.slim_armor_special_ski { - background-image: url(spritesmith-main-4.png); - background-position: -1218px -273px; - width: 90px; - height: 90px; -} -.slim_armor_special_snowflake { +.slim_armor_wizard_1 { background-image: url(spritesmith-main-4.png); background-position: -1218px -182px; width: 90px; height: 90px; } -.slim_armor_special_winter2015Healer { +.slim_armor_wizard_2 { background-image: url(spritesmith-main-4.png); - background-position: -1218px -91px; + background-position: -819px -1128px; width: 90px; height: 90px; } -.slim_armor_special_winter2015Mage { +.slim_armor_wizard_3 { background-image: url(spritesmith-main-4.png); - background-position: -1218px 0px; + background-position: -1309px -728px; width: 90px; height: 90px; } -.slim_armor_special_winter2015Rogue { - background-image: url(spritesmith-main-4.png); - background-position: -626px -682px; - width: 96px; - height: 90px; -} -.slim_armor_special_winter2015Warrior { - background-image: url(spritesmith-main-4.png); - background-position: -1001px -1046px; - width: 90px; - height: 90px; -} -.slim_armor_special_winter2016Healer { - background-image: url(spritesmith-main-4.png); - background-position: -942px -273px; - width: 93px; - height: 90px; -} -.slim_armor_special_winter2016Mage { - background-image: url(spritesmith-main-4.png); - background-position: -728px -1046px; - width: 90px; - height: 90px; -} -.slim_armor_special_winter2016Rogue { - background-image: url(spritesmith-main-4.png); - background-position: -1127px -455px; - width: 90px; - height: 90px; -} -.slim_armor_special_winter2016Warrior { - background-image: url(spritesmith-main-4.png); - background-position: -1127px -91px; - width: 90px; - height: 90px; -} -.slim_armor_special_yeti { - background-image: url(spritesmith-main-4.png); - background-position: 0px -955px; - width: 90px; - height: 90px; -} -.weapon_special_candycane { - background-image: url(spritesmith-main-4.png); - background-position: -1036px -637px; - width: 90px; - height: 90px; -} -.weapon_special_ski { - background-image: url(spritesmith-main-4.png); - background-position: -1036px -546px; - width: 90px; - height: 90px; -} -.weapon_special_snowflake { - background-image: url(spritesmith-main-4.png); - background-position: -364px -864px; - width: 90px; - height: 90px; -} -.weapon_special_winter2015Healer { - background-image: url(spritesmith-main-4.png); - background-position: -91px -864px; - width: 90px; - height: 90px; -} -.weapon_special_winter2015Mage { - background-image: url(spritesmith-main-4.png); - background-position: -851px -655px; - width: 90px; - height: 90px; -} -.weapon_special_winter2015Rogue { - background-image: url(spritesmith-main-4.png); - background-position: -529px -682px; - width: 96px; - height: 90px; -} -.weapon_special_winter2015Warrior { - background-image: url(spritesmith-main-4.png); - background-position: -851px -473px; - width: 90px; - height: 90px; -} -.weapon_special_winter2016Healer { - background-image: url(spritesmith-main-4.png); - background-position: -288px -773px; - width: 93px; - height: 90px; -} -.weapon_special_winter2016Mage { - background-image: url(spritesmith-main-4.png); - background-position: -1491px -91px; - width: 90px; - height: 90px; -} -.weapon_special_winter2016Rogue { - background-image: url(spritesmith-main-4.png); - background-position: -910px -1228px; - width: 90px; - height: 90px; -} -.weapon_special_winter2016Warrior { +.slim_armor_wizard_4 { background-image: url(spritesmith-main-4.png); background-position: -1309px -1001px; width: 90px; height: 90px; } -.weapon_special_yeti { +.slim_armor_wizard_5 { + background-image: url(spritesmith-main-4.png); + background-position: -1400px -637px; + width: 90px; + height: 90px; +} +.broad_armor_special_birthday { + background-image: url(spritesmith-main-4.png); + background-position: -364px -1310px; + width: 90px; + height: 90px; +} +.broad_armor_special_birthday2015 { + background-image: url(spritesmith-main-4.png); + background-position: -1365px -1401px; + width: 90px; + height: 90px; +} +.broad_armor_special_birthday2016 { + background-image: url(spritesmith-main-4.png); + background-position: -455px -855px; + width: 90px; + height: 90px; +} +.shop_armor_special_birthday { + background-image: url(spritesmith-main-4.png); + background-position: -1673px -123px; + width: 40px; + height: 40px; +} +.shop_armor_special_birthday2015 { + background-image: url(spritesmith-main-4.png); + background-position: -1673px -82px; + width: 40px; + height: 40px; +} +.shop_armor_special_birthday2016 { + background-image: url(spritesmith-main-4.png); + background-position: -1673px -41px; + width: 40px; + height: 40px; +} +.slim_armor_special_birthday { + background-image: url(spritesmith-main-4.png); + background-position: -728px -946px; + width: 90px; + height: 90px; +} +.slim_armor_special_birthday2015 { + background-image: url(spritesmith-main-4.png); + background-position: -819px -946px; + width: 90px; + height: 90px; +} +.slim_armor_special_birthday2016 { + background-image: url(spritesmith-main-4.png); + background-position: -910px -946px; + width: 90px; + height: 90px; +} +.broad_armor_special_fall2015Healer { + background-image: url(spritesmith-main-4.png); + background-position: -942px -728px; + width: 93px; + height: 90px; +} +.broad_armor_special_fall2015Mage { + background-image: url(spritesmith-main-4.png); + background-position: -330px -485px; + width: 105px; + height: 90px; +} +.broad_armor_special_fall2015Rogue { + background-image: url(spritesmith-main-4.png); + background-position: -1127px -728px; + width: 90px; + height: 90px; +} +.broad_armor_special_fall2015Warrior { + background-image: url(spritesmith-main-4.png); + background-position: -91px -1037px; + width: 90px; + height: 90px; +} +.broad_armor_special_fallHealer { + background-image: url(spritesmith-main-4.png); + background-position: -364px -1037px; + width: 90px; + height: 90px; +} +.broad_armor_special_fallMage { + background-image: url(spritesmith-main-4.png); + background-position: 0px 0px; + width: 120px; + height: 90px; +} +.broad_armor_special_fallRogue { + background-image: url(spritesmith-main-4.png); + background-position: -530px -576px; + width: 105px; + height: 90px; +} +.broad_armor_special_fallWarrior { + background-image: url(spritesmith-main-4.png); + background-position: -1001px -1037px; + width: 90px; + height: 90px; +} +.head_special_fall2015Healer { + background-image: url(spritesmith-main-4.png); + background-position: -942px -637px; + width: 93px; + height: 90px; +} +.head_special_fall2015Mage { + background-image: url(spritesmith-main-4.png); + background-position: 0px -667px; + width: 105px; + height: 90px; +} +.head_special_fall2015Rogue { + background-image: url(spritesmith-main-4.png); + background-position: -1309px -182px; + width: 90px; + height: 90px; +} +.head_special_fall2015Warrior { + background-image: url(spritesmith-main-4.png); + background-position: -1309px -546px; + width: 90px; + height: 90px; +} +.head_special_fallHealer { background-image: url(spritesmith-main-4.png); background-position: -1309px -637px; width: 90px; height: 90px; } -.back_special_wondercon_black { +.head_special_fallMage { background-image: url(spritesmith-main-4.png); - background-position: -1001px -1137px; + background-position: 0px -91px; + width: 120px; + height: 90px; +} +.head_special_fallRogue { + background-image: url(spritesmith-main-4.png); + background-position: -224px -485px; + width: 105px; + height: 90px; +} +.head_special_fallWarrior { + background-image: url(spritesmith-main-4.png); + background-position: -819px -1219px; width: 90px; height: 90px; } -.back_special_wondercon_red { +.shield_special_fall2015Healer { background-image: url(spritesmith-main-4.png); - background-position: -910px -1137px; + background-position: -942px -273px; + width: 93px; + height: 90px; +} +.shield_special_fall2015Rogue { + background-image: url(spritesmith-main-4.png); + background-position: -436px -485px; + width: 105px; + height: 90px; +} +.shield_special_fall2015Warrior { + background-image: url(spritesmith-main-4.png); + background-position: -546px -1310px; width: 90px; height: 90px; } -.body_special_wondercon_black { +.shield_special_fallHealer { background-image: url(spritesmith-main-4.png); - background-position: -546px -1137px; + background-position: -273px -1401px; width: 90px; height: 90px; } -.body_special_wondercon_gold { +.shield_special_fallRogue { background-image: url(spritesmith-main-4.png); - background-position: -455px -1137px; + background-position: -318px -576px; + width: 105px; + height: 90px; +} +.shield_special_fallWarrior { + background-image: url(spritesmith-main-4.png); + background-position: -364px -855px; width: 90px; height: 90px; } -.body_special_wondercon_red { +.shop_armor_special_fall2015Healer { + background-image: url(spritesmith-main-4.png); + background-position: -1673px 0px; + width: 40px; + height: 40px; +} +.shop_armor_special_fall2015Mage { + background-image: url(spritesmith-main-4.png); + background-position: -1599px -1615px; + width: 40px; + height: 40px; +} +.shop_armor_special_fall2015Rogue { + background-image: url(spritesmith-main-4.png); + background-position: -1558px -1615px; + width: 40px; + height: 40px; +} +.shop_armor_special_fall2015Warrior { + background-image: url(spritesmith-main-4.png); + background-position: -1517px -1615px; + width: 40px; + height: 40px; +} +.shop_armor_special_fallHealer { + background-image: url(spritesmith-main-4.png); + background-position: -1476px -1615px; + width: 40px; + height: 40px; +} +.shop_armor_special_fallMage { + background-image: url(spritesmith-main-4.png); + background-position: -1435px -1615px; + width: 40px; + height: 40px; +} +.shop_armor_special_fallRogue { + background-image: url(spritesmith-main-4.png); + background-position: -1394px -1615px; + width: 40px; + height: 40px; +} +.shop_armor_special_fallWarrior { + background-image: url(spritesmith-main-4.png); + background-position: -1353px -1615px; + width: 40px; + height: 40px; +} +.shop_head_special_fall2015Healer { + background-image: url(spritesmith-main-4.png); + background-position: -1312px -1615px; + width: 40px; + height: 40px; +} +.shop_head_special_fall2015Mage { + background-image: url(spritesmith-main-4.png); + background-position: -1271px -1615px; + width: 40px; + height: 40px; +} +.shop_head_special_fall2015Rogue { + background-image: url(spritesmith-main-4.png); + background-position: -1230px -1615px; + width: 40px; + height: 40px; +} +.shop_head_special_fall2015Warrior { + background-image: url(spritesmith-main-4.png); + background-position: -1189px -1615px; + width: 40px; + height: 40px; +} +.shop_head_special_fallHealer { + background-image: url(spritesmith-main-4.png); + background-position: -1148px -1615px; + width: 40px; + height: 40px; +} +.shop_head_special_fallMage { + background-image: url(spritesmith-main-4.png); + background-position: -1107px -1615px; + width: 40px; + height: 40px; +} +.shop_head_special_fallRogue { + background-image: url(spritesmith-main-4.png); + background-position: -1066px -1615px; + width: 40px; + height: 40px; +} +.shop_head_special_fallWarrior { + background-image: url(spritesmith-main-4.png); + background-position: -1025px -1615px; + width: 40px; + height: 40px; +} +.shop_shield_special_fall2015Healer { + background-image: url(spritesmith-main-4.png); + background-position: -984px -1615px; + width: 40px; + height: 40px; +} +.shop_shield_special_fall2015Rogue { + background-image: url(spritesmith-main-4.png); + background-position: -943px -1615px; + width: 40px; + height: 40px; +} +.shop_shield_special_fall2015Warrior { + background-image: url(spritesmith-main-4.png); + background-position: -902px -1615px; + width: 40px; + height: 40px; +} +.shop_shield_special_fallHealer { + background-image: url(spritesmith-main-4.png); + background-position: -861px -1615px; + width: 40px; + height: 40px; +} +.shop_shield_special_fallRogue { + background-image: url(spritesmith-main-4.png); + background-position: -820px -1615px; + width: 40px; + height: 40px; +} +.shop_shield_special_fallWarrior { + background-image: url(spritesmith-main-4.png); + background-position: -779px -1615px; + width: 40px; + height: 40px; +} +.shop_weapon_special_fall2015Healer { + background-image: url(spritesmith-main-4.png); + background-position: -820px -1574px; + width: 40px; + height: 40px; +} +.shop_weapon_special_fall2015Mage { + background-image: url(spritesmith-main-4.png); + background-position: -779px -1574px; + width: 40px; + height: 40px; +} +.shop_weapon_special_fall2015Rogue { + background-image: url(spritesmith-main-4.png); + background-position: -738px -1574px; + width: 40px; + height: 40px; +} +.shop_weapon_special_fall2015Warrior { + background-image: url(spritesmith-main-4.png); + background-position: -697px -1574px; + width: 40px; + height: 40px; +} +.shop_weapon_special_fallHealer { + background-image: url(spritesmith-main-4.png); + background-position: -656px -1574px; + width: 40px; + height: 40px; +} +.shop_weapon_special_fallMage { + background-image: url(spritesmith-main-4.png); + background-position: -615px -1574px; + width: 40px; + height: 40px; +} +.shop_weapon_special_fallRogue { + background-image: url(spritesmith-main-4.png); + background-position: -574px -1574px; + width: 40px; + height: 40px; +} +.shop_weapon_special_fallWarrior { + background-image: url(spritesmith-main-4.png); + background-position: -533px -1574px; + width: 40px; + height: 40px; +} +.slim_armor_special_fall2015Healer { + background-image: url(spritesmith-main-4.png); + background-position: -942px -91px; + width: 93px; + height: 90px; +} +.slim_armor_special_fall2015Mage { + background-image: url(spritesmith-main-4.png); + background-position: -106px -667px; + width: 105px; + height: 90px; +} +.slim_armor_special_fall2015Rogue { + background-image: url(spritesmith-main-4.png); + background-position: -1309px -1092px; + width: 90px; + height: 90px; +} +.slim_armor_special_fall2015Warrior { + background-image: url(spritesmith-main-4.png); + background-position: -182px -1219px; + width: 90px; + height: 90px; +} +.slim_armor_special_fallHealer { + background-image: url(spritesmith-main-4.png); + background-position: -728px -1219px; + width: 90px; + height: 90px; +} +.slim_armor_special_fallMage { + background-image: url(spritesmith-main-4.png); + background-position: -242px 0px; + width: 120px; + height: 90px; +} +.slim_armor_special_fallRogue { + background-image: url(spritesmith-main-4.png); + background-position: 0px -576px; + width: 105px; + height: 90px; +} +.slim_armor_special_fallWarrior { + background-image: url(spritesmith-main-4.png); + background-position: -1400px -728px; + width: 90px; + height: 90px; +} +.weapon_special_fall2015Healer { + background-image: url(spritesmith-main-4.png); + background-position: -273px -758px; + width: 93px; + height: 90px; +} +.weapon_special_fall2015Mage { + background-image: url(spritesmith-main-4.png); + background-position: -212px -576px; + width: 105px; + height: 90px; +} +.weapon_special_fall2015Rogue { + background-image: url(spritesmith-main-4.png); + background-position: -637px -1310px; + width: 90px; + height: 90px; +} +.weapon_special_fall2015Warrior { + background-image: url(spritesmith-main-4.png); + background-position: -910px -1310px; + width: 90px; + height: 90px; +} +.weapon_special_fallHealer { + background-image: url(spritesmith-main-4.png); + background-position: -1491px -1001px; + width: 90px; + height: 90px; +} +.weapon_special_fallMage { + background-image: url(spritesmith-main-4.png); + background-position: -242px -91px; + width: 120px; + height: 90px; +} +.weapon_special_fallRogue { + background-image: url(spritesmith-main-4.png); + background-position: -424px -576px; + width: 105px; + height: 90px; +} +.weapon_special_fallWarrior { + background-image: url(spritesmith-main-4.png); + background-position: -91px -855px; + width: 90px; + height: 90px; +} +.broad_armor_special_gaymerx { + background-image: url(spritesmith-main-4.png); + background-position: -182px -855px; + width: 90px; + height: 90px; +} +.head_special_gaymerx { + background-image: url(spritesmith-main-4.png); + background-position: -273px -855px; + width: 90px; + height: 90px; +} +.shop_armor_special_gaymerx { + background-image: url(spritesmith-main-4.png); + background-position: -492px -1574px; + width: 40px; + height: 40px; +} +.shop_head_special_gaymerx { + background-image: url(spritesmith-main-4.png); + background-position: -451px -1574px; + width: 40px; + height: 40px; +} +.slim_armor_special_gaymerx { + background-image: url(spritesmith-main-4.png); + background-position: -546px -855px; + width: 90px; + height: 90px; +} +.back_mystery_201402 { + background-image: url(spritesmith-main-4.png); + background-position: -637px -855px; + width: 90px; + height: 90px; +} +.broad_armor_mystery_201402 { + background-image: url(spritesmith-main-4.png); + background-position: -728px -855px; + width: 90px; + height: 90px; +} +.head_mystery_201402 { + background-image: url(spritesmith-main-4.png); + background-position: -819px -855px; + width: 90px; + height: 90px; +} +.shop_armor_mystery_201402 { + background-image: url(spritesmith-main-4.png); + background-position: -410px -1574px; + width: 40px; + height: 40px; +} +.shop_back_mystery_201402 { + background-image: url(spritesmith-main-4.png); + background-position: -369px -1574px; + width: 40px; + height: 40px; +} +.shop_head_mystery_201402 { + background-image: url(spritesmith-main-4.png); + background-position: -328px -1574px; + width: 40px; + height: 40px; +} +.slim_armor_mystery_201402 { + background-image: url(spritesmith-main-4.png); + background-position: -1036px -182px; + width: 90px; + height: 90px; +} +.broad_armor_mystery_201403 { + background-image: url(spritesmith-main-4.png); + background-position: -1036px -273px; + width: 90px; + height: 90px; +} +.headAccessory_mystery_201403 { + background-image: url(spritesmith-main-4.png); + background-position: -1036px -364px; + width: 90px; + height: 90px; +} +.shop_armor_mystery_201403 { + background-image: url(spritesmith-main-4.png); + background-position: -287px -1574px; + width: 40px; + height: 40px; +} +.shop_headAccessory_mystery_201403 { + background-image: url(spritesmith-main-4.png); + background-position: -246px -1574px; + width: 40px; + height: 40px; +} +.slim_armor_mystery_201403 { + background-image: url(spritesmith-main-4.png); + background-position: -1036px -637px; + width: 90px; + height: 90px; +} +.back_mystery_201404 { + background-image: url(spritesmith-main-4.png); + background-position: -1036px -728px; + width: 90px; + height: 90px; +} +.headAccessory_mystery_201404 { + background-image: url(spritesmith-main-4.png); + background-position: -1036px -819px; + width: 90px; + height: 90px; +} +.shop_back_mystery_201404 { + background-image: url(spritesmith-main-4.png); + background-position: -205px -1574px; + width: 40px; + height: 40px; +} +.shop_headAccessory_mystery_201404 { + background-image: url(spritesmith-main-4.png); + background-position: -164px -1574px; + width: 40px; + height: 40px; +} +.broad_armor_mystery_201405 { + background-image: url(spritesmith-main-4.png); + background-position: -182px -946px; + width: 90px; + height: 90px; +} +.head_mystery_201405 { + background-image: url(spritesmith-main-4.png); + background-position: -273px -946px; + width: 90px; + height: 90px; +} +.shop_armor_mystery_201405 { + background-image: url(spritesmith-main-4.png); + background-position: -123px -1574px; + width: 40px; + height: 40px; +} +.shop_head_mystery_201405 { + background-image: url(spritesmith-main-4.png); + background-position: -82px -1574px; + width: 40px; + height: 40px; +} +.slim_armor_mystery_201405 { + background-image: url(spritesmith-main-4.png); + background-position: -546px -946px; + width: 90px; + height: 90px; +} +.broad_armor_mystery_201406 { + background-image: url(spritesmith-main-4.png); + background-position: -182px -758px; + width: 90px; + height: 96px; +} +.head_mystery_201406 { + background-image: url(spritesmith-main-4.png); + background-position: -91px -758px; + width: 90px; + height: 96px; +} +.shop_armor_mystery_201406 { + background-image: url(spritesmith-main-4.png); + background-position: -41px -1574px; + width: 40px; + height: 40px; +} +.shop_head_mystery_201406 { + background-image: url(spritesmith-main-4.png); + background-position: 0px -1574px; + width: 40px; + height: 40px; +} +.slim_armor_mystery_201406 { + background-image: url(spritesmith-main-4.png); + background-position: 0px -758px; + width: 90px; + height: 96px; +} +.broad_armor_mystery_201407 { + background-image: url(spritesmith-main-4.png); + background-position: -1127px 0px; + width: 90px; + height: 90px; +} +.head_mystery_201407 { + background-image: url(spritesmith-main-4.png); + background-position: -1127px -91px; + width: 90px; + height: 90px; +} +.shop_armor_mystery_201407 { + background-image: url(spritesmith-main-4.png); + background-position: -1599px -1533px; + width: 40px; + height: 40px; +} +.shop_head_mystery_201407 { + background-image: url(spritesmith-main-4.png); + background-position: -1558px -1533px; + width: 40px; + height: 40px; +} +.slim_armor_mystery_201407 { + background-image: url(spritesmith-main-4.png); + background-position: -1127px -364px; + width: 90px; + height: 90px; +} +.broad_armor_mystery_201408 { + background-image: url(spritesmith-main-4.png); + background-position: -1127px -455px; + width: 90px; + height: 90px; +} +.head_mystery_201408 { + background-image: url(spritesmith-main-4.png); + background-position: -1127px -546px; + width: 90px; + height: 90px; +} +.shop_armor_mystery_201408 { + background-image: url(spritesmith-main-4.png); + background-position: -1517px -1533px; + width: 40px; + height: 40px; +} +.shop_head_mystery_201408 { + background-image: url(spritesmith-main-4.png); + background-position: -1476px -1533px; + width: 40px; + height: 40px; +} +.slim_armor_mystery_201408 { + background-image: url(spritesmith-main-4.png); + background-position: -1127px -819px; + width: 90px; + height: 90px; +} +.broad_armor_mystery_201409 { + background-image: url(spritesmith-main-4.png); + background-position: -1127px -910px; + width: 90px; + height: 90px; +} +.headAccessory_mystery_201409 { + background-image: url(spritesmith-main-4.png); + background-position: 0px -1037px; + width: 90px; + height: 90px; +} +.shop_armor_mystery_201409 { + background-image: url(spritesmith-main-4.png); + background-position: -1435px -1533px; + width: 40px; + height: 40px; +} +.shop_headAccessory_mystery_201409 { + background-image: url(spritesmith-main-4.png); + background-position: -1394px -1533px; + width: 40px; + height: 40px; +} +.slim_armor_mystery_201409 { + background-image: url(spritesmith-main-4.png); + background-position: -273px -1037px; + width: 90px; + height: 90px; +} +.back_mystery_201410 { + background-image: url(spritesmith-main-4.png); + background-position: -942px -182px; + width: 93px; + height: 90px; +} +.broad_armor_mystery_201410 { + background-image: url(spritesmith-main-4.png); + background-position: -837px -758px; + width: 93px; + height: 90px; +} +.shop_armor_mystery_201410 { + background-image: url(spritesmith-main-4.png); + background-position: -1353px -1533px; + width: 40px; + height: 40px; +} +.shop_back_mystery_201410 { + background-image: url(spritesmith-main-4.png); + background-position: -1312px -1533px; + width: 40px; + height: 40px; +} +.slim_armor_mystery_201410 { + background-image: url(spritesmith-main-4.png); + background-position: -367px -758px; + width: 93px; + height: 90px; +} +.head_mystery_201411 { + background-image: url(spritesmith-main-4.png); + background-position: -819px -1037px; + width: 90px; + height: 90px; +} +.shop_head_mystery_201411 { + background-image: url(spritesmith-main-4.png); + background-position: -1271px -1533px; + width: 40px; + height: 40px; +} +.shop_weapon_mystery_201411 { + background-image: url(spritesmith-main-4.png); + background-position: -1230px -1533px; + width: 40px; + height: 40px; +} +.weapon_mystery_201411 { + background-image: url(spritesmith-main-4.png); + background-position: -1092px -1037px; + width: 90px; + height: 90px; +} +.broad_armor_mystery_201412 { + background-image: url(spritesmith-main-4.png); + background-position: -1218px 0px; + width: 90px; + height: 90px; +} +.head_mystery_201412 { + background-image: url(spritesmith-main-4.png); + background-position: -1218px -91px; + width: 90px; + height: 90px; +} +.shop_armor_mystery_201412 { + background-image: url(spritesmith-main-4.png); + background-position: -1189px -1533px; + width: 40px; + height: 40px; +} +.shop_head_mystery_201412 { + background-image: url(spritesmith-main-4.png); + background-position: -1673px -164px; + width: 40px; + height: 40px; +} +.slim_armor_mystery_201412 { + background-image: url(spritesmith-main-4.png); + background-position: -1218px -364px; + width: 90px; + height: 90px; +} +.broad_armor_mystery_201501 { + background-image: url(spritesmith-main-4.png); + background-position: -1218px -455px; + width: 90px; + height: 90px; +} +.head_mystery_201501 { + background-image: url(spritesmith-main-4.png); + background-position: -1218px -546px; + width: 90px; + height: 90px; +} +.shop_armor_mystery_201501 { + background-image: url(spritesmith-main-4.png); + background-position: -1107px -1533px; + width: 40px; + height: 40px; +} +.shop_head_mystery_201501 { + background-image: url(spritesmith-main-4.png); + background-position: -1066px -1533px; + width: 40px; + height: 40px; +} +.slim_armor_mystery_201501 { + background-image: url(spritesmith-main-4.png); + background-position: -1218px -819px; + width: 90px; + height: 90px; +} +.headAccessory_mystery_201502 { + background-image: url(spritesmith-main-4.png); + background-position: -1218px -910px; + width: 90px; + height: 90px; +} +.shop_headAccessory_mystery_201502 { + background-image: url(spritesmith-main-4.png); + background-position: -1025px -1533px; + width: 40px; + height: 40px; +} +.shop_weapon_mystery_201502 { + background-image: url(spritesmith-main-4.png); + background-position: -984px -1533px; + width: 40px; + height: 40px; +} +.weapon_mystery_201502 { + background-image: url(spritesmith-main-4.png); + background-position: -91px -1128px; + width: 90px; + height: 90px; +} +.broad_armor_mystery_201503 { + background-image: url(spritesmith-main-4.png); + background-position: -182px -1128px; + width: 90px; + height: 90px; +} +.eyewear_mystery_201503 { + background-image: url(spritesmith-main-4.png); + background-position: -273px -1128px; + width: 90px; + height: 90px; +} +.shop_armor_mystery_201503 { + background-image: url(spritesmith-main-4.png); + background-position: -943px -1533px; + width: 40px; + height: 40px; +} +.shop_eyewear_mystery_201503 { + background-image: url(spritesmith-main-4.png); + background-position: -902px -1533px; + width: 40px; + height: 40px; +} +.slim_armor_mystery_201503 { + background-image: url(spritesmith-main-4.png); + background-position: -546px -1128px; + width: 90px; + height: 90px; +} +.back_mystery_201504 { + background-image: url(spritesmith-main-4.png); + background-position: -637px -1128px; + width: 90px; + height: 90px; +} +.broad_armor_mystery_201504 { + background-image: url(spritesmith-main-4.png); + background-position: -728px -1128px; + width: 90px; + height: 90px; +} +.shop_armor_mystery_201504 { + background-image: url(spritesmith-main-4.png); + background-position: -861px -1533px; + width: 40px; + height: 40px; +} +.shop_back_mystery_201504 { + background-image: url(spritesmith-main-4.png); + background-position: -820px -1533px; + width: 40px; + height: 40px; +} +.slim_armor_mystery_201504 { + background-image: url(spritesmith-main-4.png); + background-position: -1001px -1128px; + width: 90px; + height: 90px; +} +.head_mystery_201505 { + background-image: url(spritesmith-main-4.png); + background-position: -1092px -1128px; + width: 90px; + height: 90px; +} +.shop_head_mystery_201505 { + background-image: url(spritesmith-main-4.png); + background-position: -779px -1533px; + width: 40px; + height: 40px; +} +.shop_weapon_mystery_201505 { + background-image: url(spritesmith-main-4.png); + background-position: -738px -1533px; + width: 40px; + height: 40px; +} +.weapon_mystery_201505 { + background-image: url(spritesmith-main-4.png); + background-position: -1309px -91px; + width: 90px; + height: 90px; +} +.broad_armor_mystery_201506 { + background-image: url(spritesmith-main-4.png); + background-position: -851px -318px; + width: 90px; + height: 105px; +} +.eyewear_mystery_201506 { + background-image: url(spritesmith-main-4.png); + background-position: -760px -318px; + width: 90px; + height: 105px; +} +.shop_armor_mystery_201506 { + background-image: url(spritesmith-main-4.png); + background-position: -697px -1533px; + width: 40px; + height: 40px; +} +.shop_eyewear_mystery_201506 { + background-image: url(spritesmith-main-4.png); + background-position: -656px -1533px; + width: 40px; + height: 40px; +} +.slim_armor_mystery_201506 { + background-image: url(spritesmith-main-4.png); + background-position: -760px -212px; + width: 90px; + height: 105px; +} +.back_mystery_201507 { + background-image: url(spritesmith-main-4.png); + background-position: -760px -106px; + width: 90px; + height: 105px; +} +.eyewear_mystery_201507 { + background-image: url(spritesmith-main-4.png); + background-position: -669px 0px; + width: 90px; + height: 105px; +} +.shop_back_mystery_201507 { + background-image: url(spritesmith-main-4.png); + background-position: -615px -1533px; + width: 40px; + height: 40px; +} +.shop_eyewear_mystery_201507 { + background-image: url(spritesmith-main-4.png); + background-position: -574px -1533px; + width: 40px; + height: 40px; +} +.broad_armor_mystery_201508 { + background-image: url(spritesmith-main-4.png); + background-position: -555px -758px; + width: 93px; + height: 90px; +} +.head_mystery_201508 { + background-image: url(spritesmith-main-4.png); + background-position: -649px -758px; + width: 93px; + height: 90px; +} +.shop_armor_mystery_201508 { + background-image: url(spritesmith-main-4.png); + background-position: -533px -1533px; + width: 40px; + height: 40px; +} +.shop_head_mystery_201508 { + background-image: url(spritesmith-main-4.png); + background-position: -492px -1533px; + width: 40px; + height: 40px; +} +.slim_armor_mystery_201508 { + background-image: url(spritesmith-main-4.png); + background-position: -743px -758px; + width: 93px; + height: 90px; +} +.broad_armor_mystery_201509 { + background-image: url(spritesmith-main-4.png); + background-position: -273px -1219px; + width: 90px; + height: 90px; +} +.head_mystery_201509 { + background-image: url(spritesmith-main-4.png); + background-position: -364px -1219px; + width: 90px; + height: 90px; +} +.shop_armor_mystery_201509 { + background-image: url(spritesmith-main-4.png); + background-position: -451px -1533px; + width: 40px; + height: 40px; +} +.shop_head_mystery_201509 { + background-image: url(spritesmith-main-4.png); + background-position: -410px -1533px; + width: 40px; + height: 40px; +} +.slim_armor_mystery_201509 { + background-image: url(spritesmith-main-4.png); + background-position: -637px -1219px; + width: 90px; + height: 90px; +} +.back_mystery_201510 { + background-image: url(spritesmith-main-4.png); + background-position: -106px -576px; + width: 105px; + height: 90px; +} +.headAccessory_mystery_201510 { + background-image: url(spritesmith-main-4.png); + background-position: -942px 0px; + width: 93px; + height: 90px; +} +.shop_back_mystery_201510 { + background-image: url(spritesmith-main-4.png); + background-position: -369px -1533px; + width: 40px; + height: 40px; +} +.shop_headAccessory_mystery_201510 { + background-image: url(spritesmith-main-4.png); + background-position: -328px -1533px; + width: 40px; + height: 40px; +} +.broad_armor_mystery_201511 { + background-image: url(spritesmith-main-4.png); + background-position: -1092px -1219px; + width: 90px; + height: 90px; +} +.head_mystery_201511 { + background-image: url(spritesmith-main-4.png); + background-position: -1183px -1219px; + width: 90px; + height: 90px; +} +.shop_armor_mystery_201511 { + background-image: url(spritesmith-main-4.png); + background-position: -1625px -1001px; + width: 42px; + height: 42px; +} +.shop_head_mystery_201511 { + background-image: url(spritesmith-main-4.png); + background-position: -1582px -1001px; + width: 42px; + height: 42px; +} +.slim_armor_mystery_201511 { + background-image: url(spritesmith-main-4.png); + background-position: -1400px -91px; + width: 90px; + height: 90px; +} +.broad_armor_mystery_201512 { + background-image: url(spritesmith-main-4.png); + background-position: -1400px -182px; + width: 90px; + height: 90px; +} +.head_mystery_201512 { + background-image: url(spritesmith-main-4.png); + background-position: -1400px -273px; + width: 90px; + height: 90px; +} +.shop_armor_mystery_201512 { + background-image: url(spritesmith-main-4.png); + background-position: -205px -1533px; + width: 40px; + height: 40px; +} +.shop_head_mystery_201512 { + background-image: url(spritesmith-main-4.png); + background-position: -164px -1533px; + width: 40px; + height: 40px; +} +.slim_armor_mystery_201512 { + background-image: url(spritesmith-main-4.png); + background-position: -1400px -546px; + width: 90px; + height: 90px; +} +.head_mystery_201601 { + background-image: url(spritesmith-main-4.png); + background-position: -121px -91px; + width: 120px; + height: 90px; +} +.shield_mystery_201601 { + background-image: url(spritesmith-main-4.png); + background-position: -121px 0px; + width: 120px; + height: 90px; +} +.shop_head_mystery_201601 { + background-image: url(spritesmith-main-4.png); + background-position: -123px -1533px; + width: 40px; + height: 40px; +} +.shop_shield_mystery_201601 { + background-image: url(spritesmith-main-4.png); + background-position: -1623px -1249px; + width: 40px; + height: 40px; +} +.back_mystery_201602 { + background-image: url(spritesmith-main-4.png); + background-position: -1400px -1001px; + width: 90px; + height: 90px; +} +.head_mystery_201602 { + background-image: url(spritesmith-main-4.png); + background-position: -1400px -1092px; + width: 90px; + height: 90px; +} +.shop_back_mystery_201602 { + background-image: url(spritesmith-main-4.png); + background-position: -1582px -1249px; + width: 40px; + height: 40px; +} +.shop_head_mystery_201602 { + background-image: url(spritesmith-main-4.png); + background-position: -1623px -1208px; + width: 40px; + height: 40px; +} +.broad_armor_mystery_201603 { + background-image: url(spritesmith-main-4.png); + background-position: -91px -1310px; + width: 90px; + height: 90px; +} +.head_mystery_201603 { + background-image: url(spritesmith-main-4.png); + background-position: -182px -1310px; + width: 90px; + height: 90px; +} +.shop_armor_mystery_201603 { + background-image: url(spritesmith-main-4.png); + background-position: -1582px -1208px; + width: 40px; + height: 40px; +} +.shop_head_mystery_201603 { + background-image: url(spritesmith-main-4.png); + background-position: -1623px -1167px; + width: 40px; + height: 40px; +} +.slim_armor_mystery_201603 { + background-image: url(spritesmith-main-4.png); + background-position: -455px -1310px; + width: 90px; + height: 90px; +} +.broad_armor_mystery_201604 { + background-image: url(spritesmith-main-4.png); + background-position: -942px -364px; + width: 93px; + height: 90px; +} +.head_mystery_201604 { + background-image: url(spritesmith-main-4.png); + background-position: -942px -455px; + width: 93px; + height: 90px; +} +.shop_armor_mystery_201604 { + background-image: url(spritesmith-main-4.png); + background-position: -1582px -1167px; + width: 40px; + height: 40px; +} +.shop_head_mystery_201604 { + background-image: url(spritesmith-main-4.png); + background-position: -1623px -1126px; + width: 40px; + height: 40px; +} +.slim_armor_mystery_201604 { + background-image: url(spritesmith-main-4.png); + background-position: -942px -546px; + width: 93px; + height: 90px; +} +.broad_armor_mystery_301404 { + background-image: url(spritesmith-main-4.png); + background-position: -1001px -1310px; + width: 90px; + height: 90px; +} +.eyewear_mystery_301404 { + background-image: url(spritesmith-main-4.png); + background-position: -1092px -1310px; + width: 90px; + height: 90px; +} +.head_mystery_301404 { + background-image: url(spritesmith-main-4.png); + background-position: -1183px -1310px; + width: 90px; + height: 90px; +} +.shop_armor_mystery_301404 { + background-image: url(spritesmith-main-4.png); + background-position: -1582px -1126px; + width: 40px; + height: 40px; +} +.shop_eyewear_mystery_301404 { + background-image: url(spritesmith-main-4.png); + background-position: -1623px -1085px; + width: 40px; + height: 40px; +} +.shop_head_mystery_301404 { + background-image: url(spritesmith-main-4.png); + background-position: -1582px -1085px; + width: 40px; + height: 40px; +} +.shop_weapon_mystery_301404 { + background-image: url(spritesmith-main-4.png); + background-position: -1623px -1044px; + width: 40px; + height: 40px; +} +.slim_armor_mystery_301404 { + background-image: url(spritesmith-main-4.png); + background-position: -1491px -182px; + width: 90px; + height: 90px; +} +.weapon_mystery_301404 { + background-image: url(spritesmith-main-4.png); + background-position: -1491px -273px; + width: 90px; + height: 90px; +} +.eyewear_mystery_301405 { + background-image: url(spritesmith-main-4.png); + background-position: 0px -855px; + width: 90px; + height: 90px; +} +.headAccessory_mystery_301405 { + background-image: url(spritesmith-main-4.png); + background-position: -1491px -546px; + width: 90px; + height: 90px; +} +.head_mystery_301405 { + background-image: url(spritesmith-main-4.png); + background-position: -1491px -455px; + width: 90px; + height: 90px; +} +.shield_mystery_301405 { + background-image: url(spritesmith-main-4.png); + background-position: -1491px -637px; + width: 90px; + height: 90px; +} +.shop_eyewear_mystery_301405 { + background-image: url(spritesmith-main-4.png); + background-position: -1582px -1044px; + width: 40px; + height: 40px; +} +.shop_headAccessory_mystery_301405 { + background-image: url(spritesmith-main-4.png); + background-position: -1148px -1533px; + width: 40px; + height: 40px; +} +.shop_head_mystery_301405 { + background-image: url(spritesmith-main-4.png); + background-position: -287px -1533px; + width: 40px; + height: 40px; +} +.shop_shield_mystery_301405 { + background-image: url(spritesmith-main-4.png); + background-position: -246px -1533px; + width: 40px; + height: 40px; +} +.broad_armor_special_spring2015Healer { + background-image: url(spritesmith-main-4.png); + background-position: -1491px -1092px; + width: 90px; + height: 90px; +} +.broad_armor_special_spring2015Mage { + background-image: url(spritesmith-main-4.png); + background-position: -1491px -1183px; + width: 90px; + height: 90px; +} +.broad_armor_special_spring2015Rogue { + background-image: url(spritesmith-main-4.png); + background-position: -1491px -1274px; + width: 90px; + height: 90px; +} +.broad_armor_special_spring2015Warrior { + background-image: url(spritesmith-main-4.png); + background-position: 0px -1401px; + width: 90px; + height: 90px; +} +.broad_armor_special_spring2016Healer { + background-image: url(spritesmith-main-4.png); + background-position: -91px -1401px; + width: 90px; + height: 90px; +} +.broad_armor_special_spring2016Mage { + background-image: url(spritesmith-main-4.png); + background-position: -182px -1401px; + width: 90px; + height: 90px; +} +.broad_armor_special_spring2016Rogue { + background-image: url(spritesmith-main-4.png); + background-position: -521px -667px; + width: 102px; + height: 90px; +} +.broad_armor_special_spring2016Warrior { + background-image: url(spritesmith-main-4.png); + background-position: -364px -1401px; + width: 90px; + height: 90px; +} +.broad_armor_special_springHealer { + background-image: url(spritesmith-main-4.png); + background-position: -455px -1401px; + width: 90px; + height: 90px; +} +.broad_armor_special_springMage { + background-image: url(spritesmith-main-4.png); + background-position: -546px -1401px; + width: 90px; + height: 90px; +} +.broad_armor_special_springRogue { + background-image: url(spritesmith-main-4.png); + background-position: -637px -1401px; + width: 90px; + height: 90px; +} +.broad_armor_special_springWarrior { + background-image: url(spritesmith-main-4.png); + background-position: -728px -1401px; + width: 90px; + height: 90px; +} +.headAccessory_special_spring2015Healer { + background-image: url(spritesmith-main-4.png); + background-position: -1582px -364px; + width: 90px; + height: 90px; +} +.headAccessory_special_spring2015Mage { + background-image: url(spritesmith-main-4.png); + background-position: -1582px -455px; + width: 90px; + height: 90px; +} +.headAccessory_special_spring2015Rogue { + background-image: url(spritesmith-main-4.png); + background-position: -1582px -546px; + width: 90px; + height: 90px; +} +.headAccessory_special_spring2015Warrior { + background-image: url(spritesmith-main-4.png); + background-position: -1582px -637px; + width: 90px; + height: 90px; +} +.headAccessory_special_spring2016Healer { + background-image: url(spritesmith-main-4.png); + background-position: -1582px -728px; + width: 90px; + height: 90px; +} +.headAccessory_special_spring2016Mage { + background-image: url(spritesmith-main-4.png); + background-position: -1582px -819px; + width: 90px; + height: 90px; +} +.headAccessory_special_spring2016Rogue { + background-image: url(spritesmith-main-4.png); + background-position: -315px -667px; + width: 102px; + height: 90px; +} +.headAccessory_special_spring2016Warrior { + background-image: url(spritesmith-main-4.png); + background-position: -1491px -910px; + width: 90px; + height: 90px; +} +.headAccessory_special_springHealer { background-image: url(spritesmith-main-4.png); background-position: -1491px -819px; width: 90px; height: 90px; } +.headAccessory_special_springMage { + background-image: url(spritesmith-main-4.png); + background-position: -1491px -728px; + width: 90px; + height: 90px; +} +.headAccessory_special_springRogue { + background-image: url(spritesmith-main-4.png); + background-position: -1491px -91px; + width: 90px; + height: 90px; +} +.headAccessory_special_springWarrior { + background-image: url(spritesmith-main-4.png); + background-position: -1491px 0px; + width: 90px; + height: 90px; +} +.head_special_spring2015Healer { + background-image: url(spritesmith-main-4.png); + background-position: -819px -1401px; + width: 90px; + height: 90px; +} +.head_special_spring2015Mage { + background-image: url(spritesmith-main-4.png); + background-position: -910px -1401px; + width: 90px; + height: 90px; +} +.head_special_spring2015Rogue { + background-image: url(spritesmith-main-4.png); + background-position: -1001px -1401px; + width: 90px; + height: 90px; +} +.head_special_spring2015Warrior { + background-image: url(spritesmith-main-4.png); + background-position: -1092px -1401px; + width: 90px; + height: 90px; +} +.head_special_spring2016Healer { + background-image: url(spritesmith-main-4.png); + background-position: -1183px -1401px; + width: 90px; + height: 90px; +} +.head_special_spring2016Mage { + background-image: url(spritesmith-main-4.png); + background-position: -1274px -1401px; + width: 90px; + height: 90px; +} +.head_special_spring2016Rogue { + background-image: url(spritesmith-main-4.png); + background-position: -624px -667px; + width: 102px; + height: 90px; +} +.head_special_spring2016Warrior { + background-image: url(spritesmith-main-4.png); + background-position: -1456px -1401px; + width: 90px; + height: 90px; +} +.head_special_springHealer { + background-image: url(spritesmith-main-4.png); + background-position: -1582px 0px; + width: 90px; + height: 90px; +} +.head_special_springMage { + background-image: url(spritesmith-main-4.png); + background-position: -1582px -91px; + width: 90px; + height: 90px; +} +.head_special_springRogue { + background-image: url(spritesmith-main-4.png); + background-position: -1582px -182px; + width: 90px; + height: 90px; +} +.head_special_springWarrior { + background-image: url(spritesmith-main-4.png); + background-position: -1582px -273px; + width: 90px; + height: 90px; +} +.shield_special_spring2015Healer { + background-image: url(spritesmith-main-4.png); + background-position: -1365px -1310px; + width: 90px; + height: 90px; +} +.shield_special_spring2015Rogue { + background-image: url(spritesmith-main-4.png); + background-position: -1274px -1310px; + width: 90px; + height: 90px; +} +.shield_special_spring2015Warrior { + background-image: url(spritesmith-main-4.png); + background-position: -819px -1310px; + width: 90px; + height: 90px; +} +.shield_special_spring2016Healer { + background-image: url(spritesmith-main-4.png); + background-position: -728px -1310px; + width: 90px; + height: 90px; +} +.shield_special_spring2016Rogue { + background-image: url(spritesmith-main-4.png); + background-position: -418px -667px; + width: 102px; + height: 90px; +} +.shield_special_spring2016Warrior { + background-image: url(spritesmith-main-4.png); + background-position: -273px -1310px; + width: 90px; + height: 90px; +} +.shield_special_springHealer { + background-image: url(spritesmith-main-4.png); + background-position: 0px -1310px; + width: 90px; + height: 90px; +} +.shield_special_springRogue { + background-image: url(spritesmith-main-4.png); + background-position: -1400px -1183px; + width: 90px; + height: 90px; +} +.shield_special_springWarrior { + background-image: url(spritesmith-main-4.png); + background-position: -1400px -910px; + width: 90px; + height: 90px; +} +.shop_armor_special_spring2015Healer { + background-image: url(spritesmith-main-4.png); + background-position: -1582px -1290px; + width: 40px; + height: 40px; +} +.shop_armor_special_spring2015Mage { + background-image: url(spritesmith-main-4.png); + background-position: -1623px -1290px; + width: 40px; + height: 40px; +} +.shop_armor_special_spring2015Rogue { + background-image: url(spritesmith-main-4.png); + background-position: -1582px -1331px; + width: 40px; + height: 40px; +} +.shop_armor_special_spring2015Warrior { + background-image: url(spritesmith-main-4.png); + background-position: -1623px -1331px; + width: 40px; + height: 40px; +} +.shop_armor_special_spring2016Healer { + background-image: url(spritesmith-main-4.png); + background-position: -1582px -1372px; + width: 40px; + height: 40px; +} +.shop_armor_special_spring2016Mage { + background-image: url(spritesmith-main-4.png); + background-position: -1623px -1372px; + width: 40px; + height: 40px; +} +.shop_armor_special_spring2016Rogue { + background-image: url(spritesmith-main-4.png); + background-position: -1582px -1413px; + width: 40px; + height: 40px; +} +.shop_armor_special_spring2016Warrior { + background-image: url(spritesmith-main-4.png); + background-position: -1623px -1413px; + width: 40px; + height: 40px; +} +.shop_armor_special_springHealer { + background-image: url(spritesmith-main-4.png); + background-position: -578px -530px; + width: 40px; + height: 40px; +} +.shop_armor_special_springMage { + background-image: url(spritesmith-main-4.png); + background-position: -619px -530px; + width: 40px; + height: 40px; +} +.shop_armor_special_springRogue { + background-image: url(spritesmith-main-4.png); + background-position: -363px -212px; + width: 40px; + height: 40px; +} +.shop_armor_special_springWarrior { + background-image: url(spritesmith-main-4.png); + background-position: -404px -212px; + width: 40px; + height: 40px; +} +.shop_headAccessory_special_spring2015Healer { + background-image: url(spritesmith-main-4.png); + background-position: -410px -1492px; + width: 40px; + height: 40px; +} +.shop_headAccessory_special_spring2015Mage { + background-image: url(spritesmith-main-4.png); + background-position: -451px -1492px; + width: 40px; + height: 40px; +} +.shop_headAccessory_special_spring2015Rogue { + background-image: url(spritesmith-main-4.png); + background-position: -492px -1492px; + width: 40px; + height: 40px; +} +.shop_headAccessory_special_spring2015Warrior { + background-image: url(spritesmith-main-4.png); + background-position: -533px -1492px; + width: 40px; + height: 40px; +} +.shop_headAccessory_special_spring2016Healer { + background-image: url(spritesmith-main-4.png); + background-position: -574px -1492px; + width: 40px; + height: 40px; +} +.shop_headAccessory_special_spring2016Mage { + background-image: url(spritesmith-main-4.png); + background-position: -615px -1492px; + width: 40px; + height: 40px; +} +.shop_headAccessory_special_spring2016Rogue { + background-image: url(spritesmith-main-4.png); + background-position: -656px -1492px; + width: 40px; + height: 40px; +} +.shop_headAccessory_special_spring2016Warrior { + background-image: url(spritesmith-main-4.png); + background-position: -697px -1492px; + width: 40px; + height: 40px; +} +.shop_headAccessory_special_springHealer { + background-image: url(spritesmith-main-4.png); + background-position: -738px -1492px; + width: 40px; + height: 40px; +} +.shop_headAccessory_special_springMage { + background-image: url(spritesmith-main-4.png); + background-position: -779px -1492px; + width: 40px; + height: 40px; +} +.shop_headAccessory_special_springRogue { + background-image: url(spritesmith-main-4.png); + background-position: -820px -1492px; + width: 40px; + height: 40px; +} +.shop_headAccessory_special_springWarrior { + background-image: url(spritesmith-main-4.png); + background-position: -861px -1492px; + width: 40px; + height: 40px; +} +.shop_head_special_spring2015Healer { + background-image: url(spritesmith-main-4.png); + background-position: -309px -182px; + width: 40px; + height: 40px; +} +.shop_head_special_spring2015Mage { + background-image: url(spritesmith-main-4.png); + background-position: -309px -223px; + width: 40px; + height: 40px; +} +.shop_head_special_spring2015Rogue { + background-image: url(spritesmith-main-4.png); + background-position: 0px -1492px; + width: 40px; + height: 40px; +} +.shop_head_special_spring2015Warrior { + background-image: url(spritesmith-main-4.png); + background-position: -41px -1492px; + width: 40px; + height: 40px; +} +.shop_head_special_spring2016Healer { + background-image: url(spritesmith-main-4.png); + background-position: -82px -1492px; + width: 40px; + height: 40px; +} +.shop_head_special_spring2016Mage { + background-image: url(spritesmith-main-4.png); + background-position: -123px -1492px; + width: 40px; + height: 40px; +} +.shop_head_special_spring2016Rogue { + background-image: url(spritesmith-main-4.png); + background-position: -164px -1492px; + width: 40px; + height: 40px; +} +.shop_head_special_spring2016Warrior { + background-image: url(spritesmith-main-4.png); + background-position: -205px -1492px; + width: 40px; + height: 40px; +} +.shop_head_special_springHealer { + background-image: url(spritesmith-main-4.png); + background-position: -246px -1492px; + width: 40px; + height: 40px; +} +.shop_head_special_springMage { + background-image: url(spritesmith-main-4.png); + background-position: -287px -1492px; + width: 40px; + height: 40px; +} +.shop_head_special_springRogue { + background-image: url(spritesmith-main-4.png); + background-position: -328px -1492px; + width: 40px; + height: 40px; +} +.shop_head_special_springWarrior { + background-image: url(spritesmith-main-4.png); + background-position: -369px -1492px; + width: 40px; + height: 40px; +} +.shop_shield_special_spring2015Healer { + background-image: url(spritesmith-main-4.png); + background-position: -902px -1492px; + width: 40px; + height: 40px; +} +.shop_shield_special_spring2015Rogue { + background-image: url(spritesmith-main-4.png); + background-position: -943px -1492px; + width: 40px; + height: 40px; +} +.shop_shield_special_spring2015Warrior { + background-image: url(spritesmith-main-4.png); + background-position: -984px -1492px; + width: 40px; + height: 40px; +} +.shop_shield_special_spring2016Healer { + background-image: url(spritesmith-main-4.png); + background-position: -1025px -1492px; + width: 40px; + height: 40px; +} +.shop_shield_special_spring2016Rogue { + background-image: url(spritesmith-main-4.png); + background-position: -1066px -1492px; + width: 40px; + height: 40px; +} +.shop_shield_special_spring2016Warrior { + background-image: url(spritesmith-main-4.png); + background-position: -1107px -1492px; + width: 40px; + height: 40px; +} +.shop_shield_special_springHealer { + background-image: url(spritesmith-main-4.png); + background-position: -1148px -1492px; + width: 40px; + height: 40px; +} +.shop_shield_special_springRogue { + background-image: url(spritesmith-main-4.png); + background-position: -1189px -1492px; + width: 40px; + height: 40px; +} +.shop_shield_special_springWarrior { + background-image: url(spritesmith-main-4.png); + background-position: -1230px -1492px; + width: 40px; + height: 40px; +} +.shop_weapon_special_spring2015Healer { + background-image: url(spritesmith-main-4.png); + background-position: -1271px -1492px; + width: 40px; + height: 40px; +} +.shop_weapon_special_spring2015Mage { + background-image: url(spritesmith-main-4.png); + background-position: -1312px -1492px; + width: 40px; + height: 40px; +} +.shop_weapon_special_spring2015Rogue { + background-image: url(spritesmith-main-4.png); + background-position: -1353px -1492px; + width: 40px; + height: 40px; +} +.shop_weapon_special_spring2015Warrior { + background-image: url(spritesmith-main-4.png); + background-position: -1394px -1492px; + width: 40px; + height: 40px; +} +.shop_weapon_special_spring2016Healer { + background-image: url(spritesmith-main-4.png); + background-position: -1435px -1492px; + width: 40px; + height: 40px; +} +.shop_weapon_special_spring2016Mage { + background-image: url(spritesmith-main-4.png); + background-position: -1476px -1492px; + width: 40px; + height: 40px; +} +.shop_weapon_special_spring2016Rogue { + background-image: url(spritesmith-main-4.png); + background-position: -1517px -1492px; + width: 40px; + height: 40px; +} +.shop_weapon_special_spring2016Warrior { + background-image: url(spritesmith-main-4.png); + background-position: -1558px -1492px; + width: 40px; + height: 40px; +} +.shop_weapon_special_springHealer { + background-image: url(spritesmith-main-4.png); + background-position: -1599px -1492px; + width: 40px; + height: 40px; +} +.shop_weapon_special_springMage { + background-image: url(spritesmith-main-4.png); + background-position: 0px -1533px; + width: 40px; + height: 40px; +} +.shop_weapon_special_springRogue { + background-image: url(spritesmith-main-4.png); + background-position: -41px -1533px; + width: 40px; + height: 40px; +} +.shop_weapon_special_springWarrior { + background-image: url(spritesmith-main-4.png); + background-position: -82px -1533px; + width: 40px; + height: 40px; +} +.slim_armor_special_spring2015Healer { + background-image: url(spritesmith-main-4.png); + background-position: -1400px -819px; + width: 90px; + height: 90px; +} +.slim_armor_special_spring2015Mage { + background-image: url(spritesmith-main-4.png); + background-position: -1400px -455px; + width: 90px; + height: 90px; +} +.slim_armor_special_spring2015Rogue { + background-image: url(spritesmith-main-4.png); + background-position: -1400px -364px; + width: 90px; + height: 90px; +} +.slim_armor_special_spring2015Warrior { + background-image: url(spritesmith-main-4.png); + background-position: -1400px 0px; + width: 90px; + height: 90px; +} +.slim_armor_special_spring2016Healer { + background-image: url(spritesmith-main-4.png); + background-position: -1274px -1219px; + width: 90px; + height: 90px; +} +.slim_armor_special_spring2016Mage { + background-image: url(spritesmith-main-4.png); + background-position: -1001px -1219px; + width: 90px; + height: 90px; +} +.slim_armor_special_spring2016Rogue { + background-image: url(spritesmith-main-4.png); + background-position: -910px -1219px; + width: 90px; + height: 90px; +} +.slim_armor_special_spring2016Warrior { + background-image: url(spritesmith-main-4.png); + background-position: -546px -1219px; + width: 90px; + height: 90px; +} +.slim_armor_special_springHealer { + background-image: url(spritesmith-main-4.png); + background-position: -455px -1219px; + width: 90px; + height: 90px; +} +.slim_armor_special_springMage { + background-image: url(spritesmith-main-4.png); + background-position: -91px -1219px; + width: 90px; + height: 90px; +} +.slim_armor_special_springRogue { + background-image: url(spritesmith-main-4.png); + background-position: 0px -1219px; + width: 90px; + height: 90px; +} +.slim_armor_special_springWarrior { + background-image: url(spritesmith-main-4.png); + background-position: -1309px -910px; + width: 90px; + height: 90px; +} +.weapon_special_spring2015Healer { + background-image: url(spritesmith-main-4.png); + background-position: -1309px -819px; + width: 90px; + height: 90px; +} +.weapon_special_spring2015Mage { + background-image: url(spritesmith-main-4.png); + background-position: -1309px -455px; + width: 90px; + height: 90px; +} +.weapon_special_spring2015Rogue { + background-image: url(spritesmith-main-4.png); + background-position: -1309px -364px; + width: 90px; + height: 90px; +} +.weapon_special_spring2015Warrior { + background-image: url(spritesmith-main-4.png); + background-position: -1309px 0px; + width: 90px; + height: 90px; +} +.weapon_special_spring2016Healer { + background-image: url(spritesmith-main-4.png); + background-position: -1183px -1128px; + width: 90px; + height: 90px; +} +.weapon_special_spring2016Mage { + background-image: url(spritesmith-main-4.png); + background-position: -910px -1128px; + width: 90px; + height: 90px; +} +.weapon_special_spring2016Rogue { + background-image: url(spritesmith-main-4.png); + background-position: -212px -667px; + width: 102px; + height: 90px; +} +.weapon_special_spring2016Warrior { + background-image: url(spritesmith-main-4.png); + background-position: -455px -1128px; + width: 90px; + height: 90px; +} +.weapon_special_springHealer { + background-image: url(spritesmith-main-4.png); + background-position: -364px -1128px; + width: 90px; + height: 90px; +} +.weapon_special_springMage { + background-image: url(spritesmith-main-4.png); + background-position: 0px -1128px; + width: 90px; + height: 90px; +} +.weapon_special_springRogue { + background-image: url(spritesmith-main-4.png); + background-position: -1218px -1001px; + width: 90px; + height: 90px; +} +.weapon_special_springWarrior { + background-image: url(spritesmith-main-4.png); + background-position: -1218px -728px; + width: 90px; + height: 90px; +} +.body_special_summer2015Healer { + background-image: url(spritesmith-main-4.png); + background-position: -1218px -637px; + width: 90px; + height: 90px; +} +.body_special_summer2015Mage { + background-image: url(spritesmith-main-4.png); + background-position: -1218px -273px; + width: 90px; + height: 90px; +} +.body_special_summer2015Rogue { + background-image: url(spritesmith-main-4.png); + background-position: 0px -182px; + width: 102px; + height: 105px; +} +.body_special_summer2015Warrior { + background-image: url(spritesmith-main-4.png); + background-position: -760px -424px; + width: 90px; + height: 105px; +} +.body_special_summerHealer { + background-image: url(spritesmith-main-4.png); + background-position: -851px -636px; + width: 90px; + height: 105px; +} +.body_special_summerMage { + background-image: url(spritesmith-main-4.png); + background-position: -851px -424px; + width: 90px; + height: 105px; +} +.broad_armor_special_summer2015Healer { + background-image: url(spritesmith-main-4.png); + background-position: -546px -1037px; + width: 90px; + height: 90px; +} +.broad_armor_special_summer2015Mage { + background-image: url(spritesmith-main-4.png); + background-position: -182px -1037px; + width: 90px; + height: 90px; +} +.broad_armor_special_summer2015Rogue { + background-image: url(spritesmith-main-4.png); + background-position: 0px -288px; + width: 102px; + height: 105px; +} +.broad_armor_special_summer2015Warrior { + background-image: url(spritesmith-main-4.png); + background-position: -851px -106px; + width: 90px; + height: 105px; +} +.broad_armor_special_summerHealer { + background-image: url(spritesmith-main-4.png); + background-position: -851px 0px; + width: 90px; + height: 105px; +} +.broad_armor_special_summerMage { + background-image: url(spritesmith-main-4.png); + background-position: -760px -530px; + width: 90px; + height: 105px; +} +.broad_armor_special_summerRogue { + background-image: url(spritesmith-main-4.png); + background-position: -448px -394px; + width: 111px; + height: 90px; +} +.broad_armor_special_summerWarrior { + background-image: url(spritesmith-main-4.png); + background-position: -336px -394px; + 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: -364px -946px; + width: 90px; + height: 90px; +} +.head_special_summer2015Mage { + background-image: url(spritesmith-main-4.png); + background-position: -91px -946px; + width: 90px; + height: 90px; +} +.head_special_summer2015Rogue { + background-image: url(spritesmith-main-4.png); + background-position: -363px -106px; + width: 102px; + height: 105px; +} +.head_special_summer2015Warrior { + background-image: url(spritesmith-main-4.png); + background-position: -669px -424px; + width: 90px; + height: 105px; +} +.head_special_summerHealer { + background-image: url(spritesmith-main-4.png); + background-position: -669px -318px; + width: 90px; + height: 105px; +} +.head_special_summerMage { + background-image: url(spritesmith-main-4.png); + background-position: -669px -212px; + width: 90px; + height: 105px; +} +.head_special_summerRogue { + background-image: url(spritesmith-main-4.png); + background-position: -466px -273px; + width: 111px; + height: 90px; +} +.head_special_summerWarrior { + background-image: url(spritesmith-main-4.png); + background-position: -215px -288px; + width: 111px; + height: 90px; +} +.Healer_Summer { + background-image: url(spritesmith-main-4.png); + background-position: -578px -424px; + width: 90px; + height: 105px; +} +.Mage_Summer { + background-image: url(spritesmith-main-4.png); + background-position: -578px -318px; + width: 90px; + height: 105px; +} +.SummerRogue14 { + background-image: url(spritesmith-main-4.png); + background-position: -327px -288px; + width: 111px; + height: 90px; +} +.SummerWarrior14 { + background-image: url(spritesmith-main-4.png); + background-position: -112px -485px; + width: 111px; + height: 90px; +} +.shield_special_summer2015Healer { + background-image: url(spritesmith-main-4.png); + background-position: -1309px -273px; + width: 90px; + height: 90px; +} +.shield_special_summer2015Rogue { + background-image: url(spritesmith-main-4.png); + background-position: -363px 0px; + width: 102px; + height: 105px; +} +.shield_special_summer2015Warrior { + background-image: url(spritesmith-main-4.png); + background-position: -851px -530px; + width: 90px; + height: 105px; +} +.shield_special_summerHealer { + background-image: url(spritesmith-main-4.png); + background-position: -851px -212px; + width: 90px; + height: 105px; +} +.shield_special_summerRogue { + background-image: url(spritesmith-main-4.png); + background-position: 0px -485px; + width: 111px; + height: 90px; +} +.shield_special_summerWarrior { + background-image: url(spritesmith-main-4.png); + background-position: 0px -394px; + width: 111px; + height: 90px; +} +.shop_armor_special_summer2015Healer { + background-image: url(spritesmith-main-4.png); + background-position: -861px -1574px; + width: 40px; + height: 40px; +} +.shop_armor_special_summer2015Mage { + background-image: url(spritesmith-main-4.png); + background-position: -902px -1574px; + width: 40px; + height: 40px; +} +.shop_armor_special_summer2015Rogue { + background-image: url(spritesmith-main-4.png); + background-position: -943px -1574px; + width: 40px; + height: 40px; +} +.shop_armor_special_summer2015Warrior { + background-image: url(spritesmith-main-4.png); + background-position: -984px -1574px; + width: 40px; + height: 40px; +} +.shop_armor_special_summerHealer { + background-image: url(spritesmith-main-4.png); + background-position: -1025px -1574px; + width: 40px; + height: 40px; +} +.shop_armor_special_summerMage { + background-image: url(spritesmith-main-4.png); + background-position: -1066px -1574px; + width: 40px; + height: 40px; +} +.shop_armor_special_summerRogue { + background-image: url(spritesmith-main-4.png); + background-position: -1107px -1574px; + width: 40px; + height: 40px; +} +.shop_armor_special_summerWarrior { + background-image: url(spritesmith-main-4.png); + background-position: -1148px -1574px; + width: 40px; + height: 40px; +} +.shop_body_special_summer2015Healer { + background-image: url(spritesmith-main-4.png); + background-position: -1189px -1574px; + width: 40px; + height: 40px; +} +.shop_body_special_summer2015Mage { + background-image: url(spritesmith-main-4.png); + background-position: -1230px -1574px; + width: 40px; + height: 40px; +} +.shop_body_special_summer2015Rogue { + background-image: url(spritesmith-main-4.png); + background-position: -1271px -1574px; + width: 40px; + height: 40px; +} +.shop_body_special_summer2015Warrior { + background-image: url(spritesmith-main-4.png); + background-position: -1312px -1574px; + width: 40px; + height: 40px; +} +.shop_body_special_summerHealer { + background-image: url(spritesmith-main-4.png); + background-position: -1353px -1574px; + width: 40px; + height: 40px; +} +.shop_body_special_summerMage { + background-image: url(spritesmith-main-4.png); + background-position: -1394px -1574px; + width: 40px; + height: 40px; +} +.shop_eyewear_special_summerRogue { + background-image: url(spritesmith-main-4.png); + background-position: -1435px -1574px; + width: 40px; + height: 40px; +} +.shop_eyewear_special_summerWarrior { + background-image: url(spritesmith-main-4.png); + background-position: -1476px -1574px; + width: 40px; + height: 40px; +} +.shop_head_special_summer2015Healer { + background-image: url(spritesmith-main-4.png); + background-position: -1517px -1574px; + width: 40px; + height: 40px; +} +.shop_head_special_summer2015Mage { + background-image: url(spritesmith-main-4.png); + background-position: -1558px -1574px; + width: 40px; + height: 40px; +} +.shop_head_special_summer2015Rogue { + background-image: url(spritesmith-main-4.png); + background-position: -1599px -1574px; + width: 40px; + height: 40px; +} +.shop_head_special_summer2015Warrior { + background-image: url(spritesmith-main-4.png); + background-position: 0px -1615px; + width: 40px; + height: 40px; +} +.shop_head_special_summerHealer { + background-image: url(spritesmith-main-4.png); + background-position: -41px -1615px; + width: 40px; + height: 40px; +} +.shop_head_special_summerMage { + background-image: url(spritesmith-main-4.png); + background-position: -82px -1615px; + width: 40px; + height: 40px; +} +.shop_head_special_summerRogue { + background-image: url(spritesmith-main-4.png); + background-position: -123px -1615px; + width: 40px; + height: 40px; +} +.shop_head_special_summerWarrior { + background-image: url(spritesmith-main-4.png); + background-position: -164px -1615px; + width: 40px; + height: 40px; +} +.shop_shield_special_summer2015Healer { + background-image: url(spritesmith-main-4.png); + background-position: -205px -1615px; + width: 40px; + height: 40px; +} +.shop_shield_special_summer2015Rogue { + background-image: url(spritesmith-main-4.png); + background-position: -246px -1615px; + width: 40px; + height: 40px; +} +.shop_shield_special_summer2015Warrior { + background-image: url(spritesmith-main-4.png); + background-position: -287px -1615px; + width: 40px; + height: 40px; +} +.shop_shield_special_summerHealer { + background-image: url(spritesmith-main-4.png); + background-position: -328px -1615px; + width: 40px; + height: 40px; +} +.shop_shield_special_summerRogue { + background-image: url(spritesmith-main-4.png); + background-position: -369px -1615px; + width: 40px; + height: 40px; +} +.shop_shield_special_summerWarrior { + background-image: url(spritesmith-main-4.png); + background-position: -410px -1615px; + width: 40px; + height: 40px; +} +.shop_weapon_special_summer2015Healer { + background-image: url(spritesmith-main-4.png); + background-position: -451px -1615px; + width: 40px; + height: 40px; +} +.shop_weapon_special_summer2015Mage { + background-image: url(spritesmith-main-4.png); + background-position: -492px -1615px; + width: 40px; + height: 40px; +} +.shop_weapon_special_summer2015Rogue { + background-image: url(spritesmith-main-4.png); + background-position: -533px -1615px; + width: 40px; + height: 40px; +} +.shop_weapon_special_summer2015Warrior { + background-image: url(spritesmith-main-4.png); + background-position: -574px -1615px; + width: 40px; + height: 40px; +} +.shop_weapon_special_summerHealer { + background-image: url(spritesmith-main-4.png); + background-position: -615px -1615px; + width: 40px; + height: 40px; +} +.shop_weapon_special_summerMage { + background-image: url(spritesmith-main-4.png); + background-position: -656px -1615px; + width: 40px; + height: 40px; +} +.shop_weapon_special_summerRogue { + background-image: url(spritesmith-main-4.png); + background-position: -697px -1615px; + width: 40px; + height: 40px; +} +.shop_weapon_special_summerWarrior { + background-image: url(spritesmith-main-4.png); + background-position: -738px -1615px; + width: 40px; + height: 40px; +} +.slim_armor_special_summer2015Healer { + background-image: url(spritesmith-main-4.png); + background-position: -728px -1037px; + width: 90px; + height: 90px; +} +.slim_armor_special_summer2015Mage { + background-image: url(spritesmith-main-4.png); + background-position: -637px -1037px; + width: 90px; + height: 90px; +} +.slim_armor_special_summer2015Rogue { + background-image: url(spritesmith-main-4.png); + background-position: -206px -182px; + width: 102px; + height: 105px; +} +.slim_armor_special_summer2015Warrior { + background-image: url(spritesmith-main-4.png); + background-position: -760px 0px; + width: 90px; + height: 105px; +} +.slim_armor_special_summerHealer { + background-image: url(spritesmith-main-4.png); + background-position: -669px -530px; + width: 90px; + height: 105px; +} +.slim_armor_special_summerMage { + background-image: url(spritesmith-main-4.png); + background-position: -669px -106px; + width: 90px; + height: 105px; +} +.slim_armor_special_summerRogue { + background-image: url(spritesmith-main-4.png); + background-position: -466px -91px; + width: 111px; + height: 90px; +} +.slim_armor_special_summerWarrior { + background-image: url(spritesmith-main-4.png); + background-position: -466px 0px; + width: 111px; + height: 90px; +} +.weapon_special_summer2015Healer { + background-image: url(spritesmith-main-4.png); + background-position: -1127px -182px; + width: 90px; + height: 90px; +} +.weapon_special_summer2015Mage { + background-image: url(spritesmith-main-4.png); + background-position: -1001px -946px; + width: 90px; + height: 90px; +} +.weapon_special_summer2015Rogue { + background-image: url(spritesmith-main-4.png); + background-position: -103px -182px; + width: 102px; + height: 105px; +} +.weapon_special_summer2015Warrior { + background-image: url(spritesmith-main-4.png); + background-position: -578px -212px; + width: 90px; + height: 105px; +} +.weapon_special_summerHealer { + background-image: url(spritesmith-main-4.png); + background-position: -578px -106px; + width: 90px; + height: 105px; +} +.weapon_special_summerMage { + background-image: url(spritesmith-main-4.png); + background-position: -578px 0px; + width: 90px; + height: 105px; +} +.weapon_special_summerRogue { + background-image: url(spritesmith-main-4.png); + background-position: -103px -288px; + width: 111px; + height: 90px; +} +.weapon_special_summerWarrior { + background-image: url(spritesmith-main-4.png); + background-position: -466px -182px; + width: 111px; + height: 90px; +} +.broad_armor_special_candycane { + background-image: url(spritesmith-main-4.png); + background-position: -1036px -546px; + width: 90px; + height: 90px; +} +.broad_armor_special_ski { + background-image: url(spritesmith-main-4.png); + background-position: -1036px -455px; + width: 90px; + height: 90px; +} +.broad_armor_special_snowflake { + background-image: url(spritesmith-main-4.png); + background-position: -1036px -91px; + width: 90px; + height: 90px; +} +.broad_armor_special_winter2015Healer { + background-image: url(spritesmith-main-4.png); + background-position: -1036px 0px; + width: 90px; + height: 90px; +} +.broad_armor_special_winter2015Mage { + background-image: url(spritesmith-main-4.png); + background-position: -910px -855px; + width: 90px; + height: 90px; +} +.broad_armor_special_winter2015Rogue { + background-image: url(spritesmith-main-4.png); + background-position: -727px -667px; + width: 96px; + height: 90px; +} +.broad_armor_special_winter2015Warrior { + background-image: url(spritesmith-main-4.png); + background-position: -637px -946px; + width: 90px; + height: 90px; +} +.broad_armor_special_winter2016Healer { + background-image: url(spritesmith-main-4.png); + background-position: -461px -758px; + width: 93px; + height: 90px; +} +.broad_armor_special_winter2016Mage { + background-image: url(spritesmith-main-4.png); + background-position: 0px -946px; + width: 90px; + height: 90px; +} +.broad_armor_special_winter2016Rogue { + background-image: url(spritesmith-main-4.png); + background-position: -1582px -910px; + width: 90px; + height: 90px; +} diff --git a/common/dist/sprites/spritesmith-main-4.png b/common/dist/sprites/spritesmith-main-4.png index 116f351298..24a4ef291d 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 e6310d4bb3..1b8642cda6 100644 --- a/common/dist/sprites/spritesmith-main-5.css +++ b/common/dist/sprites/spritesmith-main-5.css @@ -1,1974 +1,2244 @@ +.broad_armor_special_winter2016Warrior { + background-image: url(spritesmith-main-5.png); + background-position: -1250px 0px; + width: 90px; + height: 90px; +} +.broad_armor_special_yeti { + background-image: url(spritesmith-main-5.png); + background-position: -1432px -364px; + width: 90px; + height: 90px; +} +.head_special_candycane { + background-image: url(spritesmith-main-5.png); + background-position: -1614px -182px; + width: 90px; + height: 90px; +} +.head_special_nye { + background-image: url(spritesmith-main-5.png); + background-position: -1614px -91px; + width: 90px; + height: 90px; +} +.head_special_nye2014 { + background-image: url(spritesmith-main-5.png); + background-position: -1274px -1468px; + width: 90px; + height: 90px; +} +.head_special_nye2015 { + background-image: url(spritesmith-main-5.png); + background-position: -1614px -273px; + width: 90px; + height: 90px; +} +.head_special_ski { + background-image: url(spritesmith-main-5.png); + background-position: -1523px -1092px; + width: 90px; + height: 90px; +} +.head_special_snowflake { + background-image: url(spritesmith-main-5.png); + background-position: -1523px -1183px; + width: 90px; + height: 90px; +} +.head_special_winter2015Healer { + background-image: url(spritesmith-main-5.png); + background-position: -1523px -1274px; + width: 90px; + height: 90px; +} +.head_special_winter2015Mage { + background-image: url(spritesmith-main-5.png); + background-position: -1523px -1365px; + width: 90px; + height: 90px; +} +.head_special_winter2015Rogue { + background-image: url(spritesmith-main-5.png); + background-position: -200px -1104px; + width: 96px; + height: 90px; +} +.head_special_winter2015Warrior { + background-image: url(spritesmith-main-5.png); + background-position: 0px -1468px; + width: 90px; + height: 90px; +} +.head_special_winter2016Healer { + background-image: url(spritesmith-main-5.png); + background-position: -776px -1104px; + width: 93px; + height: 90px; +} +.head_special_winter2016Mage { + background-image: url(spritesmith-main-5.png); + background-position: -182px -1468px; + width: 90px; + height: 90px; +} +.head_special_winter2016Rogue { + background-image: url(spritesmith-main-5.png); + background-position: -273px -1468px; + width: 90px; + height: 90px; +} +.head_special_winter2016Warrior { + background-image: url(spritesmith-main-5.png); + background-position: -364px -1468px; + width: 90px; + height: 90px; +} +.head_special_yeti { + background-image: url(spritesmith-main-5.png); + background-position: -455px -1468px; + width: 90px; + height: 90px; +} +.shield_special_ski { + background-image: url(spritesmith-main-5.png); + background-position: -200px -1004px; + width: 104px; + height: 90px; +} +.shield_special_snowflake { + background-image: url(spritesmith-main-5.png); + background-position: -546px -1468px; + width: 90px; + height: 90px; +} +.shield_special_winter2015Healer { + background-image: url(spritesmith-main-5.png); + background-position: -637px -1468px; + width: 90px; + height: 90px; +} +.shield_special_winter2015Rogue { + background-image: url(spritesmith-main-5.png); + background-position: -103px -1104px; + width: 96px; + height: 90px; +} +.shield_special_winter2015Warrior { + background-image: url(spritesmith-main-5.png); + background-position: -728px -1468px; + width: 90px; + height: 90px; +} +.shield_special_winter2016Healer { + background-image: url(spritesmith-main-5.png); + background-position: -870px -1104px; + width: 93px; + height: 90px; +} +.shield_special_winter2016Rogue { + background-image: url(spritesmith-main-5.png); + background-position: -910px -1468px; + width: 90px; + height: 90px; +} +.shield_special_winter2016Warrior { + background-image: url(spritesmith-main-5.png); + background-position: -1001px -1468px; + width: 90px; + height: 90px; +} +.shield_special_yeti { + background-image: url(spritesmith-main-5.png); + background-position: -1092px -1468px; + width: 90px; + height: 90px; +} +.shop_armor_special_candycane { + background-image: url(spritesmith-main-5.png); + background-position: -861px -1648px; + width: 40px; + height: 40px; +} +.shop_armor_special_ski { + background-image: url(spritesmith-main-5.png); + background-position: -820px -1648px; + width: 40px; + height: 40px; +} +.shop_armor_special_snowflake { + background-image: url(spritesmith-main-5.png); + background-position: -738px -1648px; + width: 40px; + height: 40px; +} +.shop_armor_special_winter2015Healer { + background-image: url(spritesmith-main-5.png); + background-position: -697px -1648px; + width: 40px; + height: 40px; +} +.shop_armor_special_winter2015Mage { + background-image: url(spritesmith-main-5.png); + background-position: -656px -1648px; + width: 40px; + height: 40px; +} +.shop_armor_special_winter2015Rogue { + background-image: url(spritesmith-main-5.png); + background-position: -615px -1648px; + width: 40px; + height: 40px; +} +.shop_armor_special_winter2015Warrior { + background-image: url(spritesmith-main-5.png); + background-position: -574px -1648px; + width: 40px; + height: 40px; +} +.shop_armor_special_winter2016Healer { + background-image: url(spritesmith-main-5.png); + background-position: -492px -1648px; + width: 40px; + height: 40px; +} +.shop_armor_special_winter2016Mage { + background-image: url(spritesmith-main-5.png); + background-position: -451px -1648px; + width: 40px; + height: 40px; +} +.shop_armor_special_winter2016Rogue { + background-image: url(spritesmith-main-5.png); + background-position: -369px -1648px; + width: 40px; + height: 40px; +} +.shop_armor_special_winter2016Warrior { + background-image: url(spritesmith-main-5.png); + background-position: -328px -1648px; + width: 40px; + height: 40px; +} +.shop_armor_special_yeti { + background-image: url(spritesmith-main-5.png); + background-position: -287px -1648px; + width: 40px; + height: 40px; +} +.shop_head_special_candycane { + background-image: url(spritesmith-main-5.png); + background-position: -246px -1648px; + width: 40px; + height: 40px; +} +.shop_head_special_nye { + background-image: url(spritesmith-main-5.png); + background-position: -82px -1607px; + width: 40px; + height: 40px; +} +.shop_head_special_nye2014 { + background-image: url(spritesmith-main-5.png); + background-position: -41px -1607px; + width: 40px; + height: 40px; +} +.shop_head_special_nye2015 { + background-image: url(spritesmith-main-5.png); + background-position: 0px -1607px; + width: 40px; + height: 40px; +} +.shop_head_special_ski { + background-image: url(spritesmith-main-5.png); + background-position: -1638px -1559px; + width: 40px; + height: 40px; +} +.shop_head_special_snowflake { + background-image: url(spritesmith-main-5.png); + background-position: -900px -1559px; + width: 40px; + height: 40px; +} +.shop_head_special_winter2015Healer { + background-image: url(spritesmith-main-5.png); + background-position: -1394px -1607px; + width: 40px; + height: 40px; +} +.shop_head_special_winter2015Mage { + background-image: url(spritesmith-main-5.png); + background-position: -1312px -1607px; + width: 40px; + height: 40px; +} +.shop_head_special_winter2015Rogue { + background-image: url(spritesmith-main-5.png); + background-position: -1271px -1607px; + width: 40px; + height: 40px; +} +.shop_head_special_winter2015Warrior { + background-image: url(spritesmith-main-5.png); + background-position: -1189px -1607px; + width: 40px; + height: 40px; +} +.shop_head_special_winter2016Healer { + background-image: url(spritesmith-main-5.png); + background-position: -1148px -1607px; + width: 40px; + height: 40px; +} +.shop_head_special_winter2016Mage { + background-image: url(spritesmith-main-5.png); + background-position: -1107px -1607px; + width: 40px; + height: 40px; +} +.shop_head_special_winter2016Rogue { + background-image: url(spritesmith-main-5.png); + background-position: -1435px -1607px; + width: 40px; + height: 40px; +} +.shop_head_special_winter2016Warrior { + background-image: url(spritesmith-main-5.png); + background-position: -531px -1559px; + width: 40px; + height: 40px; +} +.shop_head_special_yeti { + background-image: url(spritesmith-main-5.png); + background-position: -326px -1559px; + width: 40px; + height: 40px; +} +.shop_shield_special_ski { + background-image: url(spritesmith-main-5.png); + background-position: -1271px -1648px; + width: 40px; + height: 40px; +} +.shop_shield_special_snowflake { + background-image: url(spritesmith-main-5.png); + background-position: -367px -1559px; + width: 40px; + height: 40px; +} +.shop_shield_special_winter2015Healer { + background-image: url(spritesmith-main-5.png); + background-position: -408px -1559px; + width: 40px; + height: 40px; +} +.shop_shield_special_winter2015Rogue { + background-image: url(spritesmith-main-5.png); + background-position: -449px -1559px; + width: 40px; + height: 40px; +} +.shop_shield_special_winter2015Warrior { + background-image: url(spritesmith-main-5.png); + background-position: -490px -1559px; + width: 40px; + height: 40px; +} +.shop_shield_special_winter2016Healer { + background-image: url(spritesmith-main-5.png); + background-position: -572px -1559px; + width: 40px; + height: 40px; +} +.shop_shield_special_winter2016Rogue { + background-image: url(spritesmith-main-5.png); + background-position: -613px -1559px; + width: 40px; + height: 40px; +} +.shop_shield_special_winter2016Warrior { + background-image: url(spritesmith-main-5.png); + background-position: -451px -1607px; + width: 40px; + height: 40px; +} +.shop_shield_special_yeti { + background-image: url(spritesmith-main-5.png); + background-position: -820px -1607px; + width: 40px; + height: 40px; +} +.shop_weapon_special_candycane { + background-image: url(spritesmith-main-5.png); + background-position: -861px -1607px; + width: 40px; + height: 40px; +} +.shop_weapon_special_ski { + background-image: url(spritesmith-main-5.png); + background-position: -902px -1607px; + width: 40px; + height: 40px; +} +.shop_weapon_special_snowflake { + background-image: url(spritesmith-main-5.png); + background-position: -943px -1607px; + width: 40px; + height: 40px; +} +.shop_weapon_special_winter2015Healer { + background-image: url(spritesmith-main-5.png); + background-position: -1025px -1607px; + width: 40px; + height: 40px; +} +.shop_weapon_special_winter2015Mage { + background-image: url(spritesmith-main-5.png); + background-position: -1066px -1607px; + width: 40px; + height: 40px; +} +.shop_weapon_special_winter2015Rogue { + background-image: url(spritesmith-main-5.png); + background-position: -1230px -1607px; + width: 40px; + height: 40px; +} +.shop_weapon_special_winter2015Warrior { + background-image: url(spritesmith-main-5.png); + background-position: -1353px -1607px; + width: 40px; + height: 40px; +} +.shop_weapon_special_winter2016Healer { + background-image: url(spritesmith-main-5.png); + background-position: -1476px -1607px; + width: 40px; + height: 40px; +} +.shop_weapon_special_winter2016Mage { + background-image: url(spritesmith-main-5.png); + background-position: -1517px -1607px; + width: 40px; + height: 40px; +} +.shop_weapon_special_winter2016Rogue { + background-image: url(spritesmith-main-5.png); + background-position: -1558px -1607px; + width: 40px; + height: 40px; +} +.shop_weapon_special_winter2016Warrior { + background-image: url(spritesmith-main-5.png); + background-position: -1599px -1607px; + width: 40px; + height: 40px; +} +.shop_weapon_special_yeti { + background-image: url(spritesmith-main-5.png); + background-position: -1640px -1607px; + width: 40px; + height: 40px; +} +.slim_armor_special_candycane { + background-image: url(spritesmith-main-5.png); + background-position: -455px -1377px; + width: 90px; + height: 90px; +} +.slim_armor_special_ski { + background-image: url(spritesmith-main-5.png); + background-position: -1250px -1001px; + width: 90px; + height: 90px; +} +.slim_armor_special_snowflake { + background-image: url(spritesmith-main-5.png); + background-position: -91px -1468px; + width: 90px; + height: 90px; +} +.slim_armor_special_winter2015Healer { + background-image: url(spritesmith-main-5.png); + background-position: -819px -1468px; + width: 90px; + height: 90px; +} +.slim_armor_special_winter2015Mage { + background-image: url(spritesmith-main-5.png); + background-position: -1055px -1104px; + width: 90px; + height: 90px; +} +.slim_armor_special_winter2015Rogue { + background-image: url(spritesmith-main-5.png); + background-position: -491px -1104px; + width: 96px; + height: 90px; +} +.slim_armor_special_winter2015Warrior { + background-image: url(spritesmith-main-5.png); + background-position: -1146px -1104px; + width: 90px; + height: 90px; +} +.slim_armor_special_winter2016Healer { + background-image: url(spritesmith-main-5.png); + background-position: -588px -1104px; + width: 93px; + height: 90px; +} +.slim_armor_special_winter2016Mage { + background-image: url(spritesmith-main-5.png); + background-position: -1250px -91px; + width: 90px; + height: 90px; +} +.slim_armor_special_winter2016Rogue { + background-image: url(spritesmith-main-5.png); + background-position: -1250px -182px; + width: 90px; + height: 90px; +} +.slim_armor_special_winter2016Warrior { + background-image: url(spritesmith-main-5.png); + background-position: -1250px -273px; + width: 90px; + height: 90px; +} +.slim_armor_special_yeti { + background-image: url(spritesmith-main-5.png); + background-position: -1250px -364px; + width: 90px; + height: 90px; +} +.weapon_special_candycane { + background-image: url(spritesmith-main-5.png); + background-position: -1250px -455px; + width: 90px; + height: 90px; +} +.weapon_special_ski { + background-image: url(spritesmith-main-5.png); + background-position: -1250px -546px; + width: 90px; + height: 90px; +} +.weapon_special_snowflake { + background-image: url(spritesmith-main-5.png); + background-position: -1250px -637px; + width: 90px; + height: 90px; +} +.weapon_special_winter2015Healer { + background-image: url(spritesmith-main-5.png); + background-position: -1250px -728px; + width: 90px; + height: 90px; +} +.weapon_special_winter2015Mage { + background-image: url(spritesmith-main-5.png); + background-position: -1250px -819px; + width: 90px; + height: 90px; +} +.weapon_special_winter2015Rogue { + background-image: url(spritesmith-main-5.png); + background-position: -394px -1104px; + width: 96px; + height: 90px; +} +.weapon_special_winter2015Warrior { + background-image: url(spritesmith-main-5.png); + background-position: -1250px -910px; + width: 90px; + height: 90px; +} +.weapon_special_winter2016Healer { + background-image: url(spritesmith-main-5.png); + background-position: -682px -1104px; + width: 93px; + height: 90px; +} +.weapon_special_winter2016Mage { + background-image: url(spritesmith-main-5.png); + background-position: -1250px -1092px; + width: 90px; + height: 90px; +} +.weapon_special_winter2016Rogue { + background-image: url(spritesmith-main-5.png); + background-position: 0px -1195px; + width: 90px; + height: 90px; +} +.weapon_special_winter2016Warrior { + background-image: url(spritesmith-main-5.png); + background-position: -91px -1195px; + width: 90px; + height: 90px; +} +.weapon_special_yeti { + background-image: url(spritesmith-main-5.png); + background-position: -182px -1195px; + width: 90px; + height: 90px; +} +.back_special_wondercon_black { + background-image: url(spritesmith-main-5.png); + background-position: -273px -1195px; + width: 90px; + height: 90px; +} +.back_special_wondercon_red { + background-image: url(spritesmith-main-5.png); + background-position: -364px -1195px; + width: 90px; + height: 90px; +} +.body_special_wondercon_black { + background-image: url(spritesmith-main-5.png); + background-position: -455px -1195px; + width: 90px; + height: 90px; +} +.body_special_wondercon_gold { + background-image: url(spritesmith-main-5.png); + background-position: -546px -1195px; + width: 90px; + height: 90px; +} +.body_special_wondercon_red { + background-image: url(spritesmith-main-5.png); + background-position: -637px -1195px; + width: 90px; + height: 90px; +} .eyewear_special_wondercon_black { background-image: url(spritesmith-main-5.png); - background-position: -916px -1252px; + background-position: -728px -1195px; width: 90px; height: 90px; } .eyewear_special_wondercon_red { background-image: url(spritesmith-main-5.png); - background-position: -1524px -1274px; + background-position: -819px -1195px; width: 90px; height: 90px; } .shop_back_special_wondercon_black { background-image: url(spritesmith-main-5.png); - background-position: -1706px -740px; + background-position: -164px -1607px; width: 40px; height: 40px; } .shop_back_special_wondercon_red { background-image: url(spritesmith-main-5.png); - background-position: -1706px -781px; + background-position: -205px -1607px; width: 40px; height: 40px; } .shop_body_special_wondercon_black { background-image: url(spritesmith-main-5.png); - background-position: -1515px -1525px; + background-position: -246px -1607px; width: 40px; height: 40px; } .shop_body_special_wondercon_gold { background-image: url(spritesmith-main-5.png); - background-position: -790px -1677px; + background-position: -287px -1607px; width: 40px; height: 40px; } .shop_body_special_wondercon_red { background-image: url(spritesmith-main-5.png); - background-position: -913px -1677px; + background-position: -328px -1607px; width: 40px; height: 40px; } .shop_eyewear_special_wondercon_black { background-image: url(spritesmith-main-5.png); - background-position: -872px -1677px; + background-position: -369px -1607px; width: 40px; height: 40px; } .shop_eyewear_special_wondercon_red { background-image: url(spritesmith-main-5.png); - background-position: -831px -1677px; + background-position: -410px -1607px; width: 40px; height: 40px; } .head_0 { background-image: url(spritesmith-main-5.png); - background-position: -1007px -1252px; + background-position: -910px -1195px; width: 90px; height: 90px; } .customize-option.head_0 { background-image: url(spritesmith-main-5.png); - background-position: -1032px -1267px; + background-position: -935px -1210px; width: 60px; height: 60px; } .head_healer_1 { background-image: url(spritesmith-main-5.png); - background-position: -1098px -1252px; + background-position: -1001px -1195px; width: 90px; height: 90px; } .head_healer_2 { background-image: url(spritesmith-main-5.png); - background-position: -1189px -1252px; + background-position: -1092px -1195px; width: 90px; height: 90px; } .head_healer_3 { background-image: url(spritesmith-main-5.png); - background-position: -1280px -1252px; + background-position: -1183px -1195px; width: 90px; height: 90px; } .head_healer_4 { background-image: url(spritesmith-main-5.png); - background-position: -1433px -91px; + background-position: -1341px 0px; width: 90px; height: 90px; } .head_healer_5 { background-image: url(spritesmith-main-5.png); - background-position: -1433px -182px; + background-position: -1341px -91px; width: 90px; height: 90px; } .head_rogue_1 { background-image: url(spritesmith-main-5.png); - background-position: -1433px -819px; + background-position: -1341px -182px; width: 90px; height: 90px; } .head_rogue_2 { background-image: url(spritesmith-main-5.png); - background-position: -1433px -910px; + background-position: -1341px -273px; width: 90px; height: 90px; } .head_rogue_3 { background-image: url(spritesmith-main-5.png); - background-position: -1433px -1001px; + background-position: -1341px -364px; width: 90px; height: 90px; } .head_rogue_4 { background-image: url(spritesmith-main-5.png); - background-position: -1433px -1092px; + background-position: -1341px -455px; width: 90px; height: 90px; } .head_rogue_5 { background-image: url(spritesmith-main-5.png); - background-position: -1433px -1183px; + background-position: -1341px -546px; width: 90px; height: 90px; } .head_special_2 { background-image: url(spritesmith-main-5.png); - background-position: 0px -1343px; + background-position: -1341px -637px; width: 90px; height: 90px; } .head_special_fireCoralCirclet { background-image: url(spritesmith-main-5.png); - background-position: -182px -1343px; + background-position: -1341px -728px; width: 90px; height: 90px; } .head_warrior_1 { background-image: url(spritesmith-main-5.png); - background-position: -819px -1343px; + background-position: -1341px -819px; width: 90px; height: 90px; } .head_warrior_2 { background-image: url(spritesmith-main-5.png); - background-position: -910px -1343px; + background-position: -1341px -910px; width: 90px; height: 90px; } .head_warrior_3 { background-image: url(spritesmith-main-5.png); - background-position: -1001px -1343px; + background-position: -1341px -1001px; width: 90px; height: 90px; } .head_warrior_4 { background-image: url(spritesmith-main-5.png); - background-position: -1092px -1343px; + background-position: -1341px -1092px; width: 90px; height: 90px; } .head_warrior_5 { background-image: url(spritesmith-main-5.png); - background-position: -1524px 0px; + background-position: -1341px -1183px; width: 90px; height: 90px; } .head_wizard_1 { background-image: url(spritesmith-main-5.png); - background-position: -1524px -91px; + background-position: 0px -1286px; width: 90px; height: 90px; } .head_wizard_2 { background-image: url(spritesmith-main-5.png); - background-position: -1524px -182px; + background-position: -91px -1286px; width: 90px; height: 90px; } .head_wizard_3 { background-image: url(spritesmith-main-5.png); - background-position: -1524px -273px; + background-position: -182px -1286px; width: 90px; height: 90px; } .head_wizard_4 { background-image: url(spritesmith-main-5.png); - background-position: -546px -1434px; + background-position: -273px -1286px; width: 90px; height: 90px; } .head_wizard_5 { background-image: url(spritesmith-main-5.png); - background-position: -97px -1252px; + background-position: -364px -1286px; width: 90px; height: 90px; } .shop_head_healer_1 { background-image: url(spritesmith-main-5.png); - background-position: -749px -1677px; + background-position: -654px -1559px; width: 40px; height: 40px; } .shop_head_healer_2 { background-image: url(spritesmith-main-5.png); - background-position: -708px -1677px; + background-position: -695px -1559px; width: 40px; height: 40px; } .shop_head_healer_3 { background-image: url(spritesmith-main-5.png); - background-position: -667px -1677px; + background-position: -736px -1559px; width: 40px; height: 40px; } .shop_head_healer_4 { background-image: url(spritesmith-main-5.png); - background-position: -626px -1677px; + background-position: -777px -1559px; width: 40px; height: 40px; } .shop_head_healer_5 { background-image: url(spritesmith-main-5.png); - background-position: -585px -1677px; + background-position: -818px -1559px; width: 40px; height: 40px; } .shop_head_rogue_1 { background-image: url(spritesmith-main-5.png); - background-position: -544px -1677px; + background-position: -859px -1559px; width: 40px; height: 40px; } .shop_head_rogue_2 { background-image: url(spritesmith-main-5.png); - background-position: -503px -1677px; + background-position: -941px -1559px; width: 40px; height: 40px; } .shop_head_rogue_3 { background-image: url(spritesmith-main-5.png); - background-position: -462px -1677px; + background-position: -982px -1559px; width: 40px; height: 40px; } .shop_head_rogue_4 { background-image: url(spritesmith-main-5.png); - background-position: -421px -1677px; + background-position: -1023px -1559px; width: 40px; height: 40px; } .shop_head_rogue_5 { background-image: url(spritesmith-main-5.png); - background-position: -339px -1677px; + background-position: -1064px -1559px; width: 40px; height: 40px; } .shop_head_special_0 { background-image: url(spritesmith-main-5.png); - background-position: -298px -1677px; + background-position: -1105px -1559px; width: 40px; height: 40px; } .shop_head_special_1 { background-image: url(spritesmith-main-5.png); - background-position: -257px -1677px; + background-position: -1146px -1559px; width: 40px; height: 40px; } .shop_head_special_2 { background-image: url(spritesmith-main-5.png); - background-position: -216px -1677px; + background-position: -1187px -1559px; width: 40px; height: 40px; } .shop_head_special_fireCoralCirclet { background-image: url(spritesmith-main-5.png); - background-position: -175px -1677px; + background-position: -1228px -1559px; width: 40px; height: 40px; } .shop_head_warrior_1 { background-image: url(spritesmith-main-5.png); - background-position: -93px -1677px; + background-position: -1269px -1559px; width: 40px; height: 40px; } .shop_head_warrior_2 { background-image: url(spritesmith-main-5.png); - background-position: -52px -1677px; + background-position: -1310px -1559px; width: 40px; height: 40px; } .shop_head_warrior_3 { background-image: url(spritesmith-main-5.png); - background-position: -1638px -1525px; + background-position: -1351px -1559px; width: 40px; height: 40px; } .shop_head_warrior_4 { background-image: url(spritesmith-main-5.png); - background-position: -1597px -1525px; + background-position: -1392px -1559px; width: 40px; height: 40px; } .shop_head_warrior_5 { background-image: url(spritesmith-main-5.png); - background-position: -1474px -1525px; + background-position: -1433px -1559px; width: 40px; height: 40px; } .shop_head_wizard_1 { background-image: url(spritesmith-main-5.png); - background-position: -1433px -1525px; + background-position: -1474px -1559px; width: 40px; height: 40px; } .shop_head_wizard_2 { background-image: url(spritesmith-main-5.png); - background-position: -1392px -1525px; + background-position: -1515px -1559px; width: 40px; height: 40px; } .shop_head_wizard_3 { background-image: url(spritesmith-main-5.png); - background-position: -1351px -1525px; + background-position: -1556px -1559px; width: 40px; height: 40px; } .shop_head_wizard_4 { background-image: url(spritesmith-main-5.png); - background-position: -1310px -1525px; + background-position: -1597px -1559px; width: 40px; height: 40px; } .shop_head_wizard_5 { background-image: url(spritesmith-main-5.png); - background-position: -1269px -1525px; + background-position: -123px -1607px; width: 40px; height: 40px; } .headAccessory_special_bearEars { background-image: url(spritesmith-main-5.png); - background-position: -188px -1252px; + background-position: -455px -1286px; width: 90px; height: 90px; } .customize-option.headAccessory_special_bearEars { background-image: url(spritesmith-main-5.png); - background-position: -213px -1267px; + background-position: -480px -1301px; width: 60px; height: 60px; } .headAccessory_special_cactusEars { background-image: url(spritesmith-main-5.png); - background-position: -279px -1252px; + background-position: -546px -1286px; width: 90px; height: 90px; } .customize-option.headAccessory_special_cactusEars { background-image: url(spritesmith-main-5.png); - background-position: -304px -1267px; + background-position: -571px -1301px; width: 60px; height: 60px; } .headAccessory_special_foxEars { background-image: url(spritesmith-main-5.png); - background-position: -370px -1252px; + background-position: -637px -1286px; width: 90px; height: 90px; } .customize-option.headAccessory_special_foxEars { background-image: url(spritesmith-main-5.png); - background-position: -395px -1267px; + background-position: -662px -1301px; width: 60px; height: 60px; } .headAccessory_special_lionEars { background-image: url(spritesmith-main-5.png); - background-position: -461px -1252px; + background-position: -728px -1286px; width: 90px; height: 90px; } .customize-option.headAccessory_special_lionEars { background-image: url(spritesmith-main-5.png); - background-position: -486px -1267px; + background-position: -753px -1301px; width: 60px; height: 60px; } .headAccessory_special_pandaEars { background-image: url(spritesmith-main-5.png); - background-position: -552px -1252px; + background-position: -819px -1286px; width: 90px; height: 90px; } .customize-option.headAccessory_special_pandaEars { background-image: url(spritesmith-main-5.png); - background-position: -577px -1267px; + background-position: -844px -1301px; width: 60px; height: 60px; } .headAccessory_special_pigEars { background-image: url(spritesmith-main-5.png); - background-position: -643px -1252px; + background-position: -910px -1286px; width: 90px; height: 90px; } .customize-option.headAccessory_special_pigEars { background-image: url(spritesmith-main-5.png); - background-position: -668px -1267px; + background-position: -935px -1301px; width: 60px; height: 60px; } .headAccessory_special_tigerEars { background-image: url(spritesmith-main-5.png); - background-position: -734px -1252px; + background-position: -1001px -1286px; width: 90px; height: 90px; } .customize-option.headAccessory_special_tigerEars { background-image: url(spritesmith-main-5.png); - background-position: -759px -1267px; + background-position: -1026px -1301px; width: 60px; height: 60px; } .headAccessory_special_wolfEars { background-image: url(spritesmith-main-5.png); - background-position: -825px -1252px; + background-position: -1092px -1286px; width: 90px; height: 90px; } .customize-option.headAccessory_special_wolfEars { background-image: url(spritesmith-main-5.png); - background-position: -850px -1267px; + background-position: -1117px -1301px; width: 60px; height: 60px; } .shop_headAccessory_special_bearEars { background-image: url(spritesmith-main-5.png); - background-position: -1228px -1525px; + background-position: -492px -1607px; width: 40px; height: 40px; } .shop_headAccessory_special_cactusEars { background-image: url(spritesmith-main-5.png); - background-position: -1187px -1525px; + background-position: -533px -1607px; width: 40px; height: 40px; } .shop_headAccessory_special_foxEars { background-image: url(spritesmith-main-5.png); - background-position: -1146px -1525px; + background-position: -574px -1607px; width: 40px; height: 40px; } .shop_headAccessory_special_lionEars { background-image: url(spritesmith-main-5.png); - background-position: -1706px -330px; + background-position: -615px -1607px; width: 40px; height: 40px; } .shop_headAccessory_special_pandaEars { background-image: url(spritesmith-main-5.png); - background-position: -954px -1677px; + background-position: -656px -1607px; width: 40px; height: 40px; } .shop_headAccessory_special_pigEars { background-image: url(spritesmith-main-5.png); - background-position: -1706px -248px; + background-position: -697px -1607px; width: 40px; height: 40px; } .shop_headAccessory_special_tigerEars { background-image: url(spritesmith-main-5.png); - background-position: -380px -1677px; + background-position: -738px -1607px; width: 40px; height: 40px; } .shop_headAccessory_special_wolfEars { background-image: url(spritesmith-main-5.png); - background-position: -134px -1677px; + background-position: -779px -1607px; width: 40px; height: 40px; } .shield_healer_1 { background-image: url(spritesmith-main-5.png); - background-position: -1433px -273px; + background-position: -1183px -1286px; width: 90px; height: 90px; } .shield_healer_2 { background-image: url(spritesmith-main-5.png); - background-position: -1433px -364px; + background-position: -1274px -1286px; width: 90px; height: 90px; } .shield_healer_3 { background-image: url(spritesmith-main-5.png); - background-position: -1433px -455px; + background-position: -1432px 0px; width: 90px; height: 90px; } .shield_healer_4 { background-image: url(spritesmith-main-5.png); - background-position: -1433px -546px; + background-position: -1432px -91px; width: 90px; height: 90px; } .shield_healer_5 { background-image: url(spritesmith-main-5.png); - background-position: -1433px -637px; + background-position: -1432px -182px; width: 90px; height: 90px; } .shield_rogue_0 { background-image: url(spritesmith-main-5.png); - background-position: -1433px -728px; + background-position: -1432px -273px; width: 90px; height: 90px; } .shield_rogue_1 { background-image: url(spritesmith-main-5.png); - background-position: -1314px -1108px; + background-position: -409px -1004px; width: 103px; height: 90px; } .shield_rogue_2 { background-image: url(spritesmith-main-5.png); - background-position: -1314px -1017px; + background-position: -305px -1004px; width: 103px; height: 90px; } .shield_rogue_3 { background-image: url(spritesmith-main-5.png); - background-position: -1314px -223px; + background-position: -1131px -132px; width: 114px; height: 90px; } .shield_rogue_4 { background-image: url(spritesmith-main-5.png); - background-position: 0px -1252px; + background-position: -297px -1104px; width: 96px; height: 90px; } .shield_rogue_5 { background-image: url(spritesmith-main-5.png); - background-position: -1314px -314px; + background-position: -1131px -223px; width: 114px; height: 90px; } .shield_rogue_6 { background-image: url(spritesmith-main-5.png); - background-position: -1314px -132px; + background-position: -1131px -314px; width: 114px; height: 90px; } .shield_special_1 { background-image: url(spritesmith-main-5.png); - background-position: -91px -1343px; + background-position: -1432px -455px; width: 90px; height: 90px; } .shield_special_goldenknight { background-image: url(spritesmith-main-5.png); - background-position: -1314px -526px; + background-position: -1131px -662px; width: 111px; height: 90px; } .shield_special_moonpearlShield { background-image: url(spritesmith-main-5.png); - background-position: -273px -1343px; + background-position: -1432px -546px; width: 90px; height: 90px; } .shield_warrior_1 { background-image: url(spritesmith-main-5.png); - background-position: -364px -1343px; + background-position: -1432px -637px; width: 90px; height: 90px; } .shield_warrior_2 { background-image: url(spritesmith-main-5.png); - background-position: -455px -1343px; + background-position: -1432px -728px; width: 90px; height: 90px; } .shield_warrior_3 { background-image: url(spritesmith-main-5.png); - background-position: -546px -1343px; + background-position: -1432px -819px; width: 90px; height: 90px; } .shield_warrior_4 { background-image: url(spritesmith-main-5.png); - background-position: -637px -1343px; + background-position: -1432px -910px; width: 90px; height: 90px; } .shield_warrior_5 { background-image: url(spritesmith-main-5.png); - background-position: -728px -1343px; + background-position: -1432px -1001px; width: 90px; height: 90px; } .shop_shield_healer_1 { background-image: url(spritesmith-main-5.png); - background-position: -1556px -1525px; + background-position: 0px -1648px; width: 40px; height: 40px; } .shop_shield_healer_2 { background-image: url(spritesmith-main-5.png); - background-position: -1105px -1525px; + background-position: -82px -1648px; width: 40px; height: 40px; } .shop_shield_healer_3 { background-image: url(spritesmith-main-5.png); - background-position: -1064px -1525px; + background-position: -123px -1648px; width: 40px; height: 40px; } .shop_shield_healer_4 { background-image: url(spritesmith-main-5.png); - background-position: -982px -1525px; + background-position: -410px -1648px; width: 40px; height: 40px; } .shop_shield_healer_5 { background-image: url(spritesmith-main-5.png); - background-position: -859px -1525px; + background-position: -533px -1648px; width: 40px; height: 40px; } .shop_shield_rogue_0 { background-image: url(spritesmith-main-5.png); - background-position: -818px -1525px; + background-position: -779px -1648px; width: 40px; height: 40px; } .shop_shield_rogue_1 { background-image: url(spritesmith-main-5.png); - background-position: -736px -1525px; + background-position: -902px -1648px; width: 40px; height: 40px; } .shop_shield_rogue_2 { background-image: url(spritesmith-main-5.png); - background-position: -1706px -1068px; + background-position: -943px -1648px; width: 40px; height: 40px; } .shop_shield_rogue_3 { background-image: url(spritesmith-main-5.png); - background-position: -1706px -1027px; + background-position: -984px -1648px; width: 40px; height: 40px; } .shop_shield_rogue_4 { background-image: url(spritesmith-main-5.png); - background-position: -1706px -986px; + background-position: -1025px -1648px; width: 40px; height: 40px; } .shop_shield_rogue_5 { background-image: url(spritesmith-main-5.png); - background-position: -1706px -945px; + background-position: -1066px -1648px; width: 40px; height: 40px; } .shop_shield_rogue_6 { background-image: url(spritesmith-main-5.png); - background-position: -1706px -617px; + background-position: -1107px -1648px; width: 40px; height: 40px; } .shop_shield_special_0 { background-image: url(spritesmith-main-5.png); - background-position: -1706px -576px; + background-position: -1148px -1648px; width: 40px; height: 40px; } .shop_shield_special_1 { background-image: url(spritesmith-main-5.png); - background-position: -1706px -535px; + background-position: -1189px -1648px; width: 40px; height: 40px; } .shop_shield_special_goldenknight { background-image: url(spritesmith-main-5.png); - background-position: -1706px -494px; + background-position: -1230px -1648px; width: 40px; height: 40px; } .shop_shield_special_moonpearlShield { background-image: url(spritesmith-main-5.png); - background-position: -1706px -453px; + background-position: -1640px -1648px; width: 40px; height: 40px; } .shop_shield_warrior_1 { background-image: url(spritesmith-main-5.png); - background-position: -1706px -412px; + background-position: -1312px -1648px; width: 40px; height: 40px; } .shop_shield_warrior_2 { background-image: url(spritesmith-main-5.png); - background-position: -1706px -371px; + background-position: -1353px -1648px; width: 40px; height: 40px; } .shop_shield_warrior_3 { background-image: url(spritesmith-main-5.png); - background-position: -1023px -1525px; + background-position: -1394px -1648px; width: 40px; height: 40px; } .shop_shield_warrior_4 { background-image: url(spritesmith-main-5.png); - background-position: -695px -1525px; + background-position: -1435px -1648px; width: 40px; height: 40px; } .shop_shield_warrior_5 { background-image: url(spritesmith-main-5.png); - background-position: -654px -1525px; + background-position: -1476px -1648px; width: 40px; height: 40px; } .shop_weapon_healer_0 { background-image: url(spritesmith-main-5.png); - background-position: -613px -1525px; + background-position: -1517px -1648px; width: 40px; height: 40px; } .shop_weapon_healer_1 { background-image: url(spritesmith-main-5.png); - background-position: -572px -1525px; + background-position: -1558px -1648px; width: 40px; height: 40px; } .shop_weapon_healer_2 { background-image: url(spritesmith-main-5.png); - background-position: -531px -1525px; + background-position: -1599px -1648px; width: 40px; height: 40px; } .shop_weapon_healer_3 { background-image: url(spritesmith-main-5.png); - background-position: -490px -1525px; + background-position: -1663px -1375px; width: 40px; height: 40px; } .shop_weapon_healer_4 { background-image: url(spritesmith-main-5.png); - background-position: -449px -1525px; + background-position: -1663px -1427px; width: 40px; height: 40px; } .shop_weapon_healer_5 { background-image: url(spritesmith-main-5.png); - background-position: -408px -1525px; + background-position: -1663px -1479px; width: 40px; height: 40px; } .shop_weapon_healer_6 { background-image: url(spritesmith-main-5.png); - background-position: -367px -1525px; + background-position: -1207px -405px; width: 40px; height: 40px; } .shop_weapon_rogue_0 { background-image: url(spritesmith-main-5.png); - background-position: -326px -1525px; + background-position: -1207px -446px; width: 40px; height: 40px; } .shop_weapon_rogue_1 { background-image: url(spritesmith-main-5.png); - background-position: -244px -1525px; + background-position: -1207px -487px; width: 40px; height: 40px; } .shop_weapon_rogue_2 { background-image: url(spritesmith-main-5.png); - background-position: -203px -1525px; + background-position: -1088px -151px; width: 40px; height: 40px; } .shop_weapon_rogue_3 { background-image: url(spritesmith-main-5.png); - background-position: -162px -1525px; + background-position: -1088px -192px; width: 40px; height: 40px; } .shop_weapon_rogue_4 { background-image: url(spritesmith-main-5.png); - background-position: -121px -1525px; + background-position: -1088px -233px; width: 40px; height: 40px; } .shop_weapon_rogue_5 { background-image: url(spritesmith-main-5.png); - background-position: -1482px -1274px; + background-position: -628px -1044px; width: 40px; height: 40px; } .shop_weapon_rogue_6 { background-image: url(spritesmith-main-5.png); - background-position: -1573px -1365px; + background-position: -669px -1044px; width: 40px; height: 40px; } .shop_weapon_special_0 { background-image: url(spritesmith-main-5.png); - background-position: -1664px -1466px; + background-position: -710px -1044px; width: 40px; height: 40px; } .shop_weapon_special_1 { background-image: url(spritesmith-main-5.png); - background-position: -1706px -1601px; + background-position: -751px -1044px; width: 40px; height: 40px; } .shop_weapon_special_2 { background-image: url(spritesmith-main-5.png); - background-position: -1706px -1560px; + background-position: -792px -1044px; width: 40px; height: 40px; } .shop_weapon_special_3 { background-image: url(spritesmith-main-5.png); - background-position: -1706px -1519px; + background-position: -833px -1044px; width: 40px; height: 40px; } .shop_weapon_special_critical { background-image: url(spritesmith-main-5.png); - background-position: -1706px -1478px; + background-position: -874px -1044px; width: 40px; height: 40px; } .shop_weapon_special_tridentOfCrashingTides { background-image: url(spritesmith-main-5.png); - background-position: -1706px -1437px; + background-position: -915px -1044px; width: 40px; height: 40px; } .shop_weapon_warrior_0 { background-image: url(spritesmith-main-5.png); - background-position: -1706px -1396px; + background-position: -956px -1044px; width: 40px; height: 40px; } .shop_weapon_warrior_1 { background-image: url(spritesmith-main-5.png); - background-position: -1706px -1355px; + background-position: -997px -1044px; width: 40px; height: 40px; } .shop_weapon_warrior_2 { background-image: url(spritesmith-main-5.png); - background-position: -1706px -658px; + background-position: -1038px -1044px; width: 40px; height: 40px; } .shop_weapon_warrior_3 { background-image: url(spritesmith-main-5.png); - background-position: -1706px -289px; + background-position: -1079px -1044px; width: 40px; height: 40px; } .shop_weapon_warrior_4 { background-image: url(spritesmith-main-5.png); - background-position: -1706px -699px; + background-position: -1120px -1044px; width: 40px; height: 40px; } .shop_weapon_warrior_5 { background-image: url(spritesmith-main-5.png); - background-position: -1706px -822px; + background-position: -1161px -1044px; width: 40px; height: 40px; } .shop_weapon_warrior_6 { background-image: url(spritesmith-main-5.png); - background-position: -1706px -863px; + background-position: -1202px -1044px; width: 40px; height: 40px; } .shop_weapon_wizard_0 { background-image: url(spritesmith-main-5.png); - background-position: -1706px -904px; + background-position: -1547px -1468px; width: 40px; height: 40px; } .shop_weapon_wizard_1 { background-image: url(spritesmith-main-5.png); - background-position: -1706px -1109px; + background-position: -1547px -1509px; width: 40px; height: 40px; } .shop_weapon_wizard_2 { background-image: url(spritesmith-main-5.png); - background-position: -1706px -1150px; + background-position: -121px -1559px; width: 40px; height: 40px; } .shop_weapon_wizard_3 { background-image: url(spritesmith-main-5.png); - background-position: -1706px -1191px; + background-position: -162px -1559px; width: 40px; height: 40px; } .shop_weapon_wizard_4 { background-image: url(spritesmith-main-5.png); - background-position: -1706px -1232px; + background-position: -203px -1559px; width: 40px; height: 40px; } .shop_weapon_wizard_5 { background-image: url(spritesmith-main-5.png); - background-position: -1706px -1273px; + background-position: -244px -1559px; width: 40px; height: 40px; } .shop_weapon_wizard_6 { background-image: url(spritesmith-main-5.png); - background-position: -1706px -1314px; + background-position: -285px -1559px; width: 40px; height: 40px; } .weapon_healer_0 { background-image: url(spritesmith-main-5.png); - background-position: -1615px -273px; + background-position: -1432px -1092px; width: 90px; height: 90px; } .weapon_healer_1 { background-image: url(spritesmith-main-5.png); - background-position: -1615px -182px; + background-position: -1432px -1183px; width: 90px; height: 90px; } .weapon_healer_2 { background-image: url(spritesmith-main-5.png); - background-position: -1615px -91px; + background-position: -1432px -1274px; width: 90px; height: 90px; } .weapon_healer_3 { background-image: url(spritesmith-main-5.png); - background-position: -1615px 0px; + background-position: 0px -1377px; width: 90px; height: 90px; } .weapon_healer_4 { background-image: url(spritesmith-main-5.png); - background-position: -1456px -1434px; + background-position: -91px -1377px; width: 90px; height: 90px; } .weapon_healer_5 { background-image: url(spritesmith-main-5.png); - background-position: -1365px -1434px; + background-position: -182px -1377px; width: 90px; height: 90px; } .weapon_healer_6 { background-image: url(spritesmith-main-5.png); - background-position: -1274px -1434px; + background-position: -273px -1377px; width: 90px; height: 90px; } .weapon_rogue_0 { background-image: url(spritesmith-main-5.png); - background-position: -1183px -1434px; + background-position: -364px -1377px; width: 90px; height: 90px; } .weapon_rogue_1 { background-image: url(spritesmith-main-5.png); - background-position: -1092px -1434px; + background-position: -964px -1104px; width: 90px; height: 90px; } .weapon_rogue_2 { background-image: url(spritesmith-main-5.png); - background-position: -1001px -1434px; + background-position: -546px -1377px; width: 90px; height: 90px; } .weapon_rogue_3 { background-image: url(spritesmith-main-5.png); - background-position: -910px -1434px; + background-position: -637px -1377px; width: 90px; height: 90px; } .weapon_rogue_4 { background-image: url(spritesmith-main-5.png); - background-position: -819px -1434px; + background-position: -728px -1377px; width: 90px; height: 90px; } .weapon_rogue_5 { background-image: url(spritesmith-main-5.png); - background-position: -728px -1434px; + background-position: -819px -1377px; width: 90px; height: 90px; } .weapon_rogue_6 { background-image: url(spritesmith-main-5.png); - background-position: -637px -1434px; + background-position: -910px -1377px; width: 90px; height: 90px; } .weapon_special_1 { background-image: url(spritesmith-main-5.png); - background-position: -625px -1073px; + background-position: 0px -1104px; width: 102px; height: 90px; } .weapon_special_2 { background-image: url(spritesmith-main-5.png); - background-position: -455px -1434px; + background-position: -1001px -1377px; width: 90px; height: 90px; } .weapon_special_3 { background-image: url(spritesmith-main-5.png); - background-position: -364px -1434px; + background-position: -1092px -1377px; width: 90px; height: 90px; } .weapon_special_tridentOfCrashingTides { background-image: url(spritesmith-main-5.png); - background-position: -273px -1434px; + background-position: -1183px -1377px; width: 90px; height: 90px; } .weapon_warrior_0 { background-image: url(spritesmith-main-5.png); - background-position: -182px -1434px; + background-position: -1274px -1377px; width: 90px; height: 90px; } .weapon_warrior_1 { background-image: url(spritesmith-main-5.png); - background-position: -91px -1434px; + background-position: -1365px -1377px; width: 90px; height: 90px; } .weapon_warrior_2 { background-image: url(spritesmith-main-5.png); - background-position: 0px -1434px; + background-position: -1523px 0px; width: 90px; height: 90px; } .weapon_warrior_3 { background-image: url(spritesmith-main-5.png); - background-position: -1615px -364px; + background-position: -1523px -91px; width: 90px; height: 90px; } .weapon_warrior_4 { background-image: url(spritesmith-main-5.png); - background-position: -1524px -1183px; + background-position: -1523px -182px; width: 90px; height: 90px; } .weapon_warrior_5 { background-image: url(spritesmith-main-5.png); - background-position: -1524px -1092px; + background-position: -1523px -273px; width: 90px; height: 90px; } .weapon_warrior_6 { background-image: url(spritesmith-main-5.png); - background-position: -1524px -1001px; + background-position: -1523px -364px; width: 90px; height: 90px; } .weapon_wizard_0 { background-image: url(spritesmith-main-5.png); - background-position: -1524px -910px; + background-position: -1523px -455px; width: 90px; height: 90px; } .weapon_wizard_1 { background-image: url(spritesmith-main-5.png); - background-position: -1524px -819px; + background-position: -1523px -546px; width: 90px; height: 90px; } .weapon_wizard_2 { background-image: url(spritesmith-main-5.png); - background-position: -1524px -728px; + background-position: -1523px -637px; width: 90px; height: 90px; } .weapon_wizard_3 { background-image: url(spritesmith-main-5.png); - background-position: -1524px -637px; + background-position: -1523px -728px; width: 90px; height: 90px; } .weapon_wizard_4 { background-image: url(spritesmith-main-5.png); - background-position: -1524px -546px; + background-position: -1523px -819px; width: 90px; height: 90px; } .weapon_wizard_5 { background-image: url(spritesmith-main-5.png); - background-position: -1524px -455px; + background-position: -1523px -910px; width: 90px; height: 90px; } .weapon_wizard_6 { background-image: url(spritesmith-main-5.png); - background-position: -1524px -364px; + background-position: -1523px -1001px; width: 90px; height: 90px; } .GrimReaper { background-image: url(spritesmith-main-5.png); - background-position: -1615px -528px; + background-position: -1614px -437px; width: 57px; height: 66px; } .Pet_Currency_Gem { background-image: url(spritesmith-main-5.png); - background-position: -1706px -208px; + background-position: -1131px -953px; width: 45px; height: 39px; } .Pet_Currency_Gem1x { background-image: url(spritesmith-main-5.png); - background-position: -1737px -1642px; + background-position: -1675px -364px; width: 15px; height: 13px; } .Pet_Currency_Gem2x { background-image: url(spritesmith-main-5.png); - background-position: -1673px -528px; + background-position: -1672px -437px; width: 30px; height: 26px; } .PixelPaw-Gold { background-image: url(spritesmith-main-5.png); - background-position: -1615px -1362px; + background-position: -1614px -1271px; width: 51px; height: 51px; } .PixelPaw { background-image: url(spritesmith-main-5.png); - background-position: -1615px -1414px; + background-position: -1614px -1323px; width: 51px; height: 51px; } .PixelPaw002 { background-image: url(spritesmith-main-5.png); - background-position: -1615px -1310px; + background-position: -1614px -1219px; width: 51px; height: 51px; } .avatar_floral_healer { background-image: url(spritesmith-main-5.png); - background-position: -1314px -917px; + background-position: 0px -1004px; width: 99px; height: 99px; } .avatar_floral_rogue { background-image: url(spritesmith-main-5.png); - background-position: -1314px -717px; + background-position: -1131px -853px; width: 99px; height: 99px; } .avatar_floral_warrior { background-image: url(spritesmith-main-5.png); - background-position: -1314px -817px; + background-position: -100px -1004px; width: 99px; height: 99px; } .avatar_floral_wizard { background-image: url(spritesmith-main-5.png); - background-position: -1314px -617px; + background-position: -1131px -753px; width: 99px; height: 99px; } .empty_bottles { background-image: url(spritesmith-main-5.png); - background-position: -1615px -595px; + background-position: -1614px -504px; width: 64px; height: 54px; } .inventory_present { background-image: url(spritesmith-main-5.png); - background-position: -1456px -1343px; + background-position: -1076px -620px; width: 48px; height: 51px; } .inventory_present_01 { background-image: url(spritesmith-main-5.png); - background-position: -1547px -1434px; + background-position: -1274px -1195px; width: 48px; height: 51px; } .inventory_present_02 { background-image: url(spritesmith-main-5.png); - background-position: 0px -1573px; + background-position: -1060px -905px; width: 48px; height: 51px; } .inventory_present_03 { background-image: url(spritesmith-main-5.png); - background-position: -49px -1573px; + background-position: -1060px -853px; width: 48px; height: 51px; } .inventory_present_04 { background-image: url(spritesmith-main-5.png); - background-position: -98px -1573px; + background-position: -1076px -759px; width: 48px; height: 51px; } .inventory_present_05 { background-image: url(spritesmith-main-5.png); - background-position: -147px -1573px; + background-position: -1076px -707px; width: 48px; height: 51px; } .inventory_present_06 { background-image: url(spritesmith-main-5.png); - background-position: -196px -1573px; + background-position: -1614px -1375px; width: 48px; height: 51px; } .inventory_present_07 { background-image: url(spritesmith-main-5.png); - background-position: -294px -1573px; + background-position: -1076px -568px; width: 48px; height: 51px; } .inventory_present_08 { background-image: url(spritesmith-main-5.png); - background-position: -343px -1573px; + background-position: -1456px -1377px; width: 48px; height: 51px; } .inventory_present_09 { background-image: url(spritesmith-main-5.png); - background-position: -392px -1573px; + background-position: -1076px -429px; width: 48px; height: 51px; } .inventory_present_10 { background-image: url(spritesmith-main-5.png); - background-position: -441px -1573px; + background-position: -1076px -342px; width: 48px; height: 51px; } .inventory_present_11 { background-image: url(spritesmith-main-5.png); - background-position: -490px -1573px; + background-position: -1076px -290px; width: 48px; height: 51px; } .inventory_present_12 { background-image: url(spritesmith-main-5.png); - background-position: -1176px -1573px; + background-position: -1614px -1479px; width: 48px; height: 51px; } .inventory_quest_scroll { background-image: url(spritesmith-main-5.png); - background-position: -1615px -1466px; + background-position: -1076px -481px; width: 48px; height: 51px; } .inventory_quest_scroll_locked { background-image: url(spritesmith-main-5.png); - background-position: -1524px -1365px; + background-position: -1614px -1427px; width: 48px; height: 51px; } .inventory_special_birthday { background-image: url(spritesmith-main-5.png); - background-position: -1615px -1035px; + background-position: -1614px -1164px; width: 57px; height: 54px; } .inventory_special_fortify { background-image: url(spritesmith-main-5.png); - background-position: -1615px -705px; + background-position: -1614px -834px; width: 57px; height: 54px; } .inventory_special_greeting { background-image: url(spritesmith-main-5.png); - background-position: -1615px -760px; + background-position: -1614px -1109px; width: 57px; height: 54px; } .inventory_special_nye { background-image: url(spritesmith-main-5.png); - background-position: -1615px -815px; + background-position: -1614px -1054px; width: 57px; height: 54px; } .inventory_special_opaquePotion { background-image: url(spritesmith-main-5.png); - background-position: -285px -1525px; + background-position: -984px -1607px; width: 40px; height: 40px; } .inventory_special_seafoam { background-image: url(spritesmith-main-5.png); - background-position: -1615px -870px; + background-position: -1614px -999px; width: 57px; height: 54px; } .inventory_special_shinySeed { background-image: url(spritesmith-main-5.png); - background-position: -1615px -650px; + background-position: -1614px -669px; width: 57px; height: 54px; } .inventory_special_snowball { background-image: url(spritesmith-main-5.png); - background-position: -1615px -980px; + background-position: -1614px -614px; width: 57px; height: 54px; } .inventory_special_spookDust { background-image: url(spritesmith-main-5.png); - background-position: -1615px -1255px; + background-position: -1614px -889px; width: 57px; height: 54px; } .inventory_special_thankyou { background-image: url(spritesmith-main-5.png); - background-position: -1615px -1090px; + background-position: -1614px -779px; width: 57px; height: 54px; } .inventory_special_trinket { background-image: url(spritesmith-main-5.png); - background-position: -245px -1573px; + background-position: -1365px -1286px; width: 48px; height: 51px; } .inventory_special_valentine { background-image: url(spritesmith-main-5.png); - background-position: -1615px -1145px; + background-position: -1614px -559px; width: 57px; height: 54px; } .knockout { background-image: url(spritesmith-main-5.png); - background-position: 0px -1525px; + background-position: 0px -1559px; width: 120px; height: 47px; } .pet_key { background-image: url(spritesmith-main-5.png); - background-position: -1615px -1200px; + background-position: -1614px -724px; width: 57px; height: 54px; } .rebirth_orb { background-image: url(spritesmith-main-5.png); - background-position: -1615px -925px; + background-position: -1614px -944px; width: 57px; height: 54px; } .seafoam_star { background-image: url(spritesmith-main-5.png); - background-position: -1365px -1343px; + background-position: -1614px 0px; width: 90px; height: 90px; } .shop_armoire { background-image: url(spritesmith-main-5.png); - background-position: -777px -1525px; + background-position: -41px -1648px; width: 40px; height: 40px; } .snowman { background-image: url(spritesmith-main-5.png); - background-position: -1274px -1343px; + background-position: -1456px -1468px; width: 90px; height: 90px; } .spookman { background-image: url(spritesmith-main-5.png); - background-position: -1183px -1343px; + background-position: -1365px -1468px; width: 90px; height: 90px; } .zzz { background-image: url(spritesmith-main-5.png); - background-position: -900px -1525px; + background-position: -205px -1648px; width: 40px; height: 40px; } .zzz_light { background-image: url(spritesmith-main-5.png); - background-position: -941px -1525px; + background-position: -164px -1648px; width: 40px; height: 40px; } .npc_alex { background-image: url(spritesmith-main-5.png); - background-position: 0px -1073px; + background-position: -477px -853px; width: 162px; height: 138px; } +.npc_alex_broken { + background-image: url(spritesmith-main-5.png); + background-position: -151px -853px; + width: 162px; + height: 138px; +} +.npc_aprilFool { + background-image: url(spritesmith-main-5.png); + background-position: -939px -853px; + width: 120px; + height: 120px; +} .npc_bailey { background-image: url(spritesmith-main-5.png); - background-position: -1615px -455px; + background-position: -1614px -364px; width: 60px; height: 72px; } +.npc_bailey_broken { + background-image: url(spritesmith-main-5.png); + background-position: -513px -1004px; + width: 114px; + height: 81px; +} .npc_daniel { background-image: url(spritesmith-main-5.png); - background-position: -489px -1073px; + background-position: -803px -853px; width: 135px; height: 123px; } +.npc_ian { + background-image: url(spritesmith-main-5.png); + background-position: -1131px -405px; + width: 75px; + height: 135px; +} .npc_justin { background-image: url(spritesmith-main-5.png); - background-position: -1314px -405px; + background-position: -1131px -541px; width: 84px; height: 120px; } .npc_justin_head { background-image: url(spritesmith-main-5.png); - background-position: -1667px -1310px; + background-position: -1666px -1219px; width: 36px; height: 39px; } .npc_matt { background-image: url(spritesmith-main-5.png); - background-position: -1100px -498px; + background-position: -880px -568px; + width: 195px; + height: 138px; +} +.npc_matt_broken { + background-image: url(spritesmith-main-5.png); + background-position: -880px -429px; width: 195px; height: 138px; } .npc_timetravelers { background-image: url(spritesmith-main-5.png); - background-position: -1100px -637px; + background-position: -880px -707px; width: 195px; height: 138px; } .npc_timetravelers_active { background-image: url(spritesmith-main-5.png); - background-position: -1100px -776px; + background-position: -880px -290px; width: 195px; height: 138px; } .npc_tyler { background-image: url(spritesmith-main-5.png); - background-position: -1433px 0px; + background-position: -1183px -1468px; width: 90px; height: 90px; } .seasonalshop_closed { background-image: url(spritesmith-main-5.png); - background-position: -163px -1073px; + background-position: -314px -853px; width: 162px; height: 138px; } .seasonalshop_open { background-image: url(spritesmith-main-5.png); - background-position: -326px -1073px; + background-position: -640px -853px; width: 162px; height: 138px; } -.inventory_quest_scroll_atom1 { - background-image: url(spritesmith-main-5.png); - background-position: -539px -1573px; - width: 48px; - height: 51px; -} -.inventory_quest_scroll_atom1_locked { - background-image: url(spritesmith-main-5.png); - background-position: -588px -1573px; - width: 48px; - height: 51px; -} -.inventory_quest_scroll_atom2 { - background-image: url(spritesmith-main-5.png); - background-position: -637px -1573px; - width: 48px; - height: 51px; -} -.inventory_quest_scroll_atom2_locked { - background-image: url(spritesmith-main-5.png); - background-position: -686px -1573px; - width: 48px; - height: 51px; -} -.inventory_quest_scroll_atom3 { - background-image: url(spritesmith-main-5.png); - background-position: -735px -1573px; - width: 48px; - height: 51px; -} -.inventory_quest_scroll_atom3_locked { - background-image: url(spritesmith-main-5.png); - background-position: -784px -1573px; - width: 48px; - height: 51px; -} -.inventory_quest_scroll_basilist { - background-image: url(spritesmith-main-5.png); - background-position: -833px -1573px; - width: 48px; - height: 51px; -} -.inventory_quest_scroll_bunny { - background-image: url(spritesmith-main-5.png); - background-position: -882px -1573px; - width: 48px; - height: 51px; -} -.inventory_quest_scroll_cheetah { - background-image: url(spritesmith-main-5.png); - background-position: -931px -1573px; - width: 48px; - height: 51px; -} -.inventory_quest_scroll_dilatoryDistress1 { - background-image: url(spritesmith-main-5.png); - background-position: -980px -1573px; - width: 48px; - height: 51px; -} -.inventory_quest_scroll_dilatoryDistress2 { - background-image: url(spritesmith-main-5.png); - background-position: -1029px -1573px; - width: 48px; - height: 51px; -} -.inventory_quest_scroll_dilatoryDistress2_locked { - background-image: url(spritesmith-main-5.png); - background-position: -1078px -1573px; - width: 48px; - height: 51px; -} -.inventory_quest_scroll_dilatoryDistress3 { - background-image: url(spritesmith-main-5.png); - background-position: -1127px -1573px; - width: 48px; - height: 51px; -} -.inventory_quest_scroll_dilatoryDistress3_locked { - background-image: url(spritesmith-main-5.png); - background-position: -1706px -156px; - width: 48px; - height: 51px; -} -.inventory_quest_scroll_dilatory_derby { - background-image: url(spritesmith-main-5.png); - background-position: -1225px -1573px; - width: 48px; - height: 51px; -} -.inventory_quest_scroll_egg { - background-image: url(spritesmith-main-5.png); - background-position: -1274px -1573px; - width: 48px; - height: 51px; -} -.inventory_quest_scroll_evilsanta { - background-image: url(spritesmith-main-5.png); - background-position: -1323px -1573px; - width: 48px; - height: 51px; -} -.inventory_quest_scroll_evilsanta2 { - background-image: url(spritesmith-main-5.png); - background-position: -1372px -1573px; - width: 48px; - height: 51px; -} -.inventory_quest_scroll_frog { - background-image: url(spritesmith-main-5.png); - background-position: -1421px -1573px; - width: 48px; - height: 51px; -} -.inventory_quest_scroll_ghost_stag { - background-image: url(spritesmith-main-5.png); - background-position: -1470px -1573px; - width: 48px; - height: 51px; -} -.inventory_quest_scroll_goldenknight1 { - background-image: url(spritesmith-main-5.png); - background-position: -1519px -1573px; - width: 48px; - height: 51px; -} -.inventory_quest_scroll_goldenknight1_locked { - background-image: url(spritesmith-main-5.png); - background-position: -1568px -1573px; - width: 48px; - height: 51px; -} -.inventory_quest_scroll_goldenknight2 { - background-image: url(spritesmith-main-5.png); - background-position: -1617px -1573px; - width: 48px; - height: 51px; -} -.inventory_quest_scroll_goldenknight2_locked { - background-image: url(spritesmith-main-5.png); - background-position: 0px -1625px; - width: 48px; - height: 51px; -} -.inventory_quest_scroll_goldenknight3 { - background-image: url(spritesmith-main-5.png); - background-position: -49px -1625px; - width: 48px; - height: 51px; -} -.inventory_quest_scroll_goldenknight3_locked { - background-image: url(spritesmith-main-5.png); - background-position: -98px -1625px; - width: 48px; - height: 51px; -} -.inventory_quest_scroll_gryphon { - background-image: url(spritesmith-main-5.png); - background-position: -147px -1625px; - width: 48px; - height: 51px; -} -.inventory_quest_scroll_harpy { - background-image: url(spritesmith-main-5.png); - background-position: -196px -1625px; - width: 48px; - height: 51px; -} -.inventory_quest_scroll_hedgehog { - background-image: url(spritesmith-main-5.png); - background-position: -245px -1625px; - width: 48px; - height: 51px; -} -.inventory_quest_scroll_horse { - background-image: url(spritesmith-main-5.png); - background-position: -294px -1625px; - width: 48px; - height: 51px; -} -.inventory_quest_scroll_kraken { - background-image: url(spritesmith-main-5.png); - background-position: -343px -1625px; - width: 48px; - height: 51px; -} -.inventory_quest_scroll_monkey { - background-image: url(spritesmith-main-5.png); - background-position: -392px -1625px; - width: 48px; - height: 51px; -} -.inventory_quest_scroll_moonstone1 { - background-image: url(spritesmith-main-5.png); - background-position: -441px -1625px; - width: 48px; - height: 51px; -} -.inventory_quest_scroll_moonstone1_locked { - background-image: url(spritesmith-main-5.png); - background-position: -490px -1625px; - width: 48px; - height: 51px; -} -.inventory_quest_scroll_moonstone2 { - background-image: url(spritesmith-main-5.png); - background-position: -539px -1625px; - width: 48px; - height: 51px; -} -.inventory_quest_scroll_moonstone2_locked { - background-image: url(spritesmith-main-5.png); - background-position: -588px -1625px; - width: 48px; - height: 51px; -} -.inventory_quest_scroll_moonstone3 { - background-image: url(spritesmith-main-5.png); - background-position: -637px -1625px; - width: 48px; - height: 51px; -} -.inventory_quest_scroll_moonstone3_locked { - background-image: url(spritesmith-main-5.png); - background-position: -686px -1625px; - width: 48px; - height: 51px; -} -.inventory_quest_scroll_octopus { - background-image: url(spritesmith-main-5.png); - background-position: -735px -1625px; - width: 48px; - height: 51px; -} -.inventory_quest_scroll_owl { - background-image: url(spritesmith-main-5.png); - background-position: -784px -1625px; - width: 48px; - height: 51px; -} -.inventory_quest_scroll_penguin { - background-image: url(spritesmith-main-5.png); - background-position: -833px -1625px; - width: 48px; - height: 51px; -} -.inventory_quest_scroll_rat { - background-image: url(spritesmith-main-5.png); - background-position: -882px -1625px; - width: 48px; - height: 51px; -} -.inventory_quest_scroll_rock { - background-image: url(spritesmith-main-5.png); - background-position: -931px -1625px; - width: 48px; - height: 51px; -} -.inventory_quest_scroll_rooster { - background-image: url(spritesmith-main-5.png); - background-position: -980px -1625px; - width: 48px; - height: 51px; -} -.inventory_quest_scroll_sabretooth { - background-image: url(spritesmith-main-5.png); - background-position: -1029px -1625px; - width: 48px; - height: 51px; -} -.inventory_quest_scroll_sheep { - background-image: url(spritesmith-main-5.png); - background-position: -1078px -1625px; - width: 48px; - height: 51px; -} -.inventory_quest_scroll_slime { - background-image: url(spritesmith-main-5.png); - background-position: -1127px -1625px; - width: 48px; - height: 51px; -} -.inventory_quest_scroll_snake { - background-image: url(spritesmith-main-5.png); - background-position: -1176px -1625px; - width: 48px; - height: 51px; -} -.inventory_quest_scroll_spider { - background-image: url(spritesmith-main-5.png); - background-position: -1225px -1625px; - width: 48px; - height: 51px; -} -.inventory_quest_scroll_trex { - background-image: url(spritesmith-main-5.png); - background-position: -1274px -1625px; - width: 48px; - height: 51px; -} -.inventory_quest_scroll_trex_undead { - background-image: url(spritesmith-main-5.png); - background-position: -1323px -1625px; - width: 48px; - height: 51px; -} -.inventory_quest_scroll_unicorn { - background-image: url(spritesmith-main-5.png); - background-position: -1372px -1625px; - width: 48px; - height: 51px; -} -.inventory_quest_scroll_vice1 { - background-image: url(spritesmith-main-5.png); - background-position: -1421px -1625px; - width: 48px; - height: 51px; -} -.inventory_quest_scroll_vice1_locked { - background-image: url(spritesmith-main-5.png); - background-position: -1470px -1625px; - width: 48px; - height: 51px; -} -.inventory_quest_scroll_vice2 { - background-image: url(spritesmith-main-5.png); - background-position: -1519px -1625px; - width: 48px; - height: 51px; -} -.inventory_quest_scroll_vice2_locked { - background-image: url(spritesmith-main-5.png); - background-position: -1568px -1625px; - width: 48px; - height: 51px; -} -.inventory_quest_scroll_vice3 { - background-image: url(spritesmith-main-5.png); - background-position: -1617px -1625px; - width: 48px; - height: 51px; -} -.inventory_quest_scroll_vice3_locked { - background-image: url(spritesmith-main-5.png); - background-position: -1706px 0px; - width: 48px; - height: 51px; -} -.inventory_quest_scroll_whale { - background-image: url(spritesmith-main-5.png); - background-position: -1706px -52px; - width: 48px; - height: 51px; -} -.quest_TEMPLATE_FOR_MISSING_IMAGE { - background-image: url(spritesmith-main-5.png); - background-position: -950px -1073px; - width: 221px; - height: 39px; -} .quest_atom1 { background-image: url(spritesmith-main-5.png); - background-position: -679px -886px; + background-position: -880px 0px; width: 250px; height: 150px; } .quest_atom2 { background-image: url(spritesmith-main-5.png); - background-position: -1100px -359px; + background-position: -880px -151px; width: 207px; height: 138px; } .quest_atom3 { background-image: url(spritesmith-main-5.png); - background-position: -211px -886px; + background-position: 0px -672px; width: 216px; height: 180px; } .quest_basilist { background-image: url(spritesmith-main-5.png); - background-position: -1100px -915px; + background-position: -685px -672px; width: 189px; height: 141px; } .quest_bunny { background-image: url(spritesmith-main-5.png); - background-position: 0px -886px; + background-position: -653px -452px; width: 210px; height: 186px; } .quest_cheetah { background-image: url(spritesmith-main-5.png); - background-position: -220px -232px; + background-position: -440px 0px; width: 219px; height: 219px; } .quest_dilatory { background-image: url(spritesmith-main-5.png); - background-position: -660px -452px; + background-position: -220px 0px; width: 219px; height: 219px; } .quest_dilatoryDistress1 { background-image: url(spritesmith-main-5.png); - background-position: -728px -1073px; - width: 221px; - height: 39px; -} -.quest_dilatoryDistress1_blueFins { - background-image: url(spritesmith-main-5.png); - background-position: 0px -1677px; - width: 51px; - height: 48px; -} -.quest_dilatoryDistress1_fireCoral { - background-image: url(spritesmith-main-5.png); - background-position: -1706px -104px; - width: 48px; - height: 51px; + background-position: -442px -452px; + width: 210px; + height: 210px; } .quest_dilatoryDistress2 { background-image: url(spritesmith-main-5.png); - background-position: -930px -886px; + background-position: 0px -853px; width: 150px; height: 150px; } .quest_dilatoryDistress3 { background-image: url(spritesmith-main-5.png); - background-position: -880px -220px; + background-position: 0px -452px; width: 219px; height: 219px; } .quest_dilatory_derby { background-image: url(spritesmith-main-5.png); - background-position: -440px 0px; + background-position: -220px -232px; width: 219px; height: 219px; } .quest_egg { background-image: url(spritesmith-main-5.png); - background-position: 0px -1212px; + background-position: -628px -1004px; width: 221px; height: 39px; } -.quest_egg_plainEgg { - background-image: url(spritesmith-main-5.png); - background-position: -1371px -1252px; - width: 48px; - height: 51px; -} .quest_evilsanta { background-image: url(spritesmith-main-5.png); - background-position: -1314px 0px; + background-position: -1131px 0px; width: 118px; height: 131px; } .quest_evilsanta2 { background-image: url(spritesmith-main-5.png); - background-position: -660px -220px; + background-position: -660px 0px; + width: 219px; + height: 219px; +} +.quest_falcon { + background-image: url(spritesmith-main-5.png); + background-position: -440px -232px; width: 219px; height: 219px; } .quest_frog { background-image: url(spritesmith-main-5.png); - background-position: 0px -672px; + background-position: -220px -452px; width: 221px; height: 213px; } .quest_ghost_stag { background-image: url(spritesmith-main-5.png); - background-position: -220px -452px; + background-position: 0px -232px; width: 219px; height: 219px; } .quest_goldenknight1 { background-image: url(spritesmith-main-5.png); - background-position: -950px -1113px; + background-position: -850px -1004px; width: 221px; height: 39px; } -.quest_goldenknight1_testimony { - background-image: url(spritesmith-main-5.png); - background-position: -1433px -1274px; - width: 48px; - height: 51px; -} .quest_goldenknight2 { background-image: url(spritesmith-main-5.png); - background-position: -428px -886px; + background-position: -434px -672px; width: 250px; height: 150px; } @@ -1980,97 +2250,13 @@ } .quest_gryphon { background-image: url(spritesmith-main-5.png); - background-position: -882px -672px; + background-position: -217px -672px; width: 216px; height: 177px; } .quest_harpy { background-image: url(spritesmith-main-5.png); - background-position: -220px 0px; + background-position: -660px -220px; width: 219px; height: 219px; } -.quest_hedgehog { - background-image: url(spritesmith-main-5.png); - background-position: -222px -672px; - width: 219px; - height: 186px; -} -.quest_horse { - background-image: url(spritesmith-main-5.png); - background-position: -440px -452px; - width: 219px; - height: 219px; -} -.quest_kraken { - background-image: url(spritesmith-main-5.png); - background-position: -665px -672px; - width: 216px; - height: 177px; -} -.quest_monkey { - background-image: url(spritesmith-main-5.png); - background-position: 0px -452px; - width: 219px; - height: 219px; -} -.quest_moonstone1 { - background-image: url(spritesmith-main-5.png); - background-position: -728px -1113px; - width: 221px; - height: 39px; -} -.quest_moonstone1_moonstone { - background-image: url(spritesmith-main-5.png); - background-position: -1706px -1642px; - width: 30px; - height: 30px; -} -.quest_moonstone2 { - background-image: url(spritesmith-main-5.png); - background-position: -660px 0px; - width: 219px; - height: 219px; -} -.quest_moonstone3 { - background-image: url(spritesmith-main-5.png); - background-position: -440px -232px; - width: 219px; - height: 219px; -} -.quest_octopus { - background-image: url(spritesmith-main-5.png); - background-position: -442px -672px; - width: 222px; - height: 177px; -} -.quest_owl { - background-image: url(spritesmith-main-5.png); - background-position: 0px -232px; - width: 219px; - height: 219px; -} -.quest_penguin { - background-image: url(spritesmith-main-5.png); - background-position: -1100px -175px; - width: 190px; - height: 183px; -} -.quest_rat { - background-image: url(spritesmith-main-5.png); - background-position: -880px 0px; - width: 219px; - height: 219px; -} -.quest_rock { - background-image: url(spritesmith-main-5.png); - background-position: -880px -440px; - width: 216px; - height: 216px; -} -.quest_rooster { - background-image: url(spritesmith-main-5.png); - background-position: -1100px 0px; - width: 213px; - height: 174px; -} diff --git a/common/dist/sprites/spritesmith-main-5.png b/common/dist/sprites/spritesmith-main-5.png index 6706836036..1ec8dc7229 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 a0663c8bab..a5ef151fd8 100644 --- a/common/dist/sprites/spritesmith-main-6.css +++ b/common/dist/sprites/spritesmith-main-6.css @@ -1,78 +1,168 @@ -.quest_sabretooth { +.quest_TEMPLATE_FOR_MISSING_IMAGE { background-image: url(spritesmith-main-6.png); - background-position: 0px 0px; - width: 219px; - height: 219px; + background-position: -318px -1527px; + width: 221px; + height: 39px; } -.quest_sheep { +.quest_hedgehog { + background-image: url(spritesmith-main-6.png); + background-position: -880px -651px; + width: 219px; + height: 186px; +} +.quest_horse { background-image: url(spritesmith-main-6.png); background-position: -220px 0px; width: 219px; height: 219px; } -.quest_slime { +.quest_kraken { + background-image: url(spritesmith-main-6.png); + background-position: -440px -880px; + width: 216px; + height: 177px; +} +.quest_monkey { background-image: url(spritesmith-main-6.png); background-position: 0px -220px; width: 219px; height: 219px; } -.quest_snake { - background-image: url(spritesmith-main-6.png); - background-position: -660px -398px; - width: 216px; - height: 177px; -} -.quest_spider { - background-image: url(spritesmith-main-6.png); - background-position: -434px -660px; - width: 250px; - height: 150px; -} -.quest_stressbeast { +.quest_moonstone1 { background-image: url(spritesmith-main-6.png); background-position: -220px -220px; width: 219px; height: 219px; } -.quest_stressbeast_bailey { +.quest_moonstone2 { background-image: url(spritesmith-main-6.png); background-position: -440px 0px; width: 219px; height: 219px; } -.quest_stressbeast_guide { +.quest_moonstone3 { background-image: url(spritesmith-main-6.png); background-position: -440px -220px; width: 219px; height: 219px; } -.quest_stressbeast_stables { +.quest_octopus { background-image: url(spritesmith-main-6.png); - background-position: 0px -440px; + background-position: 0px -880px; + width: 222px; + height: 177px; +} +.quest_owl { + background-image: url(spritesmith-main-6.png); + background-position: -220px -440px; width: 219px; height: 219px; } -.quest_trex { +.quest_penguin { background-image: url(spritesmith-main-6.png); - background-position: -880px 0px; - width: 204px; - height: 177px; + background-position: -1100px -531px; + width: 190px; + height: 183px; } -.quest_trex_undead { - background-image: url(spritesmith-main-6.png); - background-position: -217px -660px; - width: 216px; - height: 177px; -} -.quest_unicorn { +.quest_rat { background-image: url(spritesmith-main-6.png); background-position: -660px 0px; width: 219px; height: 219px; } -.quest_vice1 { +.quest_rock { + background-image: url(spritesmith-main-6.png); + background-position: -880px -220px; + width: 216px; + height: 216px; +} +.quest_rooster { + background-image: url(spritesmith-main-6.png); + background-position: -1100px -178px; + width: 213px; + height: 174px; +} +.quest_sabretooth { + background-image: url(spritesmith-main-6.png); + background-position: 0px -660px; + width: 219px; + height: 219px; +} +.quest_sheep { + background-image: url(spritesmith-main-6.png); + background-position: -220px -660px; + width: 219px; + height: 219px; +} +.quest_slime { + background-image: url(spritesmith-main-6.png); + background-position: -440px -660px; + width: 219px; + height: 219px; +} +.quest_snail { + background-image: url(spritesmith-main-6.png); + background-position: -880px -437px; + width: 219px; + height: 213px; +} +.quest_snake { + background-image: url(spritesmith-main-6.png); + background-position: -874px -880px; + width: 216px; + height: 177px; +} +.quest_spider { + background-image: url(spritesmith-main-6.png); + background-position: 0px -1058px; + width: 250px; + height: 150px; +} +.quest_stressbeast { + background-image: url(spritesmith-main-6.png); + background-position: -660px -440px; + width: 219px; + height: 219px; +} +.quest_stressbeast_bailey { + background-image: url(spritesmith-main-6.png); + background-position: -880px 0px; + width: 219px; + height: 219px; +} +.quest_stressbeast_guide { + background-image: url(spritesmith-main-6.png); + background-position: -660px -660px; + width: 219px; + height: 219px; +} +.quest_stressbeast_stables { + background-image: url(spritesmith-main-6.png); + background-position: 0px 0px; + width: 219px; + height: 219px; +} +.quest_trex { + background-image: url(spritesmith-main-6.png); + background-position: -1100px -353px; + width: 204px; + height: 177px; +} +.quest_trex_undead { + background-image: url(spritesmith-main-6.png); + background-position: -223px -880px; + width: 216px; + height: 177px; +} +.quest_unicorn { background-image: url(spritesmith-main-6.png); background-position: -660px -220px; + width: 219px; + height: 219px; +} +.quest_vice1 { + background-image: url(spritesmith-main-6.png); + background-position: -657px -880px; width: 216px; height: 177px; } @@ -82,1509 +172,1575 @@ width: 219px; height: 219px; } -.quest_vice2_lightCrystal { - background-image: url(spritesmith-main-6.png); - background-position: -1721px -134px; - width: 40px; - height: 40px; -} .quest_vice3 { background-image: url(spritesmith-main-6.png); - background-position: 0px -660px; + background-position: -1100px 0px; width: 216px; height: 177px; } .quest_whale { background-image: url(spritesmith-main-6.png); - background-position: -220px -440px; + background-position: 0px -440px; width: 219px; height: 219px; } +.quest_dilatoryDistress1_blueFins { + background-image: url(spritesmith-main-6.png); + background-position: 0px -1633px; + width: 51px; + height: 48px; +} +.quest_dilatoryDistress1_fireCoral { + background-image: url(spritesmith-main-6.png); + background-position: -1635px -520px; + width: 48px; + height: 51px; +} +.quest_egg_plainEgg { + background-image: url(spritesmith-main-6.png); + background-position: -1635px -572px; + width: 48px; + height: 51px; +} +.quest_goldenknight1_testimony { + background-image: url(spritesmith-main-6.png); + background-position: -1635px -624px; + width: 48px; + height: 51px; +} +.quest_moonstone1_moonstone { + background-image: url(spritesmith-main-6.png); + background-position: -383px -1173px; + width: 30px; + height: 30px; +} +.quest_vice2_lightCrystal { + background-image: url(spritesmith-main-6.png); + background-position: -552px -1633px; + width: 40px; + height: 40px; +} +.inventory_quest_scroll_atom1 { + background-image: url(spritesmith-main-6.png); + background-position: -1635px -728px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_atom1_locked { + background-image: url(spritesmith-main-6.png); + background-position: -1635px -676px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_atom2 { + background-image: url(spritesmith-main-6.png); + background-position: -1635px -832px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_atom2_locked { + background-image: url(spritesmith-main-6.png); + background-position: -1635px -780px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_atom3 { + background-image: url(spritesmith-main-6.png); + background-position: -1684px -468px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_atom3_locked { + background-image: url(spritesmith-main-6.png); + background-position: -1635px -884px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_basilist { + background-image: url(spritesmith-main-6.png); + background-position: -1684px -520px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_bunny { + background-image: url(spritesmith-main-6.png); + background-position: -1684px -572px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_cheetah { + background-image: url(spritesmith-main-6.png); + background-position: -1684px -624px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_dilatoryDistress1 { + background-image: url(spritesmith-main-6.png); + background-position: -1684px -728px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_dilatoryDistress2 { + background-image: url(spritesmith-main-6.png); + background-position: -1684px -832px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_dilatoryDistress2_locked { + background-image: url(spritesmith-main-6.png); + background-position: -1684px -780px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_dilatoryDistress3 { + background-image: url(spritesmith-main-6.png); + background-position: -1684px -936px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_dilatoryDistress3_locked { + background-image: url(spritesmith-main-6.png); + background-position: -1684px -884px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_dilatory_derby { + background-image: url(spritesmith-main-6.png); + background-position: -1684px -676px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_egg { + background-image: url(spritesmith-main-6.png); + background-position: -1684px -988px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_evilsanta { + background-image: url(spritesmith-main-6.png); + background-position: -1684px -1040px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_evilsanta2 { + background-image: url(spritesmith-main-6.png); + background-position: -1684px -1092px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_falcon { + background-image: url(spritesmith-main-6.png); + background-position: -1684px -1144px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_frog { + background-image: url(spritesmith-main-6.png); + background-position: -1684px -1248px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_ghost_stag { + background-image: url(spritesmith-main-6.png); + background-position: -1684px -1300px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_goldenknight1 { + background-image: url(spritesmith-main-6.png); + background-position: -1684px -1404px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_goldenknight1_locked { + background-image: url(spritesmith-main-6.png); + background-position: -1684px -1352px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_goldenknight2 { + background-image: url(spritesmith-main-6.png); + background-position: -1684px -1508px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_goldenknight2_locked { + background-image: url(spritesmith-main-6.png); + background-position: -1684px -1456px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_goldenknight3 { + background-image: url(spritesmith-main-6.png); + background-position: -1684px -1612px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_goldenknight3_locked { + background-image: url(spritesmith-main-6.png); + background-position: -1684px -1560px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_gryphon { + background-image: url(spritesmith-main-6.png); + background-position: -1733px 0px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_harpy { + background-image: url(spritesmith-main-6.png); + background-position: -1733px -52px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_hedgehog { + background-image: url(spritesmith-main-6.png); + background-position: -1733px -104px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_horse { + background-image: url(spritesmith-main-6.png); + background-position: -1733px -156px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_kraken { + background-image: url(spritesmith-main-6.png); + background-position: -49px -1682px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_monkey { + background-image: url(spritesmith-main-6.png); + background-position: 0px -1682px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_moonstone1 { + background-image: url(spritesmith-main-6.png); + background-position: -1733px -1560px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_moonstone1_locked { + background-image: url(spritesmith-main-6.png); + background-position: -1733px -1612px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_moonstone2 { + background-image: url(spritesmith-main-6.png); + background-position: -1733px -1456px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_moonstone2_locked { + background-image: url(spritesmith-main-6.png); + background-position: -1733px -1508px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_moonstone3 { + background-image: url(spritesmith-main-6.png); + background-position: -1733px -1352px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_moonstone3_locked { + background-image: url(spritesmith-main-6.png); + background-position: -1733px -1404px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_octopus { + background-image: url(spritesmith-main-6.png); + background-position: -1733px -1300px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_owl { + background-image: url(spritesmith-main-6.png); + background-position: -1733px -1248px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_penguin { + background-image: url(spritesmith-main-6.png); + background-position: -1733px -1196px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_rat { + background-image: url(spritesmith-main-6.png); + background-position: -1733px -1144px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_rock { + background-image: url(spritesmith-main-6.png); + background-position: -1733px -1092px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_rooster { + background-image: url(spritesmith-main-6.png); + background-position: -1733px -1040px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_sabretooth { + background-image: url(spritesmith-main-6.png); + background-position: -1733px -988px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_sheep { + background-image: url(spritesmith-main-6.png); + background-position: -1733px -936px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_slime { + background-image: url(spritesmith-main-6.png); + background-position: -1733px -884px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_snail { + background-image: url(spritesmith-main-6.png); + background-position: -1733px -832px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_snake { + background-image: url(spritesmith-main-6.png); + background-position: -1733px -780px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_spider { + background-image: url(spritesmith-main-6.png); + background-position: -1733px -728px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_trex { + background-image: url(spritesmith-main-6.png); + background-position: -1733px -624px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_trex_undead { + background-image: url(spritesmith-main-6.png); + background-position: -1733px -676px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_unicorn { + background-image: url(spritesmith-main-6.png); + background-position: -1733px -572px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_vice1 { + background-image: url(spritesmith-main-6.png); + background-position: -1733px -468px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_vice1_locked { + background-image: url(spritesmith-main-6.png); + background-position: -1733px -520px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_vice2 { + background-image: url(spritesmith-main-6.png); + background-position: -1733px -364px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_vice2_locked { + background-image: url(spritesmith-main-6.png); + background-position: -1733px -416px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_vice3 { + background-image: url(spritesmith-main-6.png); + background-position: -1733px -260px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_vice3_locked { + background-image: url(spritesmith-main-6.png); + background-position: -1733px -312px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_whale { + background-image: url(spritesmith-main-6.png); + background-position: -1733px -208px; + width: 48px; + height: 51px; +} .shop_copper { background-image: url(spritesmith-main-6.png); - background-position: -1721px -453px; + background-position: -480px -1173px; width: 32px; height: 22px; } .shop_eyes { background-image: url(spritesmith-main-6.png); - background-position: -1721px -175px; + background-position: -1044px -838px; width: 40px; height: 40px; } .shop_gold { background-image: url(spritesmith-main-6.png); - background-position: -1721px -430px; + background-position: -447px -1173px; width: 32px; height: 22px; } .shop_opaquePotion { background-image: url(spritesmith-main-6.png); - background-position: -1721px -216px; + background-position: -429px -1633px; width: 40px; height: 40px; } .shop_potion { background-image: url(spritesmith-main-6.png); - background-position: -1721px -93px; + background-position: -470px -1633px; width: 40px; height: 40px; } .shop_reroll { background-image: url(spritesmith-main-6.png); - background-position: -1721px -257px; + background-position: -511px -1633px; width: 40px; height: 40px; } .shop_seafoam { background-image: url(spritesmith-main-6.png); - background-position: -1721px -331px; + background-position: -350px -1173px; width: 32px; height: 32px; } .shop_shinySeed { background-image: url(spritesmith-main-6.png); - background-position: -1721px -364px; + background-position: -317px -1173px; width: 32px; height: 32px; } .shop_silver { background-image: url(spritesmith-main-6.png); - background-position: -1721px -476px; + background-position: -414px -1173px; width: 32px; height: 22px; } .shop_snowball { background-image: url(spritesmith-main-6.png); - background-position: -1721px -397px; + background-position: -284px -1173px; width: 32px; height: 32px; } .shop_spookDust { background-image: url(spritesmith-main-6.png); - background-position: -1721px -298px; + background-position: -251px -1173px; width: 32px; height: 32px; } +.shop_backStab { + background-image: url(spritesmith-main-6.png); + background-position: -1423px -1378px; + width: 40px; + height: 40px; +} +.shop_brightness { + background-image: url(spritesmith-main-6.png); + background-position: -388px -1633px; + width: 40px; + height: 40px; +} +.shop_defensiveStance { + background-image: url(spritesmith-main-6.png); + background-position: -1464px -1378px; + width: 40px; + height: 40px; +} +.shop_earth { + background-image: url(spritesmith-main-6.png); + background-position: -1317px -1272px; + width: 40px; + height: 40px; +} +.shop_fireball { + background-image: url(spritesmith-main-6.png); + background-position: -1358px -1272px; + width: 40px; + height: 40px; +} +.shop_frost { + background-image: url(spritesmith-main-6.png); + background-position: -880px -838px; + width: 40px; + height: 40px; +} +.shop_heal { + background-image: url(spritesmith-main-6.png); + background-position: -921px -838px; + width: 40px; + height: 40px; +} +.shop_heallAll { + background-image: url(spritesmith-main-6.png); + background-position: -962px -838px; + width: 40px; + height: 40px; +} +.shop_intimidate { + background-image: url(spritesmith-main-6.png); + background-position: -1003px -838px; + width: 40px; + height: 40px; +} +.shop_mpheal { + background-image: url(spritesmith-main-6.png); + background-position: -1573px -1484px; + width: 40px; + height: 40px; +} +.shop_pickPocket { + background-image: url(spritesmith-main-6.png); + background-position: -142px -1633px; + width: 40px; + height: 40px; +} +.shop_protectAura { + background-image: url(spritesmith-main-6.png); + background-position: -183px -1633px; + width: 40px; + height: 40px; +} +.shop_smash { + background-image: url(spritesmith-main-6.png); + background-position: -224px -1633px; + width: 40px; + height: 40px; +} +.shop_stealth { + background-image: url(spritesmith-main-6.png); + background-position: -265px -1633px; + width: 40px; + height: 40px; +} +.shop_toolsOfTrade { + background-image: url(spritesmith-main-6.png); + background-position: -306px -1633px; + width: 40px; + height: 40px; +} +.shop_valorousPresence { + background-image: url(spritesmith-main-6.png); + background-position: -347px -1633px; + width: 40px; + height: 40px; +} .Pet_Egg_BearCub { background-image: url(spritesmith-main-6.png); - background-position: -1027px -762px; + background-position: -1684px -416px; width: 48px; height: 51px; } .Pet_Egg_Bunny { background-image: url(spritesmith-main-6.png); - background-position: -660px -576px; + background-position: -1151px -1567px; width: 48px; height: 51px; } .Pet_Egg_Cactus { background-image: url(spritesmith-main-6.png); - background-position: -709px -576px; + background-position: -318px -1567px; width: 48px; height: 51px; } .Pet_Egg_Cheetah { background-image: url(spritesmith-main-6.png); - background-position: -758px -576px; + background-position: -1684px -1196px; width: 48px; height: 51px; } .Pet_Egg_Cuttlefish { background-image: url(spritesmith-main-6.png); - background-position: -791px -660px; + background-position: -367px -1567px; width: 48px; height: 51px; } .Pet_Egg_Deer { background-image: url(spritesmith-main-6.png); - background-position: -791px -712px; + background-position: -416px -1567px; width: 48px; height: 51px; } .Pet_Egg_Dragon { background-image: url(spritesmith-main-6.png); - background-position: -318px -1598px; + background-position: -465px -1567px; width: 48px; height: 51px; } .Pet_Egg_Egg { background-image: url(spritesmith-main-6.png); - background-position: -367px -1598px; + background-position: -514px -1567px; + width: 48px; + height: 51px; +} +.Pet_Egg_Falcon { + background-image: url(spritesmith-main-6.png); + background-position: -563px -1567px; width: 48px; height: 51px; } .Pet_Egg_FlyingPig { background-image: url(spritesmith-main-6.png); - background-position: -416px -1598px; + background-position: -612px -1567px; width: 48px; height: 51px; } .Pet_Egg_Fox { background-image: url(spritesmith-main-6.png); - background-position: -367px -1650px; + background-position: -661px -1567px; width: 48px; height: 51px; } .Pet_Egg_Frog { background-image: url(spritesmith-main-6.png); - background-position: -318px -1650px; + background-position: -710px -1567px; width: 48px; height: 51px; } .Pet_Egg_Gryphon { background-image: url(spritesmith-main-6.png); - background-position: -1641px -1598px; + background-position: -759px -1567px; width: 48px; height: 51px; } .Pet_Egg_Hedgehog { background-image: url(spritesmith-main-6.png); - background-position: -1592px -1598px; + background-position: -808px -1567px; width: 48px; height: 51px; } .Pet_Egg_Horse { background-image: url(spritesmith-main-6.png); - background-position: -1543px -1598px; + background-position: -857px -1567px; width: 48px; height: 51px; } .Pet_Egg_LionCub { background-image: url(spritesmith-main-6.png); - background-position: -1494px -1598px; + background-position: -906px -1567px; width: 48px; height: 51px; } .Pet_Egg_Monkey { background-image: url(spritesmith-main-6.png); - background-position: -1445px -1598px; + background-position: -955px -1567px; width: 48px; height: 51px; } .Pet_Egg_Octopus { background-image: url(spritesmith-main-6.png); - background-position: -1396px -1598px; + background-position: -1004px -1567px; width: 48px; height: 51px; } .Pet_Egg_Owl { background-image: url(spritesmith-main-6.png); - background-position: -1347px -1598px; + background-position: -1053px -1567px; width: 48px; height: 51px; } .Pet_Egg_PandaCub { background-image: url(spritesmith-main-6.png); - background-position: -1298px -1598px; + background-position: -1102px -1567px; width: 48px; height: 51px; } .Pet_Egg_Parrot { background-image: url(spritesmith-main-6.png); - background-position: -1249px -1598px; + background-position: -1635px -468px; width: 48px; height: 51px; } .Pet_Egg_Penguin { background-image: url(spritesmith-main-6.png); - background-position: -1200px -1598px; + background-position: -1200px -1567px; width: 48px; height: 51px; } .Pet_Egg_PolarBear { background-image: url(spritesmith-main-6.png); - background-position: -1151px -1598px; + background-position: -1249px -1567px; width: 48px; height: 51px; } .Pet_Egg_Rat { background-image: url(spritesmith-main-6.png); - background-position: -1102px -1598px; + background-position: -1298px -1567px; width: 48px; height: 51px; } .Pet_Egg_Rock { background-image: url(spritesmith-main-6.png); - background-position: -1053px -1598px; + background-position: -1347px -1567px; width: 48px; height: 51px; } .Pet_Egg_Rooster { background-image: url(spritesmith-main-6.png); - background-position: -1004px -1598px; + background-position: -1396px -1567px; width: 48px; height: 51px; } .Pet_Egg_Sabretooth { background-image: url(spritesmith-main-6.png); - background-position: -955px -1598px; + background-position: -1445px -1567px; width: 48px; height: 51px; } .Pet_Egg_Seahorse { background-image: url(spritesmith-main-6.png); - background-position: -416px -1650px; + background-position: -1494px -1567px; width: 48px; height: 51px; } .Pet_Egg_Sheep { background-image: url(spritesmith-main-6.png); - background-position: -857px -1598px; + background-position: -1543px -1567px; width: 48px; height: 51px; } .Pet_Egg_Slime { background-image: url(spritesmith-main-6.png); - background-position: -808px -1598px; + background-position: -1635px 0px; + width: 48px; + height: 51px; +} +.Pet_Egg_Snail { + background-image: url(spritesmith-main-6.png); + background-position: -1635px -52px; width: 48px; height: 51px; } .Pet_Egg_Snake { background-image: url(spritesmith-main-6.png); - background-position: -759px -1598px; + background-position: -1635px -104px; width: 48px; height: 51px; } .Pet_Egg_Spider { background-image: url(spritesmith-main-6.png); - background-position: -710px -1598px; + background-position: -1635px -156px; width: 48px; height: 51px; } .Pet_Egg_TRex { background-image: url(spritesmith-main-6.png); - background-position: -661px -1598px; + background-position: -1635px -260px; width: 48px; height: 51px; } .Pet_Egg_TigerCub { background-image: url(spritesmith-main-6.png); - background-position: -612px -1598px; + background-position: -1635px -208px; width: 48px; height: 51px; } .Pet_Egg_Unicorn { background-image: url(spritesmith-main-6.png); - background-position: -563px -1598px; + background-position: -1635px -312px; width: 48px; height: 51px; } .Pet_Egg_Whale { background-image: url(spritesmith-main-6.png); - background-position: -514px -1598px; + background-position: -1635px -364px; width: 48px; height: 51px; } .Pet_Egg_Wolf { background-image: url(spritesmith-main-6.png); - background-position: -465px -1598px; + background-position: -1635px -416px; width: 48px; height: 51px; } .Pet_Food_Cake_Base { background-image: url(spritesmith-main-6.png); - background-position: -688px -1650px; + background-position: -98px -1633px; width: 43px; height: 43px; } .Pet_Food_Cake_CottonCandyBlue { background-image: url(spritesmith-main-6.png); - background-position: -1721px -48px; + background-position: -1592px -1567px; width: 42px; height: 44px; } .Pet_Food_Cake_CottonCandyPink { background-image: url(spritesmith-main-6.png); - background-position: 0px -1704px; + background-position: -1378px -1315px; width: 43px; height: 45px; } .Pet_Food_Cake_Desert { background-image: url(spritesmith-main-6.png); - background-position: -556px -1650px; + background-position: -1484px -1421px; width: 43px; height: 44px; } .Pet_Food_Cake_Golden { background-image: url(spritesmith-main-6.png); - background-position: -732px -1650px; + background-position: -1529px -1484px; width: 43px; height: 42px; } .Pet_Food_Cake_Red { background-image: url(spritesmith-main-6.png); - background-position: -600px -1650px; + background-position: -1378px -1361px; width: 43px; height: 44px; } .Pet_Food_Cake_Shade { background-image: url(spritesmith-main-6.png); - background-position: -644px -1650px; + background-position: -1484px -1466px; width: 43px; height: 44px; } .Pet_Food_Cake_Skeleton { background-image: url(spritesmith-main-6.png); - background-position: -1721px 0px; + background-position: -1272px -1209px; width: 42px; height: 47px; } .Pet_Food_Cake_White { background-image: url(spritesmith-main-6.png); - background-position: -511px -1650px; + background-position: -1272px -1257px; width: 44px; height: 44px; } .Pet_Food_Cake_Zombie { background-image: url(spritesmith-main-6.png); - background-position: -465px -1650px; + background-position: -52px -1633px; width: 45px; height: 44px; } .Pet_Food_Candy_Base { background-image: url(spritesmith-main-6.png); - background-position: -978px -762px; + background-position: -1635px -936px; width: 48px; height: 51px; } .Pet_Food_Candy_CottonCandyBlue { background-image: url(spritesmith-main-6.png); - background-position: -929px -762px; + background-position: -1635px -988px; width: 48px; height: 51px; } .Pet_Food_Candy_CottonCandyPink { background-image: url(spritesmith-main-6.png); - background-position: -880px -762px; + background-position: -1635px -1040px; width: 48px; height: 51px; } .Pet_Food_Candy_Desert { background-image: url(spritesmith-main-6.png); - background-position: -1035px -699px; + background-position: -1635px -1092px; width: 48px; height: 51px; } .Pet_Food_Candy_Golden { background-image: url(spritesmith-main-6.png); - background-position: -986px -699px; + background-position: -1635px -1144px; width: 48px; height: 51px; } .Pet_Food_Candy_Red { background-image: url(spritesmith-main-6.png); - background-position: -1035px -647px; + background-position: -1635px -1196px; width: 48px; height: 51px; } .Pet_Food_Candy_Shade { background-image: url(spritesmith-main-6.png); - background-position: -986px -647px; + background-position: -1635px -1248px; width: 48px; height: 51px; } .Pet_Food_Candy_Skeleton { background-image: url(spritesmith-main-6.png); - background-position: -1035px -584px; + background-position: -1635px -1300px; width: 48px; height: 51px; } .Pet_Food_Candy_White { background-image: url(spritesmith-main-6.png); - background-position: -986px -584px; + background-position: -1635px -1352px; width: 48px; height: 51px; } .Pet_Food_Candy_Zombie { background-image: url(spritesmith-main-6.png); - background-position: -1035px -532px; + background-position: -1635px -1404px; width: 48px; height: 51px; } .Pet_Food_Chocolate { background-image: url(spritesmith-main-6.png); - background-position: -986px -532px; + background-position: -1635px -1456px; width: 48px; height: 51px; } .Pet_Food_CottonCandyBlue { background-image: url(spritesmith-main-6.png); - background-position: -1035px -469px; + background-position: -1635px -1508px; width: 48px; height: 51px; } .Pet_Food_CottonCandyPink { background-image: url(spritesmith-main-6.png); - background-position: -986px -469px; + background-position: -1635px -1560px; width: 48px; height: 51px; } .Pet_Food_Fish { background-image: url(spritesmith-main-6.png); - background-position: -1035px -417px; + background-position: -1684px 0px; width: 48px; height: 51px; } .Pet_Food_Honey { background-image: url(spritesmith-main-6.png); - background-position: -986px -417px; + background-position: -1684px -52px; width: 48px; height: 51px; } .Pet_Food_Meat { background-image: url(spritesmith-main-6.png); - background-position: -1035px -354px; + background-position: -1684px -104px; width: 48px; height: 51px; } .Pet_Food_Milk { background-image: url(spritesmith-main-6.png); - background-position: -986px -354px; + background-position: -1684px -156px; width: 48px; height: 51px; } .Pet_Food_Potatoe { background-image: url(spritesmith-main-6.png); - background-position: -1035px -302px; + background-position: -1684px -208px; width: 48px; height: 51px; } .Pet_Food_RottenMeat { background-image: url(spritesmith-main-6.png); - background-position: -986px -302px; + background-position: -1684px -260px; width: 48px; height: 51px; } .Pet_Food_Saddle { background-image: url(spritesmith-main-6.png); - background-position: -906px -1598px; + background-position: -1684px -312px; width: 48px; height: 51px; } .Pet_Food_Strawberry { background-image: url(spritesmith-main-6.png); - background-position: -807px -576px; + background-position: -1684px -364px; width: 48px; height: 51px; } .Mount_Body_BearCub-Base { background-image: url(spritesmith-main-6.png); - background-position: -1297px -954px; + background-position: -106px -1527px; width: 105px; height: 105px; } .Mount_Body_BearCub-CottonCandyBlue { background-image: url(spritesmith-main-6.png); - background-position: -1297px -1060px; + background-position: 0px -1527px; width: 105px; height: 105px; } .Mount_Body_BearCub-CottonCandyPink { background-image: url(spritesmith-main-6.png); - background-position: -1297px -1166px; + background-position: -1529px -1378px; width: 105px; height: 105px; } .Mount_Body_BearCub-Desert { background-image: url(spritesmith-main-6.png); - background-position: 0px -1280px; + background-position: -1529px -1272px; + width: 105px; + height: 105px; +} +.Mount_Body_BearCub-Floral { + background-image: url(spritesmith-main-6.png); + background-position: -1529px -1166px; width: 105px; height: 105px; } .Mount_Body_BearCub-Golden { background-image: url(spritesmith-main-6.png); - background-position: -106px -1280px; + background-position: -1529px -1060px; width: 105px; height: 105px; } .Mount_Body_BearCub-Peppermint { background-image: url(spritesmith-main-6.png); - background-position: -212px -1280px; + background-position: -1529px -954px; width: 105px; height: 105px; } .Mount_Body_BearCub-Polar { background-image: url(spritesmith-main-6.png); - background-position: -318px -1280px; + background-position: -1529px -848px; width: 105px; height: 105px; } .Mount_Body_BearCub-Red { background-image: url(spritesmith-main-6.png); - background-position: -424px -1280px; + background-position: -1529px -742px; width: 105px; height: 105px; } .Mount_Body_BearCub-Shade { background-image: url(spritesmith-main-6.png); - background-position: -530px -1280px; + background-position: -1529px -636px; width: 105px; height: 105px; } .Mount_Body_BearCub-Skeleton { background-image: url(spritesmith-main-6.png); - background-position: -636px -1280px; + background-position: -1529px -530px; width: 105px; height: 105px; } .Mount_Body_BearCub-Spooky { background-image: url(spritesmith-main-6.png); - background-position: -742px -1280px; + background-position: -1529px -424px; width: 105px; height: 105px; } .Mount_Body_BearCub-White { background-image: url(spritesmith-main-6.png); - background-position: -848px -1280px; + background-position: -1529px -318px; width: 105px; height: 105px; } .Mount_Body_BearCub-Zombie { background-image: url(spritesmith-main-6.png); - background-position: -954px -1280px; + background-position: -1529px -212px; width: 105px; height: 105px; } .Mount_Body_Bunny-Base { background-image: url(spritesmith-main-6.png); - background-position: -1060px -1280px; + background-position: -1529px -106px; width: 105px; height: 105px; } .Mount_Body_Bunny-CottonCandyBlue { background-image: url(spritesmith-main-6.png); - background-position: -1166px -1280px; + background-position: -1529px 0px; width: 105px; height: 105px; } .Mount_Body_Bunny-CottonCandyPink { background-image: url(spritesmith-main-6.png); - background-position: -1272px -1280px; + background-position: -1378px -1421px; width: 105px; height: 105px; } .Mount_Body_Bunny-Desert { background-image: url(spritesmith-main-6.png); - background-position: -1403px 0px; + background-position: -1272px -1421px; width: 105px; height: 105px; } .Mount_Body_Bunny-Golden { background-image: url(spritesmith-main-6.png); - background-position: -1403px -106px; + background-position: -1166px -1421px; width: 105px; height: 105px; } .Mount_Body_Bunny-Red { background-image: url(spritesmith-main-6.png); - background-position: -1403px -212px; + background-position: -1060px -1421px; width: 105px; height: 105px; } .Mount_Body_Bunny-Shade { background-image: url(spritesmith-main-6.png); - background-position: -1403px -318px; + background-position: -954px -1421px; width: 105px; height: 105px; } .Mount_Body_Bunny-Skeleton { background-image: url(spritesmith-main-6.png); - background-position: -1403px -424px; + background-position: -848px -1421px; width: 105px; height: 105px; } .Mount_Body_Bunny-White { background-image: url(spritesmith-main-6.png); - background-position: -1403px -530px; + background-position: -742px -1421px; width: 105px; height: 105px; } .Mount_Body_Bunny-Zombie { background-image: url(spritesmith-main-6.png); - background-position: -1403px -636px; + background-position: -636px -1421px; width: 105px; height: 105px; } .Mount_Body_Cactus-Base { background-image: url(spritesmith-main-6.png); - background-position: -1403px -742px; + background-position: -530px -1421px; width: 105px; height: 105px; } .Mount_Body_Cactus-CottonCandyBlue { background-image: url(spritesmith-main-6.png); - background-position: -1403px -848px; + background-position: -424px -1421px; width: 105px; height: 105px; } .Mount_Body_Cactus-CottonCandyPink { background-image: url(spritesmith-main-6.png); - background-position: -1403px -954px; + background-position: -318px -1421px; width: 105px; height: 105px; } .Mount_Body_Cactus-Desert { background-image: url(spritesmith-main-6.png); - background-position: -1403px -1060px; + background-position: -212px -1421px; + width: 105px; + height: 105px; +} +.Mount_Body_Cactus-Floral { + background-image: url(spritesmith-main-6.png); + background-position: -106px -1421px; width: 105px; height: 105px; } .Mount_Body_Cactus-Golden { background-image: url(spritesmith-main-6.png); - background-position: -1403px -1166px; + background-position: 0px -1421px; width: 105px; height: 105px; } .Mount_Body_Cactus-Peppermint { background-image: url(spritesmith-main-6.png); - background-position: -1403px -1272px; + background-position: -1423px -1272px; width: 105px; height: 105px; } .Mount_Body_Cactus-Red { background-image: url(spritesmith-main-6.png); - background-position: 0px -1386px; + background-position: -1423px -1166px; width: 105px; height: 105px; } .Mount_Body_Cactus-Shade { background-image: url(spritesmith-main-6.png); - background-position: -106px -1386px; + background-position: -1423px -1060px; width: 105px; height: 105px; } .Mount_Body_Cactus-Skeleton { background-image: url(spritesmith-main-6.png); - background-position: -212px -1386px; + background-position: -1423px -954px; width: 105px; height: 105px; } .Mount_Body_Cactus-Spooky { background-image: url(spritesmith-main-6.png); - background-position: -318px -1386px; + background-position: -1423px -848px; width: 105px; height: 105px; } .Mount_Body_Cactus-White { background-image: url(spritesmith-main-6.png); - background-position: -424px -1386px; + background-position: -1423px -742px; width: 105px; height: 105px; } .Mount_Body_Cactus-Zombie { background-image: url(spritesmith-main-6.png); - background-position: -530px -1386px; + background-position: -1423px -636px; width: 105px; height: 105px; } .Mount_Body_Cheetah-Base { background-image: url(spritesmith-main-6.png); - background-position: -636px -1386px; + background-position: -1423px -530px; width: 105px; height: 105px; } .Mount_Body_Cheetah-CottonCandyBlue { background-image: url(spritesmith-main-6.png); - background-position: -742px -1386px; + background-position: -1423px -424px; width: 105px; height: 105px; } .Mount_Body_Cheetah-CottonCandyPink { background-image: url(spritesmith-main-6.png); - background-position: -212px -1598px; + background-position: -1423px -318px; width: 105px; height: 105px; } .Mount_Body_Cheetah-Desert { background-image: url(spritesmith-main-6.png); - background-position: -954px -1386px; + background-position: -1423px -212px; width: 105px; height: 105px; } .Mount_Body_Cheetah-Golden { background-image: url(spritesmith-main-6.png); - background-position: -1060px -1386px; + background-position: -1423px -106px; width: 105px; height: 105px; } .Mount_Body_Cheetah-Red { background-image: url(spritesmith-main-6.png); - background-position: -1166px -1386px; + background-position: -1423px 0px; width: 105px; height: 105px; } .Mount_Body_Cheetah-Shade { background-image: url(spritesmith-main-6.png); - background-position: -1272px -1386px; + background-position: -1272px -1315px; width: 105px; height: 105px; } .Mount_Body_Cheetah-Skeleton { background-image: url(spritesmith-main-6.png); - background-position: -1378px -1386px; + background-position: -1166px -1315px; width: 105px; height: 105px; } .Mount_Body_Cheetah-White { background-image: url(spritesmith-main-6.png); - background-position: -1509px 0px; + background-position: -1060px -1315px; width: 105px; height: 105px; } .Mount_Body_Cheetah-Zombie { background-image: url(spritesmith-main-6.png); - background-position: -1509px -106px; + background-position: -954px -1315px; width: 105px; height: 105px; } .Mount_Body_Cuttlefish-Base { background-image: url(spritesmith-main-6.png); - background-position: -742px -838px; + background-position: -675px -1058px; width: 105px; height: 114px; } .Mount_Body_Cuttlefish-CottonCandyBlue { background-image: url(spritesmith-main-6.png); - background-position: -848px -838px; + background-position: -569px -1058px; width: 105px; height: 114px; } .Mount_Body_Cuttlefish-CottonCandyPink { background-image: url(spritesmith-main-6.png); - background-position: -954px -838px; + background-position: -463px -1058px; width: 105px; height: 114px; } .Mount_Body_Cuttlefish-Desert { background-image: url(spritesmith-main-6.png); - background-position: 0px -953px; + background-position: -357px -1058px; width: 105px; height: 114px; } .Mount_Body_Cuttlefish-Golden { background-image: url(spritesmith-main-6.png); - background-position: -106px -953px; + background-position: -781px -1058px; width: 105px; height: 114px; } .Mount_Body_Cuttlefish-Red { background-image: url(spritesmith-main-6.png); - background-position: -212px -953px; + background-position: -1206px -830px; width: 105px; height: 114px; } .Mount_Body_Cuttlefish-Shade { background-image: url(spritesmith-main-6.png); - background-position: -318px -953px; + background-position: -1100px -830px; width: 105px; height: 114px; } .Mount_Body_Cuttlefish-Skeleton { background-image: url(spritesmith-main-6.png); - background-position: -880px -302px; + background-position: -1206px -715px; width: 105px; height: 114px; } .Mount_Body_Cuttlefish-White { background-image: url(spritesmith-main-6.png); - background-position: -880px -532px; + background-position: -1100px -715px; width: 105px; height: 114px; } .Mount_Body_Cuttlefish-Zombie { background-image: url(spritesmith-main-6.png); - background-position: -636px -838px; + background-position: -251px -1058px; width: 105px; height: 114px; } .Mount_Body_Deer-Base { background-image: url(spritesmith-main-6.png); - background-position: -1509px -1272px; + background-position: -1317px -1060px; width: 105px; height: 105px; } .Mount_Body_Deer-CottonCandyBlue { background-image: url(spritesmith-main-6.png); - background-position: -1509px -1378px; + background-position: -1317px -954px; width: 105px; height: 105px; } .Mount_Body_Deer-CottonCandyPink { background-image: url(spritesmith-main-6.png); - background-position: 0px -1492px; + background-position: -1317px -848px; width: 105px; height: 105px; } .Mount_Body_Deer-Desert { background-image: url(spritesmith-main-6.png); - background-position: -106px -1492px; + background-position: -1317px -742px; width: 105px; height: 105px; } .Mount_Body_Deer-Golden { background-image: url(spritesmith-main-6.png); - background-position: -212px -1492px; + background-position: -1317px -636px; width: 105px; height: 105px; } .Mount_Body_Deer-Red { background-image: url(spritesmith-main-6.png); - background-position: -318px -1492px; + background-position: -1317px -530px; width: 105px; height: 105px; } .Mount_Body_Deer-Shade { background-image: url(spritesmith-main-6.png); - background-position: -424px -1492px; + background-position: -1317px -424px; width: 105px; height: 105px; } .Mount_Body_Deer-Skeleton { background-image: url(spritesmith-main-6.png); - background-position: -530px -1492px; + background-position: -1317px -318px; width: 105px; height: 105px; } .Mount_Body_Deer-White { background-image: url(spritesmith-main-6.png); - background-position: -636px -1492px; + background-position: -1317px -212px; width: 105px; height: 105px; } .Mount_Body_Deer-Zombie { background-image: url(spritesmith-main-6.png); - background-position: -742px -1492px; + background-position: -1317px -106px; width: 105px; height: 105px; } .Mount_Body_Dragon-Base { background-image: url(spritesmith-main-6.png); - background-position: -848px -1492px; + background-position: -1317px 0px; width: 105px; height: 105px; } .Mount_Body_Dragon-CottonCandyBlue { background-image: url(spritesmith-main-6.png); - background-position: -954px -1492px; + background-position: -1166px -1209px; width: 105px; height: 105px; } .Mount_Body_Dragon-CottonCandyPink { background-image: url(spritesmith-main-6.png); - background-position: -1060px -1492px; + background-position: -1060px -1209px; width: 105px; height: 105px; } .Mount_Body_Dragon-Desert { background-image: url(spritesmith-main-6.png); - background-position: -1166px -1492px; + background-position: -954px -1209px; + width: 105px; + height: 105px; +} +.Mount_Body_Dragon-Floral { + background-image: url(spritesmith-main-6.png); + background-position: -848px -1209px; width: 105px; height: 105px; } .Mount_Body_Dragon-Golden { background-image: url(spritesmith-main-6.png); - background-position: -1272px -1492px; + background-position: -742px -1209px; width: 105px; height: 105px; } .Mount_Body_Dragon-Peppermint { background-image: url(spritesmith-main-6.png); - background-position: -1378px -1492px; + background-position: -636px -1209px; width: 105px; height: 105px; } .Mount_Body_Dragon-Red { background-image: url(spritesmith-main-6.png); - background-position: -1484px -1492px; + background-position: -530px -1209px; width: 105px; height: 105px; } .Mount_Body_Dragon-Shade { background-image: url(spritesmith-main-6.png); - background-position: -1615px 0px; + background-position: -424px -1209px; width: 105px; height: 105px; } .Mount_Body_Dragon-Skeleton { background-image: url(spritesmith-main-6.png); - background-position: -1615px -106px; + background-position: -318px -1209px; width: 105px; height: 105px; } .Mount_Body_Dragon-Spooky { background-image: url(spritesmith-main-6.png); - background-position: -1615px -212px; + background-position: -212px -1209px; width: 105px; height: 105px; } .Mount_Body_Dragon-White { background-image: url(spritesmith-main-6.png); - background-position: -1615px -318px; + background-position: -106px -1209px; width: 105px; height: 105px; } .Mount_Body_Dragon-Zombie { background-image: url(spritesmith-main-6.png); - background-position: -1615px -424px; + background-position: 0px -1209px; width: 105px; height: 105px; } .Mount_Body_Egg-Base { background-image: url(spritesmith-main-6.png); - background-position: -1615px -530px; + background-position: -1205px -1058px; width: 105px; height: 105px; } .Mount_Body_Egg-CottonCandyBlue { background-image: url(spritesmith-main-6.png); - background-position: -1615px -636px; + background-position: -1099px -1058px; width: 105px; height: 105px; } .Mount_Body_Egg-CottonCandyPink { background-image: url(spritesmith-main-6.png); - background-position: -1615px -742px; + background-position: -993px -1058px; width: 105px; height: 105px; } .Mount_Body_Egg-Desert { background-image: url(spritesmith-main-6.png); - background-position: -1615px -848px; + background-position: -887px -1058px; width: 105px; height: 105px; } .Mount_Body_Egg-Golden { background-image: url(spritesmith-main-6.png); - background-position: -1615px -954px; + background-position: -1206px -945px; width: 105px; height: 105px; } .Mount_Body_Egg-Red { background-image: url(spritesmith-main-6.png); - background-position: -1615px -1060px; + background-position: -1100px -945px; width: 105px; height: 105px; } .Mount_Body_Egg-Shade { background-image: url(spritesmith-main-6.png); - background-position: -1615px -1166px; + background-position: -212px -1527px; width: 105px; height: 105px; } .Mount_Body_Egg-Skeleton { background-image: url(spritesmith-main-6.png); - background-position: -1615px -1272px; + background-position: -848px -1315px; width: 105px; height: 105px; } .Mount_Body_Egg-White { background-image: url(spritesmith-main-6.png); - background-position: -1615px -1378px; + background-position: -742px -1315px; width: 105px; height: 105px; } .Mount_Body_Egg-Zombie { background-image: url(spritesmith-main-6.png); - background-position: -1615px -1484px; + background-position: -636px -1315px; width: 105px; height: 105px; } -.Mount_Body_FlyingPig-Base { +.Mount_Body_Falcon-Base { background-image: url(spritesmith-main-6.png); - background-position: 0px -1598px; + background-position: -530px -1315px; width: 105px; height: 105px; } -.Mount_Body_FlyingPig-CottonCandyBlue { +.Mount_Body_Falcon-CottonCandyBlue { background-image: url(spritesmith-main-6.png); - background-position: -106px -1598px; + background-position: -424px -1315px; width: 105px; height: 105px; } -.Mount_Body_FlyingPig-CottonCandyPink { +.Mount_Body_Falcon-CottonCandyPink { background-image: url(spritesmith-main-6.png); - background-position: -1297px -848px; + background-position: -318px -1315px; width: 105px; height: 105px; } -.Mount_Body_FlyingPig-Desert { +.Mount_Body_Falcon-Desert { background-image: url(spritesmith-main-6.png); - background-position: -1297px -742px; + background-position: -212px -1315px; width: 105px; height: 105px; } -.Mount_Body_FlyingPig-Golden { +.Mount_Body_Falcon-Golden { background-image: url(spritesmith-main-6.png); - background-position: -1297px -636px; + background-position: -106px -1315px; width: 105px; height: 105px; } -.Mount_Body_FlyingPig-Peppermint { +.Mount_Body_Falcon-Red { background-image: url(spritesmith-main-6.png); - background-position: -1297px -530px; + background-position: -1317px -1166px; width: 105px; height: 105px; } -.Mount_Body_FlyingPig-Red { +.Mount_Body_Falcon-Shade { background-image: url(spritesmith-main-6.png); - background-position: -1297px -424px; - width: 105px; - height: 105px; -} -.Mount_Body_FlyingPig-Shade { - background-image: url(spritesmith-main-6.png); - background-position: -1297px -318px; - width: 105px; - height: 105px; -} -.Mount_Body_FlyingPig-Skeleton { - background-image: url(spritesmith-main-6.png); - background-position: -1297px -212px; - width: 105px; - height: 105px; -} -.Mount_Body_FlyingPig-Spooky { - background-image: url(spritesmith-main-6.png); - background-position: -1297px -106px; - width: 105px; - height: 105px; -} -.Mount_Body_FlyingPig-White { - background-image: url(spritesmith-main-6.png); - background-position: -1297px 0px; - width: 105px; - height: 105px; -} -.Mount_Body_FlyingPig-Zombie { - background-image: url(spritesmith-main-6.png); - background-position: -1166px -1174px; - width: 105px; - height: 105px; -} -.Mount_Body_Fox-Base { - background-image: url(spritesmith-main-6.png); - background-position: -1060px -1174px; - width: 105px; - height: 105px; -} -.Mount_Body_Fox-CottonCandyBlue { - background-image: url(spritesmith-main-6.png); - background-position: -954px -1174px; - width: 105px; - height: 105px; -} -.Mount_Body_Fox-CottonCandyPink { - background-image: url(spritesmith-main-6.png); - background-position: -848px -1174px; - width: 105px; - height: 105px; -} -.Mount_Body_Fox-Desert { - background-image: url(spritesmith-main-6.png); - background-position: -742px -1174px; - width: 105px; - height: 105px; -} -.Mount_Body_Fox-Golden { - background-image: url(spritesmith-main-6.png); - background-position: -636px -1174px; - width: 105px; - height: 105px; -} -.Mount_Body_Fox-Peppermint { - background-image: url(spritesmith-main-6.png); - background-position: -530px -1174px; - width: 105px; - height: 105px; -} -.Mount_Body_Fox-Red { - background-image: url(spritesmith-main-6.png); - background-position: -424px -1174px; - width: 105px; - height: 105px; -} -.Mount_Body_Fox-Shade { - background-image: url(spritesmith-main-6.png); - background-position: -318px -1174px; - width: 105px; - height: 105px; -} -.Mount_Body_Fox-Skeleton { - background-image: url(spritesmith-main-6.png); - background-position: -212px -1174px; - width: 105px; - height: 105px; -} -.Mount_Body_Fox-Spooky { - background-image: url(spritesmith-main-6.png); - background-position: -106px -1174px; - width: 105px; - height: 105px; -} -.Mount_Body_Fox-White { - background-image: url(spritesmith-main-6.png); - background-position: 0px -1174px; - width: 105px; - height: 105px; -} -.Mount_Body_Fox-Zombie { - background-image: url(spritesmith-main-6.png); - background-position: -1191px -1060px; - width: 105px; - height: 105px; -} -.Mount_Body_Frog-Base { - background-image: url(spritesmith-main-6.png); - background-position: -530px -838px; - width: 105px; - height: 114px; -} -.Mount_Body_Frog-CottonCandyBlue { - background-image: url(spritesmith-main-6.png); - background-position: -424px -838px; - width: 105px; - height: 114px; -} -.Mount_Body_Frog-CottonCandyPink { - background-image: url(spritesmith-main-6.png); - background-position: -318px -838px; - width: 105px; - height: 114px; -} -.Mount_Body_Frog-Desert { - background-image: url(spritesmith-main-6.png); - background-position: -212px -838px; - width: 105px; - height: 114px; -} -.Mount_Body_Frog-Golden { - background-image: url(spritesmith-main-6.png); - background-position: -106px -838px; - width: 105px; - height: 114px; -} -.Mount_Body_Frog-Red { - background-image: url(spritesmith-main-6.png); - background-position: 0px -838px; - width: 105px; - height: 114px; -} -.Mount_Body_Frog-Shade { - background-image: url(spritesmith-main-6.png); - background-position: -685px -660px; - width: 105px; - height: 114px; -} -.Mount_Body_Frog-Skeleton { - background-image: url(spritesmith-main-6.png); - background-position: -880px -647px; - width: 105px; - height: 114px; -} -.Mount_Body_Frog-White { - background-image: url(spritesmith-main-6.png); - background-position: -424px -953px; - width: 105px; - height: 114px; -} -.Mount_Body_Frog-Zombie { - background-image: url(spritesmith-main-6.png); - background-position: -880px -417px; - width: 105px; - height: 114px; -} -.Mount_Body_Gryphon-Base { - background-image: url(spritesmith-main-6.png); - background-position: -1060px -1068px; - width: 105px; - height: 105px; -} -.Mount_Body_Gryphon-CottonCandyBlue { - background-image: url(spritesmith-main-6.png); - background-position: -954px -1068px; - width: 105px; - height: 105px; -} -.Mount_Body_Gryphon-CottonCandyPink { - background-image: url(spritesmith-main-6.png); - background-position: -848px -1068px; - width: 105px; - height: 105px; -} -.Mount_Body_Gryphon-Desert { - background-image: url(spritesmith-main-6.png); - background-position: -742px -1068px; - width: 105px; - height: 105px; -} -.Mount_Body_Gryphon-Golden { - background-image: url(spritesmith-main-6.png); - background-position: -636px -1068px; - width: 105px; - height: 105px; -} -.Mount_Body_Gryphon-Red { - background-image: url(spritesmith-main-6.png); - background-position: -530px -1068px; - width: 105px; - height: 105px; -} -.Mount_Body_Gryphon-RoyalPurple { - background-image: url(spritesmith-main-6.png); - background-position: -424px -1068px; - width: 105px; - height: 105px; -} -.Mount_Body_Gryphon-Shade { - background-image: url(spritesmith-main-6.png); - background-position: -318px -1068px; - width: 105px; - height: 105px; -} -.Mount_Body_Gryphon-Skeleton { - background-image: url(spritesmith-main-6.png); - background-position: -212px -1068px; - width: 105px; - height: 105px; -} -.Mount_Body_Gryphon-White { - background-image: url(spritesmith-main-6.png); - background-position: -106px -1068px; - width: 105px; - height: 105px; -} -.Mount_Body_Gryphon-Zombie { - background-image: url(spritesmith-main-6.png); - background-position: 0px -1068px; - width: 105px; - height: 105px; -} -.Mount_Body_Hedgehog-Base { - background-image: url(spritesmith-main-6.png); - background-position: -1085px -954px; - width: 105px; - height: 105px; -} -.Mount_Body_Hedgehog-CottonCandyBlue { - background-image: url(spritesmith-main-6.png); - background-position: -1085px -848px; - width: 105px; - height: 105px; -} -.Mount_Body_Hedgehog-CottonCandyPink { - background-image: url(spritesmith-main-6.png); - background-position: -1085px -742px; - width: 105px; - height: 105px; -} -.Mount_Body_Hedgehog-Desert { - background-image: url(spritesmith-main-6.png); - background-position: -1085px -636px; - width: 105px; - height: 105px; -} -.Mount_Body_Hedgehog-Golden { - background-image: url(spritesmith-main-6.png); - background-position: -1085px -530px; - width: 105px; - height: 105px; -} -.Mount_Body_Hedgehog-Red { - background-image: url(spritesmith-main-6.png); - background-position: -1085px -424px; - width: 105px; - height: 105px; -} -.Mount_Body_Hedgehog-Shade { - background-image: url(spritesmith-main-6.png); - background-position: -1085px -318px; - width: 105px; - height: 105px; -} -.Mount_Body_Hedgehog-Skeleton { - background-image: url(spritesmith-main-6.png); - background-position: -1085px -212px; - width: 105px; - height: 105px; -} -.Mount_Body_Hedgehog-White { - background-image: url(spritesmith-main-6.png); - background-position: -1085px -106px; - width: 105px; - height: 105px; -} -.Mount_Body_Hedgehog-Zombie { - background-image: url(spritesmith-main-6.png); - background-position: -1085px 0px; - width: 105px; - height: 105px; -} -.Mount_Body_Horse-Base { - background-image: url(spritesmith-main-6.png); - background-position: -963px -953px; - width: 105px; - height: 105px; -} -.Mount_Body_Horse-CottonCandyBlue { - background-image: url(spritesmith-main-6.png); - background-position: -857px -953px; - width: 105px; - height: 105px; -} -.Mount_Body_Horse-CottonCandyPink { - background-image: url(spritesmith-main-6.png); - background-position: -751px -953px; - width: 105px; - height: 105px; -} -.Mount_Body_Horse-Desert { - background-image: url(spritesmith-main-6.png); - background-position: -1509px -1166px; - width: 105px; - height: 105px; -} -.Mount_Body_Horse-Golden { - background-image: url(spritesmith-main-6.png); - background-position: -1509px -1060px; - width: 105px; - height: 105px; -} -.Mount_Body_Horse-Red { - background-image: url(spritesmith-main-6.png); - background-position: -1509px -954px; - width: 105px; - height: 105px; -} -.Mount_Body_Horse-Shade { - background-image: url(spritesmith-main-6.png); - background-position: -1509px -848px; - width: 105px; - height: 105px; -} -.Mount_Body_Horse-Skeleton { - background-image: url(spritesmith-main-6.png); - background-position: -1509px -742px; - width: 105px; - height: 105px; -} -.Mount_Body_Horse-White { - background-image: url(spritesmith-main-6.png); - background-position: -1509px -636px; - width: 105px; - height: 105px; -} -.Mount_Body_Horse-Zombie { - background-image: url(spritesmith-main-6.png); - background-position: -1509px -530px; - width: 105px; - height: 105px; -} -.Mount_Body_JackOLantern-Base { - background-image: url(spritesmith-main-6.png); - background-position: -986px -178px; - width: 90px; - height: 105px; -} -.Mount_Body_LionCub-Base { - background-image: url(spritesmith-main-6.png); - background-position: -1509px -424px; - width: 105px; - height: 105px; -} -.Mount_Body_LionCub-CottonCandyBlue { - background-image: url(spritesmith-main-6.png); - background-position: -1509px -318px; - width: 105px; - height: 105px; -} -.Mount_Body_LionCub-CottonCandyPink { - background-image: url(spritesmith-main-6.png); - background-position: -1509px -212px; - width: 105px; - height: 105px; -} -.Mount_Body_LionCub-Desert { - background-image: url(spritesmith-main-6.png); - background-position: -848px -1386px; - width: 105px; - height: 105px; -} -.Mount_Body_LionCub-Ethereal { - background-image: url(spritesmith-main-6.png); - background-position: -1191px -954px; - width: 105px; - height: 105px; -} -.Mount_Body_LionCub-Golden { - background-image: url(spritesmith-main-6.png); - background-position: -1191px -848px; - width: 105px; - height: 105px; -} -.Mount_Body_LionCub-Peppermint { - background-image: url(spritesmith-main-6.png); - background-position: -1191px -742px; - width: 105px; - height: 105px; -} -.Mount_Body_LionCub-Red { - background-image: url(spritesmith-main-6.png); - background-position: -1191px -636px; - width: 105px; - height: 105px; -} -.Mount_Body_LionCub-Shade { - background-image: url(spritesmith-main-6.png); - background-position: -1191px -530px; - width: 105px; - height: 105px; -} -.Mount_Body_LionCub-Skeleton { - background-image: url(spritesmith-main-6.png); - background-position: -530px -953px; - width: 111px; - height: 105px; -} -.Mount_Body_LionCub-Spooky { - background-image: url(spritesmith-main-6.png); - background-position: -1191px -318px; - width: 105px; - height: 105px; -} -.Mount_Body_LionCub-White { - background-image: url(spritesmith-main-6.png); - background-position: -1191px -212px; - width: 105px; - height: 105px; -} -.Mount_Body_LionCub-Zombie { - background-image: url(spritesmith-main-6.png); - background-position: -1191px -106px; - width: 105px; - height: 105px; -} -.Mount_Body_Mammoth-Base { - background-image: url(spritesmith-main-6.png); - background-position: -880px -178px; - width: 105px; - height: 123px; -} -.Mount_Body_MantisShrimp-Base { - background-image: url(spritesmith-main-6.png); - background-position: -642px -953px; - width: 108px; - height: 105px; -} -.Mount_Body_Monkey-Base { - background-image: url(spritesmith-main-6.png); - background-position: -1191px 0px; - width: 105px; - height: 105px; -} -.Mount_Body_Monkey-CottonCandyBlue { - background-image: url(spritesmith-main-6.png); - background-position: -1191px -424px; + background-position: 0px -1315px; width: 105px; height: 105px; } diff --git a/common/dist/sprites/spritesmith-main-6.png b/common/dist/sprites/spritesmith-main-6.png index 3d0d41eac8..780504dbe1 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 cc6ff76110..1dcc2db888 100644 --- a/common/dist/sprites/spritesmith-main-7.css +++ b/common/dist/sprites/spritesmith-main-7.css @@ -1,1368 +1,1440 @@ +.Mount_Body_Falcon-Skeleton { + background-image: url(spritesmith-main-7.png); + background-position: -650px -212px; + width: 105px; + height: 105px; +} +.Mount_Body_Falcon-White { + background-image: url(spritesmith-main-7.png); + background-position: -1180px -848px; + width: 105px; + height: 105px; +} +.Mount_Body_Falcon-Zombie { + background-image: url(spritesmith-main-7.png); + background-position: -650px -318px; + width: 105px; + height: 105px; +} +.Mount_Body_FlyingPig-Base { + background-image: url(spritesmith-main-7.png); + background-position: -650px -424px; + width: 105px; + height: 105px; +} +.Mount_Body_FlyingPig-CottonCandyBlue { + background-image: url(spritesmith-main-7.png); + background-position: -650px -530px; + width: 105px; + height: 105px; +} +.Mount_Body_FlyingPig-CottonCandyPink { + background-image: url(spritesmith-main-7.png); + background-position: 0px -638px; + width: 105px; + height: 105px; +} +.Mount_Body_FlyingPig-Desert { + background-image: url(spritesmith-main-7.png); + background-position: -106px -638px; + width: 105px; + height: 105px; +} +.Mount_Body_FlyingPig-Floral { + background-image: url(spritesmith-main-7.png); + background-position: -212px -638px; + width: 105px; + height: 105px; +} +.Mount_Body_FlyingPig-Golden { + background-image: url(spritesmith-main-7.png); + background-position: -318px -638px; + width: 105px; + height: 105px; +} +.Mount_Body_FlyingPig-Peppermint { + background-image: url(spritesmith-main-7.png); + background-position: -424px -638px; + width: 105px; + height: 105px; +} +.Mount_Body_FlyingPig-Red { + background-image: url(spritesmith-main-7.png); + background-position: -530px -638px; + width: 105px; + height: 105px; +} +.Mount_Body_FlyingPig-Shade { + background-image: url(spritesmith-main-7.png); + background-position: 0px -956px; + width: 105px; + height: 105px; +} +.Mount_Body_FlyingPig-Skeleton { + background-image: url(spritesmith-main-7.png); + background-position: -424px -956px; + width: 105px; + height: 105px; +} +.Mount_Body_FlyingPig-Spooky { + background-image: url(spritesmith-main-7.png); + background-position: -530px -956px; + width: 105px; + height: 105px; +} +.Mount_Body_FlyingPig-White { + background-image: url(spritesmith-main-7.png); + background-position: -636px -956px; + width: 105px; + height: 105px; +} +.Mount_Body_FlyingPig-Zombie { + background-image: url(spritesmith-main-7.png); + background-position: -1060px -1380px; + width: 105px; + height: 105px; +} +.Mount_Body_Fox-Base { + background-image: url(spritesmith-main-7.png); + background-position: -1166px -1380px; + width: 105px; + height: 105px; +} +.Mount_Body_Fox-CottonCandyBlue { + background-image: url(spritesmith-main-7.png); + background-position: -1272px -1380px; + width: 105px; + height: 105px; +} +.Mount_Body_Fox-CottonCandyPink { + background-image: url(spritesmith-main-7.png); + background-position: -1378px -1380px; + width: 105px; + height: 105px; +} +.Mount_Body_Fox-Desert { + background-image: url(spritesmith-main-7.png); + background-position: -1498px 0px; + width: 105px; + height: 105px; +} +.Mount_Body_Fox-Floral { + background-image: url(spritesmith-main-7.png); + background-position: -1498px -106px; + width: 105px; + height: 105px; +} +.Mount_Body_Fox-Golden { + background-image: url(spritesmith-main-7.png); + background-position: -1498px -212px; + width: 105px; + height: 105px; +} +.Mount_Body_Fox-Peppermint { + background-image: url(spritesmith-main-7.png); + background-position: -1498px -318px; + width: 105px; + height: 105px; +} +.Mount_Body_Fox-Red { + background-image: url(spritesmith-main-7.png); + background-position: -1498px -424px; + width: 105px; + height: 105px; +} +.Mount_Body_Fox-Shade { + background-image: url(spritesmith-main-7.png); + background-position: -1498px -530px; + width: 105px; + height: 105px; +} +.Mount_Body_Fox-Skeleton { + background-image: url(spritesmith-main-7.png); + background-position: -433px -523px; + width: 105px; + height: 105px; +} +.Mount_Body_Fox-Spooky { + background-image: url(spritesmith-main-7.png); + background-position: -539px -523px; + width: 105px; + height: 105px; +} +.Mount_Body_Fox-White { + background-image: url(spritesmith-main-7.png); + background-position: -650px 0px; + width: 105px; + height: 105px; +} +.Mount_Body_Fox-Zombie { + background-image: url(spritesmith-main-7.png); + background-position: -650px -106px; + width: 105px; + height: 105px; +} +.Mount_Body_Frog-Base { + background-image: url(spritesmith-main-7.png); + background-position: 0px -408px; + width: 105px; + height: 114px; +} +.Mount_Body_Frog-CottonCandyBlue { + background-image: url(spritesmith-main-7.png); + background-position: -106px -408px; + width: 105px; + height: 114px; +} +.Mount_Body_Frog-CottonCandyPink { + background-image: url(spritesmith-main-7.png); + background-position: -212px -408px; + width: 105px; + height: 114px; +} +.Mount_Body_Frog-Desert { + background-image: url(spritesmith-main-7.png); + background-position: -318px -408px; + width: 105px; + height: 114px; +} +.Mount_Body_Frog-Golden { + background-image: url(spritesmith-main-7.png); + background-position: -424px -408px; + width: 105px; + height: 114px; +} +.Mount_Body_Frog-Red { + background-image: url(spritesmith-main-7.png); + background-position: -544px 0px; + width: 105px; + height: 114px; +} +.Mount_Body_Frog-Shade { + background-image: url(spritesmith-main-7.png); + background-position: -544px -115px; + width: 105px; + height: 114px; +} +.Mount_Body_Frog-Skeleton { + background-image: url(spritesmith-main-7.png); + background-position: -544px -230px; + width: 105px; + height: 114px; +} +.Mount_Body_Frog-White { + background-image: url(spritesmith-main-7.png); + background-position: -544px -345px; + width: 105px; + height: 114px; +} +.Mount_Body_Frog-Zombie { + background-image: url(spritesmith-main-7.png); + background-position: 0px -523px; + width: 105px; + height: 114px; +} +.Mount_Body_Gryphon-Base { + background-image: url(spritesmith-main-7.png); + background-position: -636px -638px; + width: 105px; + height: 105px; +} +.Mount_Body_Gryphon-CottonCandyBlue { + background-image: url(spritesmith-main-7.png); + background-position: -756px 0px; + width: 105px; + height: 105px; +} +.Mount_Body_Gryphon-CottonCandyPink { + background-image: url(spritesmith-main-7.png); + background-position: -756px -106px; + width: 105px; + height: 105px; +} +.Mount_Body_Gryphon-Desert { + background-image: url(spritesmith-main-7.png); + background-position: -756px -212px; + width: 105px; + height: 105px; +} +.Mount_Body_Gryphon-Golden { + background-image: url(spritesmith-main-7.png); + background-position: -756px -318px; + width: 105px; + height: 105px; +} +.Mount_Body_Gryphon-Red { + background-image: url(spritesmith-main-7.png); + background-position: -756px -424px; + width: 105px; + height: 105px; +} +.Mount_Body_Gryphon-RoyalPurple { + background-image: url(spritesmith-main-7.png); + background-position: -756px -530px; + width: 105px; + height: 105px; +} +.Mount_Body_Gryphon-Shade { + background-image: url(spritesmith-main-7.png); + background-position: -756px -636px; + width: 105px; + height: 105px; +} +.Mount_Body_Gryphon-Skeleton { + background-image: url(spritesmith-main-7.png); + background-position: 0px -744px; + width: 105px; + height: 105px; +} +.Mount_Body_Gryphon-White { + background-image: url(spritesmith-main-7.png); + background-position: -106px -744px; + width: 105px; + height: 105px; +} +.Mount_Body_Gryphon-Zombie { + background-image: url(spritesmith-main-7.png); + background-position: -212px -744px; + width: 105px; + height: 105px; +} +.Mount_Body_Hedgehog-Base { + background-image: url(spritesmith-main-7.png); + background-position: -318px -744px; + width: 105px; + height: 105px; +} +.Mount_Body_Hedgehog-CottonCandyBlue { + background-image: url(spritesmith-main-7.png); + background-position: -424px -744px; + width: 105px; + height: 105px; +} +.Mount_Body_Hedgehog-CottonCandyPink { + background-image: url(spritesmith-main-7.png); + background-position: -530px -744px; + width: 105px; + height: 105px; +} +.Mount_Body_Hedgehog-Desert { + background-image: url(spritesmith-main-7.png); + background-position: -636px -744px; + width: 105px; + height: 105px; +} +.Mount_Body_Hedgehog-Golden { + background-image: url(spritesmith-main-7.png); + background-position: -742px -744px; + width: 105px; + height: 105px; +} +.Mount_Body_Hedgehog-Red { + background-image: url(spritesmith-main-7.png); + background-position: -862px 0px; + width: 105px; + height: 105px; +} +.Mount_Body_Hedgehog-Shade { + background-image: url(spritesmith-main-7.png); + background-position: -862px -106px; + width: 105px; + height: 105px; +} +.Mount_Body_Hedgehog-Skeleton { + background-image: url(spritesmith-main-7.png); + background-position: -862px -212px; + width: 105px; + height: 105px; +} +.Mount_Body_Hedgehog-White { + background-image: url(spritesmith-main-7.png); + background-position: -862px -318px; + width: 105px; + height: 105px; +} +.Mount_Body_Hedgehog-Zombie { + background-image: url(spritesmith-main-7.png); + background-position: -862px -424px; + width: 105px; + height: 105px; +} +.Mount_Body_Horse-Base { + background-image: url(spritesmith-main-7.png); + background-position: -862px -530px; + width: 105px; + height: 105px; +} +.Mount_Body_Horse-CottonCandyBlue { + background-image: url(spritesmith-main-7.png); + background-position: -862px -636px; + width: 105px; + height: 105px; +} +.Mount_Body_Horse-CottonCandyPink { + background-image: url(spritesmith-main-7.png); + background-position: -862px -742px; + width: 105px; + height: 105px; +} +.Mount_Body_Horse-Desert { + background-image: url(spritesmith-main-7.png); + background-position: 0px -850px; + width: 105px; + height: 105px; +} +.Mount_Body_Horse-Golden { + background-image: url(spritesmith-main-7.png); + background-position: -106px -850px; + width: 105px; + height: 105px; +} +.Mount_Body_Horse-Red { + background-image: url(spritesmith-main-7.png); + background-position: -212px -850px; + width: 105px; + height: 105px; +} +.Mount_Body_Horse-Shade { + background-image: url(spritesmith-main-7.png); + background-position: -318px -850px; + width: 105px; + height: 105px; +} +.Mount_Body_Horse-Skeleton { + background-image: url(spritesmith-main-7.png); + background-position: -424px -850px; + width: 105px; + height: 105px; +} +.Mount_Body_Horse-White { + background-image: url(spritesmith-main-7.png); + background-position: -530px -850px; + width: 105px; + height: 105px; +} +.Mount_Body_Horse-Zombie { + background-image: url(spritesmith-main-7.png); + background-position: -636px -850px; + width: 105px; + height: 105px; +} +.Mount_Body_JackOLantern-Base { + background-image: url(spritesmith-main-7.png); + background-position: -848px -1592px; + width: 90px; + height: 105px; +} +.Mount_Body_LionCub-Base { + background-image: url(spritesmith-main-7.png); + background-position: -848px -850px; + width: 105px; + height: 105px; +} +.Mount_Body_LionCub-CottonCandyBlue { + background-image: url(spritesmith-main-7.png); + background-position: -968px 0px; + width: 105px; + height: 105px; +} +.Mount_Body_LionCub-CottonCandyPink { + background-image: url(spritesmith-main-7.png); + background-position: -968px -106px; + width: 105px; + height: 105px; +} +.Mount_Body_LionCub-Desert { + background-image: url(spritesmith-main-7.png); + background-position: -968px -212px; + width: 105px; + height: 105px; +} +.Mount_Body_LionCub-Ethereal { + background-image: url(spritesmith-main-7.png); + background-position: -968px -318px; + width: 105px; + height: 105px; +} +.Mount_Body_LionCub-Floral { + background-image: url(spritesmith-main-7.png); + background-position: -968px -424px; + width: 105px; + height: 105px; +} +.Mount_Body_LionCub-Golden { + background-image: url(spritesmith-main-7.png); + background-position: -968px -530px; + width: 105px; + height: 105px; +} +.Mount_Body_LionCub-Peppermint { + background-image: url(spritesmith-main-7.png); + background-position: -968px -636px; + width: 105px; + height: 105px; +} +.Mount_Body_LionCub-Red { + background-image: url(spritesmith-main-7.png); + background-position: -968px -742px; + width: 105px; + height: 105px; +} +.Mount_Body_LionCub-Shade { + background-image: url(spritesmith-main-7.png); + background-position: -968px -848px; + width: 105px; + height: 105px; +} +.Mount_Body_LionCub-Skeleton { + background-image: url(spritesmith-main-7.png); + background-position: -106px -523px; + width: 111px; + height: 105px; +} +.Mount_Body_LionCub-Spooky { + background-image: url(spritesmith-main-7.png); + background-position: -106px -956px; + width: 105px; + height: 105px; +} +.Mount_Body_LionCub-White { + background-image: url(spritesmith-main-7.png); + background-position: -212px -956px; + width: 105px; + height: 105px; +} +.Mount_Body_LionCub-Zombie { + background-image: url(spritesmith-main-7.png); + background-position: -318px -956px; + width: 105px; + height: 105px; +} +.Mount_Body_MagicalBee-Base { + background-image: url(spritesmith-main-7.png); + background-position: -408px -260px; + width: 105px; + height: 114px; +} +.Mount_Body_Mammoth-Base { + background-image: url(spritesmith-main-7.png); + background-position: -408px -136px; + width: 105px; + height: 123px; +} +.Mount_Body_MantisShrimp-Base { + background-image: url(spritesmith-main-7.png); + background-position: -218px -523px; + width: 108px; + height: 105px; +} +.Mount_Body_Monkey-Base { + background-image: url(spritesmith-main-7.png); + background-position: -742px -956px; + width: 105px; + height: 105px; +} +.Mount_Body_Monkey-CottonCandyBlue { + background-image: url(spritesmith-main-7.png); + background-position: -848px -956px; + width: 105px; + height: 105px; +} .Mount_Body_Monkey-CottonCandyPink { background-image: url(spritesmith-main-7.png); - background-position: -1134px -424px; + background-position: -954px -956px; width: 105px; height: 105px; } .Mount_Body_Monkey-Desert { background-image: url(spritesmith-main-7.png); - background-position: -1240px -530px; + background-position: -1074px 0px; width: 105px; height: 105px; } .Mount_Body_Monkey-Golden { background-image: url(spritesmith-main-7.png); - background-position: -1134px -530px; + background-position: -1074px -106px; width: 105px; height: 105px; } .Mount_Body_Monkey-Red { background-image: url(spritesmith-main-7.png); - background-position: -1134px -636px; + background-position: -1074px -212px; width: 105px; height: 105px; } .Mount_Body_Monkey-Shade { background-image: url(spritesmith-main-7.png); - background-position: -1134px -742px; + background-position: -1074px -318px; width: 105px; height: 105px; } .Mount_Body_Monkey-Skeleton { background-image: url(spritesmith-main-7.png); - background-position: -1134px -848px; + background-position: -1074px -424px; width: 105px; height: 105px; } .Mount_Body_Monkey-White { background-image: url(spritesmith-main-7.png); - background-position: -1134px -954px; + background-position: -1074px -530px; width: 105px; height: 105px; } .Mount_Body_Monkey-Zombie { background-image: url(spritesmith-main-7.png); - background-position: 0px -1134px; + background-position: -1074px -636px; width: 105px; height: 105px; } .Mount_Body_Octopus-Base { background-image: url(spritesmith-main-7.png); - background-position: -106px -1134px; + background-position: -1074px -742px; width: 105px; height: 105px; } .Mount_Body_Octopus-CottonCandyBlue { background-image: url(spritesmith-main-7.png); - background-position: -212px -1134px; + background-position: -1074px -848px; width: 105px; height: 105px; } .Mount_Body_Octopus-CottonCandyPink { background-image: url(spritesmith-main-7.png); - background-position: -318px -1134px; + background-position: -1074px -954px; width: 105px; height: 105px; } .Mount_Body_Octopus-Desert { background-image: url(spritesmith-main-7.png); - background-position: -848px -1346px; + background-position: 0px -1062px; width: 105px; height: 105px; } .Mount_Body_Octopus-Golden { background-image: url(spritesmith-main-7.png); - background-position: -954px -1346px; + background-position: -106px -1062px; width: 105px; height: 105px; } .Mount_Body_Octopus-Red { background-image: url(spritesmith-main-7.png); - background-position: -1060px -1346px; + background-position: -212px -1062px; width: 105px; height: 105px; } .Mount_Body_Octopus-Shade { background-image: url(spritesmith-main-7.png); - background-position: -1166px -1346px; + background-position: -318px -1062px; width: 105px; height: 105px; } .Mount_Body_Octopus-Skeleton { background-image: url(spritesmith-main-7.png); - background-position: -1272px -1346px; + background-position: -424px -1062px; width: 105px; height: 105px; } .Mount_Body_Octopus-White { background-image: url(spritesmith-main-7.png); - background-position: -1452px 0px; + background-position: -530px -1062px; width: 105px; height: 105px; } .Mount_Body_Octopus-Zombie { background-image: url(spritesmith-main-7.png); - background-position: -1452px -106px; + background-position: -636px -1062px; width: 105px; height: 105px; } .Mount_Body_Orca-Base { background-image: url(spritesmith-main-7.png); - background-position: -1452px -212px; + background-position: -742px -1062px; width: 105px; height: 105px; } .Mount_Body_Owl-Base { background-image: url(spritesmith-main-7.png); - background-position: -1452px -318px; + background-position: -848px -1062px; width: 105px; height: 105px; } .Mount_Body_Owl-CottonCandyBlue { background-image: url(spritesmith-main-7.png); - background-position: -1452px -424px; + background-position: -954px -1062px; width: 105px; height: 105px; } .Mount_Body_Owl-CottonCandyPink { background-image: url(spritesmith-main-7.png); - background-position: -1558px -1166px; + background-position: -1060px -1062px; width: 105px; height: 105px; } .Mount_Body_Owl-Desert { background-image: url(spritesmith-main-7.png); - background-position: -1558px -1272px; + background-position: -1180px 0px; width: 105px; height: 105px; } .Mount_Body_Owl-Golden { background-image: url(spritesmith-main-7.png); - background-position: -1558px -1378px; + background-position: -1180px -106px; width: 105px; height: 105px; } .Mount_Body_Owl-Red { background-image: url(spritesmith-main-7.png); - background-position: 0px -1558px; + background-position: -1180px -212px; width: 105px; height: 105px; } .Mount_Body_Owl-Shade { background-image: url(spritesmith-main-7.png); - background-position: -106px -1558px; + background-position: -1180px -318px; width: 105px; height: 105px; } .Mount_Body_Owl-Skeleton { background-image: url(spritesmith-main-7.png); - background-position: -212px -1558px; + background-position: -1180px -424px; width: 105px; height: 105px; } .Mount_Body_Owl-White { background-image: url(spritesmith-main-7.png); - background-position: -318px -1558px; + background-position: -1180px -530px; width: 105px; height: 105px; } .Mount_Body_Owl-Zombie { background-image: url(spritesmith-main-7.png); - background-position: -424px -1558px; + background-position: -1180px -636px; width: 105px; height: 105px; } .Mount_Body_PandaCub-Base { background-image: url(spritesmith-main-7.png); - background-position: -530px -1558px; + background-position: -1180px -742px; width: 105px; height: 105px; } .Mount_Body_PandaCub-CottonCandyBlue { background-image: url(spritesmith-main-7.png); - background-position: -636px -1558px; + background-position: -327px -523px; width: 105px; height: 105px; } .Mount_Body_PandaCub-CottonCandyPink { background-image: url(spritesmith-main-7.png); - background-position: -742px -1558px; + background-position: -1180px -954px; width: 105px; height: 105px; } .Mount_Body_PandaCub-Desert { background-image: url(spritesmith-main-7.png); - background-position: -848px -1558px; + background-position: -1180px -1060px; + width: 105px; + height: 105px; +} +.Mount_Body_PandaCub-Floral { + background-image: url(spritesmith-main-7.png); + background-position: 0px -1168px; width: 105px; height: 105px; } .Mount_Body_PandaCub-Golden { background-image: url(spritesmith-main-7.png); - background-position: -378px -680px; + background-position: -106px -1168px; width: 105px; height: 105px; } .Mount_Body_PandaCub-Peppermint { background-image: url(spritesmith-main-7.png); - background-position: -484px -680px; + background-position: -212px -1168px; width: 105px; height: 105px; } .Mount_Body_PandaCub-Red { background-image: url(spritesmith-main-7.png); - background-position: -590px -680px; + background-position: -318px -1168px; width: 105px; height: 105px; } .Mount_Body_PandaCub-Shade { background-image: url(spritesmith-main-7.png); - background-position: -696px -680px; + background-position: -424px -1168px; width: 105px; height: 105px; } .Mount_Body_PandaCub-Skeleton { background-image: url(spritesmith-main-7.png); - background-position: -816px 0px; + background-position: -530px -1168px; width: 105px; height: 105px; } .Mount_Body_PandaCub-Spooky { background-image: url(spritesmith-main-7.png); - background-position: -816px -106px; + background-position: -636px -1168px; width: 105px; height: 105px; } .Mount_Body_PandaCub-White { background-image: url(spritesmith-main-7.png); - background-position: -816px -212px; + background-position: -742px -1168px; width: 105px; height: 105px; } .Mount_Body_PandaCub-Zombie { background-image: url(spritesmith-main-7.png); - background-position: -816px -318px; + background-position: -848px -1168px; width: 105px; height: 105px; } .Mount_Body_Parrot-Base { background-image: url(spritesmith-main-7.png); - background-position: -816px -424px; + background-position: -954px -1168px; width: 105px; height: 105px; } .Mount_Body_Parrot-CottonCandyBlue { background-image: url(spritesmith-main-7.png); - background-position: -816px -530px; + background-position: -1060px -1168px; width: 105px; height: 105px; } .Mount_Body_Parrot-CottonCandyPink { background-image: url(spritesmith-main-7.png); - background-position: -816px -636px; + background-position: -1166px -1168px; width: 105px; height: 105px; } .Mount_Body_Parrot-Desert { background-image: url(spritesmith-main-7.png); - background-position: 0px -816px; + background-position: -1286px 0px; width: 105px; height: 105px; } .Mount_Body_Parrot-Golden { background-image: url(spritesmith-main-7.png); - background-position: -106px -816px; + background-position: -1286px -106px; width: 105px; height: 105px; } .Mount_Body_Parrot-Red { background-image: url(spritesmith-main-7.png); - background-position: -212px -816px; + background-position: -1286px -212px; width: 105px; height: 105px; } .Mount_Body_Parrot-Shade { background-image: url(spritesmith-main-7.png); - background-position: -318px -816px; + background-position: -1286px -318px; width: 105px; height: 105px; } .Mount_Body_Parrot-Skeleton { background-image: url(spritesmith-main-7.png); - background-position: -424px -816px; + background-position: -1286px -424px; width: 105px; height: 105px; } .Mount_Body_Parrot-White { background-image: url(spritesmith-main-7.png); - background-position: -530px -816px; + background-position: -1286px -530px; width: 105px; height: 105px; } .Mount_Body_Parrot-Zombie { background-image: url(spritesmith-main-7.png); - background-position: -636px -816px; + background-position: -1286px -636px; width: 105px; height: 105px; } .Mount_Body_Penguin-Base { background-image: url(spritesmith-main-7.png); - background-position: -742px -816px; + background-position: -1286px -742px; width: 105px; height: 105px; } .Mount_Body_Penguin-CottonCandyBlue { background-image: url(spritesmith-main-7.png); - background-position: -922px 0px; + background-position: -1286px -848px; width: 105px; height: 105px; } .Mount_Body_Penguin-CottonCandyPink { background-image: url(spritesmith-main-7.png); - background-position: -922px -106px; + background-position: -1286px -954px; width: 105px; height: 105px; } .Mount_Body_Penguin-Desert { background-image: url(spritesmith-main-7.png); - background-position: -922px -212px; + background-position: -1286px -1060px; width: 105px; height: 105px; } .Mount_Body_Penguin-Golden { background-image: url(spritesmith-main-7.png); - background-position: -922px -318px; + background-position: -1286px -1166px; width: 105px; height: 105px; } .Mount_Body_Penguin-Red { background-image: url(spritesmith-main-7.png); - background-position: -922px -424px; + background-position: 0px -1274px; width: 105px; height: 105px; } .Mount_Body_Penguin-Shade { background-image: url(spritesmith-main-7.png); - background-position: -922px -530px; + background-position: -106px -1274px; width: 105px; height: 105px; } .Mount_Body_Penguin-Skeleton { background-image: url(spritesmith-main-7.png); - background-position: -922px -636px; + background-position: -212px -1274px; width: 105px; height: 105px; } .Mount_Body_Penguin-White { background-image: url(spritesmith-main-7.png); - background-position: -922px -742px; + background-position: -318px -1274px; width: 105px; height: 105px; } .Mount_Body_Penguin-Zombie { background-image: url(spritesmith-main-7.png); - background-position: 0px -922px; + background-position: -424px -1274px; width: 105px; height: 105px; } .Mount_Body_Phoenix-Base { background-image: url(spritesmith-main-7.png); - background-position: -106px -922px; + background-position: -530px -1274px; width: 105px; height: 105px; } .Mount_Body_Rat-Base { background-image: url(spritesmith-main-7.png); - background-position: -212px -922px; + background-position: -636px -1274px; width: 105px; height: 105px; } .Mount_Body_Rat-CottonCandyBlue { background-image: url(spritesmith-main-7.png); - background-position: -318px -922px; + background-position: -742px -1274px; width: 105px; height: 105px; } .Mount_Body_Rat-CottonCandyPink { background-image: url(spritesmith-main-7.png); - background-position: -424px -922px; + background-position: -848px -1274px; width: 105px; height: 105px; } .Mount_Body_Rat-Desert { background-image: url(spritesmith-main-7.png); - background-position: -530px -922px; + background-position: -954px -1274px; width: 105px; height: 105px; } .Mount_Body_Rat-Golden { background-image: url(spritesmith-main-7.png); - background-position: -636px -922px; + background-position: -1060px -1274px; width: 105px; height: 105px; } .Mount_Body_Rat-Red { background-image: url(spritesmith-main-7.png); - background-position: -742px -922px; + background-position: -1166px -1274px; width: 105px; height: 105px; } .Mount_Body_Rat-Shade { background-image: url(spritesmith-main-7.png); - background-position: -848px -922px; + background-position: -1272px -1274px; width: 105px; height: 105px; } .Mount_Body_Rat-Skeleton { background-image: url(spritesmith-main-7.png); - background-position: -1028px 0px; + background-position: -1392px 0px; width: 105px; height: 105px; } .Mount_Body_Rat-White { background-image: url(spritesmith-main-7.png); - background-position: -1028px -106px; + background-position: -1392px -106px; width: 105px; height: 105px; } .Mount_Body_Rat-Zombie { background-image: url(spritesmith-main-7.png); - background-position: -1028px -212px; + background-position: -1392px -212px; width: 105px; height: 105px; } .Mount_Body_Rock-Base { background-image: url(spritesmith-main-7.png); - background-position: -1028px -318px; + background-position: -1392px -318px; width: 105px; height: 105px; } .Mount_Body_Rock-CottonCandyBlue { background-image: url(spritesmith-main-7.png); - background-position: -1028px -424px; + background-position: -1392px -424px; width: 105px; height: 105px; } .Mount_Body_Rock-CottonCandyPink { background-image: url(spritesmith-main-7.png); - background-position: -1028px -530px; + background-position: -1392px -530px; width: 105px; height: 105px; } .Mount_Body_Rock-Desert { background-image: url(spritesmith-main-7.png); - background-position: -1028px -636px; + background-position: -1392px -636px; width: 105px; height: 105px; } .Mount_Body_Rock-Golden { background-image: url(spritesmith-main-7.png); - background-position: -1028px -742px; + background-position: -1392px -742px; width: 105px; height: 105px; } .Mount_Body_Rock-Red { background-image: url(spritesmith-main-7.png); - background-position: -1028px -848px; + background-position: -1392px -848px; width: 105px; height: 105px; } .Mount_Body_Rock-Shade { background-image: url(spritesmith-main-7.png); - background-position: 0px -1028px; + background-position: -1392px -954px; width: 105px; height: 105px; } .Mount_Body_Rock-Skeleton { background-image: url(spritesmith-main-7.png); - background-position: -106px -1028px; + background-position: -1392px -1060px; width: 105px; height: 105px; } .Mount_Body_Rock-White { background-image: url(spritesmith-main-7.png); - background-position: -212px -1028px; + background-position: -1392px -1166px; width: 105px; height: 105px; } .Mount_Body_Rock-Zombie { background-image: url(spritesmith-main-7.png); - background-position: -318px -1028px; + background-position: -1392px -1272px; width: 105px; height: 105px; } .Mount_Body_Rooster-Base { background-image: url(spritesmith-main-7.png); - background-position: -424px -1028px; + background-position: 0px -1380px; width: 105px; height: 105px; } .Mount_Body_Rooster-CottonCandyBlue { background-image: url(spritesmith-main-7.png); - background-position: -530px -1028px; + background-position: -106px -1380px; width: 105px; height: 105px; } .Mount_Body_Rooster-CottonCandyPink { background-image: url(spritesmith-main-7.png); - background-position: -636px -1028px; + background-position: -212px -1380px; width: 105px; height: 105px; } .Mount_Body_Rooster-Desert { background-image: url(spritesmith-main-7.png); - background-position: -742px -1028px; + background-position: -318px -1380px; width: 105px; height: 105px; } .Mount_Body_Rooster-Golden { background-image: url(spritesmith-main-7.png); - background-position: -848px -1028px; + background-position: -424px -1380px; width: 105px; height: 105px; } .Mount_Body_Rooster-Red { background-image: url(spritesmith-main-7.png); - background-position: -954px -1028px; + background-position: -530px -1380px; width: 105px; height: 105px; } .Mount_Body_Rooster-Shade { background-image: url(spritesmith-main-7.png); - background-position: -1134px 0px; + background-position: -636px -1380px; width: 105px; height: 105px; } .Mount_Body_Rooster-Skeleton { background-image: url(spritesmith-main-7.png); - background-position: -1134px -106px; + background-position: -742px -1380px; width: 105px; height: 105px; } .Mount_Body_Rooster-White { background-image: url(spritesmith-main-7.png); - background-position: -1134px -212px; + background-position: -848px -1380px; width: 105px; height: 105px; } .Mount_Body_Rooster-Zombie { background-image: url(spritesmith-main-7.png); - background-position: -1134px -318px; + background-position: -954px -1380px; width: 105px; height: 105px; } .Mount_Body_Sabretooth-Base { background-image: url(spritesmith-main-7.png); - background-position: -544px 0px; + background-position: -272px 0px; width: 135px; height: 135px; } .Mount_Body_Sabretooth-CottonCandyBlue { background-image: url(spritesmith-main-7.png); - background-position: 0px -136px; + background-position: 0px 0px; width: 135px; height: 135px; } .Mount_Body_Sabretooth-CottonCandyPink { background-image: url(spritesmith-main-7.png); - background-position: -136px -136px; + background-position: 0px -272px; width: 135px; height: 135px; } .Mount_Body_Sabretooth-Desert { background-image: url(spritesmith-main-7.png); - background-position: -272px 0px; + background-position: -136px -272px; width: 135px; height: 135px; } .Mount_Body_Sabretooth-Golden { background-image: url(spritesmith-main-7.png); - background-position: -272px -136px; + background-position: -272px -272px; width: 135px; height: 135px; } .Mount_Body_Sabretooth-Red { background-image: url(spritesmith-main-7.png); - background-position: 0px -272px; + background-position: 0px -136px; width: 135px; height: 135px; } .Mount_Body_Sabretooth-Shade { background-image: url(spritesmith-main-7.png); - background-position: -136px -272px; + background-position: -408px 0px; width: 135px; height: 135px; } .Mount_Body_Sabretooth-Skeleton { background-image: url(spritesmith-main-7.png); - background-position: -272px -272px; + background-position: -136px -136px; width: 135px; height: 135px; } .Mount_Body_Sabretooth-White { background-image: url(spritesmith-main-7.png); - background-position: -408px 0px; + background-position: -272px -136px; width: 135px; height: 135px; } .Mount_Body_Sabretooth-Zombie { background-image: url(spritesmith-main-7.png); - background-position: -408px -136px; + background-position: -136px 0px; width: 135px; height: 135px; } .Mount_Body_Seahorse-Base { background-image: url(spritesmith-main-7.png); - background-position: -424px -1134px; + background-position: -1498px -636px; width: 105px; height: 105px; } .Mount_Body_Seahorse-CottonCandyBlue { background-image: url(spritesmith-main-7.png); - background-position: -530px -1134px; + background-position: -1498px -742px; width: 105px; height: 105px; } .Mount_Body_Seahorse-CottonCandyPink { background-image: url(spritesmith-main-7.png); - background-position: -636px -1134px; + background-position: -1498px -848px; width: 105px; height: 105px; } .Mount_Body_Seahorse-Desert { background-image: url(spritesmith-main-7.png); - background-position: -742px -1134px; + background-position: -1498px -954px; width: 105px; height: 105px; } .Mount_Body_Seahorse-Golden { background-image: url(spritesmith-main-7.png); - background-position: -848px -1134px; + background-position: -1498px -1060px; width: 105px; height: 105px; } .Mount_Body_Seahorse-Red { background-image: url(spritesmith-main-7.png); - background-position: -954px -1134px; + background-position: -1498px -1166px; width: 105px; height: 105px; } .Mount_Body_Seahorse-Shade { background-image: url(spritesmith-main-7.png); - background-position: -1060px -1134px; + background-position: -1498px -1272px; width: 105px; height: 105px; } .Mount_Body_Seahorse-Skeleton { background-image: url(spritesmith-main-7.png); - background-position: -1240px 0px; + background-position: -1498px -1378px; width: 105px; height: 105px; } .Mount_Body_Seahorse-White { background-image: url(spritesmith-main-7.png); - background-position: -1240px -106px; + background-position: 0px -1486px; width: 105px; height: 105px; } .Mount_Body_Seahorse-Zombie { background-image: url(spritesmith-main-7.png); - background-position: -1240px -212px; + background-position: -106px -1486px; width: 105px; height: 105px; } .Mount_Body_Sheep-Base { background-image: url(spritesmith-main-7.png); - background-position: -1240px -318px; + background-position: -212px -1486px; width: 105px; height: 105px; } .Mount_Body_Sheep-CottonCandyBlue { background-image: url(spritesmith-main-7.png); - background-position: -1240px -424px; + background-position: -318px -1486px; width: 105px; height: 105px; } .Mount_Body_Sheep-CottonCandyPink { background-image: url(spritesmith-main-7.png); - background-position: -272px -680px; + background-position: -424px -1486px; width: 105px; height: 105px; } .Mount_Body_Sheep-Desert { background-image: url(spritesmith-main-7.png); - background-position: -1240px -636px; + background-position: -530px -1486px; width: 105px; height: 105px; } .Mount_Body_Sheep-Golden { background-image: url(spritesmith-main-7.png); - background-position: -1240px -742px; + background-position: -636px -1486px; width: 105px; height: 105px; } .Mount_Body_Sheep-Red { background-image: url(spritesmith-main-7.png); - background-position: -1240px -848px; + background-position: -742px -1486px; width: 105px; height: 105px; } .Mount_Body_Sheep-Shade { background-image: url(spritesmith-main-7.png); - background-position: -1240px -954px; + background-position: -848px -1486px; width: 105px; height: 105px; } .Mount_Body_Sheep-Skeleton { background-image: url(spritesmith-main-7.png); - background-position: -1240px -1060px; + background-position: -954px -1486px; width: 105px; height: 105px; } .Mount_Body_Sheep-White { background-image: url(spritesmith-main-7.png); - background-position: 0px -1240px; + background-position: -1060px -1486px; width: 105px; height: 105px; } .Mount_Body_Sheep-Zombie { background-image: url(spritesmith-main-7.png); - background-position: -106px -1240px; + background-position: -1166px -1486px; width: 105px; height: 105px; } .Mount_Body_Slime-Base { background-image: url(spritesmith-main-7.png); - background-position: -212px -1240px; + background-position: -1272px -1486px; width: 105px; height: 105px; } .Mount_Body_Slime-CottonCandyBlue { background-image: url(spritesmith-main-7.png); - background-position: -318px -1240px; + background-position: -1378px -1486px; width: 105px; height: 105px; } .Mount_Body_Slime-CottonCandyPink { background-image: url(spritesmith-main-7.png); - background-position: -424px -1240px; + background-position: -1484px -1486px; width: 105px; height: 105px; } .Mount_Body_Slime-Desert { background-image: url(spritesmith-main-7.png); - background-position: -530px -1240px; + background-position: -1604px 0px; width: 105px; height: 105px; } .Mount_Body_Slime-Golden { background-image: url(spritesmith-main-7.png); - background-position: -636px -1240px; + background-position: -1604px -106px; width: 105px; height: 105px; } .Mount_Body_Slime-Red { background-image: url(spritesmith-main-7.png); - background-position: -742px -1240px; + background-position: -1604px -212px; width: 105px; height: 105px; } .Mount_Body_Slime-Shade { background-image: url(spritesmith-main-7.png); - background-position: -848px -1240px; + background-position: -1604px -318px; width: 105px; height: 105px; } .Mount_Body_Slime-Skeleton { background-image: url(spritesmith-main-7.png); - background-position: -954px -1240px; + background-position: -1604px -424px; width: 105px; height: 105px; } .Mount_Body_Slime-White { background-image: url(spritesmith-main-7.png); - background-position: -1060px -1240px; + background-position: -1604px -530px; width: 105px; height: 105px; } .Mount_Body_Slime-Zombie { background-image: url(spritesmith-main-7.png); - background-position: -1166px -1240px; + background-position: -1604px -636px; + width: 105px; + height: 105px; +} +.Mount_Body_Snail-Base { + background-image: url(spritesmith-main-7.png); + background-position: -1604px -742px; + width: 105px; + height: 105px; +} +.Mount_Body_Snail-CottonCandyBlue { + background-image: url(spritesmith-main-7.png); + background-position: -1604px -848px; + width: 105px; + height: 105px; +} +.Mount_Body_Snail-CottonCandyPink { + background-image: url(spritesmith-main-7.png); + background-position: -1604px -954px; + width: 105px; + height: 105px; +} +.Mount_Body_Snail-Desert { + background-image: url(spritesmith-main-7.png); + background-position: -1604px -1060px; + width: 105px; + height: 105px; +} +.Mount_Body_Snail-Golden { + background-image: url(spritesmith-main-7.png); + background-position: -1604px -1166px; + width: 105px; + height: 105px; +} +.Mount_Body_Snail-Red { + background-image: url(spritesmith-main-7.png); + background-position: -1604px -1272px; + width: 105px; + height: 105px; +} +.Mount_Body_Snail-Shade { + background-image: url(spritesmith-main-7.png); + background-position: -1604px -1378px; + width: 105px; + height: 105px; +} +.Mount_Body_Snail-Skeleton { + background-image: url(spritesmith-main-7.png); + background-position: -1604px -1484px; + width: 105px; + height: 105px; +} +.Mount_Body_Snail-White { + background-image: url(spritesmith-main-7.png); + background-position: 0px -1592px; + width: 105px; + height: 105px; +} +.Mount_Body_Snail-Zombie { + background-image: url(spritesmith-main-7.png); + background-position: -106px -1592px; width: 105px; height: 105px; } .Mount_Body_Snake-Base { background-image: url(spritesmith-main-7.png); - background-position: -1346px 0px; + background-position: -212px -1592px; width: 105px; height: 105px; } .Mount_Body_Snake-CottonCandyBlue { background-image: url(spritesmith-main-7.png); - background-position: -1346px -106px; + background-position: -318px -1592px; width: 105px; height: 105px; } .Mount_Body_Snake-CottonCandyPink { background-image: url(spritesmith-main-7.png); - background-position: -1346px -212px; + background-position: -424px -1592px; width: 105px; height: 105px; } .Mount_Body_Snake-Desert { background-image: url(spritesmith-main-7.png); - background-position: -1346px -318px; + background-position: -530px -1592px; width: 105px; height: 105px; } .Mount_Body_Snake-Golden { background-image: url(spritesmith-main-7.png); - background-position: -1346px -424px; + background-position: -636px -1592px; width: 105px; height: 105px; } .Mount_Body_Snake-Red { background-image: url(spritesmith-main-7.png); - background-position: -1346px -530px; + background-position: -742px -850px; width: 105px; height: 105px; } .Mount_Body_Snake-Shade { background-image: url(spritesmith-main-7.png); - background-position: -1346px -636px; - width: 105px; - height: 105px; -} -.Mount_Body_Snake-Skeleton { - background-image: url(spritesmith-main-7.png); - background-position: -1346px -742px; - width: 105px; - height: 105px; -} -.Mount_Body_Snake-White { - background-image: url(spritesmith-main-7.png); - background-position: -1346px -848px; - width: 105px; - height: 105px; -} -.Mount_Body_Snake-Zombie { - background-image: url(spritesmith-main-7.png); - background-position: -1346px -954px; - width: 105px; - height: 105px; -} -.Mount_Body_Spider-Base { - background-image: url(spritesmith-main-7.png); - background-position: -1346px -1060px; - width: 105px; - height: 105px; -} -.Mount_Body_Spider-CottonCandyBlue { - background-image: url(spritesmith-main-7.png); - background-position: -1346px -1166px; - width: 105px; - height: 105px; -} -.Mount_Body_Spider-CottonCandyPink { - background-image: url(spritesmith-main-7.png); - background-position: 0px -1346px; - width: 105px; - height: 105px; -} -.Mount_Body_Spider-Desert { - background-image: url(spritesmith-main-7.png); - background-position: -106px -1346px; - width: 105px; - height: 105px; -} -.Mount_Body_Spider-Golden { - background-image: url(spritesmith-main-7.png); - background-position: -212px -1346px; - width: 105px; - height: 105px; -} -.Mount_Body_Spider-Red { - background-image: url(spritesmith-main-7.png); - background-position: -318px -1346px; - width: 105px; - height: 105px; -} -.Mount_Body_Spider-Shade { - background-image: url(spritesmith-main-7.png); - background-position: -424px -1346px; - width: 105px; - height: 105px; -} -.Mount_Body_Spider-Skeleton { - background-image: url(spritesmith-main-7.png); - background-position: -530px -1346px; - width: 105px; - height: 105px; -} -.Mount_Body_Spider-White { - background-image: url(spritesmith-main-7.png); - background-position: -636px -1346px; - width: 105px; - height: 105px; -} -.Mount_Body_Spider-Zombie { - background-image: url(spritesmith-main-7.png); - background-position: -742px -1346px; - width: 105px; - height: 105px; -} -.Mount_Body_TRex-Base { - background-image: url(spritesmith-main-7.png); - background-position: -408px -272px; - width: 135px; - height: 135px; -} -.Mount_Body_TRex-CottonCandyBlue { - background-image: url(spritesmith-main-7.png); - background-position: 0px -408px; - width: 135px; - height: 135px; -} -.Mount_Body_TRex-CottonCandyPink { - background-image: url(spritesmith-main-7.png); - background-position: -136px -408px; - width: 135px; - height: 135px; -} -.Mount_Body_TRex-Desert { - background-image: url(spritesmith-main-7.png); - background-position: -272px -408px; - width: 135px; - height: 135px; -} -.Mount_Body_TRex-Golden { - background-image: url(spritesmith-main-7.png); - background-position: -408px -408px; - width: 135px; - height: 135px; -} -.Mount_Body_TRex-Red { - background-image: url(spritesmith-main-7.png); - background-position: 0px 0px; - width: 135px; - height: 135px; -} -.Mount_Body_TRex-Shade { - background-image: url(spritesmith-main-7.png); - background-position: -544px -136px; - width: 135px; - height: 135px; -} -.Mount_Body_TRex-Skeleton { - background-image: url(spritesmith-main-7.png); - background-position: -544px -272px; - width: 135px; - height: 135px; -} -.Mount_Body_TRex-White { - background-image: url(spritesmith-main-7.png); - background-position: -544px -408px; - width: 135px; - height: 135px; -} -.Mount_Body_TRex-Zombie { - background-image: url(spritesmith-main-7.png); - background-position: 0px -544px; - width: 135px; - height: 135px; -} -.Mount_Body_TigerCub-Base { - background-image: url(spritesmith-main-7.png); - background-position: -1452px -530px; - width: 105px; - height: 105px; -} -.Mount_Body_TigerCub-CottonCandyBlue { - background-image: url(spritesmith-main-7.png); - background-position: -1452px -636px; - width: 105px; - height: 105px; -} -.Mount_Body_TigerCub-CottonCandyPink { - background-image: url(spritesmith-main-7.png); - background-position: -1452px -742px; - width: 105px; - height: 105px; -} -.Mount_Body_TigerCub-Desert { - background-image: url(spritesmith-main-7.png); - background-position: -1452px -848px; - width: 105px; - height: 105px; -} -.Mount_Body_TigerCub-Golden { - background-image: url(spritesmith-main-7.png); - background-position: -1452px -954px; - width: 105px; - height: 105px; -} -.Mount_Body_TigerCub-Peppermint { - background-image: url(spritesmith-main-7.png); - background-position: -1452px -1060px; - width: 105px; - height: 105px; -} -.Mount_Body_TigerCub-Red { - background-image: url(spritesmith-main-7.png); - background-position: -1452px -1166px; - width: 105px; - height: 105px; -} -.Mount_Body_TigerCub-Shade { - background-image: url(spritesmith-main-7.png); - background-position: -1452px -1272px; - width: 105px; - height: 105px; -} -.Mount_Body_TigerCub-Skeleton { - background-image: url(spritesmith-main-7.png); - background-position: 0px -1452px; - width: 105px; - height: 105px; -} -.Mount_Body_TigerCub-Spooky { - background-image: url(spritesmith-main-7.png); - background-position: -106px -1452px; - width: 105px; - height: 105px; -} -.Mount_Body_TigerCub-White { - background-image: url(spritesmith-main-7.png); - background-position: -212px -1452px; - width: 105px; - height: 105px; -} -.Mount_Body_TigerCub-Zombie { - background-image: url(spritesmith-main-7.png); - background-position: -318px -1452px; - width: 105px; - height: 105px; -} -.Mount_Body_Turkey-Base { - background-image: url(spritesmith-main-7.png); - background-position: -424px -1452px; - width: 105px; - height: 105px; -} -.Mount_Body_Unicorn-Base { - background-image: url(spritesmith-main-7.png); - background-position: -530px -1452px; - width: 105px; - height: 105px; -} -.Mount_Body_Unicorn-CottonCandyBlue { - background-image: url(spritesmith-main-7.png); - background-position: -636px -1452px; - width: 105px; - height: 105px; -} -.Mount_Body_Unicorn-CottonCandyPink { - background-image: url(spritesmith-main-7.png); - background-position: -742px -1452px; - width: 105px; - height: 105px; -} -.Mount_Body_Unicorn-Desert { - background-image: url(spritesmith-main-7.png); - background-position: -848px -1452px; - width: 105px; - height: 105px; -} -.Mount_Body_Unicorn-Golden { - background-image: url(spritesmith-main-7.png); - background-position: -954px -1452px; - width: 105px; - height: 105px; -} -.Mount_Body_Unicorn-Red { - background-image: url(spritesmith-main-7.png); - background-position: -1060px -1452px; - width: 105px; - height: 105px; -} -.Mount_Body_Unicorn-Shade { - background-image: url(spritesmith-main-7.png); - background-position: -1166px -1452px; - width: 105px; - height: 105px; -} -.Mount_Body_Unicorn-Skeleton { - background-image: url(spritesmith-main-7.png); - background-position: -1272px -1452px; - width: 105px; - height: 105px; -} -.Mount_Body_Unicorn-White { - background-image: url(spritesmith-main-7.png); - background-position: -1378px -1452px; - width: 105px; - height: 105px; -} -.Mount_Body_Unicorn-Zombie { - background-image: url(spritesmith-main-7.png); - background-position: -1558px 0px; - width: 105px; - height: 105px; -} -.Mount_Body_Whale-Base { - background-image: url(spritesmith-main-7.png); - background-position: -1558px -106px; - width: 105px; - height: 105px; -} -.Mount_Body_Whale-CottonCandyBlue { - background-image: url(spritesmith-main-7.png); - background-position: -1558px -212px; - width: 105px; - height: 105px; -} -.Mount_Body_Whale-CottonCandyPink { - background-image: url(spritesmith-main-7.png); - background-position: -1558px -318px; - width: 105px; - height: 105px; -} -.Mount_Body_Whale-Desert { - background-image: url(spritesmith-main-7.png); - background-position: -1558px -424px; - width: 105px; - height: 105px; -} -.Mount_Body_Whale-Golden { - background-image: url(spritesmith-main-7.png); - background-position: -1558px -530px; - width: 105px; - height: 105px; -} -.Mount_Body_Whale-Red { - background-image: url(spritesmith-main-7.png); - background-position: -1558px -636px; - width: 105px; - height: 105px; -} -.Mount_Body_Whale-Shade { - background-image: url(spritesmith-main-7.png); - background-position: -1558px -742px; - width: 105px; - height: 105px; -} -.Mount_Body_Whale-Skeleton { - background-image: url(spritesmith-main-7.png); - background-position: -1558px -848px; - width: 105px; - height: 105px; -} -.Mount_Body_Whale-White { - background-image: url(spritesmith-main-7.png); - background-position: -1558px -954px; - width: 105px; - height: 105px; -} -.Mount_Body_Whale-Zombie { - background-image: url(spritesmith-main-7.png); - background-position: -1558px -1060px; - width: 105px; - height: 105px; -} -.Mount_Body_Wolf-Base { - background-image: url(spritesmith-main-7.png); - background-position: -136px -544px; - width: 135px; - height: 135px; -} -.Mount_Body_Wolf-CottonCandyBlue { - background-image: url(spritesmith-main-7.png); - background-position: -272px -544px; - width: 135px; - height: 135px; -} -.Mount_Body_Wolf-CottonCandyPink { - background-image: url(spritesmith-main-7.png); - background-position: -408px -544px; - width: 135px; - height: 135px; -} -.Mount_Body_Wolf-Desert { - background-image: url(spritesmith-main-7.png); - background-position: -544px -544px; - width: 135px; - height: 135px; -} -.Mount_Body_Wolf-Golden { - background-image: url(spritesmith-main-7.png); - background-position: -680px 0px; - width: 135px; - height: 135px; -} -.Mount_Body_Wolf-Peppermint { - background-image: url(spritesmith-main-7.png); - background-position: -680px -136px; - width: 135px; - height: 135px; -} -.Mount_Body_Wolf-Red { - background-image: url(spritesmith-main-7.png); - background-position: -680px -272px; - width: 135px; - height: 135px; -} -.Mount_Body_Wolf-Shade { - background-image: url(spritesmith-main-7.png); - background-position: -680px -408px; - width: 135px; - height: 135px; -} -.Mount_Body_Wolf-Skeleton { - background-image: url(spritesmith-main-7.png); - background-position: -680px -544px; - width: 135px; - height: 135px; -} -.Mount_Body_Wolf-Spooky { - background-image: url(spritesmith-main-7.png); - background-position: 0px -680px; - width: 135px; - height: 135px; -} -.Mount_Body_Wolf-White { - background-image: url(spritesmith-main-7.png); - background-position: -136px -680px; - width: 135px; - height: 135px; -} -.Mount_Body_Wolf-Zombie { - background-image: url(spritesmith-main-7.png); - background-position: -136px 0px; - width: 135px; - height: 135px; -} -.Mount_Head_BearCub-Base { - background-image: url(spritesmith-main-7.png); - background-position: -954px -1558px; - width: 105px; - height: 105px; -} -.Mount_Head_BearCub-CottonCandyBlue { - background-image: url(spritesmith-main-7.png); - background-position: -1060px -1558px; - width: 105px; - height: 105px; -} -.Mount_Head_BearCub-CottonCandyPink { - background-image: url(spritesmith-main-7.png); - background-position: -1166px -1558px; - width: 105px; - height: 105px; -} -.Mount_Head_BearCub-Desert { - background-image: url(spritesmith-main-7.png); - background-position: -1272px -1558px; - width: 105px; - height: 105px; -} -.Mount_Head_BearCub-Golden { - background-image: url(spritesmith-main-7.png); - background-position: -1378px -1558px; - width: 105px; - height: 105px; -} -.Mount_Head_BearCub-Peppermint { - background-image: url(spritesmith-main-7.png); - background-position: -1484px -1558px; - width: 105px; - height: 105px; -} -.Mount_Head_BearCub-Polar { - background-image: url(spritesmith-main-7.png); - background-position: -1664px 0px; - width: 105px; - height: 105px; -} -.Mount_Head_BearCub-Red { - background-image: url(spritesmith-main-7.png); - background-position: -1664px -106px; - width: 105px; - height: 105px; -} -.Mount_Head_BearCub-Shade { - background-image: url(spritesmith-main-7.png); - background-position: -1664px -212px; - width: 105px; - height: 105px; -} -.Mount_Head_BearCub-Skeleton { - background-image: url(spritesmith-main-7.png); - background-position: -1664px -318px; - width: 105px; - height: 105px; -} -.Mount_Head_BearCub-Spooky { - background-image: url(spritesmith-main-7.png); - background-position: -1664px -424px; - width: 105px; - height: 105px; -} -.Mount_Head_BearCub-White { - background-image: url(spritesmith-main-7.png); - background-position: -1664px -530px; - width: 105px; - height: 105px; -} -.Mount_Head_BearCub-Zombie { - background-image: url(spritesmith-main-7.png); - background-position: -1664px -636px; - width: 105px; - height: 105px; -} -.Mount_Head_Bunny-Base { - background-image: url(spritesmith-main-7.png); - background-position: -1664px -742px; - width: 105px; - height: 105px; -} -.Mount_Head_Bunny-CottonCandyBlue { - background-image: url(spritesmith-main-7.png); - background-position: -1664px -848px; - width: 105px; - height: 105px; -} -.Mount_Head_Bunny-CottonCandyPink { - background-image: url(spritesmith-main-7.png); - background-position: -1664px -954px; - width: 105px; - height: 105px; -} -.Mount_Head_Bunny-Desert { - background-image: url(spritesmith-main-7.png); - background-position: -1664px -1060px; - width: 105px; - height: 105px; -} -.Mount_Head_Bunny-Golden { - background-image: url(spritesmith-main-7.png); - background-position: -1664px -1166px; - width: 105px; - height: 105px; -} -.Mount_Head_Bunny-Red { - background-image: url(spritesmith-main-7.png); - background-position: -1664px -1272px; - width: 105px; - height: 105px; -} -.Mount_Head_Bunny-Shade { - background-image: url(spritesmith-main-7.png); - background-position: -1664px -1378px; - width: 105px; - height: 105px; -} -.Mount_Head_Bunny-Skeleton { - background-image: url(spritesmith-main-7.png); - background-position: -1664px -1484px; + background-position: -742px -1592px; width: 105px; height: 105px; } diff --git a/common/dist/sprites/spritesmith-main-7.png b/common/dist/sprites/spritesmith-main-7.png index 4674344b50..4c729cc48c 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 02e10c801c..c2afb79aac 100644 --- a/common/dist/sprites/spritesmith-main-8.css +++ b/common/dist/sprites/spritesmith-main-8.css @@ -1,1458 +1,1392 @@ -.Mount_Head_Bunny-White { +.Mount_Body_Snake-Skeleton { background-image: url(spritesmith-main-8.png); - background-position: -318px -1232px; + background-position: -1316px 0px; width: 105px; height: 105px; } -.Mount_Head_Bunny-Zombie { +.Mount_Body_Snake-White { background-image: url(spritesmith-main-8.png); - background-position: -106px -1126px; + background-position: -954px -1113px; width: 105px; height: 105px; } -.Mount_Head_Cactus-Base { +.Mount_Body_Snake-Zombie { background-image: url(spritesmith-main-8.png); - background-position: -109px -490px; + background-position: -1316px -106px; width: 105px; height: 105px; } -.Mount_Head_Cactus-CottonCandyBlue { +.Mount_Body_Spider-Base { background-image: url(spritesmith-main-8.png); - background-position: -215px -490px; + background-position: -1316px -212px; width: 105px; height: 105px; } -.Mount_Head_Cactus-CottonCandyPink { +.Mount_Body_Spider-CottonCandyBlue { background-image: url(spritesmith-main-8.png); - background-position: -321px -490px; + background-position: -1316px -318px; width: 105px; height: 105px; } -.Mount_Head_Cactus-Desert { +.Mount_Body_Spider-CottonCandyPink { background-image: url(spritesmith-main-8.png); - background-position: -427px -490px; + background-position: -1316px -424px; width: 105px; height: 105px; } -.Mount_Head_Cactus-Golden { +.Mount_Body_Spider-Desert { background-image: url(spritesmith-main-8.png); - background-position: -533px -490px; + background-position: -1316px -530px; width: 105px; height: 105px; } -.Mount_Head_Cactus-Peppermint { +.Mount_Body_Spider-Golden { background-image: url(spritesmith-main-8.png); - background-position: -696px 0px; + background-position: -1316px -636px; width: 105px; height: 105px; } -.Mount_Head_Cactus-Red { +.Mount_Body_Spider-Red { background-image: url(spritesmith-main-8.png); - background-position: -696px -106px; + background-position: -1316px -742px; width: 105px; height: 105px; } -.Mount_Head_Cactus-Shade { +.Mount_Body_Spider-Shade { background-image: url(spritesmith-main-8.png); - background-position: -696px -212px; + background-position: -1484px -1431px; width: 105px; height: 105px; } -.Mount_Head_Cactus-Skeleton { +.Mount_Body_Spider-Skeleton { background-image: url(spritesmith-main-8.png); - background-position: -696px -318px; + background-position: -1634px 0px; width: 105px; height: 105px; } -.Mount_Head_Cactus-Spooky { +.Mount_Body_Spider-White { background-image: url(spritesmith-main-8.png); - background-position: -1120px 0px; + background-position: -742px -795px; width: 105px; height: 105px; } -.Mount_Head_Cactus-White { +.Mount_Body_Spider-Zombie { background-image: url(spritesmith-main-8.png); - background-position: -1120px -106px; + background-position: -848px -795px; width: 105px; height: 105px; } -.Mount_Head_Cactus-Zombie { +.Mount_Body_TRex-Base { background-image: url(spritesmith-main-8.png); - background-position: -1120px -212px; - width: 105px; - height: 105px; -} -.Mount_Head_Cheetah-Base { - background-image: url(spritesmith-main-8.png); - background-position: -1120px -318px; - width: 105px; - height: 105px; -} -.Mount_Head_Cheetah-CottonCandyBlue { - background-image: url(spritesmith-main-8.png); - background-position: -1120px -424px; - width: 105px; - height: 105px; -} -.Mount_Head_Cheetah-CottonCandyPink { - background-image: url(spritesmith-main-8.png); - background-position: -1120px -530px; - width: 105px; - height: 105px; -} -.Mount_Head_Cheetah-Desert { - background-image: url(spritesmith-main-8.png); - background-position: -1120px -636px; - width: 105px; - height: 105px; -} -.Mount_Head_Cheetah-Golden { - background-image: url(spritesmith-main-8.png); - background-position: -1120px -742px; - width: 105px; - height: 105px; -} -.Mount_Head_Cheetah-Red { - background-image: url(spritesmith-main-8.png); - background-position: -1120px -848px; - width: 105px; - height: 105px; -} -.Mount_Head_Cheetah-Shade { - background-image: url(spritesmith-main-8.png); - background-position: 0px -1020px; - width: 105px; - height: 105px; -} -.Mount_Head_Cheetah-Skeleton { - background-image: url(spritesmith-main-8.png); - background-position: -1166px -1126px; - width: 105px; - height: 105px; -} -.Mount_Head_Cheetah-White { - background-image: url(spritesmith-main-8.png); - background-position: -1332px -954px; - width: 105px; - height: 105px; -} -.Mount_Head_Cheetah-Zombie { - background-image: url(spritesmith-main-8.png); - background-position: -212px -1232px; - width: 105px; - height: 105px; -} -.Mount_Head_Cuttlefish-Base { - background-image: url(spritesmith-main-8.png); - background-position: -484px 0px; - width: 105px; - height: 114px; -} -.Mount_Head_Cuttlefish-CottonCandyBlue { - background-image: url(spritesmith-main-8.png); - background-position: -590px -230px; - width: 105px; - height: 114px; -} -.Mount_Head_Cuttlefish-CottonCandyPink { - background-image: url(spritesmith-main-8.png); - background-position: -106px -136px; - width: 105px; - height: 114px; -} -.Mount_Head_Cuttlefish-Desert { - background-image: url(spritesmith-main-8.png); - background-position: -272px 0px; - width: 105px; - height: 114px; -} -.Mount_Head_Cuttlefish-Golden { - background-image: url(spritesmith-main-8.png); - background-position: -272px -115px; - width: 105px; - height: 114px; -} -.Mount_Head_Cuttlefish-Red { - background-image: url(spritesmith-main-8.png); - background-position: 0px -260px; - width: 105px; - height: 114px; -} -.Mount_Head_Cuttlefish-Shade { - background-image: url(spritesmith-main-8.png); - background-position: -106px -260px; - width: 105px; - height: 114px; -} -.Mount_Head_Cuttlefish-Skeleton { - background-image: url(spritesmith-main-8.png); - background-position: -212px -260px; - width: 105px; - height: 114px; -} -.Mount_Head_Cuttlefish-White { - background-image: url(spritesmith-main-8.png); - background-position: -378px 0px; - width: 105px; - height: 114px; -} -.Mount_Head_Cuttlefish-Zombie { - background-image: url(spritesmith-main-8.png); - background-position: -378px -115px; - width: 105px; - height: 114px; -} -.Mount_Head_Deer-Base { - background-image: url(spritesmith-main-8.png); - background-position: -696px -424px; - width: 105px; - height: 105px; -} -.Mount_Head_Deer-CottonCandyBlue { - background-image: url(spritesmith-main-8.png); - background-position: 0px -596px; - width: 105px; - height: 105px; -} -.Mount_Head_Deer-CottonCandyPink { - background-image: url(spritesmith-main-8.png); - background-position: -106px -596px; - width: 105px; - height: 105px; -} -.Mount_Head_Deer-Desert { - background-image: url(spritesmith-main-8.png); - background-position: -212px -596px; - width: 105px; - height: 105px; -} -.Mount_Head_Deer-Golden { - background-image: url(spritesmith-main-8.png); - background-position: -318px -596px; - width: 105px; - height: 105px; -} -.Mount_Head_Deer-Red { - background-image: url(spritesmith-main-8.png); - background-position: -424px -596px; - width: 105px; - height: 105px; -} -.Mount_Head_Deer-Shade { - background-image: url(spritesmith-main-8.png); - background-position: -530px -596px; - width: 105px; - height: 105px; -} -.Mount_Head_Deer-Skeleton { - background-image: url(spritesmith-main-8.png); - background-position: -636px -596px; - width: 105px; - height: 105px; -} -.Mount_Head_Deer-White { - background-image: url(spritesmith-main-8.png); - background-position: -802px 0px; - width: 105px; - height: 105px; -} -.Mount_Head_Deer-Zombie { - background-image: url(spritesmith-main-8.png); - background-position: -802px -106px; - width: 105px; - height: 105px; -} -.Mount_Head_Dragon-Base { - background-image: url(spritesmith-main-8.png); - background-position: -802px -212px; - width: 105px; - height: 105px; -} -.Mount_Head_Dragon-CottonCandyBlue { - background-image: url(spritesmith-main-8.png); - background-position: -802px -318px; - width: 105px; - height: 105px; -} -.Mount_Head_Dragon-CottonCandyPink { - background-image: url(spritesmith-main-8.png); - background-position: -802px -424px; - width: 105px; - height: 105px; -} -.Mount_Head_Dragon-Desert { - background-image: url(spritesmith-main-8.png); - background-position: -802px -530px; - width: 105px; - height: 105px; -} -.Mount_Head_Dragon-Golden { - background-image: url(spritesmith-main-8.png); - background-position: 0px -702px; - width: 105px; - height: 105px; -} -.Mount_Head_Dragon-Peppermint { - background-image: url(spritesmith-main-8.png); - background-position: -106px -702px; - width: 105px; - height: 105px; -} -.Mount_Head_Dragon-Red { - background-image: url(spritesmith-main-8.png); - background-position: -212px -702px; - width: 105px; - height: 105px; -} -.Mount_Head_Dragon-Shade { - background-image: url(spritesmith-main-8.png); - background-position: -318px -702px; - width: 105px; - height: 105px; -} -.Mount_Head_Dragon-Skeleton { - background-image: url(spritesmith-main-8.png); - background-position: -424px -702px; - width: 105px; - height: 105px; -} -.Mount_Head_Dragon-Spooky { - background-image: url(spritesmith-main-8.png); - background-position: -530px -702px; - width: 105px; - height: 105px; -} -.Mount_Head_Dragon-White { - background-image: url(spritesmith-main-8.png); - background-position: -636px -702px; - width: 105px; - height: 105px; -} -.Mount_Head_Dragon-Zombie { - background-image: url(spritesmith-main-8.png); - background-position: -742px -702px; - width: 105px; - height: 105px; -} -.Mount_Head_Egg-Base { - background-image: url(spritesmith-main-8.png); - background-position: -908px 0px; - width: 105px; - height: 105px; -} -.Mount_Head_Egg-CottonCandyBlue { - background-image: url(spritesmith-main-8.png); - background-position: -908px -106px; - width: 105px; - height: 105px; -} -.Mount_Head_Egg-CottonCandyPink { - background-image: url(spritesmith-main-8.png); - background-position: -908px -212px; - width: 105px; - height: 105px; -} -.Mount_Head_Egg-Desert { - background-image: url(spritesmith-main-8.png); - background-position: -908px -318px; - width: 105px; - height: 105px; -} -.Mount_Head_Egg-Golden { - background-image: url(spritesmith-main-8.png); - background-position: -908px -424px; - width: 105px; - height: 105px; -} -.Mount_Head_Egg-Red { - background-image: url(spritesmith-main-8.png); - background-position: -908px -530px; - width: 105px; - height: 105px; -} -.Mount_Head_Egg-Shade { - background-image: url(spritesmith-main-8.png); - background-position: -908px -636px; - width: 105px; - height: 105px; -} -.Mount_Head_Egg-Skeleton { - background-image: url(spritesmith-main-8.png); - background-position: 0px -808px; - width: 105px; - height: 105px; -} -.Mount_Head_Egg-White { - background-image: url(spritesmith-main-8.png); - background-position: -106px -808px; - width: 105px; - height: 105px; -} -.Mount_Head_Egg-Zombie { - background-image: url(spritesmith-main-8.png); - background-position: -212px -808px; - width: 105px; - height: 105px; -} -.Mount_Head_FlyingPig-Base { - background-image: url(spritesmith-main-8.png); - background-position: -318px -808px; - width: 105px; - height: 105px; -} -.Mount_Head_FlyingPig-CottonCandyBlue { - background-image: url(spritesmith-main-8.png); - background-position: -424px -808px; - width: 105px; - height: 105px; -} -.Mount_Head_FlyingPig-CottonCandyPink { - background-image: url(spritesmith-main-8.png); - background-position: -530px -808px; - width: 105px; - height: 105px; -} -.Mount_Head_FlyingPig-Desert { - background-image: url(spritesmith-main-8.png); - background-position: -636px -808px; - width: 105px; - height: 105px; -} -.Mount_Head_FlyingPig-Golden { - background-image: url(spritesmith-main-8.png); - background-position: -742px -808px; - width: 105px; - height: 105px; -} -.Mount_Head_FlyingPig-Peppermint { - background-image: url(spritesmith-main-8.png); - background-position: -848px -808px; - width: 105px; - height: 105px; -} -.Mount_Head_FlyingPig-Red { - background-image: url(spritesmith-main-8.png); - background-position: -1014px 0px; - width: 105px; - height: 105px; -} -.Mount_Head_FlyingPig-Shade { - background-image: url(spritesmith-main-8.png); - background-position: -1014px -106px; - width: 105px; - height: 105px; -} -.Mount_Head_FlyingPig-Skeleton { - background-image: url(spritesmith-main-8.png); - background-position: -1014px -212px; - width: 105px; - height: 105px; -} -.Mount_Head_FlyingPig-Spooky { - background-image: url(spritesmith-main-8.png); - background-position: -1014px -318px; - width: 105px; - height: 105px; -} -.Mount_Head_FlyingPig-White { - background-image: url(spritesmith-main-8.png); - background-position: -1014px -424px; - width: 105px; - height: 105px; -} -.Mount_Head_FlyingPig-Zombie { - background-image: url(spritesmith-main-8.png); - background-position: -1014px -530px; - width: 105px; - height: 105px; -} -.Mount_Head_Fox-Base { - background-image: url(spritesmith-main-8.png); - background-position: -1014px -636px; - width: 105px; - height: 105px; -} -.Mount_Head_Fox-CottonCandyBlue { - background-image: url(spritesmith-main-8.png); - background-position: -1014px -742px; - width: 105px; - height: 105px; -} -.Mount_Head_Fox-CottonCandyPink { - background-image: url(spritesmith-main-8.png); - background-position: 0px -914px; - width: 105px; - height: 105px; -} -.Mount_Head_Fox-Desert { - background-image: url(spritesmith-main-8.png); - background-position: -106px -914px; - width: 105px; - height: 105px; -} -.Mount_Head_Fox-Golden { - background-image: url(spritesmith-main-8.png); - background-position: -212px -914px; - width: 105px; - height: 105px; -} -.Mount_Head_Fox-Peppermint { - background-image: url(spritesmith-main-8.png); - background-position: -318px -914px; - width: 105px; - height: 105px; -} -.Mount_Head_Fox-Red { - background-image: url(spritesmith-main-8.png); - background-position: -424px -914px; - width: 105px; - height: 105px; -} -.Mount_Head_Fox-Shade { - background-image: url(spritesmith-main-8.png); - background-position: -530px -914px; - width: 105px; - height: 105px; -} -.Mount_Head_Fox-Skeleton { - background-image: url(spritesmith-main-8.png); - background-position: -636px -914px; - width: 105px; - height: 105px; -} -.Mount_Head_Fox-Spooky { - background-image: url(spritesmith-main-8.png); - background-position: -742px -914px; - width: 105px; - height: 105px; -} -.Mount_Head_Fox-White { - background-image: url(spritesmith-main-8.png); - background-position: -848px -914px; - width: 105px; - height: 105px; -} -.Mount_Head_Fox-Zombie { - background-image: url(spritesmith-main-8.png); - background-position: -954px -914px; - width: 105px; - height: 105px; -} -.Mount_Head_Frog-Base { - background-image: url(spritesmith-main-8.png); - background-position: -378px -230px; - width: 105px; - height: 114px; -} -.Mount_Head_Frog-CottonCandyBlue { - background-image: url(spritesmith-main-8.png); - background-position: -590px -115px; - width: 105px; - height: 114px; -} -.Mount_Head_Frog-CottonCandyPink { - background-image: url(spritesmith-main-8.png); - background-position: -484px -115px; - width: 105px; - height: 114px; -} -.Mount_Head_Frog-Desert { - background-image: url(spritesmith-main-8.png); - background-position: -484px -230px; - width: 105px; - height: 114px; -} -.Mount_Head_Frog-Golden { - background-image: url(spritesmith-main-8.png); - background-position: 0px -375px; - width: 105px; - height: 114px; -} -.Mount_Head_Frog-Red { - background-image: url(spritesmith-main-8.png); - background-position: -106px -375px; - width: 105px; - height: 114px; -} -.Mount_Head_Frog-Shade { - background-image: url(spritesmith-main-8.png); - background-position: -212px -375px; - width: 105px; - height: 114px; -} -.Mount_Head_Frog-Skeleton { - background-image: url(spritesmith-main-8.png); - background-position: -318px -375px; - width: 105px; - height: 114px; -} -.Mount_Head_Frog-White { - background-image: url(spritesmith-main-8.png); - background-position: -424px -375px; - width: 105px; - height: 114px; -} -.Mount_Head_Frog-Zombie { - background-image: url(spritesmith-main-8.png); - background-position: -590px 0px; - width: 105px; - height: 114px; -} -.Mount_Head_Gryphon-Base { - background-image: url(spritesmith-main-8.png); - background-position: -106px -1020px; - width: 105px; - height: 105px; -} -.Mount_Head_Gryphon-CottonCandyBlue { - background-image: url(spritesmith-main-8.png); - background-position: -212px -1020px; - width: 105px; - height: 105px; -} -.Mount_Head_Gryphon-CottonCandyPink { - background-image: url(spritesmith-main-8.png); - background-position: -318px -1020px; - width: 105px; - height: 105px; -} -.Mount_Head_Gryphon-Desert { - background-image: url(spritesmith-main-8.png); - background-position: -424px -1020px; - width: 105px; - height: 105px; -} -.Mount_Head_Gryphon-Golden { - background-image: url(spritesmith-main-8.png); - background-position: -530px -1020px; - width: 105px; - height: 105px; -} -.Mount_Head_Gryphon-Red { - background-image: url(spritesmith-main-8.png); - background-position: -636px -1020px; - width: 105px; - height: 105px; -} -.Mount_Head_Gryphon-RoyalPurple { - background-image: url(spritesmith-main-8.png); - background-position: -742px -1020px; - width: 105px; - height: 105px; -} -.Mount_Head_Gryphon-Shade { - background-image: url(spritesmith-main-8.png); - background-position: -848px -1020px; - width: 105px; - height: 105px; -} -.Mount_Head_Gryphon-Skeleton { - background-image: url(spritesmith-main-8.png); - background-position: -954px -1020px; - width: 105px; - height: 105px; -} -.Mount_Head_Gryphon-White { - background-image: url(spritesmith-main-8.png); - background-position: -1060px -1020px; - width: 105px; - height: 105px; -} -.Mount_Head_Gryphon-Zombie { - background-image: url(spritesmith-main-8.png); - background-position: -1226px 0px; - width: 105px; - height: 105px; -} -.Mount_Head_Hedgehog-Base { - background-image: url(spritesmith-main-8.png); - background-position: -1226px -106px; - width: 105px; - height: 105px; -} -.Mount_Head_Hedgehog-CottonCandyBlue { - background-image: url(spritesmith-main-8.png); - background-position: -1226px -212px; - width: 105px; - height: 105px; -} -.Mount_Head_Hedgehog-CottonCandyPink { - background-image: url(spritesmith-main-8.png); - background-position: -1226px -318px; - width: 105px; - height: 105px; -} -.Mount_Head_Hedgehog-Desert { - background-image: url(spritesmith-main-8.png); - background-position: -1226px -424px; - width: 105px; - height: 105px; -} -.Mount_Head_Hedgehog-Golden { - background-image: url(spritesmith-main-8.png); - background-position: -1226px -530px; - width: 105px; - height: 105px; -} -.Mount_Head_Hedgehog-Red { - background-image: url(spritesmith-main-8.png); - background-position: -1226px -636px; - width: 105px; - height: 105px; -} -.Mount_Head_Hedgehog-Shade { - background-image: url(spritesmith-main-8.png); - background-position: -1226px -742px; - width: 105px; - height: 105px; -} -.Mount_Head_Hedgehog-Skeleton { - background-image: url(spritesmith-main-8.png); - background-position: -1226px -848px; - width: 105px; - height: 105px; -} -.Mount_Head_Hedgehog-White { - background-image: url(spritesmith-main-8.png); - background-position: -1226px -954px; - width: 105px; - height: 105px; -} -.Mount_Head_Hedgehog-Zombie { - background-image: url(spritesmith-main-8.png); - background-position: 0px -1126px; - width: 105px; - height: 105px; -} -.Mount_Head_Horse-Base { - background-image: url(spritesmith-main-8.png); - background-position: -1756px -106px; - width: 105px; - height: 105px; -} -.Mount_Head_Horse-CottonCandyBlue { - background-image: url(spritesmith-main-8.png); - background-position: -212px -1126px; - width: 105px; - height: 105px; -} -.Mount_Head_Horse-CottonCandyPink { - background-image: url(spritesmith-main-8.png); - background-position: -318px -1126px; - width: 105px; - height: 105px; -} -.Mount_Head_Horse-Desert { - background-image: url(spritesmith-main-8.png); - background-position: -424px -1126px; - width: 105px; - height: 105px; -} -.Mount_Head_Horse-Golden { - background-image: url(spritesmith-main-8.png); - background-position: -530px -1126px; - width: 105px; - height: 105px; -} -.Mount_Head_Horse-Red { - background-image: url(spritesmith-main-8.png); - background-position: -636px -1126px; - width: 105px; - height: 105px; -} -.Mount_Head_Horse-Shade { - background-image: url(spritesmith-main-8.png); - background-position: -742px -1126px; - width: 105px; - height: 105px; -} -.Mount_Head_Horse-Skeleton { - background-image: url(spritesmith-main-8.png); - background-position: -848px -1126px; - width: 105px; - height: 105px; -} -.Mount_Head_Horse-White { - background-image: url(spritesmith-main-8.png); - background-position: -954px -1126px; - width: 105px; - height: 105px; -} -.Mount_Head_Horse-Zombie { - background-image: url(spritesmith-main-8.png); - background-position: -1060px -1126px; - width: 105px; - height: 105px; -} -.Mount_Head_JackOLantern-Base { - background-image: url(spritesmith-main-8.png); - background-position: -1756px -212px; - width: 90px; - height: 105px; -} -.Mount_Head_LionCub-Base { - background-image: url(spritesmith-main-8.png); - background-position: -1332px 0px; - width: 105px; - height: 105px; -} -.Mount_Head_LionCub-CottonCandyBlue { - background-image: url(spritesmith-main-8.png); - background-position: -1332px -106px; - width: 105px; - height: 105px; -} -.Mount_Head_LionCub-CottonCandyPink { - background-image: url(spritesmith-main-8.png); - background-position: -1332px -212px; - width: 105px; - height: 105px; -} -.Mount_Head_LionCub-Desert { - background-image: url(spritesmith-main-8.png); - background-position: -1332px -318px; - width: 105px; - height: 105px; -} -.Mount_Head_LionCub-Ethereal { - background-image: url(spritesmith-main-8.png); - background-position: -1332px -424px; - width: 105px; - height: 105px; -} -.Mount_Head_LionCub-Golden { - background-image: url(spritesmith-main-8.png); - background-position: -1332px -530px; - width: 105px; - height: 105px; -} -.Mount_Head_LionCub-Peppermint { - background-image: url(spritesmith-main-8.png); - background-position: -1332px -636px; - width: 105px; - height: 105px; -} -.Mount_Head_LionCub-Red { - background-image: url(spritesmith-main-8.png); - background-position: -1332px -742px; - width: 105px; - height: 105px; -} -.Mount_Head_LionCub-Shade { - background-image: url(spritesmith-main-8.png); - background-position: -1332px -848px; - width: 105px; - height: 105px; -} -.Mount_Head_LionCub-Skeleton { - background-image: url(spritesmith-main-8.png); - background-position: -590px -345px; - width: 105px; - height: 110px; -} -.Mount_Head_LionCub-Spooky { - background-image: url(spritesmith-main-8.png); - background-position: -1332px -1060px; - width: 105px; - height: 105px; -} -.Mount_Head_LionCub-White { - background-image: url(spritesmith-main-8.png); - background-position: 0px -1232px; - width: 105px; - height: 105px; -} -.Mount_Head_LionCub-Zombie { - background-image: url(spritesmith-main-8.png); - background-position: -106px -1232px; - width: 105px; - height: 105px; -} -.Mount_Head_Mammoth-Base { - background-image: url(spritesmith-main-8.png); - background-position: 0px -136px; - width: 105px; - height: 123px; -} -.Mount_Head_MantisShrimp-Base { - background-image: url(spritesmith-main-8.png); - background-position: 0px -490px; - width: 108px; - height: 105px; -} -.Mount_Head_Monkey-Base { - background-image: url(spritesmith-main-8.png); - background-position: -424px -1232px; - width: 105px; - height: 105px; -} -.Mount_Head_Monkey-CottonCandyBlue { - background-image: url(spritesmith-main-8.png); - background-position: -530px -1232px; - width: 105px; - height: 105px; -} -.Mount_Head_Monkey-CottonCandyPink { - background-image: url(spritesmith-main-8.png); - background-position: -636px -1232px; - width: 105px; - height: 105px; -} -.Mount_Head_Monkey-Desert { - background-image: url(spritesmith-main-8.png); - background-position: -742px -1232px; - width: 105px; - height: 105px; -} -.Mount_Head_Monkey-Golden { - background-image: url(spritesmith-main-8.png); - background-position: -848px -1232px; - width: 105px; - height: 105px; -} -.Mount_Head_Monkey-Red { - background-image: url(spritesmith-main-8.png); - background-position: -954px -1232px; - width: 105px; - height: 105px; -} -.Mount_Head_Monkey-Shade { - background-image: url(spritesmith-main-8.png); - background-position: -1060px -1232px; - width: 105px; - height: 105px; -} -.Mount_Head_Monkey-Skeleton { - background-image: url(spritesmith-main-8.png); - background-position: -1166px -1232px; - width: 105px; - height: 105px; -} -.Mount_Head_Monkey-White { - background-image: url(spritesmith-main-8.png); - background-position: -1272px -1232px; - width: 105px; - height: 105px; -} -.Mount_Head_Monkey-Zombie { - background-image: url(spritesmith-main-8.png); - background-position: -1438px 0px; - width: 105px; - height: 105px; -} -.Mount_Head_Octopus-Base { - background-image: url(spritesmith-main-8.png); - background-position: -1438px -106px; - width: 105px; - height: 105px; -} -.Mount_Head_Octopus-CottonCandyBlue { - background-image: url(spritesmith-main-8.png); - background-position: -1438px -212px; - width: 105px; - height: 105px; -} -.Mount_Head_Octopus-CottonCandyPink { - background-image: url(spritesmith-main-8.png); - background-position: -1438px -318px; - width: 105px; - height: 105px; -} -.Mount_Head_Octopus-Desert { - background-image: url(spritesmith-main-8.png); - background-position: -1438px -424px; - width: 105px; - height: 105px; -} -.Mount_Head_Octopus-Golden { - background-image: url(spritesmith-main-8.png); - background-position: -1438px -530px; - width: 105px; - height: 105px; -} -.Mount_Head_Octopus-Red { - background-image: url(spritesmith-main-8.png); - background-position: -1438px -636px; - width: 105px; - height: 105px; -} -.Mount_Head_Octopus-Shade { - background-image: url(spritesmith-main-8.png); - background-position: -1438px -742px; - width: 105px; - height: 105px; -} -.Mount_Head_Octopus-Skeleton { - background-image: url(spritesmith-main-8.png); - background-position: -1438px -848px; - width: 105px; - height: 105px; -} -.Mount_Head_Octopus-White { - background-image: url(spritesmith-main-8.png); - background-position: -1438px -954px; - width: 105px; - height: 105px; -} -.Mount_Head_Octopus-Zombie { - background-image: url(spritesmith-main-8.png); - background-position: -1438px -1060px; - width: 105px; - height: 105px; -} -.Mount_Head_Orca-Base { - background-image: url(spritesmith-main-8.png); - background-position: -1438px -1166px; - width: 105px; - height: 105px; -} -.Mount_Head_Owl-Base { - background-image: url(spritesmith-main-8.png); - background-position: 0px -1338px; - width: 105px; - height: 105px; -} -.Mount_Head_Owl-CottonCandyBlue { - background-image: url(spritesmith-main-8.png); - background-position: -106px -1338px; - width: 105px; - height: 105px; -} -.Mount_Head_Owl-CottonCandyPink { - background-image: url(spritesmith-main-8.png); - background-position: -212px -1338px; - width: 105px; - height: 105px; -} -.Mount_Head_Owl-Desert { - background-image: url(spritesmith-main-8.png); - background-position: -318px -1338px; - width: 105px; - height: 105px; -} -.Mount_Head_Owl-Golden { - background-image: url(spritesmith-main-8.png); - background-position: -424px -1338px; - width: 105px; - height: 105px; -} -.Mount_Head_Owl-Red { - background-image: url(spritesmith-main-8.png); - background-position: -530px -1338px; - width: 105px; - height: 105px; -} -.Mount_Head_Owl-Shade { - background-image: url(spritesmith-main-8.png); - background-position: -636px -1338px; - width: 105px; - height: 105px; -} -.Mount_Head_Owl-Skeleton { - background-image: url(spritesmith-main-8.png); - background-position: -742px -1338px; - width: 105px; - height: 105px; -} -.Mount_Head_Owl-White { - background-image: url(spritesmith-main-8.png); - background-position: -848px -1338px; - width: 105px; - height: 105px; -} -.Mount_Head_Owl-Zombie { - background-image: url(spritesmith-main-8.png); - background-position: -954px -1338px; - width: 105px; - height: 105px; -} -.Mount_Head_PandaCub-Base { - background-image: url(spritesmith-main-8.png); - background-position: -1060px -1338px; - width: 105px; - height: 105px; -} -.Mount_Head_PandaCub-CottonCandyBlue { - background-image: url(spritesmith-main-8.png); - background-position: -1166px -1338px; - width: 105px; - height: 105px; -} -.Mount_Head_PandaCub-CottonCandyPink { - background-image: url(spritesmith-main-8.png); - background-position: -1272px -1338px; - width: 105px; - height: 105px; -} -.Mount_Head_PandaCub-Desert { - background-image: url(spritesmith-main-8.png); - background-position: -1378px -1338px; - width: 105px; - height: 105px; -} -.Mount_Head_PandaCub-Golden { - background-image: url(spritesmith-main-8.png); - background-position: -1544px 0px; - width: 105px; - height: 105px; -} -.Mount_Head_PandaCub-Peppermint { - background-image: url(spritesmith-main-8.png); - background-position: -1544px -106px; - width: 105px; - height: 105px; -} -.Mount_Head_PandaCub-Red { - background-image: url(spritesmith-main-8.png); - background-position: -1544px -212px; - width: 105px; - height: 105px; -} -.Mount_Head_PandaCub-Shade { - background-image: url(spritesmith-main-8.png); - background-position: -1544px -318px; - width: 105px; - height: 105px; -} -.Mount_Head_PandaCub-Skeleton { - background-image: url(spritesmith-main-8.png); - background-position: -1544px -424px; - width: 105px; - height: 105px; -} -.Mount_Head_PandaCub-Spooky { - background-image: url(spritesmith-main-8.png); - background-position: -1544px -530px; - width: 105px; - height: 105px; -} -.Mount_Head_PandaCub-White { - background-image: url(spritesmith-main-8.png); - background-position: -1544px -636px; - width: 105px; - height: 105px; -} -.Mount_Head_PandaCub-Zombie { - background-image: url(spritesmith-main-8.png); - background-position: -1544px -742px; - width: 105px; - height: 105px; -} -.Mount_Head_Parrot-Base { - background-image: url(spritesmith-main-8.png); - background-position: -1544px -848px; - width: 105px; - height: 105px; -} -.Mount_Head_Parrot-CottonCandyBlue { - background-image: url(spritesmith-main-8.png); - background-position: -1544px -954px; - width: 105px; - height: 105px; -} -.Mount_Head_Parrot-CottonCandyPink { - background-image: url(spritesmith-main-8.png); - background-position: -1544px -1060px; - width: 105px; - height: 105px; -} -.Mount_Head_Parrot-Desert { - background-image: url(spritesmith-main-8.png); - background-position: -1544px -1166px; - width: 105px; - height: 105px; -} -.Mount_Head_Parrot-Golden { - background-image: url(spritesmith-main-8.png); - background-position: -1544px -1272px; - width: 105px; - height: 105px; -} -.Mount_Head_Parrot-Red { - background-image: url(spritesmith-main-8.png); - background-position: 0px -1444px; - width: 105px; - height: 105px; -} -.Mount_Head_Parrot-Shade { - background-image: url(spritesmith-main-8.png); - background-position: -106px -1444px; - width: 105px; - height: 105px; -} -.Mount_Head_Parrot-Skeleton { - background-image: url(spritesmith-main-8.png); - background-position: -212px -1444px; - width: 105px; - height: 105px; -} -.Mount_Head_Parrot-White { - background-image: url(spritesmith-main-8.png); - background-position: -318px -1444px; - width: 105px; - height: 105px; -} -.Mount_Head_Parrot-Zombie { - background-image: url(spritesmith-main-8.png); - background-position: -424px -1444px; - width: 105px; - height: 105px; -} -.Mount_Head_Penguin-Base { - background-image: url(spritesmith-main-8.png); - background-position: -530px -1444px; - width: 105px; - height: 105px; -} -.Mount_Head_Penguin-CottonCandyBlue { - background-image: url(spritesmith-main-8.png); - background-position: -636px -1444px; - width: 105px; - height: 105px; -} -.Mount_Head_Penguin-CottonCandyPink { - background-image: url(spritesmith-main-8.png); - background-position: -742px -1444px; - width: 105px; - height: 105px; -} -.Mount_Head_Penguin-Desert { - background-image: url(spritesmith-main-8.png); - background-position: -848px -1444px; - width: 105px; - height: 105px; -} -.Mount_Head_Penguin-Golden { - background-image: url(spritesmith-main-8.png); - background-position: -954px -1444px; - width: 105px; - height: 105px; -} -.Mount_Head_Penguin-Red { - background-image: url(spritesmith-main-8.png); - background-position: -1060px -1444px; - width: 105px; - height: 105px; -} -.Mount_Head_Penguin-Shade { - background-image: url(spritesmith-main-8.png); - background-position: -1166px -1444px; - width: 105px; - height: 105px; -} -.Mount_Head_Penguin-Skeleton { - background-image: url(spritesmith-main-8.png); - background-position: -1272px -1444px; - width: 105px; - height: 105px; -} -.Mount_Head_Penguin-White { - background-image: url(spritesmith-main-8.png); - background-position: -1378px -1444px; - width: 105px; - height: 105px; -} -.Mount_Head_Penguin-Zombie { - background-image: url(spritesmith-main-8.png); - background-position: -1484px -1444px; - width: 105px; - height: 105px; -} -.Mount_Head_Phoenix-Base { - background-image: url(spritesmith-main-8.png); - background-position: -1650px 0px; - width: 105px; - height: 105px; -} -.Mount_Head_Rat-Base { - background-image: url(spritesmith-main-8.png); - background-position: -1650px -106px; - width: 105px; - height: 105px; -} -.Mount_Head_Rat-CottonCandyBlue { - background-image: url(spritesmith-main-8.png); - background-position: -1650px -212px; - width: 105px; - height: 105px; -} -.Mount_Head_Rat-CottonCandyPink { - background-image: url(spritesmith-main-8.png); - background-position: -1650px -318px; - width: 105px; - height: 105px; -} -.Mount_Head_Rat-Desert { - background-image: url(spritesmith-main-8.png); - background-position: -1650px -424px; - width: 105px; - height: 105px; -} -.Mount_Head_Rat-Golden { - background-image: url(spritesmith-main-8.png); - background-position: -1650px -530px; - width: 105px; - height: 105px; -} -.Mount_Head_Rat-Red { - background-image: url(spritesmith-main-8.png); - background-position: -1650px -636px; - width: 105px; - height: 105px; -} -.Mount_Head_Rat-Shade { - background-image: url(spritesmith-main-8.png); - background-position: -1650px -742px; - width: 105px; - height: 105px; -} -.Mount_Head_Rat-Skeleton { - background-image: url(spritesmith-main-8.png); - background-position: -1650px -848px; - width: 105px; - height: 105px; -} -.Mount_Head_Rat-White { - background-image: url(spritesmith-main-8.png); - background-position: -1650px -954px; - width: 105px; - height: 105px; -} -.Mount_Head_Rat-Zombie { - background-image: url(spritesmith-main-8.png); - background-position: -1650px -1060px; - width: 105px; - height: 105px; -} -.Mount_Head_Rock-Base { - background-image: url(spritesmith-main-8.png); - background-position: -1650px -1166px; - width: 105px; - height: 105px; -} -.Mount_Head_Rock-CottonCandyBlue { - background-image: url(spritesmith-main-8.png); - background-position: -1650px -1272px; - width: 105px; - height: 105px; -} -.Mount_Head_Rock-CottonCandyPink { - background-image: url(spritesmith-main-8.png); - background-position: -1650px -1378px; - width: 105px; - height: 105px; -} -.Mount_Head_Rock-Desert { - background-image: url(spritesmith-main-8.png); - background-position: 0px -1550px; - width: 105px; - height: 105px; -} -.Mount_Head_Rock-Golden { - background-image: url(spritesmith-main-8.png); - background-position: -106px -1550px; - width: 105px; - height: 105px; -} -.Mount_Head_Rock-Red { - background-image: url(spritesmith-main-8.png); - background-position: -212px -1550px; - width: 105px; - height: 105px; -} -.Mount_Head_Rock-Shade { - background-image: url(spritesmith-main-8.png); - background-position: -318px -1550px; - width: 105px; - height: 105px; -} -.Mount_Head_Rock-Skeleton { - background-image: url(spritesmith-main-8.png); - background-position: -424px -1550px; - width: 105px; - height: 105px; -} -.Mount_Head_Rock-White { - background-image: url(spritesmith-main-8.png); - background-position: -530px -1550px; - width: 105px; - height: 105px; -} -.Mount_Head_Rock-Zombie { - background-image: url(spritesmith-main-8.png); - background-position: -636px -1550px; - width: 105px; - height: 105px; -} -.Mount_Head_Rooster-Base { - background-image: url(spritesmith-main-8.png); - background-position: -742px -1550px; - width: 105px; - height: 105px; -} -.Mount_Head_Rooster-CottonCandyBlue { - background-image: url(spritesmith-main-8.png); - background-position: -848px -1550px; - width: 105px; - height: 105px; -} -.Mount_Head_Rooster-CottonCandyPink { - background-image: url(spritesmith-main-8.png); - background-position: -954px -1550px; - width: 105px; - height: 105px; -} -.Mount_Head_Rooster-Desert { - background-image: url(spritesmith-main-8.png); - background-position: -1060px -1550px; - width: 105px; - height: 105px; -} -.Mount_Head_Rooster-Golden { - background-image: url(spritesmith-main-8.png); - background-position: -1166px -1550px; - width: 105px; - height: 105px; -} -.Mount_Head_Rooster-Red { - background-image: url(spritesmith-main-8.png); - background-position: -1272px -1550px; - width: 105px; - height: 105px; -} -.Mount_Head_Rooster-Shade { - background-image: url(spritesmith-main-8.png); - background-position: -1378px -1550px; - width: 105px; - height: 105px; -} -.Mount_Head_Rooster-Skeleton { - background-image: url(spritesmith-main-8.png); - background-position: -1484px -1550px; - width: 105px; - height: 105px; -} -.Mount_Head_Rooster-White { - background-image: url(spritesmith-main-8.png); - background-position: -1590px -1550px; - width: 105px; - height: 105px; -} -.Mount_Head_Rooster-Zombie { - background-image: url(spritesmith-main-8.png); - background-position: -1756px 0px; - width: 105px; - height: 105px; -} -.Mount_Head_Sabretooth-Base { - background-image: url(spritesmith-main-8.png); - background-position: -136px 0px; + background-position: -136px -544px; width: 135px; height: 135px; } -.Mount_Head_Sabretooth-CottonCandyBlue { +.Mount_Body_TRex-CottonCandyBlue { + background-image: url(spritesmith-main-8.png); + background-position: -408px -272px; + width: 135px; + height: 135px; +} +.Mount_Body_TRex-CottonCandyPink { + background-image: url(spritesmith-main-8.png); + background-position: 0px -136px; + width: 135px; + height: 135px; +} +.Mount_Body_TRex-Desert { + background-image: url(spritesmith-main-8.png); + background-position: -136px -136px; + width: 135px; + height: 135px; +} +.Mount_Body_TRex-Golden { + background-image: url(spritesmith-main-8.png); + background-position: -272px 0px; + width: 135px; + height: 135px; +} +.Mount_Body_TRex-Red { + background-image: url(spritesmith-main-8.png); + background-position: -272px -136px; + width: 135px; + height: 135px; +} +.Mount_Body_TRex-Shade { + background-image: url(spritesmith-main-8.png); + background-position: 0px -272px; + width: 135px; + height: 135px; +} +.Mount_Body_TRex-Skeleton { + background-image: url(spritesmith-main-8.png); + background-position: -136px -272px; + width: 135px; + height: 135px; +} +.Mount_Body_TRex-White { + background-image: url(spritesmith-main-8.png); + background-position: -272px -272px; + width: 135px; + height: 135px; +} +.Mount_Body_TRex-Zombie { + background-image: url(spritesmith-main-8.png); + background-position: -408px 0px; + width: 135px; + height: 135px; +} +.Mount_Body_TigerCub-Base { + background-image: url(spritesmith-main-8.png); + background-position: -998px 0px; + width: 105px; + height: 105px; +} +.Mount_Body_TigerCub-CottonCandyBlue { + background-image: url(spritesmith-main-8.png); + background-position: -998px -106px; + width: 105px; + height: 105px; +} +.Mount_Body_TigerCub-CottonCandyPink { + background-image: url(spritesmith-main-8.png); + background-position: -998px -212px; + width: 105px; + height: 105px; +} +.Mount_Body_TigerCub-Desert { + background-image: url(spritesmith-main-8.png); + background-position: -998px -318px; + width: 105px; + height: 105px; +} +.Mount_Body_TigerCub-Floral { + background-image: url(spritesmith-main-8.png); + background-position: -998px -424px; + width: 105px; + height: 105px; +} +.Mount_Body_TigerCub-Golden { + background-image: url(spritesmith-main-8.png); + background-position: -998px -530px; + width: 105px; + height: 105px; +} +.Mount_Body_TigerCub-Peppermint { + background-image: url(spritesmith-main-8.png); + background-position: -998px -636px; + width: 105px; + height: 105px; +} +.Mount_Body_TigerCub-Red { + background-image: url(spritesmith-main-8.png); + background-position: -998px -742px; + width: 105px; + height: 105px; +} +.Mount_Body_TigerCub-Shade { + background-image: url(spritesmith-main-8.png); + background-position: 0px -901px; + width: 105px; + height: 105px; +} +.Mount_Body_TigerCub-Skeleton { + background-image: url(spritesmith-main-8.png); + background-position: -106px -901px; + width: 105px; + height: 105px; +} +.Mount_Body_TigerCub-Spooky { + background-image: url(spritesmith-main-8.png); + background-position: -212px -901px; + width: 105px; + height: 105px; +} +.Mount_Body_TigerCub-White { + background-image: url(spritesmith-main-8.png); + background-position: -1060px -1113px; + width: 105px; + height: 105px; +} +.Mount_Body_TigerCub-Zombie { + background-image: url(spritesmith-main-8.png); + background-position: -1166px -1113px; + width: 105px; + height: 105px; +} +.Mount_Body_Turkey-Base { + background-image: url(spritesmith-main-8.png); + background-position: -1634px -106px; + width: 105px; + height: 105px; +} +.Mount_Body_Unicorn-Base { + background-image: url(spritesmith-main-8.png); + background-position: -1634px -212px; + width: 105px; + height: 105px; +} +.Mount_Body_Unicorn-CottonCandyBlue { + background-image: url(spritesmith-main-8.png); + background-position: -1634px -318px; + width: 105px; + height: 105px; +} +.Mount_Body_Unicorn-CottonCandyPink { + background-image: url(spritesmith-main-8.png); + background-position: -1634px -424px; + width: 105px; + height: 105px; +} +.Mount_Body_Unicorn-Desert { + background-image: url(spritesmith-main-8.png); + background-position: -1634px -530px; + width: 105px; + height: 105px; +} +.Mount_Body_Unicorn-Golden { + background-image: url(spritesmith-main-8.png); + background-position: -1634px -636px; + width: 105px; + height: 105px; +} +.Mount_Body_Unicorn-Red { + background-image: url(spritesmith-main-8.png); + background-position: -1634px -742px; + width: 105px; + height: 105px; +} +.Mount_Body_Unicorn-Shade { + background-image: url(spritesmith-main-8.png); + background-position: -1634px -848px; + width: 105px; + height: 105px; +} +.Mount_Body_Unicorn-Skeleton { + background-image: url(spritesmith-main-8.png); + background-position: -892px -106px; + width: 105px; + height: 105px; +} +.Mount_Body_Unicorn-White { + background-image: url(spritesmith-main-8.png); + background-position: -892px -212px; + width: 105px; + height: 105px; +} +.Mount_Body_Unicorn-Zombie { + background-image: url(spritesmith-main-8.png); + background-position: -892px -318px; + width: 105px; + height: 105px; +} +.Mount_Body_Whale-Base { + background-image: url(spritesmith-main-8.png); + background-position: -892px -424px; + width: 105px; + height: 105px; +} +.Mount_Body_Whale-CottonCandyBlue { + background-image: url(spritesmith-main-8.png); + background-position: -892px -530px; + width: 105px; + height: 105px; +} +.Mount_Body_Whale-CottonCandyPink { + background-image: url(spritesmith-main-8.png); + background-position: -892px -636px; + width: 105px; + height: 105px; +} +.Mount_Body_Whale-Desert { + background-image: url(spritesmith-main-8.png); + background-position: 0px -795px; + width: 105px; + height: 105px; +} +.Mount_Body_Whale-Golden { + background-image: url(spritesmith-main-8.png); + background-position: -106px -795px; + width: 105px; + height: 105px; +} +.Mount_Body_Whale-Red { + background-image: url(spritesmith-main-8.png); + background-position: -212px -795px; + width: 105px; + height: 105px; +} +.Mount_Body_Whale-Shade { + background-image: url(spritesmith-main-8.png); + background-position: -318px -795px; + width: 105px; + height: 105px; +} +.Mount_Body_Whale-Skeleton { + background-image: url(spritesmith-main-8.png); + background-position: -424px -795px; + width: 105px; + height: 105px; +} +.Mount_Body_Whale-White { + background-image: url(spritesmith-main-8.png); + background-position: -530px -795px; + width: 105px; + height: 105px; +} +.Mount_Body_Whale-Zombie { + background-image: url(spritesmith-main-8.png); + background-position: -636px -795px; + width: 105px; + height: 105px; +} +.Mount_Body_Wolf-Base { + background-image: url(spritesmith-main-8.png); + background-position: -408px -136px; + width: 135px; + height: 135px; +} +.Mount_Body_Wolf-CottonCandyBlue { background-image: url(spritesmith-main-8.png); background-position: 0px 0px; width: 135px; height: 135px; } +.Mount_Body_Wolf-CottonCandyPink { + background-image: url(spritesmith-main-8.png); + background-position: 0px -408px; + width: 135px; + height: 135px; +} +.Mount_Body_Wolf-Desert { + background-image: url(spritesmith-main-8.png); + background-position: -136px -408px; + width: 135px; + height: 135px; +} +.Mount_Body_Wolf-Floral { + background-image: url(spritesmith-main-8.png); + background-position: -272px -408px; + width: 135px; + height: 135px; +} +.Mount_Body_Wolf-Golden { + background-image: url(spritesmith-main-8.png); + background-position: -408px -408px; + width: 135px; + height: 135px; +} +.Mount_Body_Wolf-Peppermint { + background-image: url(spritesmith-main-8.png); + background-position: -544px 0px; + width: 135px; + height: 135px; +} +.Mount_Body_Wolf-Red { + background-image: url(spritesmith-main-8.png); + background-position: -544px -136px; + width: 135px; + height: 135px; +} +.Mount_Body_Wolf-Shade { + background-image: url(spritesmith-main-8.png); + background-position: -544px -272px; + width: 135px; + height: 135px; +} +.Mount_Body_Wolf-Skeleton { + background-image: url(spritesmith-main-8.png); + background-position: -544px -408px; + width: 135px; + height: 135px; +} +.Mount_Body_Wolf-Spooky { + background-image: url(spritesmith-main-8.png); + background-position: 0px -544px; + width: 135px; + height: 135px; +} +.Mount_Body_Wolf-White { + background-image: url(spritesmith-main-8.png); + background-position: -136px 0px; + width: 135px; + height: 135px; +} +.Mount_Body_Wolf-Zombie { + background-image: url(spritesmith-main-8.png); + background-position: -272px -544px; + width: 135px; + height: 135px; +} +.Mount_Head_BearCub-Base { + background-image: url(spritesmith-main-8.png); + background-position: -318px -901px; + width: 105px; + height: 105px; +} +.Mount_Head_BearCub-CottonCandyBlue { + background-image: url(spritesmith-main-8.png); + background-position: -424px -901px; + width: 105px; + height: 105px; +} +.Mount_Head_BearCub-CottonCandyPink { + background-image: url(spritesmith-main-8.png); + background-position: -530px -901px; + width: 105px; + height: 105px; +} +.Mount_Head_BearCub-Desert { + background-image: url(spritesmith-main-8.png); + background-position: -636px -901px; + width: 105px; + height: 105px; +} +.Mount_Head_BearCub-Floral { + background-image: url(spritesmith-main-8.png); + background-position: -742px -901px; + width: 105px; + height: 105px; +} +.Mount_Head_BearCub-Golden { + background-image: url(spritesmith-main-8.png); + background-position: -848px -901px; + width: 105px; + height: 105px; +} +.Mount_Head_BearCub-Peppermint { + background-image: url(spritesmith-main-8.png); + background-position: -954px -901px; + width: 105px; + height: 105px; +} +.Mount_Head_BearCub-Polar { + background-image: url(spritesmith-main-8.png); + background-position: -1104px 0px; + width: 105px; + height: 105px; +} +.Mount_Head_BearCub-Red { + background-image: url(spritesmith-main-8.png); + background-position: -1104px -106px; + width: 105px; + height: 105px; +} +.Mount_Head_BearCub-Shade { + background-image: url(spritesmith-main-8.png); + background-position: -1104px -212px; + width: 105px; + height: 105px; +} +.Mount_Head_BearCub-Skeleton { + background-image: url(spritesmith-main-8.png); + background-position: -1104px -318px; + width: 105px; + height: 105px; +} +.Mount_Head_BearCub-Spooky { + background-image: url(spritesmith-main-8.png); + background-position: -1104px -424px; + width: 105px; + height: 105px; +} +.Mount_Head_BearCub-White { + background-image: url(spritesmith-main-8.png); + background-position: -1104px -530px; + width: 105px; + height: 105px; +} +.Mount_Head_BearCub-Zombie { + background-image: url(spritesmith-main-8.png); + background-position: -1104px -636px; + width: 105px; + height: 105px; +} +.Mount_Head_Bunny-Base { + background-image: url(spritesmith-main-8.png); + background-position: -1104px -742px; + width: 105px; + height: 105px; +} +.Mount_Head_Bunny-CottonCandyBlue { + background-image: url(spritesmith-main-8.png); + background-position: -1104px -848px; + width: 105px; + height: 105px; +} +.Mount_Head_Bunny-CottonCandyPink { + background-image: url(spritesmith-main-8.png); + background-position: 0px -1007px; + width: 105px; + height: 105px; +} +.Mount_Head_Bunny-Desert { + background-image: url(spritesmith-main-8.png); + background-position: -106px -1007px; + width: 105px; + height: 105px; +} +.Mount_Head_Bunny-Golden { + background-image: url(spritesmith-main-8.png); + background-position: -212px -1007px; + width: 105px; + height: 105px; +} +.Mount_Head_Bunny-Red { + background-image: url(spritesmith-main-8.png); + background-position: -318px -1007px; + width: 105px; + height: 105px; +} +.Mount_Head_Bunny-Shade { + background-image: url(spritesmith-main-8.png); + background-position: -424px -1007px; + width: 105px; + height: 105px; +} +.Mount_Head_Bunny-Skeleton { + background-image: url(spritesmith-main-8.png); + background-position: -530px -1007px; + width: 105px; + height: 105px; +} +.Mount_Head_Bunny-White { + background-image: url(spritesmith-main-8.png); + background-position: -636px -1007px; + width: 105px; + height: 105px; +} +.Mount_Head_Bunny-Zombie { + background-image: url(spritesmith-main-8.png); + background-position: -742px -1007px; + width: 105px; + height: 105px; +} +.Mount_Head_Cactus-Base { + background-image: url(spritesmith-main-8.png); + background-position: -848px -1007px; + width: 105px; + height: 105px; +} +.Mount_Head_Cactus-CottonCandyBlue { + background-image: url(spritesmith-main-8.png); + background-position: -954px -1007px; + width: 105px; + height: 105px; +} +.Mount_Head_Cactus-CottonCandyPink { + background-image: url(spritesmith-main-8.png); + background-position: -1060px -1007px; + width: 105px; + height: 105px; +} +.Mount_Head_Cactus-Desert { + background-image: url(spritesmith-main-8.png); + background-position: -1210px 0px; + width: 105px; + height: 105px; +} +.Mount_Head_Cactus-Floral { + background-image: url(spritesmith-main-8.png); + background-position: -1210px -106px; + width: 105px; + height: 105px; +} +.Mount_Head_Cactus-Golden { + background-image: url(spritesmith-main-8.png); + background-position: -1210px -212px; + width: 105px; + height: 105px; +} +.Mount_Head_Cactus-Peppermint { + background-image: url(spritesmith-main-8.png); + background-position: -1210px -318px; + width: 105px; + height: 105px; +} +.Mount_Head_Cactus-Red { + background-image: url(spritesmith-main-8.png); + background-position: -1210px -424px; + width: 105px; + height: 105px; +} +.Mount_Head_Cactus-Shade { + background-image: url(spritesmith-main-8.png); + background-position: -1210px -530px; + width: 105px; + height: 105px; +} +.Mount_Head_Cactus-Skeleton { + background-image: url(spritesmith-main-8.png); + background-position: -1210px -636px; + width: 105px; + height: 105px; +} +.Mount_Head_Cactus-Spooky { + background-image: url(spritesmith-main-8.png); + background-position: -1210px -742px; + width: 105px; + height: 105px; +} +.Mount_Head_Cactus-White { + background-image: url(spritesmith-main-8.png); + background-position: -1210px -848px; + width: 105px; + height: 105px; +} +.Mount_Head_Cactus-Zombie { + background-image: url(spritesmith-main-8.png); + background-position: -1210px -954px; + width: 105px; + height: 105px; +} +.Mount_Head_Cheetah-Base { + background-image: url(spritesmith-main-8.png); + background-position: 0px -1113px; + width: 105px; + height: 105px; +} +.Mount_Head_Cheetah-CottonCandyBlue { + background-image: url(spritesmith-main-8.png); + background-position: -106px -1113px; + width: 105px; + height: 105px; +} +.Mount_Head_Cheetah-CottonCandyPink { + background-image: url(spritesmith-main-8.png); + background-position: -212px -1113px; + width: 105px; + height: 105px; +} +.Mount_Head_Cheetah-Desert { + background-image: url(spritesmith-main-8.png); + background-position: -318px -1113px; + width: 105px; + height: 105px; +} +.Mount_Head_Cheetah-Golden { + background-image: url(spritesmith-main-8.png); + background-position: -424px -1113px; + width: 105px; + height: 105px; +} +.Mount_Head_Cheetah-Red { + background-image: url(spritesmith-main-8.png); + background-position: -530px -1113px; + width: 105px; + height: 105px; +} +.Mount_Head_Cheetah-Shade { + background-image: url(spritesmith-main-8.png); + background-position: -636px -1113px; + width: 105px; + height: 105px; +} +.Mount_Head_Cheetah-Skeleton { + background-image: url(spritesmith-main-8.png); + background-position: -742px -1113px; + width: 105px; + height: 105px; +} +.Mount_Head_Cheetah-White { + background-image: url(spritesmith-main-8.png); + background-position: -848px -1113px; + width: 105px; + height: 105px; +} +.Mount_Head_Cheetah-Zombie { + background-image: url(spritesmith-main-8.png); + background-position: -892px 0px; + width: 105px; + height: 105px; +} +.Mount_Head_Cuttlefish-Base { + background-image: url(spritesmith-main-8.png); + background-position: -514px -544px; + width: 105px; + height: 114px; +} +.Mount_Head_Cuttlefish-CottonCandyBlue { + background-image: url(spritesmith-main-8.png); + background-position: -680px 0px; + width: 105px; + height: 114px; +} +.Mount_Head_Cuttlefish-CottonCandyPink { + background-image: url(spritesmith-main-8.png); + background-position: -680px -115px; + width: 105px; + height: 114px; +} +.Mount_Head_Cuttlefish-Desert { + background-image: url(spritesmith-main-8.png); + background-position: -680px -230px; + width: 105px; + height: 114px; +} +.Mount_Head_Cuttlefish-Golden { + background-image: url(spritesmith-main-8.png); + background-position: -680px -345px; + width: 105px; + height: 114px; +} +.Mount_Head_Cuttlefish-Red { + background-image: url(spritesmith-main-8.png); + background-position: -680px -460px; + width: 105px; + height: 114px; +} +.Mount_Head_Cuttlefish-Shade { + background-image: url(spritesmith-main-8.png); + background-position: -786px 0px; + width: 105px; + height: 114px; +} +.Mount_Head_Cuttlefish-Skeleton { + background-image: url(spritesmith-main-8.png); + background-position: -786px -115px; + width: 105px; + height: 114px; +} +.Mount_Head_Cuttlefish-White { + background-image: url(spritesmith-main-8.png); + background-position: -786px -230px; + width: 105px; + height: 114px; +} +.Mount_Head_Cuttlefish-Zombie { + background-image: url(spritesmith-main-8.png); + background-position: -786px -345px; + width: 105px; + height: 114px; +} +.Mount_Head_Deer-Base { + background-image: url(spritesmith-main-8.png); + background-position: -1316px -848px; + width: 105px; + height: 105px; +} +.Mount_Head_Deer-CottonCandyBlue { + background-image: url(spritesmith-main-8.png); + background-position: -1316px -954px; + width: 105px; + height: 105px; +} +.Mount_Head_Deer-CottonCandyPink { + background-image: url(spritesmith-main-8.png); + background-position: -1316px -1060px; + width: 105px; + height: 105px; +} +.Mount_Head_Deer-Desert { + background-image: url(spritesmith-main-8.png); + background-position: 0px -1219px; + width: 105px; + height: 105px; +} +.Mount_Head_Deer-Golden { + background-image: url(spritesmith-main-8.png); + background-position: -106px -1219px; + width: 105px; + height: 105px; +} +.Mount_Head_Deer-Red { + background-image: url(spritesmith-main-8.png); + background-position: -212px -1219px; + width: 105px; + height: 105px; +} +.Mount_Head_Deer-Shade { + background-image: url(spritesmith-main-8.png); + background-position: -318px -1219px; + width: 105px; + height: 105px; +} +.Mount_Head_Deer-Skeleton { + background-image: url(spritesmith-main-8.png); + background-position: -424px -1219px; + width: 105px; + height: 105px; +} +.Mount_Head_Deer-White { + background-image: url(spritesmith-main-8.png); + background-position: -530px -1219px; + width: 105px; + height: 105px; +} +.Mount_Head_Deer-Zombie { + background-image: url(spritesmith-main-8.png); + background-position: -636px -1219px; + width: 105px; + height: 105px; +} +.Mount_Head_Dragon-Base { + background-image: url(spritesmith-main-8.png); + background-position: -742px -1219px; + width: 105px; + height: 105px; +} +.Mount_Head_Dragon-CottonCandyBlue { + background-image: url(spritesmith-main-8.png); + background-position: -848px -1219px; + width: 105px; + height: 105px; +} +.Mount_Head_Dragon-CottonCandyPink { + background-image: url(spritesmith-main-8.png); + background-position: -954px -1219px; + width: 105px; + height: 105px; +} +.Mount_Head_Dragon-Desert { + background-image: url(spritesmith-main-8.png); + background-position: -1060px -1219px; + width: 105px; + height: 105px; +} +.Mount_Head_Dragon-Floral { + background-image: url(spritesmith-main-8.png); + background-position: -1166px -1219px; + width: 105px; + height: 105px; +} +.Mount_Head_Dragon-Golden { + background-image: url(spritesmith-main-8.png); + background-position: -1272px -1219px; + width: 105px; + height: 105px; +} +.Mount_Head_Dragon-Peppermint { + background-image: url(spritesmith-main-8.png); + background-position: -1422px 0px; + width: 105px; + height: 105px; +} +.Mount_Head_Dragon-Red { + background-image: url(spritesmith-main-8.png); + background-position: -1422px -106px; + width: 105px; + height: 105px; +} +.Mount_Head_Dragon-Shade { + background-image: url(spritesmith-main-8.png); + background-position: -1422px -212px; + width: 105px; + height: 105px; +} +.Mount_Head_Dragon-Skeleton { + background-image: url(spritesmith-main-8.png); + background-position: -1422px -318px; + width: 105px; + height: 105px; +} +.Mount_Head_Dragon-Spooky { + background-image: url(spritesmith-main-8.png); + background-position: -1422px -424px; + width: 105px; + height: 105px; +} +.Mount_Head_Dragon-White { + background-image: url(spritesmith-main-8.png); + background-position: -1422px -530px; + width: 105px; + height: 105px; +} +.Mount_Head_Dragon-Zombie { + background-image: url(spritesmith-main-8.png); + background-position: -1422px -636px; + width: 105px; + height: 105px; +} +.Mount_Head_Egg-Base { + background-image: url(spritesmith-main-8.png); + background-position: -1422px -742px; + width: 105px; + height: 105px; +} +.Mount_Head_Egg-CottonCandyBlue { + background-image: url(spritesmith-main-8.png); + background-position: -1422px -848px; + width: 105px; + height: 105px; +} +.Mount_Head_Egg-CottonCandyPink { + background-image: url(spritesmith-main-8.png); + background-position: -1422px -954px; + width: 105px; + height: 105px; +} +.Mount_Head_Egg-Desert { + background-image: url(spritesmith-main-8.png); + background-position: -1422px -1060px; + width: 105px; + height: 105px; +} +.Mount_Head_Egg-Golden { + background-image: url(spritesmith-main-8.png); + background-position: -1422px -1166px; + width: 105px; + height: 105px; +} +.Mount_Head_Egg-Red { + background-image: url(spritesmith-main-8.png); + background-position: 0px -1325px; + width: 105px; + height: 105px; +} +.Mount_Head_Egg-Shade { + background-image: url(spritesmith-main-8.png); + background-position: -106px -1325px; + width: 105px; + height: 105px; +} +.Mount_Head_Egg-Skeleton { + background-image: url(spritesmith-main-8.png); + background-position: -212px -1325px; + width: 105px; + height: 105px; +} +.Mount_Head_Egg-White { + background-image: url(spritesmith-main-8.png); + background-position: -318px -1325px; + width: 105px; + height: 105px; +} +.Mount_Head_Egg-Zombie { + background-image: url(spritesmith-main-8.png); + background-position: -424px -1325px; + width: 105px; + height: 105px; +} +.Mount_Head_Falcon-Base { + background-image: url(spritesmith-main-8.png); + background-position: -530px -1325px; + width: 105px; + height: 105px; +} +.Mount_Head_Falcon-CottonCandyBlue { + background-image: url(spritesmith-main-8.png); + background-position: -636px -1325px; + width: 105px; + height: 105px; +} +.Mount_Head_Falcon-CottonCandyPink { + background-image: url(spritesmith-main-8.png); + background-position: -742px -1325px; + width: 105px; + height: 105px; +} +.Mount_Head_Falcon-Desert { + background-image: url(spritesmith-main-8.png); + background-position: -848px -1325px; + width: 105px; + height: 105px; +} +.Mount_Head_Falcon-Golden { + background-image: url(spritesmith-main-8.png); + background-position: -954px -1325px; + width: 105px; + height: 105px; +} +.Mount_Head_Falcon-Red { + background-image: url(spritesmith-main-8.png); + background-position: -1060px -1325px; + width: 105px; + height: 105px; +} +.Mount_Head_Falcon-Shade { + background-image: url(spritesmith-main-8.png); + background-position: -1166px -1325px; + width: 105px; + height: 105px; +} +.Mount_Head_Falcon-Skeleton { + background-image: url(spritesmith-main-8.png); + background-position: -1272px -1325px; + width: 105px; + height: 105px; +} +.Mount_Head_Falcon-White { + background-image: url(spritesmith-main-8.png); + background-position: -1378px -1325px; + width: 105px; + height: 105px; +} +.Mount_Head_Falcon-Zombie { + background-image: url(spritesmith-main-8.png); + background-position: -1528px 0px; + width: 105px; + height: 105px; +} +.Mount_Head_FlyingPig-Base { + background-image: url(spritesmith-main-8.png); + background-position: -1528px -106px; + width: 105px; + height: 105px; +} +.Mount_Head_FlyingPig-CottonCandyBlue { + background-image: url(spritesmith-main-8.png); + background-position: -1528px -212px; + width: 105px; + height: 105px; +} +.Mount_Head_FlyingPig-CottonCandyPink { + background-image: url(spritesmith-main-8.png); + background-position: -1528px -318px; + width: 105px; + height: 105px; +} +.Mount_Head_FlyingPig-Desert { + background-image: url(spritesmith-main-8.png); + background-position: -1528px -424px; + width: 105px; + height: 105px; +} +.Mount_Head_FlyingPig-Floral { + background-image: url(spritesmith-main-8.png); + background-position: -1528px -530px; + width: 105px; + height: 105px; +} +.Mount_Head_FlyingPig-Golden { + background-image: url(spritesmith-main-8.png); + background-position: -1528px -636px; + width: 105px; + height: 105px; +} +.Mount_Head_FlyingPig-Peppermint { + background-image: url(spritesmith-main-8.png); + background-position: -1528px -742px; + width: 105px; + height: 105px; +} +.Mount_Head_FlyingPig-Red { + background-image: url(spritesmith-main-8.png); + background-position: -1528px -848px; + width: 105px; + height: 105px; +} +.Mount_Head_FlyingPig-Shade { + background-image: url(spritesmith-main-8.png); + background-position: -1528px -954px; + width: 105px; + height: 105px; +} +.Mount_Head_FlyingPig-Skeleton { + background-image: url(spritesmith-main-8.png); + background-position: -1528px -1060px; + width: 105px; + height: 105px; +} +.Mount_Head_FlyingPig-Spooky { + background-image: url(spritesmith-main-8.png); + background-position: -1528px -1166px; + width: 105px; + height: 105px; +} +.Mount_Head_FlyingPig-White { + background-image: url(spritesmith-main-8.png); + background-position: -1528px -1272px; + width: 105px; + height: 105px; +} +.Mount_Head_FlyingPig-Zombie { + background-image: url(spritesmith-main-8.png); + background-position: 0px -1431px; + width: 105px; + height: 105px; +} +.Mount_Head_Fox-Base { + background-image: url(spritesmith-main-8.png); + background-position: -106px -1431px; + width: 105px; + height: 105px; +} +.Mount_Head_Fox-CottonCandyBlue { + background-image: url(spritesmith-main-8.png); + background-position: -212px -1431px; + width: 105px; + height: 105px; +} +.Mount_Head_Fox-CottonCandyPink { + background-image: url(spritesmith-main-8.png); + background-position: -318px -1431px; + width: 105px; + height: 105px; +} +.Mount_Head_Fox-Desert { + background-image: url(spritesmith-main-8.png); + background-position: -424px -1431px; + width: 105px; + height: 105px; +} +.Mount_Head_Fox-Floral { + background-image: url(spritesmith-main-8.png); + background-position: -530px -1431px; + width: 105px; + height: 105px; +} +.Mount_Head_Fox-Golden { + background-image: url(spritesmith-main-8.png); + background-position: -636px -1431px; + width: 105px; + height: 105px; +} +.Mount_Head_Fox-Peppermint { + background-image: url(spritesmith-main-8.png); + background-position: -742px -1431px; + width: 105px; + height: 105px; +} +.Mount_Head_Fox-Red { + background-image: url(spritesmith-main-8.png); + background-position: -848px -1431px; + width: 105px; + height: 105px; +} +.Mount_Head_Fox-Shade { + background-image: url(spritesmith-main-8.png); + background-position: -954px -1431px; + width: 105px; + height: 105px; +} +.Mount_Head_Fox-Skeleton { + background-image: url(spritesmith-main-8.png); + background-position: -1060px -1431px; + width: 105px; + height: 105px; +} +.Mount_Head_Fox-Spooky { + background-image: url(spritesmith-main-8.png); + background-position: -1166px -1431px; + width: 105px; + height: 105px; +} +.Mount_Head_Fox-White { + background-image: url(spritesmith-main-8.png); + background-position: -1272px -1431px; + width: 105px; + height: 105px; +} +.Mount_Head_Fox-Zombie { + background-image: url(spritesmith-main-8.png); + background-position: -1378px -1431px; + width: 105px; + height: 105px; +} +.Mount_Head_Frog-Base { + background-image: url(spritesmith-main-8.png); + background-position: -786px -460px; + width: 105px; + height: 114px; +} +.Mount_Head_Frog-CottonCandyBlue { + background-image: url(spritesmith-main-8.png); + background-position: 0px -680px; + width: 105px; + height: 114px; +} +.Mount_Head_Frog-CottonCandyPink { + background-image: url(spritesmith-main-8.png); + background-position: -106px -680px; + width: 105px; + height: 114px; +} +.Mount_Head_Frog-Desert { + background-image: url(spritesmith-main-8.png); + background-position: -212px -680px; + width: 105px; + height: 114px; +} +.Mount_Head_Frog-Golden { + background-image: url(spritesmith-main-8.png); + background-position: -318px -680px; + width: 105px; + height: 114px; +} +.Mount_Head_Frog-Red { + background-image: url(spritesmith-main-8.png); + background-position: -424px -680px; + width: 105px; + height: 114px; +} +.Mount_Head_Frog-Shade { + background-image: url(spritesmith-main-8.png); + background-position: -530px -680px; + width: 105px; + height: 114px; +} +.Mount_Head_Frog-Skeleton { + background-image: url(spritesmith-main-8.png); + background-position: -636px -680px; + width: 105px; + height: 114px; +} +.Mount_Head_Frog-White { + background-image: url(spritesmith-main-8.png); + background-position: -742px -680px; + width: 105px; + height: 114px; +} +.Mount_Head_Frog-Zombie { + background-image: url(spritesmith-main-8.png); + background-position: -408px -544px; + width: 105px; + height: 114px; +} +.Mount_Head_Gryphon-Base { + background-image: url(spritesmith-main-8.png); + background-position: -1634px -954px; + width: 105px; + height: 105px; +} +.Mount_Head_Gryphon-CottonCandyBlue { + background-image: url(spritesmith-main-8.png); + background-position: -1634px -1060px; + width: 105px; + height: 105px; +} +.Mount_Head_Gryphon-CottonCandyPink { + background-image: url(spritesmith-main-8.png); + background-position: -1634px -1166px; + width: 105px; + height: 105px; +} +.Mount_Head_Gryphon-Desert { + background-image: url(spritesmith-main-8.png); + background-position: -1634px -1272px; + width: 105px; + height: 105px; +} +.Mount_Head_Gryphon-Golden { + background-image: url(spritesmith-main-8.png); + background-position: -1634px -1378px; + width: 105px; + height: 105px; +} +.Mount_Head_Gryphon-Red { + background-image: url(spritesmith-main-8.png); + background-position: 0px -1537px; + width: 105px; + height: 105px; +} +.Mount_Head_Gryphon-RoyalPurple { + background-image: url(spritesmith-main-8.png); + background-position: -106px -1537px; + width: 105px; + height: 105px; +} +.Mount_Head_Gryphon-Shade { + background-image: url(spritesmith-main-8.png); + background-position: -212px -1537px; + width: 105px; + height: 105px; +} +.Mount_Head_Gryphon-Skeleton { + background-image: url(spritesmith-main-8.png); + background-position: -318px -1537px; + width: 105px; + height: 105px; +} +.Mount_Head_Gryphon-White { + background-image: url(spritesmith-main-8.png); + background-position: -424px -1537px; + width: 105px; + height: 105px; +} +.Mount_Head_Gryphon-Zombie { + background-image: url(spritesmith-main-8.png); + background-position: -530px -1537px; + width: 105px; + height: 105px; +} +.Mount_Head_Hedgehog-Base { + background-image: url(spritesmith-main-8.png); + background-position: -636px -1537px; + width: 105px; + height: 105px; +} +.Mount_Head_Hedgehog-CottonCandyBlue { + background-image: url(spritesmith-main-8.png); + background-position: -742px -1537px; + width: 105px; + height: 105px; +} +.Mount_Head_Hedgehog-CottonCandyPink { + background-image: url(spritesmith-main-8.png); + background-position: -848px -1537px; + width: 105px; + height: 105px; +} +.Mount_Head_Hedgehog-Desert { + background-image: url(spritesmith-main-8.png); + background-position: -954px -1537px; + width: 105px; + height: 105px; +} +.Mount_Head_Hedgehog-Golden { + background-image: url(spritesmith-main-8.png); + background-position: -1060px -1537px; + width: 105px; + height: 105px; +} +.Mount_Head_Hedgehog-Red { + background-image: url(spritesmith-main-8.png); + background-position: -1166px -1537px; + width: 105px; + height: 105px; +} +.Mount_Head_Hedgehog-Shade { + background-image: url(spritesmith-main-8.png); + background-position: -1272px -1537px; + width: 105px; + height: 105px; +} +.Mount_Head_Hedgehog-Skeleton { + background-image: url(spritesmith-main-8.png); + background-position: -1378px -1537px; + width: 105px; + height: 105px; +} +.Mount_Head_Hedgehog-White { + background-image: url(spritesmith-main-8.png); + background-position: -1484px -1537px; + width: 105px; + height: 105px; +} +.Mount_Head_Hedgehog-Zombie { + background-image: url(spritesmith-main-8.png); + background-position: -1590px -1537px; + width: 105px; + height: 105px; +} +.Mount_Head_Horse-Base { + background-image: url(spritesmith-main-8.png); + background-position: -1740px 0px; + width: 105px; + height: 105px; +} +.Mount_Head_Horse-CottonCandyBlue { + background-image: url(spritesmith-main-8.png); + background-position: -1740px -106px; + width: 105px; + height: 105px; +} +.Mount_Head_Horse-CottonCandyPink { + background-image: url(spritesmith-main-8.png); + background-position: -1740px -212px; + width: 105px; + height: 105px; +} +.Mount_Head_Horse-Desert { + background-image: url(spritesmith-main-8.png); + background-position: -1740px -318px; + width: 105px; + height: 105px; +} +.Mount_Head_Horse-Golden { + background-image: url(spritesmith-main-8.png); + background-position: -1740px -424px; + width: 105px; + height: 105px; +} diff --git a/common/dist/sprites/spritesmith-main-8.png b/common/dist/sprites/spritesmith-main-8.png index c2a820189a..5d46920ded 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 8bc09836d3..e0220d0779 100644 --- a/common/dist/sprites/spritesmith-main-9.css +++ b/common/dist/sprites/spritesmith-main-9.css @@ -1,402 +1,1182 @@ -.Mount_Head_Sabretooth-CottonCandyPink { +.Mount_Head_Horse-Red { background-image: url(spritesmith-main-9.png); - background-position: -136px 0px; - width: 135px; - height: 135px; + background-position: -212px -1528px; + width: 105px; + height: 105px; } -.Mount_Head_Sabretooth-Desert { +.Mount_Head_Horse-Shade { background-image: url(spritesmith-main-9.png); - background-position: -136px -272px; - width: 135px; - height: 135px; + background-position: -1210px -530px; + width: 105px; + height: 105px; } -.Mount_Head_Sabretooth-Golden { +.Mount_Head_Horse-Skeleton { + background-image: url(spritesmith-main-9.png); + background-position: -636px -1528px; + width: 105px; + height: 105px; +} +.Mount_Head_Horse-White { + background-image: url(spritesmith-main-9.png); + background-position: -742px -1528px; + width: 105px; + height: 105px; +} +.Mount_Head_Horse-Zombie { + background-image: url(spritesmith-main-9.png); + background-position: -848px -1528px; + width: 105px; + height: 105px; +} +.Mount_Head_JackOLantern-Base { + background-image: url(spritesmith-main-9.png); + background-position: -212px -1634px; + width: 90px; + height: 105px; +} +.Mount_Head_LionCub-Base { + background-image: url(spritesmith-main-9.png); + background-position: -1210px -848px; + width: 105px; + height: 105px; +} +.Mount_Head_LionCub-CottonCandyBlue { + background-image: url(spritesmith-main-9.png); + background-position: -1210px -954px; + width: 105px; + height: 105px; +} +.Mount_Head_LionCub-CottonCandyPink { + background-image: url(spritesmith-main-9.png); + background-position: -1210px -1060px; + width: 105px; + height: 105px; +} +.Mount_Head_LionCub-Desert { + background-image: url(spritesmith-main-9.png); + background-position: 0px -1210px; + width: 105px; + height: 105px; +} +.Mount_Head_LionCub-Ethereal { + background-image: url(spritesmith-main-9.png); + background-position: -106px -1210px; + width: 105px; + height: 105px; +} +.Mount_Head_LionCub-Floral { + background-image: url(spritesmith-main-9.png); + background-position: -212px -1210px; + width: 105px; + height: 105px; +} +.Mount_Head_LionCub-Golden { + background-image: url(spritesmith-main-9.png); + background-position: -318px -1210px; + width: 105px; + height: 105px; +} +.Mount_Head_LionCub-Peppermint { + background-image: url(spritesmith-main-9.png); + background-position: -424px -1210px; + width: 105px; + height: 105px; +} +.Mount_Head_LionCub-Red { + background-image: url(spritesmith-main-9.png); + background-position: -530px -1210px; + width: 105px; + height: 105px; +} +.Mount_Head_LionCub-Shade { + background-image: url(spritesmith-main-9.png); + background-position: -106px -1528px; + width: 105px; + height: 105px; +} +.Mount_Head_LionCub-Skeleton { + background-image: url(spritesmith-main-9.png); + background-position: -348px -544px; + width: 105px; + height: 110px; +} +.Mount_Head_LionCub-Spooky { + background-image: url(spritesmith-main-9.png); + background-position: -318px -1528px; + width: 105px; + height: 105px; +} +.Mount_Head_LionCub-White { + background-image: url(spritesmith-main-9.png); + background-position: -424px -1528px; + width: 105px; + height: 105px; +} +.Mount_Head_LionCub-Zombie { + background-image: url(spritesmith-main-9.png); + background-position: -530px -1528px; + width: 105px; + height: 105px; +} +.Mount_Head_MagicalBee-Base { + background-image: url(spritesmith-main-9.png); + background-position: -242px -544px; + width: 105px; + height: 114px; +} +.Mount_Head_Mammoth-Base { + background-image: url(spritesmith-main-9.png); + background-position: -136px -544px; + width: 105px; + height: 123px; +} +.Mount_Head_MantisShrimp-Base { + background-image: url(spritesmith-main-9.png); + background-position: -454px -544px; + width: 108px; + height: 105px; +} +.Mount_Head_Monkey-Base { + background-image: url(spritesmith-main-9.png); + background-position: -954px -1528px; + width: 105px; + height: 105px; +} +.Mount_Head_Monkey-CottonCandyBlue { + background-image: url(spritesmith-main-9.png); + background-position: -1060px -1528px; + width: 105px; + height: 105px; +} +.Mount_Head_Monkey-CottonCandyPink { + background-image: url(spritesmith-main-9.png); + background-position: -563px -544px; + width: 105px; + height: 105px; +} +.Mount_Head_Monkey-Desert { background-image: url(spritesmith-main-9.png); background-position: -680px 0px; - width: 135px; - height: 135px; + width: 105px; + height: 105px; } -.Mount_Head_Sabretooth-Red { +.Mount_Head_Monkey-Golden { background-image: url(spritesmith-main-9.png); - background-position: 0px -136px; - width: 135px; - height: 135px; + background-position: -680px -106px; + width: 105px; + height: 105px; } -.Mount_Head_Sabretooth-Shade { +.Mount_Head_Monkey-Red { background-image: url(spritesmith-main-9.png); - background-position: -136px -136px; - width: 135px; - height: 135px; + background-position: -680px -212px; + width: 105px; + height: 105px; } -.Mount_Head_Sabretooth-Skeleton { +.Mount_Head_Monkey-Shade { background-image: url(spritesmith-main-9.png); - background-position: -272px 0px; - width: 135px; - height: 135px; + background-position: -680px -318px; + width: 105px; + height: 105px; } -.Mount_Head_Sabretooth-White { +.Mount_Head_Monkey-Skeleton { + background-image: url(spritesmith-main-9.png); + background-position: -680px -424px; + width: 105px; + height: 105px; +} +.Mount_Head_Monkey-White { + background-image: url(spritesmith-main-9.png); + background-position: -680px -530px; + width: 105px; + height: 105px; +} +.Mount_Head_Monkey-Zombie { + background-image: url(spritesmith-main-9.png); + background-position: 0px -680px; + width: 105px; + height: 105px; +} +.Mount_Head_Octopus-Base { + background-image: url(spritesmith-main-9.png); + background-position: -106px -680px; + width: 105px; + height: 105px; +} +.Mount_Head_Octopus-CottonCandyBlue { + background-image: url(spritesmith-main-9.png); + background-position: -212px -680px; + width: 105px; + height: 105px; +} +.Mount_Head_Octopus-CottonCandyPink { + background-image: url(spritesmith-main-9.png); + background-position: -318px -680px; + width: 105px; + height: 105px; +} +.Mount_Head_Octopus-Desert { + background-image: url(spritesmith-main-9.png); + background-position: -424px -680px; + width: 105px; + height: 105px; +} +.Mount_Head_Octopus-Golden { + background-image: url(spritesmith-main-9.png); + background-position: -530px -680px; + width: 105px; + height: 105px; +} +.Mount_Head_Octopus-Red { + background-image: url(spritesmith-main-9.png); + background-position: -636px -680px; + width: 105px; + height: 105px; +} +.Mount_Head_Octopus-Shade { + background-image: url(spritesmith-main-9.png); + background-position: -786px 0px; + width: 105px; + height: 105px; +} +.Mount_Head_Octopus-Skeleton { + background-image: url(spritesmith-main-9.png); + background-position: -786px -106px; + width: 105px; + height: 105px; +} +.Mount_Head_Octopus-White { + background-image: url(spritesmith-main-9.png); + background-position: -786px -212px; + width: 105px; + height: 105px; +} +.Mount_Head_Octopus-Zombie { + background-image: url(spritesmith-main-9.png); + background-position: -786px -318px; + width: 105px; + height: 105px; +} +.Mount_Head_Orca-Base { + background-image: url(spritesmith-main-9.png); + background-position: -786px -424px; + width: 105px; + height: 105px; +} +.Mount_Head_Owl-Base { + background-image: url(spritesmith-main-9.png); + background-position: -786px -530px; + width: 105px; + height: 105px; +} +.Mount_Head_Owl-CottonCandyBlue { + background-image: url(spritesmith-main-9.png); + background-position: -786px -636px; + width: 105px; + height: 105px; +} +.Mount_Head_Owl-CottonCandyPink { + background-image: url(spritesmith-main-9.png); + background-position: 0px -786px; + width: 105px; + height: 105px; +} +.Mount_Head_Owl-Desert { + background-image: url(spritesmith-main-9.png); + background-position: -106px -786px; + width: 105px; + height: 105px; +} +.Mount_Head_Owl-Golden { + background-image: url(spritesmith-main-9.png); + background-position: -212px -786px; + width: 105px; + height: 105px; +} +.Mount_Head_Owl-Red { + background-image: url(spritesmith-main-9.png); + background-position: -318px -786px; + width: 105px; + height: 105px; +} +.Mount_Head_Owl-Shade { + background-image: url(spritesmith-main-9.png); + background-position: -424px -786px; + width: 105px; + height: 105px; +} +.Mount_Head_Owl-Skeleton { + background-image: url(spritesmith-main-9.png); + background-position: -530px -786px; + width: 105px; + height: 105px; +} +.Mount_Head_Owl-White { + background-image: url(spritesmith-main-9.png); + background-position: -636px -786px; + width: 105px; + height: 105px; +} +.Mount_Head_Owl-Zombie { + background-image: url(spritesmith-main-9.png); + background-position: -742px -786px; + width: 105px; + height: 105px; +} +.Mount_Head_PandaCub-Base { + background-image: url(spritesmith-main-9.png); + background-position: -892px 0px; + width: 105px; + height: 105px; +} +.Mount_Head_PandaCub-CottonCandyBlue { + background-image: url(spritesmith-main-9.png); + background-position: -892px -106px; + width: 105px; + height: 105px; +} +.Mount_Head_PandaCub-CottonCandyPink { + background-image: url(spritesmith-main-9.png); + background-position: -892px -212px; + width: 105px; + height: 105px; +} +.Mount_Head_PandaCub-Desert { + background-image: url(spritesmith-main-9.png); + background-position: -892px -318px; + width: 105px; + height: 105px; +} +.Mount_Head_PandaCub-Floral { + background-image: url(spritesmith-main-9.png); + background-position: -892px -424px; + width: 105px; + height: 105px; +} +.Mount_Head_PandaCub-Golden { + background-image: url(spritesmith-main-9.png); + background-position: -892px -530px; + width: 105px; + height: 105px; +} +.Mount_Head_PandaCub-Peppermint { + background-image: url(spritesmith-main-9.png); + background-position: -892px -636px; + width: 105px; + height: 105px; +} +.Mount_Head_PandaCub-Red { + background-image: url(spritesmith-main-9.png); + background-position: -892px -742px; + width: 105px; + height: 105px; +} +.Mount_Head_PandaCub-Shade { + background-image: url(spritesmith-main-9.png); + background-position: 0px -892px; + width: 105px; + height: 105px; +} +.Mount_Head_PandaCub-Skeleton { + background-image: url(spritesmith-main-9.png); + background-position: -106px -892px; + width: 105px; + height: 105px; +} +.Mount_Head_PandaCub-Spooky { + background-image: url(spritesmith-main-9.png); + background-position: -212px -892px; + width: 105px; + height: 105px; +} +.Mount_Head_PandaCub-White { + background-image: url(spritesmith-main-9.png); + background-position: -318px -892px; + width: 105px; + height: 105px; +} +.Mount_Head_PandaCub-Zombie { + background-image: url(spritesmith-main-9.png); + background-position: -424px -892px; + width: 105px; + height: 105px; +} +.Mount_Head_Parrot-Base { + background-image: url(spritesmith-main-9.png); + background-position: -530px -892px; + width: 105px; + height: 105px; +} +.Mount_Head_Parrot-CottonCandyBlue { + background-image: url(spritesmith-main-9.png); + background-position: -636px -892px; + width: 105px; + height: 105px; +} +.Mount_Head_Parrot-CottonCandyPink { + background-image: url(spritesmith-main-9.png); + background-position: -742px -892px; + width: 105px; + height: 105px; +} +.Mount_Head_Parrot-Desert { + background-image: url(spritesmith-main-9.png); + background-position: -848px -892px; + width: 105px; + height: 105px; +} +.Mount_Head_Parrot-Golden { + background-image: url(spritesmith-main-9.png); + background-position: -998px 0px; + width: 105px; + height: 105px; +} +.Mount_Head_Parrot-Red { + background-image: url(spritesmith-main-9.png); + background-position: -998px -106px; + width: 105px; + height: 105px; +} +.Mount_Head_Parrot-Shade { + background-image: url(spritesmith-main-9.png); + background-position: -998px -212px; + width: 105px; + height: 105px; +} +.Mount_Head_Parrot-Skeleton { + background-image: url(spritesmith-main-9.png); + background-position: -998px -318px; + width: 105px; + height: 105px; +} +.Mount_Head_Parrot-White { + background-image: url(spritesmith-main-9.png); + background-position: -998px -424px; + width: 105px; + height: 105px; +} +.Mount_Head_Parrot-Zombie { + background-image: url(spritesmith-main-9.png); + background-position: -998px -530px; + width: 105px; + height: 105px; +} +.Mount_Head_Penguin-Base { + background-image: url(spritesmith-main-9.png); + background-position: -998px -636px; + width: 105px; + height: 105px; +} +.Mount_Head_Penguin-CottonCandyBlue { + background-image: url(spritesmith-main-9.png); + background-position: -998px -742px; + width: 105px; + height: 105px; +} +.Mount_Head_Penguin-CottonCandyPink { + background-image: url(spritesmith-main-9.png); + background-position: -998px -848px; + width: 105px; + height: 105px; +} +.Mount_Head_Penguin-Desert { + background-image: url(spritesmith-main-9.png); + background-position: 0px -998px; + width: 105px; + height: 105px; +} +.Mount_Head_Penguin-Golden { + background-image: url(spritesmith-main-9.png); + background-position: -106px -998px; + width: 105px; + height: 105px; +} +.Mount_Head_Penguin-Red { + background-image: url(spritesmith-main-9.png); + background-position: -212px -998px; + width: 105px; + height: 105px; +} +.Mount_Head_Penguin-Shade { + background-image: url(spritesmith-main-9.png); + background-position: -318px -998px; + width: 105px; + height: 105px; +} +.Mount_Head_Penguin-Skeleton { + background-image: url(spritesmith-main-9.png); + background-position: -424px -998px; + width: 105px; + height: 105px; +} +.Mount_Head_Penguin-White { + background-image: url(spritesmith-main-9.png); + background-position: -530px -998px; + width: 105px; + height: 105px; +} +.Mount_Head_Penguin-Zombie { + background-image: url(spritesmith-main-9.png); + background-position: -636px -998px; + width: 105px; + height: 105px; +} +.Mount_Head_Phoenix-Base { + background-image: url(spritesmith-main-9.png); + background-position: -742px -998px; + width: 105px; + height: 105px; +} +.Mount_Head_Rat-Base { + background-image: url(spritesmith-main-9.png); + background-position: -848px -998px; + width: 105px; + height: 105px; +} +.Mount_Head_Rat-CottonCandyBlue { + background-image: url(spritesmith-main-9.png); + background-position: -954px -998px; + width: 105px; + height: 105px; +} +.Mount_Head_Rat-CottonCandyPink { + background-image: url(spritesmith-main-9.png); + background-position: -1104px 0px; + width: 105px; + height: 105px; +} +.Mount_Head_Rat-Desert { + background-image: url(spritesmith-main-9.png); + background-position: -1104px -106px; + width: 105px; + height: 105px; +} +.Mount_Head_Rat-Golden { + background-image: url(spritesmith-main-9.png); + background-position: -1104px -212px; + width: 105px; + height: 105px; +} +.Mount_Head_Rat-Red { + background-image: url(spritesmith-main-9.png); + background-position: -1104px -318px; + width: 105px; + height: 105px; +} +.Mount_Head_Rat-Shade { + background-image: url(spritesmith-main-9.png); + background-position: -1104px -424px; + width: 105px; + height: 105px; +} +.Mount_Head_Rat-Skeleton { + background-image: url(spritesmith-main-9.png); + background-position: -1104px -530px; + width: 105px; + height: 105px; +} +.Mount_Head_Rat-White { + background-image: url(spritesmith-main-9.png); + background-position: -1104px -636px; + width: 105px; + height: 105px; +} +.Mount_Head_Rat-Zombie { + background-image: url(spritesmith-main-9.png); + background-position: -1104px -742px; + width: 105px; + height: 105px; +} +.Mount_Head_Rock-Base { + background-image: url(spritesmith-main-9.png); + background-position: -1104px -848px; + width: 105px; + height: 105px; +} +.Mount_Head_Rock-CottonCandyBlue { + background-image: url(spritesmith-main-9.png); + background-position: -1104px -954px; + width: 105px; + height: 105px; +} +.Mount_Head_Rock-CottonCandyPink { + background-image: url(spritesmith-main-9.png); + background-position: 0px -1104px; + width: 105px; + height: 105px; +} +.Mount_Head_Rock-Desert { + background-image: url(spritesmith-main-9.png); + background-position: -106px -1104px; + width: 105px; + height: 105px; +} +.Mount_Head_Rock-Golden { + background-image: url(spritesmith-main-9.png); + background-position: -212px -1104px; + width: 105px; + height: 105px; +} +.Mount_Head_Rock-Red { + background-image: url(spritesmith-main-9.png); + background-position: -318px -1104px; + width: 105px; + height: 105px; +} +.Mount_Head_Rock-Shade { + background-image: url(spritesmith-main-9.png); + background-position: -424px -1104px; + width: 105px; + height: 105px; +} +.Mount_Head_Rock-Skeleton { + background-image: url(spritesmith-main-9.png); + background-position: -530px -1104px; + width: 105px; + height: 105px; +} +.Mount_Head_Rock-White { + background-image: url(spritesmith-main-9.png); + background-position: -636px -1104px; + width: 105px; + height: 105px; +} +.Mount_Head_Rock-Zombie { + background-image: url(spritesmith-main-9.png); + background-position: -742px -1104px; + width: 105px; + height: 105px; +} +.Mount_Head_Rooster-Base { + background-image: url(spritesmith-main-9.png); + background-position: -848px -1104px; + width: 105px; + height: 105px; +} +.Mount_Head_Rooster-CottonCandyBlue { + background-image: url(spritesmith-main-9.png); + background-position: -954px -1104px; + width: 105px; + height: 105px; +} +.Mount_Head_Rooster-CottonCandyPink { + background-image: url(spritesmith-main-9.png); + background-position: -1060px -1104px; + width: 105px; + height: 105px; +} +.Mount_Head_Rooster-Desert { + background-image: url(spritesmith-main-9.png); + background-position: -1210px 0px; + width: 105px; + height: 105px; +} +.Mount_Head_Rooster-Golden { + background-image: url(spritesmith-main-9.png); + background-position: -1210px -106px; + width: 105px; + height: 105px; +} +.Mount_Head_Rooster-Red { + background-image: url(spritesmith-main-9.png); + background-position: -1210px -212px; + width: 105px; + height: 105px; +} +.Mount_Head_Rooster-Shade { + background-image: url(spritesmith-main-9.png); + background-position: -1210px -318px; + width: 105px; + height: 105px; +} +.Mount_Head_Rooster-Skeleton { + background-image: url(spritesmith-main-9.png); + background-position: -1210px -424px; + width: 105px; + height: 105px; +} +.Mount_Head_Rooster-White { + background-image: url(spritesmith-main-9.png); + background-position: -106px -1634px; + width: 105px; + height: 105px; +} +.Mount_Head_Rooster-Zombie { + background-image: url(spritesmith-main-9.png); + background-position: -1210px -636px; + width: 105px; + height: 105px; +} +.Mount_Head_Sabretooth-Base { background-image: url(spritesmith-main-9.png); background-position: -272px -136px; width: 135px; height: 135px; } -.Mount_Head_Sabretooth-Zombie { +.Mount_Head_Sabretooth-CottonCandyBlue { background-image: url(spritesmith-main-9.png); background-position: 0px -272px; width: 135px; height: 135px; } -.Mount_Head_Seahorse-Base { +.Mount_Head_Sabretooth-CottonCandyPink { background-image: url(spritesmith-main-9.png); - background-position: -1240px -318px; - width: 105px; - height: 105px; -} -.Mount_Head_Seahorse-CottonCandyBlue { - background-image: url(spritesmith-main-9.png); - background-position: -1240px -212px; - width: 105px; - height: 105px; -} -.Mount_Head_Seahorse-CottonCandyPink { - background-image: url(spritesmith-main-9.png); - background-position: -1240px -106px; - width: 105px; - height: 105px; -} -.Mount_Head_Seahorse-Desert { - background-image: url(spritesmith-main-9.png); - background-position: -1240px 0px; - width: 105px; - height: 105px; -} -.Mount_Head_Seahorse-Golden { - background-image: url(spritesmith-main-9.png); - background-position: -1060px -1113px; - width: 105px; - height: 105px; -} -.Mount_Head_Seahorse-Red { - background-image: url(spritesmith-main-9.png); - background-position: -954px -1113px; - width: 105px; - height: 105px; -} -.Mount_Head_Seahorse-Shade { - background-image: url(spritesmith-main-9.png); - background-position: -848px -1113px; - width: 105px; - height: 105px; -} -.Mount_Head_Seahorse-Skeleton { - background-image: url(spritesmith-main-9.png); - background-position: -742px -1113px; - width: 105px; - height: 105px; -} -.Mount_Head_Seahorse-White { - background-image: url(spritesmith-main-9.png); - background-position: -636px -1113px; - width: 105px; - height: 105px; -} -.Mount_Head_Seahorse-Zombie { - background-image: url(spritesmith-main-9.png); - background-position: -530px -1113px; - width: 105px; - height: 105px; -} -.Mount_Head_Sheep-Base { - background-image: url(spritesmith-main-9.png); - background-position: -424px -1113px; - width: 105px; - height: 105px; -} -.Mount_Head_Sheep-CottonCandyBlue { - background-image: url(spritesmith-main-9.png); - background-position: -318px -1113px; - width: 105px; - height: 105px; -} -.Mount_Head_Sheep-CottonCandyPink { - background-image: url(spritesmith-main-9.png); - background-position: -212px -1113px; - width: 105px; - height: 105px; -} -.Mount_Head_Sheep-Desert { - background-image: url(spritesmith-main-9.png); - background-position: -636px -901px; - width: 105px; - height: 105px; -} -.Mount_Head_Sheep-Golden { - background-image: url(spritesmith-main-9.png); - background-position: -530px -901px; - width: 105px; - height: 105px; -} -.Mount_Head_Sheep-Red { - background-image: url(spritesmith-main-9.png); - background-position: -424px -901px; - width: 105px; - height: 105px; -} -.Mount_Head_Sheep-Shade { - background-image: url(spritesmith-main-9.png); - background-position: -318px -901px; - width: 105px; - height: 105px; -} -.Mount_Head_Sheep-Skeleton { - background-image: url(spritesmith-main-9.png); - background-position: -212px -901px; - width: 105px; - height: 105px; -} -.Mount_Head_Sheep-White { - background-image: url(spritesmith-main-9.png); - background-position: -106px -901px; - width: 105px; - height: 105px; -} -.Mount_Head_Sheep-Zombie { - background-image: url(spritesmith-main-9.png); - background-position: 0px -901px; - width: 105px; - height: 105px; -} -.Mount_Head_Slime-Base { - background-image: url(spritesmith-main-9.png); - background-position: -922px -742px; - width: 105px; - height: 105px; -} -.Mount_Head_Slime-CottonCandyBlue { - background-image: url(spritesmith-main-9.png); - background-position: -922px -636px; - width: 105px; - height: 105px; -} -.Mount_Head_Slime-CottonCandyPink { - background-image: url(spritesmith-main-9.png); - background-position: -922px -530px; - width: 105px; - height: 105px; -} -.Mount_Head_Slime-Desert { - background-image: url(spritesmith-main-9.png); - background-position: -1240px -424px; - width: 105px; - height: 105px; -} -.Mount_Head_Slime-Golden { - background-image: url(spritesmith-main-9.png); - background-position: -1028px -742px; - width: 105px; - height: 105px; -} -.Mount_Head_Slime-Red { - background-image: url(spritesmith-main-9.png); - background-position: -1240px -530px; - width: 105px; - height: 105px; -} -.Mount_Head_Slime-Shade { - background-image: url(spritesmith-main-9.png); - background-position: -1240px -636px; - width: 105px; - height: 105px; -} -.Mount_Head_Slime-Skeleton { - background-image: url(spritesmith-main-9.png); - background-position: -1240px -742px; - width: 105px; - height: 105px; -} -.Mount_Head_Slime-White { - background-image: url(spritesmith-main-9.png); - background-position: -1240px -848px; - width: 105px; - height: 105px; -} -.Mount_Head_Slime-Zombie { - background-image: url(spritesmith-main-9.png); - background-position: -1240px -954px; - width: 105px; - height: 105px; -} -.Mount_Head_Snake-Base { - background-image: url(spritesmith-main-9.png); - background-position: -1240px -1060px; - width: 105px; - height: 105px; -} -.Mount_Head_Snake-CottonCandyBlue { - background-image: url(spritesmith-main-9.png); - background-position: 0px -1219px; - width: 105px; - height: 105px; -} -.Mount_Head_Snake-CottonCandyPink { - background-image: url(spritesmith-main-9.png); - background-position: -106px -1219px; - width: 105px; - height: 105px; -} -.Mount_Head_Snake-Desert { - background-image: url(spritesmith-main-9.png); - background-position: -816px -345px; - width: 105px; - height: 105px; -} -.Mount_Head_Snake-Golden { - background-image: url(spritesmith-main-9.png); - background-position: -816px -451px; - width: 105px; - height: 105px; -} -.Mount_Head_Snake-Red { - background-image: url(spritesmith-main-9.png); - background-position: -816px -557px; - width: 105px; - height: 105px; -} -.Mount_Head_Snake-Shade { - background-image: url(spritesmith-main-9.png); - background-position: -816px -663px; - width: 105px; - height: 105px; -} -.Mount_Head_Snake-Skeleton { - background-image: url(spritesmith-main-9.png); - background-position: 0px -795px; - width: 105px; - height: 105px; -} -.Mount_Head_Snake-White { - background-image: url(spritesmith-main-9.png); - background-position: -106px -795px; - width: 105px; - height: 105px; -} -.Mount_Head_Snake-Zombie { - background-image: url(spritesmith-main-9.png); - background-position: -212px -795px; - width: 105px; - height: 105px; -} -.Mount_Head_Spider-Base { - background-image: url(spritesmith-main-9.png); - background-position: -318px -795px; - width: 105px; - height: 105px; -} -.Mount_Head_Spider-CottonCandyBlue { - background-image: url(spritesmith-main-9.png); - background-position: -424px -795px; - width: 105px; - height: 105px; -} -.Mount_Head_Spider-CottonCandyPink { - background-image: url(spritesmith-main-9.png); - background-position: -530px -795px; - width: 105px; - height: 105px; -} -.Mount_Head_Spider-Desert { - background-image: url(spritesmith-main-9.png); - background-position: -636px -795px; - width: 105px; - height: 105px; -} -.Mount_Head_Spider-Golden { - background-image: url(spritesmith-main-9.png); - background-position: -742px -795px; - width: 105px; - height: 105px; -} -.Mount_Head_Spider-Red { - background-image: url(spritesmith-main-9.png); - background-position: -922px 0px; - width: 105px; - height: 105px; -} -.Mount_Head_Spider-Shade { - background-image: url(spritesmith-main-9.png); - background-position: -922px -106px; - width: 105px; - height: 105px; -} -.Mount_Head_Spider-Skeleton { - background-image: url(spritesmith-main-9.png); - background-position: -922px -212px; - width: 105px; - height: 105px; -} -.Mount_Head_Spider-White { - background-image: url(spritesmith-main-9.png); - background-position: -922px -318px; - width: 105px; - height: 105px; -} -.Mount_Head_Spider-Zombie { - background-image: url(spritesmith-main-9.png); - background-position: -922px -424px; - width: 105px; - height: 105px; -} -.Mount_Head_TRex-Base { - background-image: url(spritesmith-main-9.png); - background-position: -680px -544px; + background-position: -136px -272px; width: 135px; height: 135px; } -.Mount_Head_TRex-CottonCandyBlue { +.Mount_Head_Sabretooth-Desert { background-image: url(spritesmith-main-9.png); - background-position: -680px -408px; + background-position: -272px -272px; width: 135px; height: 135px; } -.Mount_Head_TRex-CottonCandyPink { +.Mount_Head_Sabretooth-Golden { background-image: url(spritesmith-main-9.png); - background-position: -680px -272px; + background-position: -408px 0px; width: 135px; height: 135px; } -.Mount_Head_TRex-Desert { +.Mount_Head_Sabretooth-Red { background-image: url(spritesmith-main-9.png); - background-position: -680px -136px; + background-position: -408px -136px; width: 135px; height: 135px; } -.Mount_Head_TRex-Golden { +.Mount_Head_Sabretooth-Shade { + background-image: url(spritesmith-main-9.png); + background-position: -408px -272px; + width: 135px; + height: 135px; +} +.Mount_Head_Sabretooth-Skeleton { background-image: url(spritesmith-main-9.png); background-position: 0px 0px; width: 135px; height: 135px; } +.Mount_Head_Sabretooth-White { + background-image: url(spritesmith-main-9.png); + background-position: -136px -408px; + width: 135px; + height: 135px; +} +.Mount_Head_Sabretooth-Zombie { + background-image: url(spritesmith-main-9.png); + background-position: -272px -408px; + width: 135px; + height: 135px; +} +.Mount_Head_Seahorse-Base { + background-image: url(spritesmith-main-9.png); + background-position: -636px -1210px; + width: 105px; + height: 105px; +} +.Mount_Head_Seahorse-CottonCandyBlue { + background-image: url(spritesmith-main-9.png); + background-position: -742px -1210px; + width: 105px; + height: 105px; +} +.Mount_Head_Seahorse-CottonCandyPink { + background-image: url(spritesmith-main-9.png); + background-position: -848px -1210px; + width: 105px; + height: 105px; +} +.Mount_Head_Seahorse-Desert { + background-image: url(spritesmith-main-9.png); + background-position: -954px -1210px; + width: 105px; + height: 105px; +} +.Mount_Head_Seahorse-Golden { + background-image: url(spritesmith-main-9.png); + background-position: -1060px -1210px; + width: 105px; + height: 105px; +} +.Mount_Head_Seahorse-Red { + background-image: url(spritesmith-main-9.png); + background-position: -1166px -1210px; + width: 105px; + height: 105px; +} +.Mount_Head_Seahorse-Shade { + background-image: url(spritesmith-main-9.png); + background-position: -1316px 0px; + width: 105px; + height: 105px; +} +.Mount_Head_Seahorse-Skeleton { + background-image: url(spritesmith-main-9.png); + background-position: -1316px -106px; + width: 105px; + height: 105px; +} +.Mount_Head_Seahorse-White { + background-image: url(spritesmith-main-9.png); + background-position: -1316px -212px; + width: 105px; + height: 105px; +} +.Mount_Head_Seahorse-Zombie { + background-image: url(spritesmith-main-9.png); + background-position: -1316px -318px; + width: 105px; + height: 105px; +} +.Mount_Head_Sheep-Base { + background-image: url(spritesmith-main-9.png); + background-position: -1316px -424px; + width: 105px; + height: 105px; +} +.Mount_Head_Sheep-CottonCandyBlue { + background-image: url(spritesmith-main-9.png); + background-position: -1316px -530px; + width: 105px; + height: 105px; +} +.Mount_Head_Sheep-CottonCandyPink { + background-image: url(spritesmith-main-9.png); + background-position: -1316px -636px; + width: 105px; + height: 105px; +} +.Mount_Head_Sheep-Desert { + background-image: url(spritesmith-main-9.png); + background-position: -1316px -742px; + width: 105px; + height: 105px; +} +.Mount_Head_Sheep-Golden { + background-image: url(spritesmith-main-9.png); + background-position: -1316px -848px; + width: 105px; + height: 105px; +} +.Mount_Head_Sheep-Red { + background-image: url(spritesmith-main-9.png); + background-position: -1316px -954px; + width: 105px; + height: 105px; +} +.Mount_Head_Sheep-Shade { + background-image: url(spritesmith-main-9.png); + background-position: -1316px -1060px; + width: 105px; + height: 105px; +} +.Mount_Head_Sheep-Skeleton { + background-image: url(spritesmith-main-9.png); + background-position: -1316px -1166px; + width: 105px; + height: 105px; +} +.Mount_Head_Sheep-White { + background-image: url(spritesmith-main-9.png); + background-position: 0px -1316px; + width: 105px; + height: 105px; +} +.Mount_Head_Sheep-Zombie { + background-image: url(spritesmith-main-9.png); + background-position: -106px -1316px; + width: 105px; + height: 105px; +} +.Mount_Head_Slime-Base { + background-image: url(spritesmith-main-9.png); + background-position: -212px -1316px; + width: 105px; + height: 105px; +} +.Mount_Head_Slime-CottonCandyBlue { + background-image: url(spritesmith-main-9.png); + background-position: -318px -1316px; + width: 105px; + height: 105px; +} +.Mount_Head_Slime-CottonCandyPink { + background-image: url(spritesmith-main-9.png); + background-position: -424px -1316px; + width: 105px; + height: 105px; +} +.Mount_Head_Slime-Desert { + background-image: url(spritesmith-main-9.png); + background-position: -530px -1316px; + width: 105px; + height: 105px; +} +.Mount_Head_Slime-Golden { + background-image: url(spritesmith-main-9.png); + background-position: -636px -1316px; + width: 105px; + height: 105px; +} +.Mount_Head_Slime-Red { + background-image: url(spritesmith-main-9.png); + background-position: -742px -1316px; + width: 105px; + height: 105px; +} +.Mount_Head_Slime-Shade { + background-image: url(spritesmith-main-9.png); + background-position: -848px -1316px; + width: 105px; + height: 105px; +} +.Mount_Head_Slime-Skeleton { + background-image: url(spritesmith-main-9.png); + background-position: -954px -1316px; + width: 105px; + height: 105px; +} +.Mount_Head_Slime-White { + background-image: url(spritesmith-main-9.png); + background-position: -1060px -1316px; + width: 105px; + height: 105px; +} +.Mount_Head_Slime-Zombie { + background-image: url(spritesmith-main-9.png); + background-position: -1166px -1316px; + width: 105px; + height: 105px; +} +.Mount_Head_Snail-Base { + background-image: url(spritesmith-main-9.png); + background-position: -1272px -1316px; + width: 105px; + height: 105px; +} +.Mount_Head_Snail-CottonCandyBlue { + background-image: url(spritesmith-main-9.png); + background-position: -1422px 0px; + width: 105px; + height: 105px; +} +.Mount_Head_Snail-CottonCandyPink { + background-image: url(spritesmith-main-9.png); + background-position: -1422px -106px; + width: 105px; + height: 105px; +} +.Mount_Head_Snail-Desert { + background-image: url(spritesmith-main-9.png); + background-position: -1422px -212px; + width: 105px; + height: 105px; +} +.Mount_Head_Snail-Golden { + background-image: url(spritesmith-main-9.png); + background-position: -1422px -318px; + width: 105px; + height: 105px; +} +.Mount_Head_Snail-Red { + background-image: url(spritesmith-main-9.png); + background-position: -1422px -424px; + width: 105px; + height: 105px; +} +.Mount_Head_Snail-Shade { + background-image: url(spritesmith-main-9.png); + background-position: -1422px -530px; + width: 105px; + height: 105px; +} +.Mount_Head_Snail-Skeleton { + background-image: url(spritesmith-main-9.png); + background-position: -1422px -636px; + width: 105px; + height: 105px; +} +.Mount_Head_Snail-White { + background-image: url(spritesmith-main-9.png); + background-position: -1422px -742px; + width: 105px; + height: 105px; +} +.Mount_Head_Snail-Zombie { + background-image: url(spritesmith-main-9.png); + background-position: -1422px -848px; + width: 105px; + height: 105px; +} +.Mount_Head_Snake-Base { + background-image: url(spritesmith-main-9.png); + background-position: -1422px -954px; + width: 105px; + height: 105px; +} +.Mount_Head_Snake-CottonCandyBlue { + background-image: url(spritesmith-main-9.png); + background-position: -1422px -1060px; + width: 105px; + height: 105px; +} +.Mount_Head_Snake-CottonCandyPink { + background-image: url(spritesmith-main-9.png); + background-position: -1422px -1166px; + width: 105px; + height: 105px; +} +.Mount_Head_Snake-Desert { + background-image: url(spritesmith-main-9.png); + background-position: -1422px -1272px; + width: 105px; + height: 105px; +} +.Mount_Head_Snake-Golden { + background-image: url(spritesmith-main-9.png); + background-position: 0px -1422px; + width: 105px; + height: 105px; +} +.Mount_Head_Snake-Red { + background-image: url(spritesmith-main-9.png); + background-position: -106px -1422px; + width: 105px; + height: 105px; +} +.Mount_Head_Snake-Shade { + background-image: url(spritesmith-main-9.png); + background-position: -212px -1422px; + width: 105px; + height: 105px; +} +.Mount_Head_Snake-Skeleton { + background-image: url(spritesmith-main-9.png); + background-position: -318px -1422px; + width: 105px; + height: 105px; +} +.Mount_Head_Snake-White { + background-image: url(spritesmith-main-9.png); + background-position: -424px -1422px; + width: 105px; + height: 105px; +} +.Mount_Head_Snake-Zombie { + background-image: url(spritesmith-main-9.png); + background-position: -530px -1422px; + width: 105px; + height: 105px; +} +.Mount_Head_Spider-Base { + background-image: url(spritesmith-main-9.png); + background-position: -636px -1422px; + width: 105px; + height: 105px; +} +.Mount_Head_Spider-CottonCandyBlue { + background-image: url(spritesmith-main-9.png); + background-position: -742px -1422px; + width: 105px; + height: 105px; +} +.Mount_Head_Spider-CottonCandyPink { + background-image: url(spritesmith-main-9.png); + background-position: -848px -1422px; + width: 105px; + height: 105px; +} +.Mount_Head_Spider-Desert { + background-image: url(spritesmith-main-9.png); + background-position: -954px -1422px; + width: 105px; + height: 105px; +} +.Mount_Head_Spider-Golden { + background-image: url(spritesmith-main-9.png); + background-position: -1060px -1422px; + width: 105px; + height: 105px; +} +.Mount_Head_Spider-Red { + background-image: url(spritesmith-main-9.png); + background-position: -1166px -1422px; + width: 105px; + height: 105px; +} +.Mount_Head_Spider-Shade { + background-image: url(spritesmith-main-9.png); + background-position: -1272px -1422px; + width: 105px; + height: 105px; +} +.Mount_Head_Spider-Skeleton { + background-image: url(spritesmith-main-9.png); + background-position: -1378px -1422px; + width: 105px; + height: 105px; +} +.Mount_Head_Spider-White { + background-image: url(spritesmith-main-9.png); + background-position: -1528px 0px; + width: 105px; + height: 105px; +} +.Mount_Head_Spider-Zombie { + background-image: url(spritesmith-main-9.png); + background-position: -1528px -106px; + width: 105px; + height: 105px; +} +.Mount_Head_TRex-Base { + background-image: url(spritesmith-main-9.png); + background-position: -408px -408px; + width: 135px; + height: 135px; +} +.Mount_Head_TRex-CottonCandyBlue { + background-image: url(spritesmith-main-9.png); + background-position: -544px 0px; + width: 135px; + height: 135px; +} +.Mount_Head_TRex-CottonCandyPink { + background-image: url(spritesmith-main-9.png); + background-position: -544px -136px; + width: 135px; + height: 135px; +} +.Mount_Head_TRex-Desert { + background-image: url(spritesmith-main-9.png); + background-position: -544px -272px; + width: 135px; + height: 135px; +} +.Mount_Head_TRex-Golden { + background-image: url(spritesmith-main-9.png); + background-position: -544px -408px; + width: 135px; + height: 135px; +} .Mount_Head_TRex-Red { background-image: url(spritesmith-main-9.png); - background-position: -544px -544px; + background-position: 0px -408px; width: 135px; height: 135px; } .Mount_Head_TRex-Shade { background-image: url(spritesmith-main-9.png); - background-position: -408px -544px; + background-position: -272px 0px; width: 135px; height: 135px; } .Mount_Head_TRex-Skeleton { background-image: url(spritesmith-main-9.png); - background-position: -272px -544px; + background-position: -136px -136px; width: 135px; height: 135px; } .Mount_Head_TRex-White { background-image: url(spritesmith-main-9.png); - background-position: -136px -544px; + background-position: 0px -136px; width: 135px; height: 135px; } @@ -408,1183 +1188,211 @@ } .Mount_Head_TigerCub-Base { background-image: url(spritesmith-main-9.png); - background-position: -742px -901px; + background-position: -1528px -212px; width: 105px; height: 105px; } .Mount_Head_TigerCub-CottonCandyBlue { background-image: url(spritesmith-main-9.png); - background-position: -848px -901px; + background-position: -1528px -318px; width: 105px; height: 105px; } .Mount_Head_TigerCub-CottonCandyPink { background-image: url(spritesmith-main-9.png); - background-position: -1028px 0px; + background-position: -1528px -424px; width: 105px; height: 105px; } .Mount_Head_TigerCub-Desert { background-image: url(spritesmith-main-9.png); - background-position: -1028px -106px; + background-position: -1528px -530px; + width: 105px; + height: 105px; +} +.Mount_Head_TigerCub-Floral { + background-image: url(spritesmith-main-9.png); + background-position: -1528px -636px; width: 105px; height: 105px; } .Mount_Head_TigerCub-Golden { background-image: url(spritesmith-main-9.png); - background-position: -1028px -212px; + background-position: -1528px -742px; width: 105px; height: 105px; } .Mount_Head_TigerCub-Peppermint { background-image: url(spritesmith-main-9.png); - background-position: -1028px -318px; + background-position: -1528px -848px; width: 105px; height: 105px; } .Mount_Head_TigerCub-Red { background-image: url(spritesmith-main-9.png); - background-position: -1028px -424px; + background-position: -1528px -954px; width: 105px; height: 105px; } .Mount_Head_TigerCub-Shade { background-image: url(spritesmith-main-9.png); - background-position: -1028px -530px; + background-position: -1528px -1060px; width: 105px; height: 105px; } .Mount_Head_TigerCub-Skeleton { background-image: url(spritesmith-main-9.png); - background-position: -1028px -636px; + background-position: -1528px -1166px; width: 105px; height: 105px; } .Mount_Head_TigerCub-Spooky { background-image: url(spritesmith-main-9.png); - background-position: -212px -1219px; + background-position: -1528px -1272px; width: 105px; height: 105px; } .Mount_Head_TigerCub-White { background-image: url(spritesmith-main-9.png); - background-position: -1028px -848px; + background-position: -1528px -1378px; width: 105px; height: 105px; } .Mount_Head_TigerCub-Zombie { background-image: url(spritesmith-main-9.png); - background-position: 0px -1007px; + background-position: 0px -1528px; width: 105px; height: 105px; } .Mount_Head_Turkey-Base { background-image: url(spritesmith-main-9.png); - background-position: -106px -1007px; + background-position: -1166px -1528px; width: 105px; height: 105px; } .Mount_Head_Unicorn-Base { background-image: url(spritesmith-main-9.png); - background-position: -212px -1007px; + background-position: -1272px -1528px; width: 105px; height: 105px; } .Mount_Head_Unicorn-CottonCandyBlue { background-image: url(spritesmith-main-9.png); - background-position: -318px -1007px; + background-position: -1378px -1528px; width: 105px; height: 105px; } .Mount_Head_Unicorn-CottonCandyPink { background-image: url(spritesmith-main-9.png); - background-position: -424px -1007px; + background-position: -1484px -1528px; width: 105px; height: 105px; } .Mount_Head_Unicorn-Desert { background-image: url(spritesmith-main-9.png); - background-position: -530px -1007px; + background-position: -1634px 0px; width: 105px; height: 105px; } .Mount_Head_Unicorn-Golden { background-image: url(spritesmith-main-9.png); - background-position: -636px -1007px; + background-position: -1634px -106px; width: 105px; height: 105px; } .Mount_Head_Unicorn-Red { background-image: url(spritesmith-main-9.png); - background-position: -742px -1007px; + background-position: -1634px -212px; width: 105px; height: 105px; } .Mount_Head_Unicorn-Shade { background-image: url(spritesmith-main-9.png); - background-position: -848px -1007px; + background-position: -1634px -318px; width: 105px; height: 105px; } .Mount_Head_Unicorn-Skeleton { background-image: url(spritesmith-main-9.png); - background-position: -954px -1007px; + background-position: -1634px -424px; width: 105px; height: 105px; } .Mount_Head_Unicorn-White { background-image: url(spritesmith-main-9.png); - background-position: -1134px 0px; + background-position: -1634px -530px; width: 105px; height: 105px; } .Mount_Head_Unicorn-Zombie { background-image: url(spritesmith-main-9.png); - background-position: -1134px -106px; + background-position: -1634px -636px; width: 105px; height: 105px; } .Mount_Head_Whale-Base { background-image: url(spritesmith-main-9.png); - background-position: -1134px -212px; + background-position: -1634px -742px; width: 105px; height: 105px; } .Mount_Head_Whale-CottonCandyBlue { background-image: url(spritesmith-main-9.png); - background-position: -1134px -318px; + background-position: -1634px -848px; width: 105px; height: 105px; } .Mount_Head_Whale-CottonCandyPink { background-image: url(spritesmith-main-9.png); - background-position: -1134px -424px; + background-position: -1634px -954px; width: 105px; height: 105px; } .Mount_Head_Whale-Desert { background-image: url(spritesmith-main-9.png); - background-position: -1134px -530px; + background-position: -1634px -1060px; width: 105px; height: 105px; } .Mount_Head_Whale-Golden { background-image: url(spritesmith-main-9.png); - background-position: -1134px -636px; + background-position: -1634px -1166px; width: 105px; height: 105px; } .Mount_Head_Whale-Red { background-image: url(spritesmith-main-9.png); - background-position: -1134px -742px; + background-position: -1634px -1272px; width: 105px; height: 105px; } .Mount_Head_Whale-Shade { background-image: url(spritesmith-main-9.png); - background-position: -1134px -848px; + background-position: -1634px -1378px; width: 105px; height: 105px; } .Mount_Head_Whale-Skeleton { background-image: url(spritesmith-main-9.png); - background-position: -1134px -954px; + background-position: -1634px -1484px; width: 105px; height: 105px; } .Mount_Head_Whale-White { background-image: url(spritesmith-main-9.png); - background-position: 0px -1113px; + background-position: 0px -1634px; width: 105px; height: 105px; } .Mount_Head_Whale-Zombie { background-image: url(spritesmith-main-9.png); - background-position: -106px -1113px; + background-position: -1210px -742px; width: 105px; height: 105px; } .Mount_Head_Wolf-Base { background-image: url(spritesmith-main-9.png); - background-position: -544px -408px; + background-position: -136px 0px; width: 135px; height: 135px; } -.Mount_Head_Wolf-CottonCandyBlue { - background-image: url(spritesmith-main-9.png); - background-position: -544px -272px; - width: 135px; - height: 135px; -} -.Mount_Head_Wolf-CottonCandyPink { - background-image: url(spritesmith-main-9.png); - background-position: -544px -136px; - width: 135px; - height: 135px; -} -.Mount_Head_Wolf-Desert { - background-image: url(spritesmith-main-9.png); - background-position: -544px 0px; - width: 135px; - height: 135px; -} -.Mount_Head_Wolf-Golden { - background-image: url(spritesmith-main-9.png); - background-position: -408px -408px; - width: 135px; - height: 135px; -} -.Mount_Head_Wolf-Peppermint { - background-image: url(spritesmith-main-9.png); - background-position: -272px -408px; - width: 135px; - height: 135px; -} -.Mount_Head_Wolf-Red { - background-image: url(spritesmith-main-9.png); - background-position: -136px -408px; - width: 135px; - height: 135px; -} -.Mount_Head_Wolf-Shade { - background-image: url(spritesmith-main-9.png); - background-position: 0px -408px; - width: 135px; - height: 135px; -} -.Mount_Head_Wolf-Skeleton { - background-image: url(spritesmith-main-9.png); - background-position: -408px -272px; - width: 135px; - height: 135px; -} -.Mount_Head_Wolf-Spooky { - background-image: url(spritesmith-main-9.png); - background-position: -408px -136px; - width: 135px; - height: 135px; -} -.Mount_Head_Wolf-White { - background-image: url(spritesmith-main-9.png); - background-position: -408px 0px; - width: 135px; - height: 135px; -} -.Mount_Head_Wolf-Zombie { - background-image: url(spritesmith-main-9.png); - background-position: -272px -272px; - width: 135px; - height: 135px; -} -.Mount_Icon_BearCub-Base { - background-image: url(spritesmith-main-9.png); - background-position: -1592px -1200px; - width: 81px; - height: 99px; -} -.Mount_Icon_BearCub-CottonCandyBlue { - background-image: url(spritesmith-main-9.png); - background-position: -1592px -1300px; - width: 81px; - height: 99px; -} -.Mount_Icon_BearCub-CottonCandyPink { - background-image: url(spritesmith-main-9.png); - background-position: -1592px -1400px; - width: 81px; - height: 99px; -} -.Mount_Icon_BearCub-Desert { - background-image: url(spritesmith-main-9.png); - background-position: 0px -1525px; - width: 81px; - height: 99px; -} -.Mount_Icon_BearCub-Golden { - background-image: url(spritesmith-main-9.png); - background-position: -82px -1525px; - width: 81px; - height: 99px; -} -.Mount_Icon_BearCub-Peppermint { - background-image: url(spritesmith-main-9.png); - background-position: -164px -1525px; - width: 81px; - height: 99px; -} -.Mount_Icon_BearCub-Polar { - background-image: url(spritesmith-main-9.png); - background-position: -246px -1525px; - width: 81px; - height: 99px; -} -.Mount_Icon_BearCub-Red { - background-image: url(spritesmith-main-9.png); - background-position: -328px -1525px; - width: 81px; - height: 99px; -} -.Mount_Icon_BearCub-Shade { - background-image: url(spritesmith-main-9.png); - background-position: -410px -1525px; - width: 81px; - height: 99px; -} -.Mount_Icon_BearCub-Skeleton { - background-image: url(spritesmith-main-9.png); - background-position: -492px -1525px; - width: 81px; - height: 99px; -} -.Mount_Icon_BearCub-Spooky { - background-image: url(spritesmith-main-9.png); - background-position: -318px -1219px; - width: 81px; - height: 99px; -} -.Mount_Icon_BearCub-White { - background-image: url(spritesmith-main-9.png); - background-position: -400px -1219px; - width: 81px; - height: 99px; -} -.Mount_Icon_BearCub-Zombie { - background-image: url(spritesmith-main-9.png); - background-position: -482px -1219px; - width: 81px; - height: 99px; -} -.Mount_Icon_Bunny-Base { - background-image: url(spritesmith-main-9.png); - background-position: -564px -1219px; - width: 81px; - height: 99px; -} -.Mount_Icon_Bunny-CottonCandyBlue { - background-image: url(spritesmith-main-9.png); - background-position: -646px -1219px; - width: 81px; - height: 99px; -} -.Mount_Icon_Bunny-CottonCandyPink { - background-image: url(spritesmith-main-9.png); - background-position: -728px -1219px; - width: 81px; - height: 99px; -} -.Mount_Icon_Bunny-Desert { - background-image: url(spritesmith-main-9.png); - background-position: -810px -1219px; - width: 81px; - height: 99px; -} -.Mount_Icon_Bunny-Golden { - background-image: url(spritesmith-main-9.png); - background-position: -892px -1219px; - width: 81px; - height: 99px; -} -.Mount_Icon_Bunny-Red { - background-image: url(spritesmith-main-9.png); - background-position: -974px -1219px; - width: 81px; - height: 99px; -} -.Mount_Icon_Bunny-Shade { - background-image: url(spritesmith-main-9.png); - background-position: -82px -1625px; - width: 81px; - height: 99px; -} -.Mount_Icon_Bunny-Skeleton { - background-image: url(spritesmith-main-9.png); - background-position: -1138px -1219px; - width: 81px; - height: 99px; -} -.Mount_Icon_Bunny-White { - background-image: url(spritesmith-main-9.png); - background-position: -1220px -1219px; - width: 81px; - height: 99px; -} -.Mount_Icon_Bunny-Zombie { - background-image: url(spritesmith-main-9.png); - background-position: -1346px 0px; - width: 81px; - height: 99px; -} -.Mount_Icon_Cactus-Base { - background-image: url(spritesmith-main-9.png); - background-position: -1346px -100px; - width: 81px; - height: 99px; -} -.Mount_Icon_Cactus-CottonCandyBlue { - background-image: url(spritesmith-main-9.png); - background-position: -1346px -200px; - width: 81px; - height: 99px; -} -.Mount_Icon_Cactus-CottonCandyPink { - background-image: url(spritesmith-main-9.png); - background-position: -1346px -300px; - width: 81px; - height: 99px; -} -.Mount_Icon_Cactus-Desert { - background-image: url(spritesmith-main-9.png); - background-position: -1346px -400px; - width: 81px; - height: 99px; -} -.Mount_Icon_Cactus-Golden { - background-image: url(spritesmith-main-9.png); - background-position: -1346px -500px; - width: 81px; - height: 99px; -} -.Mount_Icon_Cactus-Peppermint { - background-image: url(spritesmith-main-9.png); - background-position: -1346px -600px; - width: 81px; - height: 99px; -} -.Mount_Icon_Cactus-Red { - background-image: url(spritesmith-main-9.png); - background-position: -1346px -700px; - width: 81px; - height: 99px; -} -.Mount_Icon_Cactus-Shade { - background-image: url(spritesmith-main-9.png); - background-position: -1346px -800px; - width: 81px; - height: 99px; -} -.Mount_Icon_Cactus-Skeleton { - background-image: url(spritesmith-main-9.png); - background-position: -1346px -900px; - width: 81px; - height: 99px; -} -.Mount_Icon_Cactus-Spooky { - background-image: url(spritesmith-main-9.png); - background-position: -1346px -1000px; - width: 81px; - height: 99px; -} -.Mount_Icon_Cactus-White { - background-image: url(spritesmith-main-9.png); - background-position: -1346px -1100px; - width: 81px; - height: 99px; -} -.Mount_Icon_Cactus-Zombie { - background-image: url(spritesmith-main-9.png); - background-position: -1346px -1200px; - width: 81px; - height: 99px; -} -.Mount_Icon_Cheetah-Base { - background-image: url(spritesmith-main-9.png); - background-position: 0px -1325px; - width: 81px; - height: 99px; -} -.Mount_Icon_Cheetah-CottonCandyBlue { - background-image: url(spritesmith-main-9.png); - background-position: -82px -1325px; - width: 81px; - height: 99px; -} -.Mount_Icon_Cheetah-CottonCandyPink { - background-image: url(spritesmith-main-9.png); - background-position: -164px -1325px; - width: 81px; - height: 99px; -} -.Mount_Icon_Cheetah-Desert { - background-image: url(spritesmith-main-9.png); - background-position: -246px -1325px; - width: 81px; - height: 99px; -} -.Mount_Icon_Cheetah-Golden { - background-image: url(spritesmith-main-9.png); - background-position: -328px -1325px; - width: 81px; - height: 99px; -} -.Mount_Icon_Cheetah-Red { - background-image: url(spritesmith-main-9.png); - background-position: -410px -1325px; - width: 81px; - height: 99px; -} -.Mount_Icon_Cheetah-Shade { - background-image: url(spritesmith-main-9.png); - background-position: -492px -1325px; - width: 81px; - height: 99px; -} -.Mount_Icon_Cheetah-Skeleton { - background-image: url(spritesmith-main-9.png); - background-position: -574px -1325px; - width: 81px; - height: 99px; -} -.Mount_Icon_Cheetah-White { - background-image: url(spritesmith-main-9.png); - background-position: -656px -1325px; - width: 81px; - height: 99px; -} -.Mount_Icon_Cheetah-Zombie { - background-image: url(spritesmith-main-9.png); - background-position: -738px -1325px; - width: 81px; - height: 99px; -} -.Mount_Icon_Cuttlefish-Base { - background-image: url(spritesmith-main-9.png); - background-position: -820px -1325px; - width: 81px; - height: 99px; -} -.Mount_Icon_Cuttlefish-CottonCandyBlue { - background-image: url(spritesmith-main-9.png); - background-position: -902px -1325px; - width: 81px; - height: 99px; -} -.Mount_Icon_Cuttlefish-CottonCandyPink { - background-image: url(spritesmith-main-9.png); - background-position: -984px -1325px; - width: 81px; - height: 99px; -} -.Mount_Icon_Cuttlefish-Desert { - background-image: url(spritesmith-main-9.png); - background-position: -1066px -1325px; - width: 81px; - height: 99px; -} -.Mount_Icon_Cuttlefish-Golden { - background-image: url(spritesmith-main-9.png); - background-position: -1148px -1325px; - width: 81px; - height: 99px; -} -.Mount_Icon_Cuttlefish-Red { - background-image: url(spritesmith-main-9.png); - background-position: -1230px -1325px; - width: 81px; - height: 99px; -} -.Mount_Icon_Cuttlefish-Shade { - background-image: url(spritesmith-main-9.png); - background-position: -1312px -1325px; - width: 81px; - height: 99px; -} -.Mount_Icon_Cuttlefish-Skeleton { - background-image: url(spritesmith-main-9.png); - background-position: -1428px 0px; - width: 81px; - height: 99px; -} -.Mount_Icon_Cuttlefish-White { - background-image: url(spritesmith-main-9.png); - background-position: -1428px -100px; - width: 81px; - height: 99px; -} -.Mount_Icon_Cuttlefish-Zombie { - background-image: url(spritesmith-main-9.png); - background-position: -1428px -200px; - width: 81px; - height: 99px; -} -.Mount_Icon_Deer-Base { - background-image: url(spritesmith-main-9.png); - background-position: -1428px -300px; - width: 81px; - height: 99px; -} -.Mount_Icon_Deer-CottonCandyBlue { - background-image: url(spritesmith-main-9.png); - background-position: -1428px -400px; - width: 81px; - height: 99px; -} -.Mount_Icon_Deer-CottonCandyPink { - background-image: url(spritesmith-main-9.png); - background-position: -1428px -500px; - width: 81px; - height: 99px; -} -.Mount_Icon_Deer-Desert { - background-image: url(spritesmith-main-9.png); - background-position: -1428px -600px; - width: 81px; - height: 99px; -} -.Mount_Icon_Deer-Golden { - background-image: url(spritesmith-main-9.png); - background-position: -1428px -700px; - width: 81px; - height: 99px; -} -.Mount_Icon_Deer-Red { - background-image: url(spritesmith-main-9.png); - background-position: -1428px -800px; - width: 81px; - height: 99px; -} -.Mount_Icon_Deer-Shade { - background-image: url(spritesmith-main-9.png); - background-position: -1428px -900px; - width: 81px; - height: 99px; -} -.Mount_Icon_Deer-Skeleton { - background-image: url(spritesmith-main-9.png); - background-position: -1428px -1000px; - width: 81px; - height: 99px; -} -.Mount_Icon_Deer-White { - background-image: url(spritesmith-main-9.png); - background-position: -1428px -1100px; - width: 81px; - height: 99px; -} -.Mount_Icon_Deer-Zombie { - background-image: url(spritesmith-main-9.png); - background-position: -1428px -1200px; - width: 81px; - height: 99px; -} -.Mount_Icon_Dragon-Base { - background-image: url(spritesmith-main-9.png); - background-position: -1428px -1300px; - width: 81px; - height: 99px; -} -.Mount_Icon_Dragon-CottonCandyBlue { - background-image: url(spritesmith-main-9.png); - background-position: -1510px 0px; - width: 81px; - height: 99px; -} -.Mount_Icon_Dragon-CottonCandyPink { - background-image: url(spritesmith-main-9.png); - background-position: -1510px -100px; - width: 81px; - height: 99px; -} -.Mount_Icon_Dragon-Desert { - background-image: url(spritesmith-main-9.png); - background-position: -1510px -200px; - width: 81px; - height: 99px; -} -.Mount_Icon_Dragon-Golden { - background-image: url(spritesmith-main-9.png); - background-position: -1510px -300px; - width: 81px; - height: 99px; -} -.Mount_Icon_Dragon-Peppermint { - background-image: url(spritesmith-main-9.png); - background-position: -1510px -400px; - width: 81px; - height: 99px; -} -.Mount_Icon_Dragon-Red { - background-image: url(spritesmith-main-9.png); - background-position: -1510px -500px; - width: 81px; - height: 99px; -} -.Mount_Icon_Dragon-Shade { - background-image: url(spritesmith-main-9.png); - background-position: -1510px -600px; - width: 81px; - height: 99px; -} -.Mount_Icon_Dragon-Skeleton { - background-image: url(spritesmith-main-9.png); - background-position: -1510px -700px; - width: 81px; - height: 99px; -} -.Mount_Icon_Dragon-Spooky { - background-image: url(spritesmith-main-9.png); - background-position: -1510px -800px; - width: 81px; - height: 99px; -} -.Mount_Icon_Dragon-White { - background-image: url(spritesmith-main-9.png); - background-position: -1510px -900px; - width: 81px; - height: 99px; -} -.Mount_Icon_Dragon-Zombie { - background-image: url(spritesmith-main-9.png); - background-position: -1510px -1000px; - width: 81px; - height: 99px; -} -.Mount_Icon_Egg-Base { - background-image: url(spritesmith-main-9.png); - background-position: -1510px -1100px; - width: 81px; - height: 99px; -} -.Mount_Icon_Egg-CottonCandyBlue { - background-image: url(spritesmith-main-9.png); - background-position: -1510px -1200px; - width: 81px; - height: 99px; -} -.Mount_Icon_Egg-CottonCandyPink { - background-image: url(spritesmith-main-9.png); - background-position: -1510px -1300px; - width: 81px; - height: 99px; -} -.Mount_Icon_Egg-Desert { - background-image: url(spritesmith-main-9.png); - background-position: 0px -1425px; - width: 81px; - height: 99px; -} -.Mount_Icon_Egg-Golden { - background-image: url(spritesmith-main-9.png); - background-position: -82px -1425px; - width: 81px; - height: 99px; -} -.Mount_Icon_Egg-Red { - background-image: url(spritesmith-main-9.png); - background-position: -164px -1425px; - width: 81px; - height: 99px; -} -.Mount_Icon_Egg-Shade { - background-image: url(spritesmith-main-9.png); - background-position: -246px -1425px; - width: 81px; - height: 99px; -} -.Mount_Icon_Egg-Skeleton { - background-image: url(spritesmith-main-9.png); - background-position: -328px -1425px; - width: 81px; - height: 99px; -} -.Mount_Icon_Egg-White { - background-image: url(spritesmith-main-9.png); - background-position: -410px -1425px; - width: 81px; - height: 99px; -} -.Mount_Icon_Egg-Zombie { - background-image: url(spritesmith-main-9.png); - background-position: -492px -1425px; - width: 81px; - height: 99px; -} -.Mount_Icon_FlyingPig-Base { - background-image: url(spritesmith-main-9.png); - background-position: -574px -1425px; - width: 81px; - height: 99px; -} -.Mount_Icon_FlyingPig-CottonCandyBlue { - background-image: url(spritesmith-main-9.png); - background-position: -656px -1425px; - width: 81px; - height: 99px; -} -.Mount_Icon_FlyingPig-CottonCandyPink { - background-image: url(spritesmith-main-9.png); - background-position: -738px -1425px; - width: 81px; - height: 99px; -} -.Mount_Icon_FlyingPig-Desert { - background-image: url(spritesmith-main-9.png); - background-position: -820px -1425px; - width: 81px; - height: 99px; -} -.Mount_Icon_FlyingPig-Golden { - background-image: url(spritesmith-main-9.png); - background-position: -902px -1425px; - width: 81px; - height: 99px; -} -.Mount_Icon_FlyingPig-Peppermint { - background-image: url(spritesmith-main-9.png); - background-position: -984px -1425px; - width: 81px; - height: 99px; -} -.Mount_Icon_FlyingPig-Red { - background-image: url(spritesmith-main-9.png); - background-position: -1066px -1425px; - width: 81px; - height: 99px; -} -.Mount_Icon_FlyingPig-Shade { - background-image: url(spritesmith-main-9.png); - background-position: -1148px -1425px; - width: 81px; - height: 99px; -} -.Mount_Icon_FlyingPig-Skeleton { - background-image: url(spritesmith-main-9.png); - background-position: -1230px -1425px; - width: 81px; - height: 99px; -} -.Mount_Icon_FlyingPig-Spooky { - background-image: url(spritesmith-main-9.png); - background-position: -1312px -1425px; - width: 81px; - height: 99px; -} -.Mount_Icon_FlyingPig-White { - background-image: url(spritesmith-main-9.png); - background-position: -1394px -1425px; - width: 81px; - height: 99px; -} -.Mount_Icon_FlyingPig-Zombie { - background-image: url(spritesmith-main-9.png); - background-position: -1476px -1425px; - width: 81px; - height: 99px; -} -.Mount_Icon_Fox-Base { - background-image: url(spritesmith-main-9.png); - background-position: -1592px 0px; - width: 81px; - height: 99px; -} -.Mount_Icon_Fox-CottonCandyBlue { - background-image: url(spritesmith-main-9.png); - background-position: -1592px -100px; - width: 81px; - height: 99px; -} -.Mount_Icon_Fox-CottonCandyPink { - background-image: url(spritesmith-main-9.png); - background-position: -1592px -200px; - width: 81px; - height: 99px; -} -.Mount_Icon_Fox-Desert { - background-image: url(spritesmith-main-9.png); - background-position: -1592px -300px; - width: 81px; - height: 99px; -} -.Mount_Icon_Fox-Golden { - background-image: url(spritesmith-main-9.png); - background-position: -1592px -400px; - width: 81px; - height: 99px; -} -.Mount_Icon_Fox-Peppermint { - background-image: url(spritesmith-main-9.png); - background-position: -1592px -500px; - width: 81px; - height: 99px; -} -.Mount_Icon_Fox-Red { - background-image: url(spritesmith-main-9.png); - background-position: -1592px -600px; - width: 81px; - height: 99px; -} -.Mount_Icon_Fox-Shade { - background-image: url(spritesmith-main-9.png); - background-position: -1592px -700px; - width: 81px; - height: 99px; -} -.Mount_Icon_Fox-Skeleton { - background-image: url(spritesmith-main-9.png); - background-position: -1592px -800px; - width: 81px; - height: 99px; -} -.Mount_Icon_Fox-Spooky { - background-image: url(spritesmith-main-9.png); - background-position: -1592px -900px; - width: 81px; - height: 99px; -} -.Mount_Icon_Fox-White { - background-image: url(spritesmith-main-9.png); - background-position: -1592px -1000px; - width: 81px; - height: 99px; -} -.Mount_Icon_Fox-Zombie { - background-image: url(spritesmith-main-9.png); - background-position: -1592px -1100px; - width: 81px; - height: 99px; -} -.Mount_Icon_Frog-Base { - background-image: url(spritesmith-main-9.png); - background-position: -106px -680px; - width: 105px; - height: 114px; -} -.Mount_Icon_Frog-CottonCandyBlue { - background-image: url(spritesmith-main-9.png); - background-position: -212px -680px; - width: 105px; - height: 114px; -} -.Mount_Icon_Frog-CottonCandyPink { - background-image: url(spritesmith-main-9.png); - background-position: -318px -680px; - width: 105px; - height: 114px; -} -.Mount_Icon_Frog-Desert { - background-image: url(spritesmith-main-9.png); - background-position: -424px -680px; - width: 105px; - height: 114px; -} -.Mount_Icon_Frog-Golden { - background-image: url(spritesmith-main-9.png); - background-position: -530px -680px; - width: 105px; - height: 114px; -} -.Mount_Icon_Frog-Red { - background-image: url(spritesmith-main-9.png); - background-position: -636px -680px; - width: 105px; - height: 114px; -} -.Mount_Icon_Frog-Shade { - background-image: url(spritesmith-main-9.png); - background-position: -816px 0px; - width: 105px; - height: 114px; -} -.Mount_Icon_Frog-Skeleton { - background-image: url(spritesmith-main-9.png); - background-position: -816px -115px; - width: 105px; - height: 114px; -} -.Mount_Icon_Frog-White { - background-image: url(spritesmith-main-9.png); - background-position: -816px -230px; - width: 105px; - height: 114px; -} -.Mount_Icon_Frog-Zombie { - background-image: url(spritesmith-main-9.png); - background-position: 0px -680px; - width: 105px; - height: 114px; -} -.Mount_Icon_Gryphon-Base { - background-image: url(spritesmith-main-9.png); - background-position: -574px -1525px; - width: 81px; - height: 99px; -} -.Mount_Icon_Gryphon-CottonCandyBlue { - background-image: url(spritesmith-main-9.png); - background-position: -656px -1525px; - width: 81px; - height: 99px; -} -.Mount_Icon_Gryphon-CottonCandyPink { - background-image: url(spritesmith-main-9.png); - background-position: -738px -1525px; - width: 81px; - height: 99px; -} -.Mount_Icon_Gryphon-Desert { - background-image: url(spritesmith-main-9.png); - background-position: -820px -1525px; - width: 81px; - height: 99px; -} -.Mount_Icon_Gryphon-Golden { - background-image: url(spritesmith-main-9.png); - background-position: -902px -1525px; - width: 81px; - height: 99px; -} -.Mount_Icon_Gryphon-Red { - background-image: url(spritesmith-main-9.png); - background-position: -984px -1525px; - width: 81px; - height: 99px; -} -.Mount_Icon_Gryphon-RoyalPurple { - background-image: url(spritesmith-main-9.png); - background-position: -1066px -1525px; - width: 81px; - height: 99px; -} -.Mount_Icon_Gryphon-Shade { - background-image: url(spritesmith-main-9.png); - background-position: -1148px -1525px; - width: 81px; - height: 99px; -} -.Mount_Icon_Gryphon-Skeleton { - background-image: url(spritesmith-main-9.png); - background-position: -1230px -1525px; - width: 81px; - height: 99px; -} -.Mount_Icon_Gryphon-White { - background-image: url(spritesmith-main-9.png); - background-position: -1312px -1525px; - width: 81px; - height: 99px; -} -.Mount_Icon_Gryphon-Zombie { - background-image: url(spritesmith-main-9.png); - background-position: -1394px -1525px; - width: 81px; - height: 99px; -} -.Mount_Icon_Hedgehog-Base { - background-image: url(spritesmith-main-9.png); - background-position: -1476px -1525px; - width: 81px; - height: 99px; -} -.Mount_Icon_Hedgehog-CottonCandyBlue { - background-image: url(spritesmith-main-9.png); - background-position: -1558px -1525px; - width: 81px; - height: 99px; -} -.Mount_Icon_Hedgehog-CottonCandyPink { - background-image: url(spritesmith-main-9.png); - background-position: -1674px 0px; - width: 81px; - height: 99px; -} -.Mount_Icon_Hedgehog-Desert { - background-image: url(spritesmith-main-9.png); - background-position: -1674px -100px; - width: 81px; - height: 99px; -} -.Mount_Icon_Hedgehog-Golden { - background-image: url(spritesmith-main-9.png); - background-position: -1674px -200px; - width: 81px; - height: 99px; -} -.Mount_Icon_Hedgehog-Red { - background-image: url(spritesmith-main-9.png); - background-position: -1674px -300px; - width: 81px; - height: 99px; -} -.Mount_Icon_Hedgehog-Shade { - background-image: url(spritesmith-main-9.png); - background-position: -1674px -400px; - width: 81px; - height: 99px; -} -.Mount_Icon_Hedgehog-Skeleton { - background-image: url(spritesmith-main-9.png); - background-position: -1674px -500px; - width: 81px; - height: 99px; -} -.Mount_Icon_Hedgehog-White { - background-image: url(spritesmith-main-9.png); - background-position: -1674px -600px; - width: 81px; - height: 99px; -} -.Mount_Icon_Hedgehog-Zombie { - background-image: url(spritesmith-main-9.png); - background-position: -1674px -700px; - width: 81px; - height: 99px; -} -.Mount_Icon_Horse-Base { - background-image: url(spritesmith-main-9.png); - background-position: -1674px -800px; - width: 81px; - height: 99px; -} -.Mount_Icon_Horse-CottonCandyBlue { - background-image: url(spritesmith-main-9.png); - background-position: -1674px -900px; - width: 81px; - height: 99px; -} -.Mount_Icon_Horse-CottonCandyPink { - background-image: url(spritesmith-main-9.png); - background-position: -1674px -1000px; - width: 81px; - height: 99px; -} -.Mount_Icon_Horse-Desert { - background-image: url(spritesmith-main-9.png); - background-position: -1674px -1100px; - width: 81px; - height: 99px; -} -.Mount_Icon_Horse-Golden { - background-image: url(spritesmith-main-9.png); - background-position: -1674px -1200px; - width: 81px; - height: 99px; -} -.Mount_Icon_Horse-Red { - background-image: url(spritesmith-main-9.png); - background-position: -1674px -1300px; - width: 81px; - height: 99px; -} -.Mount_Icon_Horse-Shade { - background-image: url(spritesmith-main-9.png); - background-position: -1674px -1400px; - width: 81px; - height: 99px; -} -.Mount_Icon_Horse-Skeleton { - background-image: url(spritesmith-main-9.png); - background-position: -1674px -1500px; - width: 81px; - height: 99px; -} -.Mount_Icon_Horse-White { - background-image: url(spritesmith-main-9.png); - background-position: 0px -1625px; - width: 81px; - height: 99px; -} -.Mount_Icon_Horse-Zombie { - background-image: url(spritesmith-main-9.png); - background-position: -1056px -1219px; - width: 81px; - height: 99px; -} diff --git a/common/dist/sprites/spritesmith-main-9.png b/common/dist/sprites/spritesmith-main-9.png index 5f3be7b6a1..ea03fb149b 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/emoji/+1.png b/common/img/emoji/+1.png deleted file mode 100644 index 3a43ecae29..0000000000 Binary files a/common/img/emoji/+1.png and /dev/null differ diff --git a/common/img/emoji/-1.png b/common/img/emoji/-1.png deleted file mode 100644 index e44c04219e..0000000000 Binary files a/common/img/emoji/-1.png and /dev/null differ diff --git a/common/img/emoji/100.png b/common/img/emoji/100.png deleted file mode 100644 index bce9ab14f5..0000000000 Binary files a/common/img/emoji/100.png and /dev/null differ diff --git a/common/img/emoji/1234.png b/common/img/emoji/1234.png deleted file mode 100644 index c47c2e1f9f..0000000000 Binary files a/common/img/emoji/1234.png and /dev/null differ diff --git a/common/img/emoji/8ball.png b/common/img/emoji/8ball.png deleted file mode 100644 index c2c710d450..0000000000 Binary files a/common/img/emoji/8ball.png and /dev/null differ diff --git a/common/img/emoji/a.png b/common/img/emoji/a.png deleted file mode 100644 index 4908a44fc0..0000000000 Binary files a/common/img/emoji/a.png and /dev/null differ diff --git a/common/img/emoji/ab.png b/common/img/emoji/ab.png deleted file mode 100644 index 2a52220476..0000000000 Binary files a/common/img/emoji/ab.png and /dev/null differ diff --git a/common/img/emoji/abc.png b/common/img/emoji/abc.png deleted file mode 100644 index 505d40a155..0000000000 Binary files a/common/img/emoji/abc.png and /dev/null differ diff --git a/common/img/emoji/abcd.png b/common/img/emoji/abcd.png deleted file mode 100644 index 5218470b63..0000000000 Binary files a/common/img/emoji/abcd.png and /dev/null differ diff --git a/common/img/emoji/accept.png b/common/img/emoji/accept.png deleted file mode 100644 index 2d20090318..0000000000 Binary files a/common/img/emoji/accept.png and /dev/null differ diff --git a/common/img/emoji/aerial_tramway.png b/common/img/emoji/aerial_tramway.png deleted file mode 100644 index 38f6dfe233..0000000000 Binary files a/common/img/emoji/aerial_tramway.png and /dev/null differ diff --git a/common/img/emoji/airplane.png b/common/img/emoji/airplane.png deleted file mode 100644 index 8407cb6757..0000000000 Binary files a/common/img/emoji/airplane.png and /dev/null differ diff --git a/common/img/emoji/alarm_clock.png b/common/img/emoji/alarm_clock.png deleted file mode 100644 index 86ca8c8ed4..0000000000 Binary files a/common/img/emoji/alarm_clock.png and /dev/null differ diff --git a/common/img/emoji/alien.png b/common/img/emoji/alien.png deleted file mode 100644 index e3fd76a78d..0000000000 Binary files a/common/img/emoji/alien.png and /dev/null differ diff --git a/common/img/emoji/ambulance.png b/common/img/emoji/ambulance.png deleted file mode 100644 index b740f45dba..0000000000 Binary files a/common/img/emoji/ambulance.png and /dev/null differ diff --git a/common/img/emoji/anchor.png b/common/img/emoji/anchor.png deleted file mode 100644 index 0c5192e647..0000000000 Binary files a/common/img/emoji/anchor.png and /dev/null differ diff --git a/common/img/emoji/angel.png b/common/img/emoji/angel.png deleted file mode 100644 index da52c310c6..0000000000 Binary files a/common/img/emoji/angel.png and /dev/null differ diff --git a/common/img/emoji/anger.png b/common/img/emoji/anger.png deleted file mode 100644 index 6fb4dca185..0000000000 Binary files a/common/img/emoji/anger.png and /dev/null differ diff --git a/common/img/emoji/angry.png b/common/img/emoji/angry.png deleted file mode 100644 index 34174f5e5c..0000000000 Binary files a/common/img/emoji/angry.png and /dev/null differ diff --git a/common/img/emoji/anguished.png b/common/img/emoji/anguished.png deleted file mode 100644 index c2edad796e..0000000000 Binary files a/common/img/emoji/anguished.png and /dev/null differ diff --git a/common/img/emoji/ant.png b/common/img/emoji/ant.png deleted file mode 100644 index b92d1cc14b..0000000000 Binary files a/common/img/emoji/ant.png and /dev/null differ diff --git a/common/img/emoji/apple.png b/common/img/emoji/apple.png deleted file mode 100644 index 08aa17b951..0000000000 Binary files a/common/img/emoji/apple.png and /dev/null differ diff --git a/common/img/emoji/aquarius.png b/common/img/emoji/aquarius.png deleted file mode 100644 index cbff66edcf..0000000000 Binary files a/common/img/emoji/aquarius.png and /dev/null differ diff --git a/common/img/emoji/aries.png b/common/img/emoji/aries.png deleted file mode 100644 index d676fd3920..0000000000 Binary files a/common/img/emoji/aries.png and /dev/null differ diff --git a/common/img/emoji/arrow_backward.png b/common/img/emoji/arrow_backward.png deleted file mode 100644 index 2be422ba39..0000000000 Binary files a/common/img/emoji/arrow_backward.png and /dev/null differ diff --git a/common/img/emoji/arrow_double_down.png b/common/img/emoji/arrow_double_down.png deleted file mode 100644 index 2ecbebcda1..0000000000 Binary files a/common/img/emoji/arrow_double_down.png and /dev/null differ diff --git a/common/img/emoji/arrow_double_up.png b/common/img/emoji/arrow_double_up.png deleted file mode 100644 index d42979d4bf..0000000000 Binary files a/common/img/emoji/arrow_double_up.png and /dev/null differ diff --git a/common/img/emoji/arrow_down.png b/common/img/emoji/arrow_down.png deleted file mode 100644 index 3956eb399f..0000000000 Binary files a/common/img/emoji/arrow_down.png and /dev/null differ diff --git a/common/img/emoji/arrow_down_small.png b/common/img/emoji/arrow_down_small.png deleted file mode 100644 index f7f2d51013..0000000000 Binary files a/common/img/emoji/arrow_down_small.png and /dev/null differ diff --git a/common/img/emoji/arrow_forward.png b/common/img/emoji/arrow_forward.png deleted file mode 100644 index fbfe711b64..0000000000 Binary files a/common/img/emoji/arrow_forward.png and /dev/null differ diff --git a/common/img/emoji/arrow_heading_down.png b/common/img/emoji/arrow_heading_down.png deleted file mode 100644 index 56dd3b9d3c..0000000000 Binary files a/common/img/emoji/arrow_heading_down.png and /dev/null differ diff --git a/common/img/emoji/arrow_heading_up.png b/common/img/emoji/arrow_heading_up.png deleted file mode 100644 index c8f670a1ef..0000000000 Binary files a/common/img/emoji/arrow_heading_up.png and /dev/null differ diff --git a/common/img/emoji/arrow_left.png b/common/img/emoji/arrow_left.png deleted file mode 100644 index 9d7d1b5687..0000000000 Binary files a/common/img/emoji/arrow_left.png and /dev/null differ diff --git a/common/img/emoji/arrow_lower_left.png b/common/img/emoji/arrow_lower_left.png deleted file mode 100644 index a4438cb6e7..0000000000 Binary files a/common/img/emoji/arrow_lower_left.png and /dev/null differ diff --git a/common/img/emoji/arrow_lower_right.png b/common/img/emoji/arrow_lower_right.png deleted file mode 100644 index 2a15cc7ccc..0000000000 Binary files a/common/img/emoji/arrow_lower_right.png and /dev/null differ diff --git a/common/img/emoji/arrow_right.png b/common/img/emoji/arrow_right.png deleted file mode 100644 index e5cca853da..0000000000 Binary files a/common/img/emoji/arrow_right.png and /dev/null differ diff --git a/common/img/emoji/arrow_right_hook.png b/common/img/emoji/arrow_right_hook.png deleted file mode 100644 index 8b4ea6e172..0000000000 Binary files a/common/img/emoji/arrow_right_hook.png and /dev/null differ diff --git a/common/img/emoji/arrow_up.png b/common/img/emoji/arrow_up.png deleted file mode 100644 index 565ce2952a..0000000000 Binary files a/common/img/emoji/arrow_up.png and /dev/null differ diff --git a/common/img/emoji/arrow_up_down.png b/common/img/emoji/arrow_up_down.png deleted file mode 100644 index b718c21458..0000000000 Binary files a/common/img/emoji/arrow_up_down.png and /dev/null differ diff --git a/common/img/emoji/arrow_up_small.png b/common/img/emoji/arrow_up_small.png deleted file mode 100644 index 1217331977..0000000000 Binary files a/common/img/emoji/arrow_up_small.png and /dev/null differ diff --git a/common/img/emoji/arrow_upper_left.png b/common/img/emoji/arrow_upper_left.png deleted file mode 100644 index 12aebd9a7d..0000000000 Binary files a/common/img/emoji/arrow_upper_left.png and /dev/null differ diff --git a/common/img/emoji/arrow_upper_right.png b/common/img/emoji/arrow_upper_right.png deleted file mode 100644 index 0daf4e9408..0000000000 Binary files a/common/img/emoji/arrow_upper_right.png and /dev/null differ diff --git a/common/img/emoji/arrows_clockwise.png b/common/img/emoji/arrows_clockwise.png deleted file mode 100644 index 5f84d7e72b..0000000000 Binary files a/common/img/emoji/arrows_clockwise.png and /dev/null differ diff --git a/common/img/emoji/arrows_counterclockwise.png b/common/img/emoji/arrows_counterclockwise.png deleted file mode 100644 index 1933ae18b9..0000000000 Binary files a/common/img/emoji/arrows_counterclockwise.png and /dev/null differ diff --git a/common/img/emoji/art.png b/common/img/emoji/art.png deleted file mode 100644 index d45212b034..0000000000 Binary files a/common/img/emoji/art.png and /dev/null differ diff --git a/common/img/emoji/articulated_lorry.png b/common/img/emoji/articulated_lorry.png deleted file mode 100644 index 81ec1f9174..0000000000 Binary files a/common/img/emoji/articulated_lorry.png and /dev/null differ diff --git a/common/img/emoji/astonished.png b/common/img/emoji/astonished.png deleted file mode 100644 index 858a83484a..0000000000 Binary files a/common/img/emoji/astonished.png and /dev/null differ diff --git a/common/img/emoji/athletic_shoe.png b/common/img/emoji/athletic_shoe.png deleted file mode 100644 index 45b82e61cf..0000000000 Binary files a/common/img/emoji/athletic_shoe.png and /dev/null differ diff --git a/common/img/emoji/atm.png b/common/img/emoji/atm.png deleted file mode 100644 index c2846e7921..0000000000 Binary files a/common/img/emoji/atm.png and /dev/null differ diff --git a/common/img/emoji/b.png b/common/img/emoji/b.png deleted file mode 100644 index 8742b3d2e3..0000000000 Binary files a/common/img/emoji/b.png and /dev/null differ diff --git a/common/img/emoji/baby.png b/common/img/emoji/baby.png deleted file mode 100644 index 3b29da40b6..0000000000 Binary files a/common/img/emoji/baby.png and /dev/null differ diff --git a/common/img/emoji/baby_bottle.png b/common/img/emoji/baby_bottle.png deleted file mode 100644 index 1b2cfe5e30..0000000000 Binary files a/common/img/emoji/baby_bottle.png and /dev/null differ diff --git a/common/img/emoji/baby_chick.png b/common/img/emoji/baby_chick.png deleted file mode 100644 index 9be8d29300..0000000000 Binary files a/common/img/emoji/baby_chick.png and /dev/null differ diff --git a/common/img/emoji/baby_symbol.png b/common/img/emoji/baby_symbol.png deleted file mode 100644 index 2e58725cf5..0000000000 Binary files a/common/img/emoji/baby_symbol.png and /dev/null differ diff --git a/common/img/emoji/back.png b/common/img/emoji/back.png deleted file mode 100644 index 0cde628762..0000000000 Binary files a/common/img/emoji/back.png and /dev/null differ diff --git a/common/img/emoji/baggage_claim.png b/common/img/emoji/baggage_claim.png deleted file mode 100644 index 59ae044a45..0000000000 Binary files a/common/img/emoji/baggage_claim.png and /dev/null differ diff --git a/common/img/emoji/balloon.png b/common/img/emoji/balloon.png deleted file mode 100644 index a4d3207b8e..0000000000 Binary files a/common/img/emoji/balloon.png and /dev/null differ diff --git a/common/img/emoji/ballot_box_with_check.png b/common/img/emoji/ballot_box_with_check.png deleted file mode 100644 index f07a466c77..0000000000 Binary files a/common/img/emoji/ballot_box_with_check.png and /dev/null differ diff --git a/common/img/emoji/bamboo.png b/common/img/emoji/bamboo.png deleted file mode 100644 index fc858d0fc2..0000000000 Binary files a/common/img/emoji/bamboo.png and /dev/null differ diff --git a/common/img/emoji/banana.png b/common/img/emoji/banana.png deleted file mode 100644 index a0563afb95..0000000000 Binary files a/common/img/emoji/banana.png and /dev/null differ diff --git a/common/img/emoji/bangbang.png b/common/img/emoji/bangbang.png deleted file mode 100644 index 7270f0afe6..0000000000 Binary files a/common/img/emoji/bangbang.png and /dev/null differ diff --git a/common/img/emoji/bank.png b/common/img/emoji/bank.png deleted file mode 100644 index 1faa8777e4..0000000000 Binary files a/common/img/emoji/bank.png and /dev/null differ diff --git a/common/img/emoji/bar_chart.png b/common/img/emoji/bar_chart.png deleted file mode 100644 index 7871cc6032..0000000000 Binary files a/common/img/emoji/bar_chart.png and /dev/null differ diff --git a/common/img/emoji/barber.png b/common/img/emoji/barber.png deleted file mode 100644 index a10cb23228..0000000000 Binary files a/common/img/emoji/barber.png and /dev/null differ diff --git a/common/img/emoji/baseball.png b/common/img/emoji/baseball.png deleted file mode 100644 index da004e2ead..0000000000 Binary files a/common/img/emoji/baseball.png and /dev/null differ diff --git a/common/img/emoji/basketball.png b/common/img/emoji/basketball.png deleted file mode 100644 index ef694bec4c..0000000000 Binary files a/common/img/emoji/basketball.png and /dev/null differ diff --git a/common/img/emoji/bath.png b/common/img/emoji/bath.png deleted file mode 100644 index 8f75d1d249..0000000000 Binary files a/common/img/emoji/bath.png and /dev/null differ diff --git a/common/img/emoji/bathtub.png b/common/img/emoji/bathtub.png deleted file mode 100644 index 1c3f844ab2..0000000000 Binary files a/common/img/emoji/bathtub.png and /dev/null differ diff --git a/common/img/emoji/battery.png b/common/img/emoji/battery.png deleted file mode 100644 index aa7eedce4b..0000000000 Binary files a/common/img/emoji/battery.png and /dev/null differ diff --git a/common/img/emoji/bear.png b/common/img/emoji/bear.png deleted file mode 100644 index f5afe920e8..0000000000 Binary files a/common/img/emoji/bear.png and /dev/null differ diff --git a/common/img/emoji/bee.png b/common/img/emoji/bee.png deleted file mode 100644 index f53733953a..0000000000 Binary files a/common/img/emoji/bee.png and /dev/null differ diff --git a/common/img/emoji/beer.png b/common/img/emoji/beer.png deleted file mode 100644 index cd78bed744..0000000000 Binary files a/common/img/emoji/beer.png and /dev/null differ diff --git a/common/img/emoji/beers.png b/common/img/emoji/beers.png deleted file mode 100644 index cc5e4ab5aa..0000000000 Binary files a/common/img/emoji/beers.png and /dev/null differ diff --git a/common/img/emoji/beetle.png b/common/img/emoji/beetle.png deleted file mode 100644 index 222577ca7e..0000000000 Binary files a/common/img/emoji/beetle.png and /dev/null differ diff --git a/common/img/emoji/beginner.png b/common/img/emoji/beginner.png deleted file mode 100644 index 1f022d175d..0000000000 Binary files a/common/img/emoji/beginner.png and /dev/null differ diff --git a/common/img/emoji/bell.png b/common/img/emoji/bell.png deleted file mode 100644 index 69acceb286..0000000000 Binary files a/common/img/emoji/bell.png and /dev/null differ diff --git a/common/img/emoji/bento.png b/common/img/emoji/bento.png deleted file mode 100644 index c6d99e89b6..0000000000 Binary files a/common/img/emoji/bento.png and /dev/null differ diff --git a/common/img/emoji/bicyclist.png b/common/img/emoji/bicyclist.png deleted file mode 100644 index 4e3e0549c2..0000000000 Binary files a/common/img/emoji/bicyclist.png and /dev/null differ diff --git a/common/img/emoji/bike.png b/common/img/emoji/bike.png deleted file mode 100644 index 6573860272..0000000000 Binary files a/common/img/emoji/bike.png and /dev/null differ diff --git a/common/img/emoji/bikini.png b/common/img/emoji/bikini.png deleted file mode 100644 index 4ff63b40f8..0000000000 Binary files a/common/img/emoji/bikini.png and /dev/null differ diff --git a/common/img/emoji/bird.png b/common/img/emoji/bird.png deleted file mode 100644 index e6be8c0278..0000000000 Binary files a/common/img/emoji/bird.png and /dev/null differ diff --git a/common/img/emoji/birthday.png b/common/img/emoji/birthday.png deleted file mode 100644 index 36e8edcbec..0000000000 Binary files a/common/img/emoji/birthday.png and /dev/null differ diff --git a/common/img/emoji/black_circle.png b/common/img/emoji/black_circle.png deleted file mode 100644 index e46f9df615..0000000000 Binary files a/common/img/emoji/black_circle.png and /dev/null differ diff --git a/common/img/emoji/black_joker.png b/common/img/emoji/black_joker.png deleted file mode 100644 index 4c78f3614d..0000000000 Binary files a/common/img/emoji/black_joker.png and /dev/null differ diff --git a/common/img/emoji/black_large_square.png b/common/img/emoji/black_large_square.png deleted file mode 100644 index 71da10de81..0000000000 Binary files a/common/img/emoji/black_large_square.png and /dev/null differ diff --git a/common/img/emoji/black_medium_small_square.png b/common/img/emoji/black_medium_small_square.png deleted file mode 100644 index 25bfe9c453..0000000000 Binary files a/common/img/emoji/black_medium_small_square.png and /dev/null differ diff --git a/common/img/emoji/black_medium_square.png b/common/img/emoji/black_medium_square.png deleted file mode 100644 index 204cce12c2..0000000000 Binary files a/common/img/emoji/black_medium_square.png and /dev/null differ diff --git a/common/img/emoji/black_nib.png b/common/img/emoji/black_nib.png deleted file mode 100644 index 29f6994c11..0000000000 Binary files a/common/img/emoji/black_nib.png and /dev/null differ diff --git a/common/img/emoji/black_small_square.png b/common/img/emoji/black_small_square.png deleted file mode 100644 index a247751ece..0000000000 Binary files a/common/img/emoji/black_small_square.png and /dev/null differ diff --git a/common/img/emoji/black_square_button.png b/common/img/emoji/black_square_button.png deleted file mode 100644 index 7332e397ca..0000000000 Binary files a/common/img/emoji/black_square_button.png and /dev/null differ diff --git a/common/img/emoji/blossom.png b/common/img/emoji/blossom.png deleted file mode 100644 index 55a97353b4..0000000000 Binary files a/common/img/emoji/blossom.png and /dev/null differ diff --git a/common/img/emoji/blowfish.png b/common/img/emoji/blowfish.png deleted file mode 100644 index a1d47cb7e6..0000000000 Binary files a/common/img/emoji/blowfish.png and /dev/null differ diff --git a/common/img/emoji/blue_book.png b/common/img/emoji/blue_book.png deleted file mode 100644 index e2b9e8c797..0000000000 Binary files a/common/img/emoji/blue_book.png and /dev/null differ diff --git a/common/img/emoji/blue_car.png b/common/img/emoji/blue_car.png deleted file mode 100644 index 978291e087..0000000000 Binary files a/common/img/emoji/blue_car.png and /dev/null differ diff --git a/common/img/emoji/blue_heart.png b/common/img/emoji/blue_heart.png deleted file mode 100644 index baa29b31bc..0000000000 Binary files a/common/img/emoji/blue_heart.png and /dev/null differ diff --git a/common/img/emoji/blush.png b/common/img/emoji/blush.png deleted file mode 100644 index 1e9021cb6f..0000000000 Binary files a/common/img/emoji/blush.png and /dev/null differ diff --git a/common/img/emoji/boar.png b/common/img/emoji/boar.png deleted file mode 100644 index 8196ad4a14..0000000000 Binary files a/common/img/emoji/boar.png and /dev/null differ diff --git a/common/img/emoji/boat.png b/common/img/emoji/boat.png deleted file mode 100644 index ff656dc62b..0000000000 Binary files a/common/img/emoji/boat.png and /dev/null differ diff --git a/common/img/emoji/bomb.png b/common/img/emoji/bomb.png deleted file mode 100644 index 3289787dcf..0000000000 Binary files a/common/img/emoji/bomb.png and /dev/null differ diff --git a/common/img/emoji/book.png b/common/img/emoji/book.png deleted file mode 100644 index 8b698415c3..0000000000 Binary files a/common/img/emoji/book.png and /dev/null differ diff --git a/common/img/emoji/bookmark.png b/common/img/emoji/bookmark.png deleted file mode 100644 index dbee45c605..0000000000 Binary files a/common/img/emoji/bookmark.png and /dev/null differ diff --git a/common/img/emoji/bookmark_tabs.png b/common/img/emoji/bookmark_tabs.png deleted file mode 100644 index 0c4e3bf17d..0000000000 Binary files a/common/img/emoji/bookmark_tabs.png and /dev/null differ diff --git a/common/img/emoji/books.png b/common/img/emoji/books.png deleted file mode 100644 index dca06a1ad9..0000000000 Binary files a/common/img/emoji/books.png and /dev/null differ diff --git a/common/img/emoji/boom.png b/common/img/emoji/boom.png deleted file mode 100644 index bddeb8f49f..0000000000 Binary files a/common/img/emoji/boom.png and /dev/null differ diff --git a/common/img/emoji/boot.png b/common/img/emoji/boot.png deleted file mode 100644 index 58d0fdbcd0..0000000000 Binary files a/common/img/emoji/boot.png and /dev/null differ diff --git a/common/img/emoji/bouquet.png b/common/img/emoji/bouquet.png deleted file mode 100644 index ce637832e1..0000000000 Binary files a/common/img/emoji/bouquet.png and /dev/null differ diff --git a/common/img/emoji/bow.png b/common/img/emoji/bow.png deleted file mode 100644 index 024cb61049..0000000000 Binary files a/common/img/emoji/bow.png and /dev/null differ diff --git a/common/img/emoji/bowling.png b/common/img/emoji/bowling.png deleted file mode 100644 index 13d8ece2ee..0000000000 Binary files a/common/img/emoji/bowling.png and /dev/null differ diff --git a/common/img/emoji/bowtie.png b/common/img/emoji/bowtie.png deleted file mode 100644 index 28ff0c787d..0000000000 Binary files a/common/img/emoji/bowtie.png and /dev/null differ diff --git a/common/img/emoji/boy.png b/common/img/emoji/boy.png deleted file mode 100644 index f79f1f2980..0000000000 Binary files a/common/img/emoji/boy.png and /dev/null differ diff --git a/common/img/emoji/bread.png b/common/img/emoji/bread.png deleted file mode 100644 index 7e7c63753d..0000000000 Binary files a/common/img/emoji/bread.png and /dev/null differ diff --git a/common/img/emoji/bride_with_veil.png b/common/img/emoji/bride_with_veil.png deleted file mode 100644 index dd0b0cfdad..0000000000 Binary files a/common/img/emoji/bride_with_veil.png and /dev/null differ diff --git a/common/img/emoji/bridge_at_night.png b/common/img/emoji/bridge_at_night.png deleted file mode 100644 index 495b06c3df..0000000000 Binary files a/common/img/emoji/bridge_at_night.png and /dev/null differ diff --git a/common/img/emoji/briefcase.png b/common/img/emoji/briefcase.png deleted file mode 100644 index 46e82b0010..0000000000 Binary files a/common/img/emoji/briefcase.png and /dev/null differ diff --git a/common/img/emoji/broken_heart.png b/common/img/emoji/broken_heart.png deleted file mode 100644 index a1bc850ecb..0000000000 Binary files a/common/img/emoji/broken_heart.png and /dev/null differ diff --git a/common/img/emoji/bug.png b/common/img/emoji/bug.png deleted file mode 100644 index c2eaf7a708..0000000000 Binary files a/common/img/emoji/bug.png and /dev/null differ diff --git a/common/img/emoji/bulb.png b/common/img/emoji/bulb.png deleted file mode 100644 index 23afca1c73..0000000000 Binary files a/common/img/emoji/bulb.png and /dev/null differ diff --git a/common/img/emoji/bullettrain_front.png b/common/img/emoji/bullettrain_front.png deleted file mode 100644 index 16651acff8..0000000000 Binary files a/common/img/emoji/bullettrain_front.png and /dev/null differ diff --git a/common/img/emoji/bullettrain_side.png b/common/img/emoji/bullettrain_side.png deleted file mode 100644 index 8eca368458..0000000000 Binary files a/common/img/emoji/bullettrain_side.png and /dev/null differ diff --git a/common/img/emoji/bus.png b/common/img/emoji/bus.png deleted file mode 100644 index 823aa39e49..0000000000 Binary files a/common/img/emoji/bus.png and /dev/null differ diff --git a/common/img/emoji/busstop.png b/common/img/emoji/busstop.png deleted file mode 100644 index 99af2322ad..0000000000 Binary files a/common/img/emoji/busstop.png and /dev/null differ diff --git a/common/img/emoji/bust_in_silhouette.png b/common/img/emoji/bust_in_silhouette.png deleted file mode 100644 index d131398692..0000000000 Binary files a/common/img/emoji/bust_in_silhouette.png and /dev/null differ diff --git a/common/img/emoji/busts_in_silhouette.png b/common/img/emoji/busts_in_silhouette.png deleted file mode 100644 index 1f3aabcff6..0000000000 Binary files a/common/img/emoji/busts_in_silhouette.png and /dev/null differ diff --git a/common/img/emoji/cactus.png b/common/img/emoji/cactus.png deleted file mode 100644 index 5a2c3cc725..0000000000 Binary files a/common/img/emoji/cactus.png and /dev/null differ diff --git a/common/img/emoji/cake.png b/common/img/emoji/cake.png deleted file mode 100644 index efeb9b4b21..0000000000 Binary files a/common/img/emoji/cake.png and /dev/null differ diff --git a/common/img/emoji/calendar.png b/common/img/emoji/calendar.png deleted file mode 100644 index 900b868bb9..0000000000 Binary files a/common/img/emoji/calendar.png and /dev/null differ diff --git a/common/img/emoji/calling.png b/common/img/emoji/calling.png deleted file mode 100644 index 837897f261..0000000000 Binary files a/common/img/emoji/calling.png and /dev/null differ diff --git a/common/img/emoji/camel.png b/common/img/emoji/camel.png deleted file mode 100644 index 496c186ae6..0000000000 Binary files a/common/img/emoji/camel.png and /dev/null differ diff --git a/common/img/emoji/camera.png b/common/img/emoji/camera.png deleted file mode 100644 index 397d03b393..0000000000 Binary files a/common/img/emoji/camera.png and /dev/null differ diff --git a/common/img/emoji/cancer.png b/common/img/emoji/cancer.png deleted file mode 100644 index ea43a4a2a0..0000000000 Binary files a/common/img/emoji/cancer.png and /dev/null differ diff --git a/common/img/emoji/candy.png b/common/img/emoji/candy.png deleted file mode 100644 index 33722f236e..0000000000 Binary files a/common/img/emoji/candy.png and /dev/null differ diff --git a/common/img/emoji/capital_abcd.png b/common/img/emoji/capital_abcd.png deleted file mode 100644 index ffc0cba4b4..0000000000 Binary files a/common/img/emoji/capital_abcd.png and /dev/null differ diff --git a/common/img/emoji/capricorn.png b/common/img/emoji/capricorn.png deleted file mode 100644 index f2044e7893..0000000000 Binary files a/common/img/emoji/capricorn.png and /dev/null differ diff --git a/common/img/emoji/car.png b/common/img/emoji/car.png deleted file mode 100644 index d70a2f0626..0000000000 Binary files a/common/img/emoji/car.png and /dev/null differ diff --git a/common/img/emoji/card_index.png b/common/img/emoji/card_index.png deleted file mode 100644 index 374e94e9e8..0000000000 Binary files a/common/img/emoji/card_index.png and /dev/null differ diff --git a/common/img/emoji/carousel_horse.png b/common/img/emoji/carousel_horse.png deleted file mode 100644 index 765d2c0a8b..0000000000 Binary files a/common/img/emoji/carousel_horse.png and /dev/null differ diff --git a/common/img/emoji/cat.png b/common/img/emoji/cat.png deleted file mode 100644 index 09b9ef79a7..0000000000 Binary files a/common/img/emoji/cat.png and /dev/null differ diff --git a/common/img/emoji/cat2.png b/common/img/emoji/cat2.png deleted file mode 100644 index 977c992c52..0000000000 Binary files a/common/img/emoji/cat2.png and /dev/null differ diff --git a/common/img/emoji/cd.png b/common/img/emoji/cd.png deleted file mode 100644 index baff835c48..0000000000 Binary files a/common/img/emoji/cd.png and /dev/null differ diff --git a/common/img/emoji/chart.png b/common/img/emoji/chart.png deleted file mode 100644 index ac2c4bb093..0000000000 Binary files a/common/img/emoji/chart.png and /dev/null differ diff --git a/common/img/emoji/chart_with_downwards_trend.png b/common/img/emoji/chart_with_downwards_trend.png deleted file mode 100644 index 65b82f0441..0000000000 Binary files a/common/img/emoji/chart_with_downwards_trend.png and /dev/null differ diff --git a/common/img/emoji/chart_with_upwards_trend.png b/common/img/emoji/chart_with_upwards_trend.png deleted file mode 100644 index de3e9ba7b5..0000000000 Binary files a/common/img/emoji/chart_with_upwards_trend.png and /dev/null differ diff --git a/common/img/emoji/checkered_flag.png b/common/img/emoji/checkered_flag.png deleted file mode 100644 index ead4a68dd3..0000000000 Binary files a/common/img/emoji/checkered_flag.png and /dev/null differ diff --git a/common/img/emoji/cherries.png b/common/img/emoji/cherries.png deleted file mode 100644 index 8d3e044f2f..0000000000 Binary files a/common/img/emoji/cherries.png and /dev/null differ diff --git a/common/img/emoji/cherry_blossom.png b/common/img/emoji/cherry_blossom.png deleted file mode 100644 index e031554999..0000000000 Binary files a/common/img/emoji/cherry_blossom.png and /dev/null differ diff --git a/common/img/emoji/chestnut.png b/common/img/emoji/chestnut.png deleted file mode 100644 index 066fb6bf6d..0000000000 Binary files a/common/img/emoji/chestnut.png and /dev/null differ diff --git a/common/img/emoji/chicken.png b/common/img/emoji/chicken.png deleted file mode 100644 index 6d25c0ef4a..0000000000 Binary files a/common/img/emoji/chicken.png and /dev/null differ diff --git a/common/img/emoji/children_crossing.png b/common/img/emoji/children_crossing.png deleted file mode 100644 index b0302ae625..0000000000 Binary files a/common/img/emoji/children_crossing.png and /dev/null differ diff --git a/common/img/emoji/chocolate_bar.png b/common/img/emoji/chocolate_bar.png deleted file mode 100644 index c7ec19d079..0000000000 Binary files a/common/img/emoji/chocolate_bar.png and /dev/null differ diff --git a/common/img/emoji/christmas_tree.png b/common/img/emoji/christmas_tree.png deleted file mode 100644 index d813b9593d..0000000000 Binary files a/common/img/emoji/christmas_tree.png and /dev/null differ diff --git a/common/img/emoji/church.png b/common/img/emoji/church.png deleted file mode 100644 index 4c07c6b9ea..0000000000 Binary files a/common/img/emoji/church.png and /dev/null differ diff --git a/common/img/emoji/cinema.png b/common/img/emoji/cinema.png deleted file mode 100644 index a990ccf99c..0000000000 Binary files a/common/img/emoji/cinema.png and /dev/null differ diff --git a/common/img/emoji/circus_tent.png b/common/img/emoji/circus_tent.png deleted file mode 100644 index 4af8719aa0..0000000000 Binary files a/common/img/emoji/circus_tent.png and /dev/null differ diff --git a/common/img/emoji/city_sunrise.png b/common/img/emoji/city_sunrise.png deleted file mode 100644 index 91ca2a40b6..0000000000 Binary files a/common/img/emoji/city_sunrise.png and /dev/null differ diff --git a/common/img/emoji/city_sunset.png b/common/img/emoji/city_sunset.png deleted file mode 100644 index 7cb178a2cc..0000000000 Binary files a/common/img/emoji/city_sunset.png and /dev/null differ diff --git a/common/img/emoji/cl.png b/common/img/emoji/cl.png deleted file mode 100644 index 15ac67525a..0000000000 Binary files a/common/img/emoji/cl.png and /dev/null differ diff --git a/common/img/emoji/clap.png b/common/img/emoji/clap.png deleted file mode 100644 index d01c982a75..0000000000 Binary files a/common/img/emoji/clap.png and /dev/null differ diff --git a/common/img/emoji/clapper.png b/common/img/emoji/clapper.png deleted file mode 100644 index 4e1dc111d7..0000000000 Binary files a/common/img/emoji/clapper.png and /dev/null differ diff --git a/common/img/emoji/clipboard.png b/common/img/emoji/clipboard.png deleted file mode 100644 index e2c74e6df8..0000000000 Binary files a/common/img/emoji/clipboard.png and /dev/null differ diff --git a/common/img/emoji/clock1.png b/common/img/emoji/clock1.png deleted file mode 100644 index ca34e89751..0000000000 Binary files a/common/img/emoji/clock1.png and /dev/null differ diff --git a/common/img/emoji/clock10.png b/common/img/emoji/clock10.png deleted file mode 100644 index f710bef5c4..0000000000 Binary files a/common/img/emoji/clock10.png and /dev/null differ diff --git a/common/img/emoji/clock1030.png b/common/img/emoji/clock1030.png deleted file mode 100644 index 84a3bc8fbd..0000000000 Binary files a/common/img/emoji/clock1030.png and /dev/null differ diff --git a/common/img/emoji/clock11.png b/common/img/emoji/clock11.png deleted file mode 100644 index fbc165b995..0000000000 Binary files a/common/img/emoji/clock11.png and /dev/null differ diff --git a/common/img/emoji/clock1130.png b/common/img/emoji/clock1130.png deleted file mode 100644 index 415999ec83..0000000000 Binary files a/common/img/emoji/clock1130.png and /dev/null differ diff --git a/common/img/emoji/clock12.png b/common/img/emoji/clock12.png deleted file mode 100644 index c1ca82f395..0000000000 Binary files a/common/img/emoji/clock12.png and /dev/null differ diff --git a/common/img/emoji/clock1230.png b/common/img/emoji/clock1230.png deleted file mode 100644 index a6527154d1..0000000000 Binary files a/common/img/emoji/clock1230.png and /dev/null differ diff --git a/common/img/emoji/clock130.png b/common/img/emoji/clock130.png deleted file mode 100644 index df93920190..0000000000 Binary files a/common/img/emoji/clock130.png and /dev/null differ diff --git a/common/img/emoji/clock2.png b/common/img/emoji/clock2.png deleted file mode 100644 index 1a12524ee4..0000000000 Binary files a/common/img/emoji/clock2.png and /dev/null differ diff --git a/common/img/emoji/clock230.png b/common/img/emoji/clock230.png deleted file mode 100644 index f12c6912af..0000000000 Binary files a/common/img/emoji/clock230.png and /dev/null differ diff --git a/common/img/emoji/clock3.png b/common/img/emoji/clock3.png deleted file mode 100644 index cd99bb155d..0000000000 Binary files a/common/img/emoji/clock3.png and /dev/null differ diff --git a/common/img/emoji/clock330.png b/common/img/emoji/clock330.png deleted file mode 100644 index 1dc9628ea2..0000000000 Binary files a/common/img/emoji/clock330.png and /dev/null differ diff --git a/common/img/emoji/clock4.png b/common/img/emoji/clock4.png deleted file mode 100644 index 7274e8b072..0000000000 Binary files a/common/img/emoji/clock4.png and /dev/null differ diff --git a/common/img/emoji/clock430.png b/common/img/emoji/clock430.png deleted file mode 100644 index 7726aaea1b..0000000000 Binary files a/common/img/emoji/clock430.png and /dev/null differ diff --git a/common/img/emoji/clock5.png b/common/img/emoji/clock5.png deleted file mode 100644 index 3ed5a81af4..0000000000 Binary files a/common/img/emoji/clock5.png and /dev/null differ diff --git a/common/img/emoji/clock530.png b/common/img/emoji/clock530.png deleted file mode 100644 index e08d4ad2ba..0000000000 Binary files a/common/img/emoji/clock530.png and /dev/null differ diff --git a/common/img/emoji/clock6.png b/common/img/emoji/clock6.png deleted file mode 100644 index ac38cb9260..0000000000 Binary files a/common/img/emoji/clock6.png and /dev/null differ diff --git a/common/img/emoji/clock630.png b/common/img/emoji/clock630.png deleted file mode 100644 index 46f0681f1c..0000000000 Binary files a/common/img/emoji/clock630.png and /dev/null differ diff --git a/common/img/emoji/clock7.png b/common/img/emoji/clock7.png deleted file mode 100644 index 6a138dfdea..0000000000 Binary files a/common/img/emoji/clock7.png and /dev/null differ diff --git a/common/img/emoji/clock730.png b/common/img/emoji/clock730.png deleted file mode 100644 index 18aab22fd8..0000000000 Binary files a/common/img/emoji/clock730.png and /dev/null differ diff --git a/common/img/emoji/clock8.png b/common/img/emoji/clock8.png deleted file mode 100644 index 6690cd74ea..0000000000 Binary files a/common/img/emoji/clock8.png and /dev/null differ diff --git a/common/img/emoji/clock830.png b/common/img/emoji/clock830.png deleted file mode 100644 index ec3e382dd4..0000000000 Binary files a/common/img/emoji/clock830.png and /dev/null differ diff --git a/common/img/emoji/clock9.png b/common/img/emoji/clock9.png deleted file mode 100644 index c4ad74609f..0000000000 Binary files a/common/img/emoji/clock9.png and /dev/null differ diff --git a/common/img/emoji/clock930.png b/common/img/emoji/clock930.png deleted file mode 100644 index fd35221428..0000000000 Binary files a/common/img/emoji/clock930.png and /dev/null differ diff --git a/common/img/emoji/closed_book.png b/common/img/emoji/closed_book.png deleted file mode 100644 index 484029c5eb..0000000000 Binary files a/common/img/emoji/closed_book.png and /dev/null differ diff --git a/common/img/emoji/closed_lock_with_key.png b/common/img/emoji/closed_lock_with_key.png deleted file mode 100644 index e6fdf6cb20..0000000000 Binary files a/common/img/emoji/closed_lock_with_key.png and /dev/null differ diff --git a/common/img/emoji/closed_umbrella.png b/common/img/emoji/closed_umbrella.png deleted file mode 100644 index 072c5c217a..0000000000 Binary files a/common/img/emoji/closed_umbrella.png and /dev/null differ diff --git a/common/img/emoji/cloud.png b/common/img/emoji/cloud.png deleted file mode 100644 index b31c08c0b8..0000000000 Binary files a/common/img/emoji/cloud.png and /dev/null differ diff --git a/common/img/emoji/clubs.png b/common/img/emoji/clubs.png deleted file mode 100644 index bfab536569..0000000000 Binary files a/common/img/emoji/clubs.png and /dev/null differ diff --git a/common/img/emoji/cn.png b/common/img/emoji/cn.png deleted file mode 100644 index b30dcc53df..0000000000 Binary files a/common/img/emoji/cn.png and /dev/null differ diff --git a/common/img/emoji/cocktail.png b/common/img/emoji/cocktail.png deleted file mode 100644 index 28b45ea514..0000000000 Binary files a/common/img/emoji/cocktail.png and /dev/null differ diff --git a/common/img/emoji/coffee.png b/common/img/emoji/coffee.png deleted file mode 100644 index 57e1adcb04..0000000000 Binary files a/common/img/emoji/coffee.png and /dev/null differ diff --git a/common/img/emoji/cold_sweat.png b/common/img/emoji/cold_sweat.png deleted file mode 100644 index b9e39bc60f..0000000000 Binary files a/common/img/emoji/cold_sweat.png and /dev/null differ diff --git a/common/img/emoji/collision.png b/common/img/emoji/collision.png deleted file mode 100644 index bddeb8f49f..0000000000 Binary files a/common/img/emoji/collision.png and /dev/null differ diff --git a/common/img/emoji/computer.png b/common/img/emoji/computer.png deleted file mode 100644 index d4d2687627..0000000000 Binary files a/common/img/emoji/computer.png and /dev/null differ diff --git a/common/img/emoji/confetti_ball.png b/common/img/emoji/confetti_ball.png deleted file mode 100644 index bd293e3d87..0000000000 Binary files a/common/img/emoji/confetti_ball.png and /dev/null differ diff --git a/common/img/emoji/confounded.png b/common/img/emoji/confounded.png deleted file mode 100644 index a5877a0a79..0000000000 Binary files a/common/img/emoji/confounded.png and /dev/null differ diff --git a/common/img/emoji/confused.png b/common/img/emoji/confused.png deleted file mode 100644 index 18ff760ac9..0000000000 Binary files a/common/img/emoji/confused.png and /dev/null differ diff --git a/common/img/emoji/congratulations.png b/common/img/emoji/congratulations.png deleted file mode 100644 index dcbb1d229e..0000000000 Binary files a/common/img/emoji/congratulations.png and /dev/null differ diff --git a/common/img/emoji/construction.png b/common/img/emoji/construction.png deleted file mode 100644 index 523e9f10bf..0000000000 Binary files a/common/img/emoji/construction.png and /dev/null differ diff --git a/common/img/emoji/construction_worker.png b/common/img/emoji/construction_worker.png deleted file mode 100644 index 4d64860478..0000000000 Binary files a/common/img/emoji/construction_worker.png and /dev/null differ diff --git a/common/img/emoji/convenience_store.png b/common/img/emoji/convenience_store.png deleted file mode 100644 index 671696c2df..0000000000 Binary files a/common/img/emoji/convenience_store.png and /dev/null differ diff --git a/common/img/emoji/cookie.png b/common/img/emoji/cookie.png deleted file mode 100644 index 653edb258c..0000000000 Binary files a/common/img/emoji/cookie.png and /dev/null differ diff --git a/common/img/emoji/cool.png b/common/img/emoji/cool.png deleted file mode 100644 index 937dcd7921..0000000000 Binary files a/common/img/emoji/cool.png and /dev/null differ diff --git a/common/img/emoji/cop.png b/common/img/emoji/cop.png deleted file mode 100644 index 43a5a84f82..0000000000 Binary files a/common/img/emoji/cop.png and /dev/null differ diff --git a/common/img/emoji/copyright.png b/common/img/emoji/copyright.png deleted file mode 100644 index d59f580a94..0000000000 Binary files a/common/img/emoji/copyright.png and /dev/null differ diff --git a/common/img/emoji/corn.png b/common/img/emoji/corn.png deleted file mode 100644 index fe5d8b1287..0000000000 Binary files a/common/img/emoji/corn.png and /dev/null differ diff --git a/common/img/emoji/couple.png b/common/img/emoji/couple.png deleted file mode 100644 index 9e51f40e16..0000000000 Binary files a/common/img/emoji/couple.png and /dev/null differ diff --git a/common/img/emoji/couple_with_heart.png b/common/img/emoji/couple_with_heart.png deleted file mode 100644 index c503f40a93..0000000000 Binary files a/common/img/emoji/couple_with_heart.png and /dev/null differ diff --git a/common/img/emoji/couplekiss.png b/common/img/emoji/couplekiss.png deleted file mode 100644 index d02790822e..0000000000 Binary files a/common/img/emoji/couplekiss.png and /dev/null differ diff --git a/common/img/emoji/cow.png b/common/img/emoji/cow.png deleted file mode 100644 index 12e1ab6c0b..0000000000 Binary files a/common/img/emoji/cow.png and /dev/null differ diff --git a/common/img/emoji/cow2.png b/common/img/emoji/cow2.png deleted file mode 100644 index 594c92155b..0000000000 Binary files a/common/img/emoji/cow2.png and /dev/null differ diff --git a/common/img/emoji/credit_card.png b/common/img/emoji/credit_card.png deleted file mode 100644 index be1c1dd306..0000000000 Binary files a/common/img/emoji/credit_card.png and /dev/null differ diff --git a/common/img/emoji/crescent_moon.png b/common/img/emoji/crescent_moon.png deleted file mode 100644 index afdb450d1d..0000000000 Binary files a/common/img/emoji/crescent_moon.png and /dev/null differ diff --git a/common/img/emoji/crocodile.png b/common/img/emoji/crocodile.png deleted file mode 100644 index 7435d5ab3c..0000000000 Binary files a/common/img/emoji/crocodile.png and /dev/null differ diff --git a/common/img/emoji/crossed_flags.png b/common/img/emoji/crossed_flags.png deleted file mode 100644 index 2ffbb2627a..0000000000 Binary files a/common/img/emoji/crossed_flags.png and /dev/null differ diff --git a/common/img/emoji/crown.png b/common/img/emoji/crown.png deleted file mode 100644 index 39da1d5287..0000000000 Binary files a/common/img/emoji/crown.png and /dev/null differ diff --git a/common/img/emoji/cry.png b/common/img/emoji/cry.png deleted file mode 100644 index 6d0d9afd28..0000000000 Binary files a/common/img/emoji/cry.png and /dev/null differ diff --git a/common/img/emoji/crying_cat_face.png b/common/img/emoji/crying_cat_face.png deleted file mode 100644 index 42d4c27cab..0000000000 Binary files a/common/img/emoji/crying_cat_face.png and /dev/null differ diff --git a/common/img/emoji/crystal_ball.png b/common/img/emoji/crystal_ball.png deleted file mode 100644 index 6d2c6c42d4..0000000000 Binary files a/common/img/emoji/crystal_ball.png and /dev/null differ diff --git a/common/img/emoji/cupid.png b/common/img/emoji/cupid.png deleted file mode 100644 index 4987284767..0000000000 Binary files a/common/img/emoji/cupid.png and /dev/null differ diff --git a/common/img/emoji/curly_loop.png b/common/img/emoji/curly_loop.png deleted file mode 100644 index 8f051aca43..0000000000 Binary files a/common/img/emoji/curly_loop.png and /dev/null differ diff --git a/common/img/emoji/currency_exchange.png b/common/img/emoji/currency_exchange.png deleted file mode 100644 index d5ee21fc68..0000000000 Binary files a/common/img/emoji/currency_exchange.png and /dev/null differ diff --git a/common/img/emoji/curry.png b/common/img/emoji/curry.png deleted file mode 100644 index 7983c706a4..0000000000 Binary files a/common/img/emoji/curry.png and /dev/null differ diff --git a/common/img/emoji/custard.png b/common/img/emoji/custard.png deleted file mode 100644 index 9f843b4c13..0000000000 Binary files a/common/img/emoji/custard.png and /dev/null differ diff --git a/common/img/emoji/customs.png b/common/img/emoji/customs.png deleted file mode 100644 index 92691e3117..0000000000 Binary files a/common/img/emoji/customs.png and /dev/null differ diff --git a/common/img/emoji/cyclone.png b/common/img/emoji/cyclone.png deleted file mode 100644 index 6c49f64b2f..0000000000 Binary files a/common/img/emoji/cyclone.png and /dev/null differ diff --git a/common/img/emoji/dancer.png b/common/img/emoji/dancer.png deleted file mode 100644 index 6885a0bc3d..0000000000 Binary files a/common/img/emoji/dancer.png and /dev/null differ diff --git a/common/img/emoji/dancers.png b/common/img/emoji/dancers.png deleted file mode 100644 index 2dfb451a73..0000000000 Binary files a/common/img/emoji/dancers.png and /dev/null differ diff --git a/common/img/emoji/dango.png b/common/img/emoji/dango.png deleted file mode 100644 index 2d042aebeb..0000000000 Binary files a/common/img/emoji/dango.png and /dev/null differ diff --git a/common/img/emoji/dart.png b/common/img/emoji/dart.png deleted file mode 100644 index 0438fe54f9..0000000000 Binary files a/common/img/emoji/dart.png and /dev/null differ diff --git a/common/img/emoji/dash.png b/common/img/emoji/dash.png deleted file mode 100644 index dc2c0a8f46..0000000000 Binary files a/common/img/emoji/dash.png and /dev/null differ diff --git a/common/img/emoji/date.png b/common/img/emoji/date.png deleted file mode 100644 index 6ad2efa5fd..0000000000 Binary files a/common/img/emoji/date.png and /dev/null differ diff --git a/common/img/emoji/de.png b/common/img/emoji/de.png deleted file mode 100644 index 16a28548c9..0000000000 Binary files a/common/img/emoji/de.png and /dev/null differ diff --git a/common/img/emoji/deciduous_tree.png b/common/img/emoji/deciduous_tree.png deleted file mode 100644 index 9bb16bdfec..0000000000 Binary files a/common/img/emoji/deciduous_tree.png and /dev/null differ diff --git a/common/img/emoji/department_store.png b/common/img/emoji/department_store.png deleted file mode 100644 index 68d959c507..0000000000 Binary files a/common/img/emoji/department_store.png and /dev/null differ diff --git a/common/img/emoji/diamond_shape_with_a_dot_inside.png b/common/img/emoji/diamond_shape_with_a_dot_inside.png deleted file mode 100644 index dfd1098b39..0000000000 Binary files a/common/img/emoji/diamond_shape_with_a_dot_inside.png and /dev/null differ diff --git a/common/img/emoji/diamonds.png b/common/img/emoji/diamonds.png deleted file mode 100644 index fe0827758b..0000000000 Binary files a/common/img/emoji/diamonds.png and /dev/null differ diff --git a/common/img/emoji/disappointed.png b/common/img/emoji/disappointed.png deleted file mode 100644 index 8255200871..0000000000 Binary files a/common/img/emoji/disappointed.png and /dev/null differ diff --git a/common/img/emoji/disappointed_relieved.png b/common/img/emoji/disappointed_relieved.png deleted file mode 100644 index fa5f9e7f9f..0000000000 Binary files a/common/img/emoji/disappointed_relieved.png and /dev/null differ diff --git a/common/img/emoji/dizzy.png b/common/img/emoji/dizzy.png deleted file mode 100644 index 55213d2dde..0000000000 Binary files a/common/img/emoji/dizzy.png and /dev/null differ diff --git a/common/img/emoji/dizzy_face.png b/common/img/emoji/dizzy_face.png deleted file mode 100644 index 8001d6ff8f..0000000000 Binary files a/common/img/emoji/dizzy_face.png and /dev/null differ diff --git a/common/img/emoji/do_not_litter.png b/common/img/emoji/do_not_litter.png deleted file mode 100644 index 38c7ae7af2..0000000000 Binary files a/common/img/emoji/do_not_litter.png and /dev/null differ diff --git a/common/img/emoji/dog.png b/common/img/emoji/dog.png deleted file mode 100644 index 389a02bf28..0000000000 Binary files a/common/img/emoji/dog.png and /dev/null differ diff --git a/common/img/emoji/dog2.png b/common/img/emoji/dog2.png deleted file mode 100644 index c7f6a24ac8..0000000000 Binary files a/common/img/emoji/dog2.png and /dev/null differ diff --git a/common/img/emoji/dollar.png b/common/img/emoji/dollar.png deleted file mode 100644 index 63de884951..0000000000 Binary files a/common/img/emoji/dollar.png and /dev/null differ diff --git a/common/img/emoji/dolls.png b/common/img/emoji/dolls.png deleted file mode 100644 index 47ce33900c..0000000000 Binary files a/common/img/emoji/dolls.png and /dev/null differ diff --git a/common/img/emoji/dolphin.png b/common/img/emoji/dolphin.png deleted file mode 100644 index 9326077a92..0000000000 Binary files a/common/img/emoji/dolphin.png and /dev/null differ diff --git a/common/img/emoji/door.png b/common/img/emoji/door.png deleted file mode 100644 index 83c819ae46..0000000000 Binary files a/common/img/emoji/door.png and /dev/null differ diff --git a/common/img/emoji/doughnut.png b/common/img/emoji/doughnut.png deleted file mode 100644 index ccf8691296..0000000000 Binary files a/common/img/emoji/doughnut.png and /dev/null differ diff --git a/common/img/emoji/dragon.png b/common/img/emoji/dragon.png deleted file mode 100644 index e399d60e1d..0000000000 Binary files a/common/img/emoji/dragon.png and /dev/null differ diff --git a/common/img/emoji/dragon_face.png b/common/img/emoji/dragon_face.png deleted file mode 100644 index e5e556bd10..0000000000 Binary files a/common/img/emoji/dragon_face.png and /dev/null differ diff --git a/common/img/emoji/dress.png b/common/img/emoji/dress.png deleted file mode 100644 index 6434e2e2f3..0000000000 Binary files a/common/img/emoji/dress.png and /dev/null differ diff --git a/common/img/emoji/dromedary_camel.png b/common/img/emoji/dromedary_camel.png deleted file mode 100644 index c8c7b9ffa0..0000000000 Binary files a/common/img/emoji/dromedary_camel.png and /dev/null differ diff --git a/common/img/emoji/droplet.png b/common/img/emoji/droplet.png deleted file mode 100644 index 9eff46339f..0000000000 Binary files a/common/img/emoji/droplet.png and /dev/null differ diff --git a/common/img/emoji/dvd.png b/common/img/emoji/dvd.png deleted file mode 100644 index 363c83d01c..0000000000 Binary files a/common/img/emoji/dvd.png and /dev/null differ diff --git a/common/img/emoji/e-mail.png b/common/img/emoji/e-mail.png deleted file mode 100644 index 176a8e1e82..0000000000 Binary files a/common/img/emoji/e-mail.png and /dev/null differ diff --git a/common/img/emoji/ear.png b/common/img/emoji/ear.png deleted file mode 100644 index 2bbbf10c9e..0000000000 Binary files a/common/img/emoji/ear.png and /dev/null differ diff --git a/common/img/emoji/ear_of_rice.png b/common/img/emoji/ear_of_rice.png deleted file mode 100644 index a9bba5c2c1..0000000000 Binary files a/common/img/emoji/ear_of_rice.png and /dev/null differ diff --git a/common/img/emoji/earth_africa.png b/common/img/emoji/earth_africa.png deleted file mode 100644 index 44ce5ecb62..0000000000 Binary files a/common/img/emoji/earth_africa.png and /dev/null differ diff --git a/common/img/emoji/earth_americas.png b/common/img/emoji/earth_americas.png deleted file mode 100644 index 97d7176713..0000000000 Binary files a/common/img/emoji/earth_americas.png and /dev/null differ diff --git a/common/img/emoji/earth_asia.png b/common/img/emoji/earth_asia.png deleted file mode 100644 index 95ec357ca8..0000000000 Binary files a/common/img/emoji/earth_asia.png and /dev/null differ diff --git a/common/img/emoji/egg.png b/common/img/emoji/egg.png deleted file mode 100644 index c3de6ae4ea..0000000000 Binary files a/common/img/emoji/egg.png and /dev/null differ diff --git a/common/img/emoji/eggplant.png b/common/img/emoji/eggplant.png deleted file mode 100644 index 566d6a844c..0000000000 Binary files a/common/img/emoji/eggplant.png and /dev/null differ diff --git a/common/img/emoji/eight.png b/common/img/emoji/eight.png deleted file mode 100644 index 7bdb422327..0000000000 Binary files a/common/img/emoji/eight.png and /dev/null differ diff --git a/common/img/emoji/eight_pointed_black_star.png b/common/img/emoji/eight_pointed_black_star.png deleted file mode 100644 index 73dc6a0c93..0000000000 Binary files a/common/img/emoji/eight_pointed_black_star.png and /dev/null differ diff --git a/common/img/emoji/eight_spoked_asterisk.png b/common/img/emoji/eight_spoked_asterisk.png deleted file mode 100644 index 946a20333a..0000000000 Binary files a/common/img/emoji/eight_spoked_asterisk.png and /dev/null differ diff --git a/common/img/emoji/electric_plug.png b/common/img/emoji/electric_plug.png deleted file mode 100644 index 7a3d6cee68..0000000000 Binary files a/common/img/emoji/electric_plug.png and /dev/null differ diff --git a/common/img/emoji/elephant.png b/common/img/emoji/elephant.png deleted file mode 100644 index 5ca04570e2..0000000000 Binary files a/common/img/emoji/elephant.png and /dev/null differ diff --git a/common/img/emoji/email.png b/common/img/emoji/email.png deleted file mode 100644 index 3631861bbf..0000000000 Binary files a/common/img/emoji/email.png and /dev/null differ diff --git a/common/img/emoji/end.png b/common/img/emoji/end.png deleted file mode 100644 index edb0bda245..0000000000 Binary files a/common/img/emoji/end.png and /dev/null differ diff --git a/common/img/emoji/envelope.png b/common/img/emoji/envelope.png deleted file mode 100644 index 3631861bbf..0000000000 Binary files a/common/img/emoji/envelope.png and /dev/null differ diff --git a/common/img/emoji/envelope_with_arrow.png b/common/img/emoji/envelope_with_arrow.png deleted file mode 100644 index 0e01fd5f05..0000000000 Binary files a/common/img/emoji/envelope_with_arrow.png and /dev/null differ diff --git a/common/img/emoji/es.png b/common/img/emoji/es.png deleted file mode 100644 index 71b30bff35..0000000000 Binary files a/common/img/emoji/es.png and /dev/null differ diff --git a/common/img/emoji/euro.png b/common/img/emoji/euro.png deleted file mode 100644 index 1c5904b714..0000000000 Binary files a/common/img/emoji/euro.png and /dev/null differ diff --git a/common/img/emoji/european_castle.png b/common/img/emoji/european_castle.png deleted file mode 100644 index 8229b8a8a9..0000000000 Binary files a/common/img/emoji/european_castle.png and /dev/null differ diff --git a/common/img/emoji/european_post_office.png b/common/img/emoji/european_post_office.png deleted file mode 100644 index 0f65b14530..0000000000 Binary files a/common/img/emoji/european_post_office.png and /dev/null differ diff --git a/common/img/emoji/evergreen_tree.png b/common/img/emoji/evergreen_tree.png deleted file mode 100644 index ae8ad10376..0000000000 Binary files a/common/img/emoji/evergreen_tree.png and /dev/null differ diff --git a/common/img/emoji/exclamation.png b/common/img/emoji/exclamation.png deleted file mode 100644 index 4c560f5e3f..0000000000 Binary files a/common/img/emoji/exclamation.png and /dev/null differ diff --git a/common/img/emoji/expressionless.png b/common/img/emoji/expressionless.png deleted file mode 100644 index 1798f24de1..0000000000 Binary files a/common/img/emoji/expressionless.png and /dev/null differ diff --git a/common/img/emoji/eyeglasses.png b/common/img/emoji/eyeglasses.png deleted file mode 100644 index a3cf75a27a..0000000000 Binary files a/common/img/emoji/eyeglasses.png and /dev/null differ diff --git a/common/img/emoji/eyes.png b/common/img/emoji/eyes.png deleted file mode 100644 index dc2216f63d..0000000000 Binary files a/common/img/emoji/eyes.png and /dev/null differ diff --git a/common/img/emoji/facepunch.png b/common/img/emoji/facepunch.png deleted file mode 100644 index 2d41fd37e8..0000000000 Binary files a/common/img/emoji/facepunch.png and /dev/null differ diff --git a/common/img/emoji/factory.png b/common/img/emoji/factory.png deleted file mode 100644 index 6404634793..0000000000 Binary files a/common/img/emoji/factory.png and /dev/null differ diff --git a/common/img/emoji/fallen_leaf.png b/common/img/emoji/fallen_leaf.png deleted file mode 100644 index d49f9c1757..0000000000 Binary files a/common/img/emoji/fallen_leaf.png and /dev/null differ diff --git a/common/img/emoji/family.png b/common/img/emoji/family.png deleted file mode 100644 index b4b365f3a5..0000000000 Binary files a/common/img/emoji/family.png and /dev/null differ diff --git a/common/img/emoji/fast_forward.png b/common/img/emoji/fast_forward.png deleted file mode 100644 index b94a117262..0000000000 Binary files a/common/img/emoji/fast_forward.png and /dev/null differ diff --git a/common/img/emoji/fax.png b/common/img/emoji/fax.png deleted file mode 100644 index 62be2c958f..0000000000 Binary files a/common/img/emoji/fax.png and /dev/null differ diff --git a/common/img/emoji/fearful.png b/common/img/emoji/fearful.png deleted file mode 100644 index 513fce47b6..0000000000 Binary files a/common/img/emoji/fearful.png and /dev/null differ diff --git a/common/img/emoji/feelsgood.png b/common/img/emoji/feelsgood.png deleted file mode 100644 index bad80a6b1b..0000000000 Binary files a/common/img/emoji/feelsgood.png and /dev/null differ diff --git a/common/img/emoji/feet.png b/common/img/emoji/feet.png deleted file mode 100644 index 89b9fec9ef..0000000000 Binary files a/common/img/emoji/feet.png and /dev/null differ diff --git a/common/img/emoji/ferris_wheel.png b/common/img/emoji/ferris_wheel.png deleted file mode 100644 index 54a1dcfa1e..0000000000 Binary files a/common/img/emoji/ferris_wheel.png and /dev/null differ diff --git a/common/img/emoji/file_folder.png b/common/img/emoji/file_folder.png deleted file mode 100644 index 4d8bebf8a9..0000000000 Binary files a/common/img/emoji/file_folder.png and /dev/null differ diff --git a/common/img/emoji/finnadie.png b/common/img/emoji/finnadie.png deleted file mode 100644 index 05ba8ac5ef..0000000000 Binary files a/common/img/emoji/finnadie.png and /dev/null differ diff --git a/common/img/emoji/fire.png b/common/img/emoji/fire.png deleted file mode 100644 index f2a3149bbf..0000000000 Binary files a/common/img/emoji/fire.png and /dev/null differ diff --git a/common/img/emoji/fire_engine.png b/common/img/emoji/fire_engine.png deleted file mode 100644 index 9e6c59c997..0000000000 Binary files a/common/img/emoji/fire_engine.png and /dev/null differ diff --git a/common/img/emoji/fireworks.png b/common/img/emoji/fireworks.png deleted file mode 100644 index b4eccd5775..0000000000 Binary files a/common/img/emoji/fireworks.png and /dev/null differ diff --git a/common/img/emoji/first_quarter_moon.png b/common/img/emoji/first_quarter_moon.png deleted file mode 100644 index f38c236937..0000000000 Binary files a/common/img/emoji/first_quarter_moon.png and /dev/null differ diff --git a/common/img/emoji/first_quarter_moon_with_face.png b/common/img/emoji/first_quarter_moon_with_face.png deleted file mode 100644 index 85ae2ce72d..0000000000 Binary files a/common/img/emoji/first_quarter_moon_with_face.png and /dev/null differ diff --git a/common/img/emoji/fish.png b/common/img/emoji/fish.png deleted file mode 100644 index dc2a3f52d9..0000000000 Binary files a/common/img/emoji/fish.png and /dev/null differ diff --git a/common/img/emoji/fish_cake.png b/common/img/emoji/fish_cake.png deleted file mode 100644 index a8f22614d6..0000000000 Binary files a/common/img/emoji/fish_cake.png and /dev/null differ diff --git a/common/img/emoji/fishing_pole_and_fish.png b/common/img/emoji/fishing_pole_and_fish.png deleted file mode 100644 index d84609c3b7..0000000000 Binary files a/common/img/emoji/fishing_pole_and_fish.png and /dev/null differ diff --git a/common/img/emoji/fist.png b/common/img/emoji/fist.png deleted file mode 100644 index ecc8874c2f..0000000000 Binary files a/common/img/emoji/fist.png and /dev/null differ diff --git a/common/img/emoji/five.png b/common/img/emoji/five.png deleted file mode 100644 index 794321aa22..0000000000 Binary files a/common/img/emoji/five.png and /dev/null differ diff --git a/common/img/emoji/flags.png b/common/img/emoji/flags.png deleted file mode 100644 index 540164e84e..0000000000 Binary files a/common/img/emoji/flags.png and /dev/null differ diff --git a/common/img/emoji/flashlight.png b/common/img/emoji/flashlight.png deleted file mode 100644 index 215940aa8f..0000000000 Binary files a/common/img/emoji/flashlight.png and /dev/null differ diff --git a/common/img/emoji/flipper.png b/common/img/emoji/flipper.png deleted file mode 100644 index 9326077a92..0000000000 Binary files a/common/img/emoji/flipper.png and /dev/null differ diff --git a/common/img/emoji/floppy_disk.png b/common/img/emoji/floppy_disk.png deleted file mode 100644 index 4ad56315ae..0000000000 Binary files a/common/img/emoji/floppy_disk.png and /dev/null differ diff --git a/common/img/emoji/flower_playing_cards.png b/common/img/emoji/flower_playing_cards.png deleted file mode 100644 index cc46a6a1fa..0000000000 Binary files a/common/img/emoji/flower_playing_cards.png and /dev/null differ diff --git a/common/img/emoji/flushed.png b/common/img/emoji/flushed.png deleted file mode 100644 index 9b49410c0c..0000000000 Binary files a/common/img/emoji/flushed.png and /dev/null differ diff --git a/common/img/emoji/foggy.png b/common/img/emoji/foggy.png deleted file mode 100644 index 3c7b8b04b9..0000000000 Binary files a/common/img/emoji/foggy.png and /dev/null differ diff --git a/common/img/emoji/football.png b/common/img/emoji/football.png deleted file mode 100644 index 0e4e168fa8..0000000000 Binary files a/common/img/emoji/football.png and /dev/null differ diff --git a/common/img/emoji/footprints.png b/common/img/emoji/footprints.png deleted file mode 100644 index d7a25614f7..0000000000 Binary files a/common/img/emoji/footprints.png and /dev/null differ diff --git a/common/img/emoji/fork_and_knife.png b/common/img/emoji/fork_and_knife.png deleted file mode 100644 index 8ba4bc6535..0000000000 Binary files a/common/img/emoji/fork_and_knife.png and /dev/null differ diff --git a/common/img/emoji/fountain.png b/common/img/emoji/fountain.png deleted file mode 100644 index da126e6486..0000000000 Binary files a/common/img/emoji/fountain.png and /dev/null differ diff --git a/common/img/emoji/four.png b/common/img/emoji/four.png deleted file mode 100644 index 14782ba23b..0000000000 Binary files a/common/img/emoji/four.png and /dev/null differ diff --git a/common/img/emoji/four_leaf_clover.png b/common/img/emoji/four_leaf_clover.png deleted file mode 100644 index f2014bea44..0000000000 Binary files a/common/img/emoji/four_leaf_clover.png and /dev/null differ diff --git a/common/img/emoji/fr.png b/common/img/emoji/fr.png deleted file mode 100644 index 6311c91159..0000000000 Binary files a/common/img/emoji/fr.png and /dev/null differ diff --git a/common/img/emoji/free.png b/common/img/emoji/free.png deleted file mode 100644 index c886cf2494..0000000000 Binary files a/common/img/emoji/free.png and /dev/null differ diff --git a/common/img/emoji/fried_shrimp.png b/common/img/emoji/fried_shrimp.png deleted file mode 100644 index c8c284bf14..0000000000 Binary files a/common/img/emoji/fried_shrimp.png and /dev/null differ diff --git a/common/img/emoji/fries.png b/common/img/emoji/fries.png deleted file mode 100644 index cfef66966a..0000000000 Binary files a/common/img/emoji/fries.png and /dev/null differ diff --git a/common/img/emoji/frog.png b/common/img/emoji/frog.png deleted file mode 100644 index cfe11b18ff..0000000000 Binary files a/common/img/emoji/frog.png and /dev/null differ diff --git a/common/img/emoji/frowning.png b/common/img/emoji/frowning.png deleted file mode 100644 index 7f8b6c77bd..0000000000 Binary files a/common/img/emoji/frowning.png and /dev/null differ diff --git a/common/img/emoji/fu.png b/common/img/emoji/fu.png deleted file mode 100644 index 61a3fee8d7..0000000000 Binary files a/common/img/emoji/fu.png and /dev/null differ diff --git a/common/img/emoji/fuelpump.png b/common/img/emoji/fuelpump.png deleted file mode 100644 index 54c29aeb1d..0000000000 Binary files a/common/img/emoji/fuelpump.png and /dev/null differ diff --git a/common/img/emoji/full_moon.png b/common/img/emoji/full_moon.png deleted file mode 100644 index 8ff657a259..0000000000 Binary files a/common/img/emoji/full_moon.png and /dev/null differ diff --git a/common/img/emoji/full_moon_with_face.png b/common/img/emoji/full_moon_with_face.png deleted file mode 100644 index 94395a4080..0000000000 Binary files a/common/img/emoji/full_moon_with_face.png and /dev/null differ diff --git a/common/img/emoji/game_die.png b/common/img/emoji/game_die.png deleted file mode 100644 index 4136e78ec9..0000000000 Binary files a/common/img/emoji/game_die.png and /dev/null differ diff --git a/common/img/emoji/gb.png b/common/img/emoji/gb.png deleted file mode 100644 index 2a62c7a081..0000000000 Binary files a/common/img/emoji/gb.png and /dev/null differ diff --git a/common/img/emoji/gem.png b/common/img/emoji/gem.png deleted file mode 100644 index 8a5d8dad5c..0000000000 Binary files a/common/img/emoji/gem.png and /dev/null differ diff --git a/common/img/emoji/gemini.png b/common/img/emoji/gemini.png deleted file mode 100644 index d926f6e88e..0000000000 Binary files a/common/img/emoji/gemini.png and /dev/null differ diff --git a/common/img/emoji/ghost.png b/common/img/emoji/ghost.png deleted file mode 100644 index 671dd0c9e2..0000000000 Binary files a/common/img/emoji/ghost.png and /dev/null differ diff --git a/common/img/emoji/gift.png b/common/img/emoji/gift.png deleted file mode 100644 index 552cfdc2b9..0000000000 Binary files a/common/img/emoji/gift.png and /dev/null differ diff --git a/common/img/emoji/gift_heart.png b/common/img/emoji/gift_heart.png deleted file mode 100644 index f31c26a3fc..0000000000 Binary files a/common/img/emoji/gift_heart.png and /dev/null differ diff --git a/common/img/emoji/girl.png b/common/img/emoji/girl.png deleted file mode 100644 index ea4126941f..0000000000 Binary files a/common/img/emoji/girl.png and /dev/null differ diff --git a/common/img/emoji/globe_with_meridians.png b/common/img/emoji/globe_with_meridians.png deleted file mode 100644 index b198646670..0000000000 Binary files a/common/img/emoji/globe_with_meridians.png and /dev/null differ diff --git a/common/img/emoji/goat.png b/common/img/emoji/goat.png deleted file mode 100644 index 4be9cf3040..0000000000 Binary files a/common/img/emoji/goat.png and /dev/null differ diff --git a/common/img/emoji/goberserk.png b/common/img/emoji/goberserk.png deleted file mode 100644 index 59a742aaaa..0000000000 Binary files a/common/img/emoji/goberserk.png and /dev/null differ diff --git a/common/img/emoji/godmode.png b/common/img/emoji/godmode.png deleted file mode 100644 index 7e75ab2081..0000000000 Binary files a/common/img/emoji/godmode.png and /dev/null differ diff --git a/common/img/emoji/golf.png b/common/img/emoji/golf.png deleted file mode 100644 index cba2116a7e..0000000000 Binary files a/common/img/emoji/golf.png and /dev/null differ diff --git a/common/img/emoji/grapes.png b/common/img/emoji/grapes.png deleted file mode 100644 index 0f9f007a12..0000000000 Binary files a/common/img/emoji/grapes.png and /dev/null differ diff --git a/common/img/emoji/green_apple.png b/common/img/emoji/green_apple.png deleted file mode 100644 index 337205cd12..0000000000 Binary files a/common/img/emoji/green_apple.png and /dev/null differ diff --git a/common/img/emoji/green_book.png b/common/img/emoji/green_book.png deleted file mode 100644 index e86651e5c5..0000000000 Binary files a/common/img/emoji/green_book.png and /dev/null differ diff --git a/common/img/emoji/green_heart.png b/common/img/emoji/green_heart.png deleted file mode 100644 index 7289cb8147..0000000000 Binary files a/common/img/emoji/green_heart.png and /dev/null differ diff --git a/common/img/emoji/grey_exclamation.png b/common/img/emoji/grey_exclamation.png deleted file mode 100644 index a50d265e9d..0000000000 Binary files a/common/img/emoji/grey_exclamation.png and /dev/null differ diff --git a/common/img/emoji/grey_question.png b/common/img/emoji/grey_question.png deleted file mode 100644 index 57db41ead4..0000000000 Binary files a/common/img/emoji/grey_question.png and /dev/null differ diff --git a/common/img/emoji/grimacing.png b/common/img/emoji/grimacing.png deleted file mode 100644 index f78e9407db..0000000000 Binary files a/common/img/emoji/grimacing.png and /dev/null differ diff --git a/common/img/emoji/grin.png b/common/img/emoji/grin.png deleted file mode 100644 index 591cfcef8b..0000000000 Binary files a/common/img/emoji/grin.png and /dev/null differ diff --git a/common/img/emoji/grinning.png b/common/img/emoji/grinning.png deleted file mode 100644 index 0ef00d79d0..0000000000 Binary files a/common/img/emoji/grinning.png and /dev/null differ diff --git a/common/img/emoji/guardsman.png b/common/img/emoji/guardsman.png deleted file mode 100644 index b67b335d68..0000000000 Binary files a/common/img/emoji/guardsman.png and /dev/null differ diff --git a/common/img/emoji/guitar.png b/common/img/emoji/guitar.png deleted file mode 100644 index 2b7fa43c94..0000000000 Binary files a/common/img/emoji/guitar.png and /dev/null differ diff --git a/common/img/emoji/gun.png b/common/img/emoji/gun.png deleted file mode 100644 index c49dc52c6c..0000000000 Binary files a/common/img/emoji/gun.png and /dev/null differ diff --git a/common/img/emoji/haircut.png b/common/img/emoji/haircut.png deleted file mode 100644 index 902d273f6c..0000000000 Binary files a/common/img/emoji/haircut.png and /dev/null differ diff --git a/common/img/emoji/hamburger.png b/common/img/emoji/hamburger.png deleted file mode 100644 index 9f1a3fdff6..0000000000 Binary files a/common/img/emoji/hamburger.png and /dev/null differ diff --git a/common/img/emoji/hammer.png b/common/img/emoji/hammer.png deleted file mode 100644 index 6b75bc37b3..0000000000 Binary files a/common/img/emoji/hammer.png and /dev/null differ diff --git a/common/img/emoji/hamster.png b/common/img/emoji/hamster.png deleted file mode 100644 index ada9c3108e..0000000000 Binary files a/common/img/emoji/hamster.png and /dev/null differ diff --git a/common/img/emoji/hand.png b/common/img/emoji/hand.png deleted file mode 100644 index 5e45c25a56..0000000000 Binary files a/common/img/emoji/hand.png and /dev/null differ diff --git a/common/img/emoji/handbag.png b/common/img/emoji/handbag.png deleted file mode 100644 index d7adf04ddf..0000000000 Binary files a/common/img/emoji/handbag.png and /dev/null differ diff --git a/common/img/emoji/hankey.png b/common/img/emoji/hankey.png deleted file mode 100644 index 73a4dc8400..0000000000 Binary files a/common/img/emoji/hankey.png and /dev/null differ diff --git a/common/img/emoji/hash.png b/common/img/emoji/hash.png deleted file mode 100644 index 6765d7d3c2..0000000000 Binary files a/common/img/emoji/hash.png and /dev/null differ diff --git a/common/img/emoji/hatched_chick.png b/common/img/emoji/hatched_chick.png deleted file mode 100644 index 39c25bc7cc..0000000000 Binary files a/common/img/emoji/hatched_chick.png and /dev/null differ diff --git a/common/img/emoji/hatching_chick.png b/common/img/emoji/hatching_chick.png deleted file mode 100644 index 005a55519f..0000000000 Binary files a/common/img/emoji/hatching_chick.png and /dev/null differ diff --git a/common/img/emoji/headphones.png b/common/img/emoji/headphones.png deleted file mode 100644 index ad83000e68..0000000000 Binary files a/common/img/emoji/headphones.png and /dev/null differ diff --git a/common/img/emoji/hear_no_evil.png b/common/img/emoji/hear_no_evil.png deleted file mode 100644 index f97a1f9a09..0000000000 Binary files a/common/img/emoji/hear_no_evil.png and /dev/null differ diff --git a/common/img/emoji/heart.png b/common/img/emoji/heart.png deleted file mode 100644 index 7d7790ce4d..0000000000 Binary files a/common/img/emoji/heart.png and /dev/null differ diff --git a/common/img/emoji/heart_decoration.png b/common/img/emoji/heart_decoration.png deleted file mode 100644 index b40a486758..0000000000 Binary files a/common/img/emoji/heart_decoration.png and /dev/null differ diff --git a/common/img/emoji/heart_eyes.png b/common/img/emoji/heart_eyes.png deleted file mode 100644 index 0e5794270e..0000000000 Binary files a/common/img/emoji/heart_eyes.png and /dev/null differ diff --git a/common/img/emoji/heart_eyes_cat.png b/common/img/emoji/heart_eyes_cat.png deleted file mode 100644 index eeba240e53..0000000000 Binary files a/common/img/emoji/heart_eyes_cat.png and /dev/null differ diff --git a/common/img/emoji/heartbeat.png b/common/img/emoji/heartbeat.png deleted file mode 100644 index b6628f6fa7..0000000000 Binary files a/common/img/emoji/heartbeat.png and /dev/null differ diff --git a/common/img/emoji/heartpulse.png b/common/img/emoji/heartpulse.png deleted file mode 100644 index a7491cbeae..0000000000 Binary files a/common/img/emoji/heartpulse.png and /dev/null differ diff --git a/common/img/emoji/hearts.png b/common/img/emoji/hearts.png deleted file mode 100644 index e894715385..0000000000 Binary files a/common/img/emoji/hearts.png and /dev/null differ diff --git a/common/img/emoji/heavy_check_mark.png b/common/img/emoji/heavy_check_mark.png deleted file mode 100644 index 336d2626d0..0000000000 Binary files a/common/img/emoji/heavy_check_mark.png and /dev/null differ diff --git a/common/img/emoji/heavy_division_sign.png b/common/img/emoji/heavy_division_sign.png deleted file mode 100644 index ac757a238e..0000000000 Binary files a/common/img/emoji/heavy_division_sign.png and /dev/null differ diff --git a/common/img/emoji/heavy_dollar_sign.png b/common/img/emoji/heavy_dollar_sign.png deleted file mode 100644 index 361e26aef8..0000000000 Binary files a/common/img/emoji/heavy_dollar_sign.png and /dev/null differ diff --git a/common/img/emoji/heavy_exclamation_mark.png b/common/img/emoji/heavy_exclamation_mark.png deleted file mode 100644 index 4c560f5e3f..0000000000 Binary files a/common/img/emoji/heavy_exclamation_mark.png and /dev/null differ diff --git a/common/img/emoji/heavy_minus_sign.png b/common/img/emoji/heavy_minus_sign.png deleted file mode 100644 index b8d3d82f2c..0000000000 Binary files a/common/img/emoji/heavy_minus_sign.png and /dev/null differ diff --git a/common/img/emoji/heavy_multiplication_x.png b/common/img/emoji/heavy_multiplication_x.png deleted file mode 100644 index 13d6660786..0000000000 Binary files a/common/img/emoji/heavy_multiplication_x.png and /dev/null differ diff --git a/common/img/emoji/heavy_plus_sign.png b/common/img/emoji/heavy_plus_sign.png deleted file mode 100644 index 61595387bb..0000000000 Binary files a/common/img/emoji/heavy_plus_sign.png and /dev/null differ diff --git a/common/img/emoji/helicopter.png b/common/img/emoji/helicopter.png deleted file mode 100644 index 8e82a0d587..0000000000 Binary files a/common/img/emoji/helicopter.png and /dev/null differ diff --git a/common/img/emoji/herb.png b/common/img/emoji/herb.png deleted file mode 100644 index de1ff1b73b..0000000000 Binary files a/common/img/emoji/herb.png and /dev/null differ diff --git a/common/img/emoji/hibiscus.png b/common/img/emoji/hibiscus.png deleted file mode 100644 index 32a3774c09..0000000000 Binary files a/common/img/emoji/hibiscus.png and /dev/null differ diff --git a/common/img/emoji/high_brightness.png b/common/img/emoji/high_brightness.png deleted file mode 100644 index ba9de7d409..0000000000 Binary files a/common/img/emoji/high_brightness.png and /dev/null differ diff --git a/common/img/emoji/high_heel.png b/common/img/emoji/high_heel.png deleted file mode 100644 index 525b6a0dd6..0000000000 Binary files a/common/img/emoji/high_heel.png and /dev/null differ diff --git a/common/img/emoji/hocho.png b/common/img/emoji/hocho.png deleted file mode 100644 index 18eade0acf..0000000000 Binary files a/common/img/emoji/hocho.png and /dev/null differ diff --git a/common/img/emoji/honey_pot.png b/common/img/emoji/honey_pot.png deleted file mode 100644 index 73278898a4..0000000000 Binary files a/common/img/emoji/honey_pot.png and /dev/null differ diff --git a/common/img/emoji/honeybee.png b/common/img/emoji/honeybee.png deleted file mode 100644 index f53733953a..0000000000 Binary files a/common/img/emoji/honeybee.png and /dev/null differ diff --git a/common/img/emoji/horse.png b/common/img/emoji/horse.png deleted file mode 100644 index 78d580ad3e..0000000000 Binary files a/common/img/emoji/horse.png and /dev/null differ diff --git a/common/img/emoji/horse_racing.png b/common/img/emoji/horse_racing.png deleted file mode 100644 index e3bbaec1d6..0000000000 Binary files a/common/img/emoji/horse_racing.png and /dev/null differ diff --git a/common/img/emoji/hospital.png b/common/img/emoji/hospital.png deleted file mode 100644 index c05c49377f..0000000000 Binary files a/common/img/emoji/hospital.png and /dev/null differ diff --git a/common/img/emoji/hotel.png b/common/img/emoji/hotel.png deleted file mode 100644 index d29f276a18..0000000000 Binary files a/common/img/emoji/hotel.png and /dev/null differ diff --git a/common/img/emoji/hotsprings.png b/common/img/emoji/hotsprings.png deleted file mode 100644 index a0bc9d75f2..0000000000 Binary files a/common/img/emoji/hotsprings.png and /dev/null differ diff --git a/common/img/emoji/hourglass.png b/common/img/emoji/hourglass.png deleted file mode 100644 index 405aab41be..0000000000 Binary files a/common/img/emoji/hourglass.png and /dev/null differ diff --git a/common/img/emoji/hourglass_flowing_sand.png b/common/img/emoji/hourglass_flowing_sand.png deleted file mode 100644 index 52c9eb7042..0000000000 Binary files a/common/img/emoji/hourglass_flowing_sand.png and /dev/null differ diff --git a/common/img/emoji/house.png b/common/img/emoji/house.png deleted file mode 100644 index 95b9ee0948..0000000000 Binary files a/common/img/emoji/house.png and /dev/null differ diff --git a/common/img/emoji/house_with_garden.png b/common/img/emoji/house_with_garden.png deleted file mode 100644 index eccbfe943a..0000000000 Binary files a/common/img/emoji/house_with_garden.png and /dev/null differ diff --git a/common/img/emoji/hurtrealbad.png b/common/img/emoji/hurtrealbad.png deleted file mode 100644 index 146ef1a6a8..0000000000 Binary files a/common/img/emoji/hurtrealbad.png and /dev/null differ diff --git a/common/img/emoji/hushed.png b/common/img/emoji/hushed.png deleted file mode 100644 index afa3f66865..0000000000 Binary files a/common/img/emoji/hushed.png and /dev/null differ diff --git a/common/img/emoji/ice_cream.png b/common/img/emoji/ice_cream.png deleted file mode 100644 index 190be01650..0000000000 Binary files a/common/img/emoji/ice_cream.png and /dev/null differ diff --git a/common/img/emoji/icecream.png b/common/img/emoji/icecream.png deleted file mode 100644 index 871ce09768..0000000000 Binary files a/common/img/emoji/icecream.png and /dev/null differ diff --git a/common/img/emoji/id.png b/common/img/emoji/id.png deleted file mode 100644 index 47437a76d3..0000000000 Binary files a/common/img/emoji/id.png and /dev/null differ diff --git a/common/img/emoji/ideograph_advantage.png b/common/img/emoji/ideograph_advantage.png deleted file mode 100644 index e79af78442..0000000000 Binary files a/common/img/emoji/ideograph_advantage.png and /dev/null differ diff --git a/common/img/emoji/imp.png b/common/img/emoji/imp.png deleted file mode 100644 index 48e570105d..0000000000 Binary files a/common/img/emoji/imp.png and /dev/null differ diff --git a/common/img/emoji/inbox_tray.png b/common/img/emoji/inbox_tray.png deleted file mode 100644 index e2df0f8970..0000000000 Binary files a/common/img/emoji/inbox_tray.png and /dev/null differ diff --git a/common/img/emoji/incoming_envelope.png b/common/img/emoji/incoming_envelope.png deleted file mode 100644 index afc8271251..0000000000 Binary files a/common/img/emoji/incoming_envelope.png and /dev/null differ diff --git a/common/img/emoji/information_desk_person.png b/common/img/emoji/information_desk_person.png deleted file mode 100644 index 52c0a50a3f..0000000000 Binary files a/common/img/emoji/information_desk_person.png and /dev/null differ diff --git a/common/img/emoji/information_source.png b/common/img/emoji/information_source.png deleted file mode 100644 index 9cb8b09b24..0000000000 Binary files a/common/img/emoji/information_source.png and /dev/null differ diff --git a/common/img/emoji/innocent.png b/common/img/emoji/innocent.png deleted file mode 100644 index 503b614f8d..0000000000 Binary files a/common/img/emoji/innocent.png and /dev/null differ diff --git a/common/img/emoji/interrobang.png b/common/img/emoji/interrobang.png deleted file mode 100644 index 64304b9f5f..0000000000 Binary files a/common/img/emoji/interrobang.png and /dev/null differ diff --git a/common/img/emoji/iphone.png b/common/img/emoji/iphone.png deleted file mode 100644 index df007103b0..0000000000 Binary files a/common/img/emoji/iphone.png and /dev/null differ diff --git a/common/img/emoji/it.png b/common/img/emoji/it.png deleted file mode 100644 index 70bc9f3246..0000000000 Binary files a/common/img/emoji/it.png and /dev/null differ diff --git a/common/img/emoji/izakaya_lantern.png b/common/img/emoji/izakaya_lantern.png deleted file mode 100644 index 18730ad559..0000000000 Binary files a/common/img/emoji/izakaya_lantern.png and /dev/null differ diff --git a/common/img/emoji/jack_o_lantern.png b/common/img/emoji/jack_o_lantern.png deleted file mode 100644 index 1f7667ea45..0000000000 Binary files a/common/img/emoji/jack_o_lantern.png and /dev/null differ diff --git a/common/img/emoji/japan.png b/common/img/emoji/japan.png deleted file mode 100644 index 4593280359..0000000000 Binary files a/common/img/emoji/japan.png and /dev/null differ diff --git a/common/img/emoji/japanese_castle.png b/common/img/emoji/japanese_castle.png deleted file mode 100644 index f225ab217c..0000000000 Binary files a/common/img/emoji/japanese_castle.png and /dev/null differ diff --git a/common/img/emoji/japanese_goblin.png b/common/img/emoji/japanese_goblin.png deleted file mode 100644 index bd21b18757..0000000000 Binary files a/common/img/emoji/japanese_goblin.png and /dev/null differ diff --git a/common/img/emoji/japanese_ogre.png b/common/img/emoji/japanese_ogre.png deleted file mode 100644 index e9f5471c9a..0000000000 Binary files a/common/img/emoji/japanese_ogre.png and /dev/null differ diff --git a/common/img/emoji/jeans.png b/common/img/emoji/jeans.png deleted file mode 100644 index d721cea54c..0000000000 Binary files a/common/img/emoji/jeans.png and /dev/null differ diff --git a/common/img/emoji/joy.png b/common/img/emoji/joy.png deleted file mode 100644 index 47df693d42..0000000000 Binary files a/common/img/emoji/joy.png and /dev/null differ diff --git a/common/img/emoji/joy_cat.png b/common/img/emoji/joy_cat.png deleted file mode 100644 index 6c60cb0efc..0000000000 Binary files a/common/img/emoji/joy_cat.png and /dev/null differ diff --git a/common/img/emoji/jp.png b/common/img/emoji/jp.png deleted file mode 100644 index b786efbbd8..0000000000 Binary files a/common/img/emoji/jp.png and /dev/null differ diff --git a/common/img/emoji/key.png b/common/img/emoji/key.png deleted file mode 100644 index 34673213f6..0000000000 Binary files a/common/img/emoji/key.png and /dev/null differ diff --git a/common/img/emoji/keycap_ten.png b/common/img/emoji/keycap_ten.png deleted file mode 100644 index 71dac1c1cc..0000000000 Binary files a/common/img/emoji/keycap_ten.png and /dev/null differ diff --git a/common/img/emoji/kimono.png b/common/img/emoji/kimono.png deleted file mode 100644 index 34ffe137dc..0000000000 Binary files a/common/img/emoji/kimono.png and /dev/null differ diff --git a/common/img/emoji/kiss.png b/common/img/emoji/kiss.png deleted file mode 100644 index 4ae2c2b5d0..0000000000 Binary files a/common/img/emoji/kiss.png and /dev/null differ diff --git a/common/img/emoji/kissing.png b/common/img/emoji/kissing.png deleted file mode 100644 index eb049c80bd..0000000000 Binary files a/common/img/emoji/kissing.png and /dev/null differ diff --git a/common/img/emoji/kissing_cat.png b/common/img/emoji/kissing_cat.png deleted file mode 100644 index adc62fbe3c..0000000000 Binary files a/common/img/emoji/kissing_cat.png and /dev/null differ diff --git a/common/img/emoji/kissing_closed_eyes.png b/common/img/emoji/kissing_closed_eyes.png deleted file mode 100644 index 449de19704..0000000000 Binary files a/common/img/emoji/kissing_closed_eyes.png and /dev/null differ diff --git a/common/img/emoji/kissing_heart.png b/common/img/emoji/kissing_heart.png deleted file mode 100644 index af9a80b7f0..0000000000 Binary files a/common/img/emoji/kissing_heart.png and /dev/null differ diff --git a/common/img/emoji/kissing_smiling_eyes.png b/common/img/emoji/kissing_smiling_eyes.png deleted file mode 100644 index d85706e706..0000000000 Binary files a/common/img/emoji/kissing_smiling_eyes.png and /dev/null differ diff --git a/common/img/emoji/koala.png b/common/img/emoji/koala.png deleted file mode 100644 index e17bd3cf53..0000000000 Binary files a/common/img/emoji/koala.png and /dev/null differ diff --git a/common/img/emoji/koko.png b/common/img/emoji/koko.png deleted file mode 100644 index 3bef28c9fd..0000000000 Binary files a/common/img/emoji/koko.png and /dev/null differ diff --git a/common/img/emoji/kr.png b/common/img/emoji/kr.png deleted file mode 100644 index b4c0c1b673..0000000000 Binary files a/common/img/emoji/kr.png and /dev/null differ diff --git a/common/img/emoji/lantern.png b/common/img/emoji/lantern.png deleted file mode 100644 index 18730ad559..0000000000 Binary files a/common/img/emoji/lantern.png and /dev/null differ diff --git a/common/img/emoji/large_blue_circle.png b/common/img/emoji/large_blue_circle.png deleted file mode 100644 index a5b4ad4aaa..0000000000 Binary files a/common/img/emoji/large_blue_circle.png and /dev/null differ diff --git a/common/img/emoji/large_blue_diamond.png b/common/img/emoji/large_blue_diamond.png deleted file mode 100644 index f4598ec0f2..0000000000 Binary files a/common/img/emoji/large_blue_diamond.png and /dev/null differ diff --git a/common/img/emoji/large_orange_diamond.png b/common/img/emoji/large_orange_diamond.png deleted file mode 100644 index 46d52e5cb6..0000000000 Binary files a/common/img/emoji/large_orange_diamond.png and /dev/null differ diff --git a/common/img/emoji/last_quarter_moon.png b/common/img/emoji/last_quarter_moon.png deleted file mode 100644 index 355e3c3f79..0000000000 Binary files a/common/img/emoji/last_quarter_moon.png and /dev/null differ diff --git a/common/img/emoji/last_quarter_moon_with_face.png b/common/img/emoji/last_quarter_moon_with_face.png deleted file mode 100644 index 9ece82dfec..0000000000 Binary files a/common/img/emoji/last_quarter_moon_with_face.png and /dev/null differ diff --git a/common/img/emoji/laughing.png b/common/img/emoji/laughing.png deleted file mode 100644 index 11c91eb22e..0000000000 Binary files a/common/img/emoji/laughing.png and /dev/null differ diff --git a/common/img/emoji/leaves.png b/common/img/emoji/leaves.png deleted file mode 100644 index 801e578e66..0000000000 Binary files a/common/img/emoji/leaves.png and /dev/null differ diff --git a/common/img/emoji/ledger.png b/common/img/emoji/ledger.png deleted file mode 100644 index e4f72aceac..0000000000 Binary files a/common/img/emoji/ledger.png and /dev/null differ diff --git a/common/img/emoji/left_luggage.png b/common/img/emoji/left_luggage.png deleted file mode 100644 index 1c08b464db..0000000000 Binary files a/common/img/emoji/left_luggage.png and /dev/null differ diff --git a/common/img/emoji/left_right_arrow.png b/common/img/emoji/left_right_arrow.png deleted file mode 100644 index b9fd11c515..0000000000 Binary files a/common/img/emoji/left_right_arrow.png and /dev/null differ diff --git a/common/img/emoji/leftwards_arrow_with_hook.png b/common/img/emoji/leftwards_arrow_with_hook.png deleted file mode 100644 index bc45dfefd4..0000000000 Binary files a/common/img/emoji/leftwards_arrow_with_hook.png and /dev/null differ diff --git a/common/img/emoji/lemon.png b/common/img/emoji/lemon.png deleted file mode 100644 index 9814dc9598..0000000000 Binary files a/common/img/emoji/lemon.png and /dev/null differ diff --git a/common/img/emoji/leo.png b/common/img/emoji/leo.png deleted file mode 100644 index e025933b2f..0000000000 Binary files a/common/img/emoji/leo.png and /dev/null differ diff --git a/common/img/emoji/leopard.png b/common/img/emoji/leopard.png deleted file mode 100644 index 8abfc4a272..0000000000 Binary files a/common/img/emoji/leopard.png and /dev/null differ diff --git a/common/img/emoji/libra.png b/common/img/emoji/libra.png deleted file mode 100644 index c9062dd2ee..0000000000 Binary files a/common/img/emoji/libra.png and /dev/null differ diff --git a/common/img/emoji/light_rail.png b/common/img/emoji/light_rail.png deleted file mode 100644 index bcfe801eec..0000000000 Binary files a/common/img/emoji/light_rail.png and /dev/null differ diff --git a/common/img/emoji/link.png b/common/img/emoji/link.png deleted file mode 100644 index ffb8f62cec..0000000000 Binary files a/common/img/emoji/link.png and /dev/null differ diff --git a/common/img/emoji/lips.png b/common/img/emoji/lips.png deleted file mode 100644 index 826ed1102d..0000000000 Binary files a/common/img/emoji/lips.png and /dev/null differ diff --git a/common/img/emoji/lipstick.png b/common/img/emoji/lipstick.png deleted file mode 100644 index 82f990c567..0000000000 Binary files a/common/img/emoji/lipstick.png and /dev/null differ diff --git a/common/img/emoji/lock.png b/common/img/emoji/lock.png deleted file mode 100644 index 4892b02355..0000000000 Binary files a/common/img/emoji/lock.png and /dev/null differ diff --git a/common/img/emoji/lock_with_ink_pen.png b/common/img/emoji/lock_with_ink_pen.png deleted file mode 100644 index 375e67e825..0000000000 Binary files a/common/img/emoji/lock_with_ink_pen.png and /dev/null differ diff --git a/common/img/emoji/lollipop.png b/common/img/emoji/lollipop.png deleted file mode 100644 index ba55e7093f..0000000000 Binary files a/common/img/emoji/lollipop.png and /dev/null differ diff --git a/common/img/emoji/loop.png b/common/img/emoji/loop.png deleted file mode 100644 index ef34df3a40..0000000000 Binary files a/common/img/emoji/loop.png and /dev/null differ diff --git a/common/img/emoji/loud_sound.png b/common/img/emoji/loud_sound.png deleted file mode 100644 index f63e814973..0000000000 Binary files a/common/img/emoji/loud_sound.png and /dev/null differ diff --git a/common/img/emoji/loudspeaker.png b/common/img/emoji/loudspeaker.png deleted file mode 100644 index 752385e523..0000000000 Binary files a/common/img/emoji/loudspeaker.png and /dev/null differ diff --git a/common/img/emoji/love_hotel.png b/common/img/emoji/love_hotel.png deleted file mode 100644 index 44d7db828a..0000000000 Binary files a/common/img/emoji/love_hotel.png and /dev/null differ diff --git a/common/img/emoji/love_letter.png b/common/img/emoji/love_letter.png deleted file mode 100644 index e29981f445..0000000000 Binary files a/common/img/emoji/love_letter.png and /dev/null differ diff --git a/common/img/emoji/low_brightness.png b/common/img/emoji/low_brightness.png deleted file mode 100644 index ea15bde4f0..0000000000 Binary files a/common/img/emoji/low_brightness.png and /dev/null differ diff --git a/common/img/emoji/m.png b/common/img/emoji/m.png deleted file mode 100644 index 7424665e2b..0000000000 Binary files a/common/img/emoji/m.png and /dev/null differ diff --git a/common/img/emoji/mag.png b/common/img/emoji/mag.png deleted file mode 100644 index aa5b1d7c46..0000000000 Binary files a/common/img/emoji/mag.png and /dev/null differ diff --git a/common/img/emoji/mag_right.png b/common/img/emoji/mag_right.png deleted file mode 100644 index 6e6cf11e6d..0000000000 Binary files a/common/img/emoji/mag_right.png and /dev/null differ diff --git a/common/img/emoji/mahjong.png b/common/img/emoji/mahjong.png deleted file mode 100644 index f51ce65fdd..0000000000 Binary files a/common/img/emoji/mahjong.png and /dev/null differ diff --git a/common/img/emoji/mailbox.png b/common/img/emoji/mailbox.png deleted file mode 100644 index 8351e70760..0000000000 Binary files a/common/img/emoji/mailbox.png and /dev/null differ diff --git a/common/img/emoji/mailbox_closed.png b/common/img/emoji/mailbox_closed.png deleted file mode 100644 index a5982b69bb..0000000000 Binary files a/common/img/emoji/mailbox_closed.png and /dev/null differ diff --git a/common/img/emoji/mailbox_with_mail.png b/common/img/emoji/mailbox_with_mail.png deleted file mode 100644 index dae3459436..0000000000 Binary files a/common/img/emoji/mailbox_with_mail.png and /dev/null differ diff --git a/common/img/emoji/mailbox_with_no_mail.png b/common/img/emoji/mailbox_with_no_mail.png deleted file mode 100644 index 59f15c5d7d..0000000000 Binary files a/common/img/emoji/mailbox_with_no_mail.png and /dev/null differ diff --git a/common/img/emoji/man.png b/common/img/emoji/man.png deleted file mode 100644 index d9bfa26a67..0000000000 Binary files a/common/img/emoji/man.png and /dev/null differ diff --git a/common/img/emoji/man_with_gua_pi_mao.png b/common/img/emoji/man_with_gua_pi_mao.png deleted file mode 100644 index 7aad74b55e..0000000000 Binary files a/common/img/emoji/man_with_gua_pi_mao.png and /dev/null differ diff --git a/common/img/emoji/man_with_turban.png b/common/img/emoji/man_with_turban.png deleted file mode 100644 index 036604caf2..0000000000 Binary files a/common/img/emoji/man_with_turban.png and /dev/null differ diff --git a/common/img/emoji/mans_shoe.png b/common/img/emoji/mans_shoe.png deleted file mode 100644 index ecba9ba7d0..0000000000 Binary files a/common/img/emoji/mans_shoe.png and /dev/null differ diff --git a/common/img/emoji/maple_leaf.png b/common/img/emoji/maple_leaf.png deleted file mode 100644 index 4e9b47207d..0000000000 Binary files a/common/img/emoji/maple_leaf.png and /dev/null differ diff --git a/common/img/emoji/mask.png b/common/img/emoji/mask.png deleted file mode 100644 index 05887e99c6..0000000000 Binary files a/common/img/emoji/mask.png and /dev/null differ diff --git a/common/img/emoji/massage.png b/common/img/emoji/massage.png deleted file mode 100644 index dd30d15975..0000000000 Binary files a/common/img/emoji/massage.png and /dev/null differ diff --git a/common/img/emoji/meat_on_bone.png b/common/img/emoji/meat_on_bone.png deleted file mode 100644 index d6b311b6b2..0000000000 Binary files a/common/img/emoji/meat_on_bone.png and /dev/null differ diff --git a/common/img/emoji/mega.png b/common/img/emoji/mega.png deleted file mode 100644 index 5d9319e72d..0000000000 Binary files a/common/img/emoji/mega.png and /dev/null differ diff --git a/common/img/emoji/melon.png b/common/img/emoji/melon.png deleted file mode 100644 index 11c13cbbd4..0000000000 Binary files a/common/img/emoji/melon.png and /dev/null differ diff --git a/common/img/emoji/memo.png b/common/img/emoji/memo.png deleted file mode 100644 index fc97ddbc92..0000000000 Binary files a/common/img/emoji/memo.png and /dev/null differ diff --git a/common/img/emoji/mens.png b/common/img/emoji/mens.png deleted file mode 100644 index abccfc9f2c..0000000000 Binary files a/common/img/emoji/mens.png and /dev/null differ diff --git a/common/img/emoji/metal.png b/common/img/emoji/metal.png deleted file mode 100644 index 94f1fda224..0000000000 Binary files a/common/img/emoji/metal.png and /dev/null differ diff --git a/common/img/emoji/metro.png b/common/img/emoji/metro.png deleted file mode 100644 index 7f34f6be34..0000000000 Binary files a/common/img/emoji/metro.png and /dev/null differ diff --git a/common/img/emoji/microphone.png b/common/img/emoji/microphone.png deleted file mode 100644 index ce19a2bb66..0000000000 Binary files a/common/img/emoji/microphone.png and /dev/null differ diff --git a/common/img/emoji/microscope.png b/common/img/emoji/microscope.png deleted file mode 100644 index f11d54c010..0000000000 Binary files a/common/img/emoji/microscope.png and /dev/null differ diff --git a/common/img/emoji/milky_way.png b/common/img/emoji/milky_way.png deleted file mode 100644 index 901090a126..0000000000 Binary files a/common/img/emoji/milky_way.png and /dev/null differ diff --git a/common/img/emoji/minibus.png b/common/img/emoji/minibus.png deleted file mode 100644 index c52cef2340..0000000000 Binary files a/common/img/emoji/minibus.png and /dev/null differ diff --git a/common/img/emoji/minidisc.png b/common/img/emoji/minidisc.png deleted file mode 100644 index e19cc5d015..0000000000 Binary files a/common/img/emoji/minidisc.png and /dev/null differ diff --git a/common/img/emoji/mobile_phone_off.png b/common/img/emoji/mobile_phone_off.png deleted file mode 100644 index fa16c763c9..0000000000 Binary files a/common/img/emoji/mobile_phone_off.png and /dev/null differ diff --git a/common/img/emoji/money_with_wings.png b/common/img/emoji/money_with_wings.png deleted file mode 100644 index 135e3981ed..0000000000 Binary files a/common/img/emoji/money_with_wings.png and /dev/null differ diff --git a/common/img/emoji/moneybag.png b/common/img/emoji/moneybag.png deleted file mode 100644 index 5546c04bad..0000000000 Binary files a/common/img/emoji/moneybag.png and /dev/null differ diff --git a/common/img/emoji/monkey.png b/common/img/emoji/monkey.png deleted file mode 100644 index 6407035977..0000000000 Binary files a/common/img/emoji/monkey.png and /dev/null differ diff --git a/common/img/emoji/monkey_face.png b/common/img/emoji/monkey_face.png deleted file mode 100644 index 6964cf4d51..0000000000 Binary files a/common/img/emoji/monkey_face.png and /dev/null differ diff --git a/common/img/emoji/monorail.png b/common/img/emoji/monorail.png deleted file mode 100644 index 913d300246..0000000000 Binary files a/common/img/emoji/monorail.png and /dev/null differ diff --git a/common/img/emoji/moon.png b/common/img/emoji/moon.png deleted file mode 100644 index dd8c484589..0000000000 Binary files a/common/img/emoji/moon.png and /dev/null differ diff --git a/common/img/emoji/mortar_board.png b/common/img/emoji/mortar_board.png deleted file mode 100644 index 2e811b097a..0000000000 Binary files a/common/img/emoji/mortar_board.png and /dev/null differ diff --git a/common/img/emoji/mount_fuji.png b/common/img/emoji/mount_fuji.png deleted file mode 100644 index 4c313e583f..0000000000 Binary files a/common/img/emoji/mount_fuji.png and /dev/null differ diff --git a/common/img/emoji/mountain_bicyclist.png b/common/img/emoji/mountain_bicyclist.png deleted file mode 100644 index b698897566..0000000000 Binary files a/common/img/emoji/mountain_bicyclist.png and /dev/null differ diff --git a/common/img/emoji/mountain_cableway.png b/common/img/emoji/mountain_cableway.png deleted file mode 100644 index 5688bb239a..0000000000 Binary files a/common/img/emoji/mountain_cableway.png and /dev/null differ diff --git a/common/img/emoji/mountain_railway.png b/common/img/emoji/mountain_railway.png deleted file mode 100644 index 1f3d1aab56..0000000000 Binary files a/common/img/emoji/mountain_railway.png and /dev/null differ diff --git a/common/img/emoji/mouse.png b/common/img/emoji/mouse.png deleted file mode 100644 index 8ff162e2db..0000000000 Binary files a/common/img/emoji/mouse.png and /dev/null differ diff --git a/common/img/emoji/mouse2.png b/common/img/emoji/mouse2.png deleted file mode 100644 index 2d777e5e1a..0000000000 Binary files a/common/img/emoji/mouse2.png and /dev/null differ diff --git a/common/img/emoji/movie_camera.png b/common/img/emoji/movie_camera.png deleted file mode 100644 index 9c14384092..0000000000 Binary files a/common/img/emoji/movie_camera.png and /dev/null differ diff --git a/common/img/emoji/moyai.png b/common/img/emoji/moyai.png deleted file mode 100644 index 61a1a9c21a..0000000000 Binary files a/common/img/emoji/moyai.png and /dev/null differ diff --git a/common/img/emoji/muscle.png b/common/img/emoji/muscle.png deleted file mode 100644 index 19f92efb66..0000000000 Binary files a/common/img/emoji/muscle.png and /dev/null differ diff --git a/common/img/emoji/mushroom.png b/common/img/emoji/mushroom.png deleted file mode 100644 index 5eeed8e790..0000000000 Binary files a/common/img/emoji/mushroom.png and /dev/null differ diff --git a/common/img/emoji/musical_keyboard.png b/common/img/emoji/musical_keyboard.png deleted file mode 100644 index 93647a4a32..0000000000 Binary files a/common/img/emoji/musical_keyboard.png and /dev/null differ diff --git a/common/img/emoji/musical_note.png b/common/img/emoji/musical_note.png deleted file mode 100644 index 68b261bcba..0000000000 Binary files a/common/img/emoji/musical_note.png and /dev/null differ diff --git a/common/img/emoji/musical_score.png b/common/img/emoji/musical_score.png deleted file mode 100644 index 0c927d32fa..0000000000 Binary files a/common/img/emoji/musical_score.png and /dev/null differ diff --git a/common/img/emoji/mute.png b/common/img/emoji/mute.png deleted file mode 100644 index 4cf67c367d..0000000000 Binary files a/common/img/emoji/mute.png and /dev/null differ diff --git a/common/img/emoji/nail_care.png b/common/img/emoji/nail_care.png deleted file mode 100644 index 6a66e63d2a..0000000000 Binary files a/common/img/emoji/nail_care.png and /dev/null differ diff --git a/common/img/emoji/name_badge.png b/common/img/emoji/name_badge.png deleted file mode 100644 index 2b712dcd55..0000000000 Binary files a/common/img/emoji/name_badge.png and /dev/null differ diff --git a/common/img/emoji/neckbeard.png b/common/img/emoji/neckbeard.png deleted file mode 100644 index 15108fc97d..0000000000 Binary files a/common/img/emoji/neckbeard.png and /dev/null differ diff --git a/common/img/emoji/necktie.png b/common/img/emoji/necktie.png deleted file mode 100644 index 80461c66f3..0000000000 Binary files a/common/img/emoji/necktie.png and /dev/null differ diff --git a/common/img/emoji/negative_squared_cross_mark.png b/common/img/emoji/negative_squared_cross_mark.png deleted file mode 100644 index b47a0cece5..0000000000 Binary files a/common/img/emoji/negative_squared_cross_mark.png and /dev/null differ diff --git a/common/img/emoji/neutral_face.png b/common/img/emoji/neutral_face.png deleted file mode 100644 index 682a1ba066..0000000000 Binary files a/common/img/emoji/neutral_face.png and /dev/null differ diff --git a/common/img/emoji/new.png b/common/img/emoji/new.png deleted file mode 100644 index 28d1570e0a..0000000000 Binary files a/common/img/emoji/new.png and /dev/null differ diff --git a/common/img/emoji/new_moon.png b/common/img/emoji/new_moon.png deleted file mode 100644 index 540239b1f3..0000000000 Binary files a/common/img/emoji/new_moon.png and /dev/null differ diff --git a/common/img/emoji/new_moon_with_face.png b/common/img/emoji/new_moon_with_face.png deleted file mode 100644 index b9aff7a068..0000000000 Binary files a/common/img/emoji/new_moon_with_face.png and /dev/null differ diff --git a/common/img/emoji/newspaper.png b/common/img/emoji/newspaper.png deleted file mode 100644 index d171394e6a..0000000000 Binary files a/common/img/emoji/newspaper.png and /dev/null differ diff --git a/common/img/emoji/ng.png b/common/img/emoji/ng.png deleted file mode 100644 index 2ca180ae39..0000000000 Binary files a/common/img/emoji/ng.png and /dev/null differ diff --git a/common/img/emoji/night_with_stars.png b/common/img/emoji/night_with_stars.png deleted file mode 100644 index d4de585f64..0000000000 Binary files a/common/img/emoji/night_with_stars.png and /dev/null differ diff --git a/common/img/emoji/nine.png b/common/img/emoji/nine.png deleted file mode 100644 index 8006cc909f..0000000000 Binary files a/common/img/emoji/nine.png and /dev/null differ diff --git a/common/img/emoji/no_bell.png b/common/img/emoji/no_bell.png deleted file mode 100644 index 613b81cd21..0000000000 Binary files a/common/img/emoji/no_bell.png and /dev/null differ diff --git a/common/img/emoji/no_bicycles.png b/common/img/emoji/no_bicycles.png deleted file mode 100644 index 4b26216645..0000000000 Binary files a/common/img/emoji/no_bicycles.png and /dev/null differ diff --git a/common/img/emoji/no_entry.png b/common/img/emoji/no_entry.png deleted file mode 100644 index cf2086a8e7..0000000000 Binary files a/common/img/emoji/no_entry.png and /dev/null differ diff --git a/common/img/emoji/no_entry_sign.png b/common/img/emoji/no_entry_sign.png deleted file mode 100644 index a8444d18d2..0000000000 Binary files a/common/img/emoji/no_entry_sign.png and /dev/null differ diff --git a/common/img/emoji/no_good.png b/common/img/emoji/no_good.png deleted file mode 100644 index d459a35bc1..0000000000 Binary files a/common/img/emoji/no_good.png and /dev/null differ diff --git a/common/img/emoji/no_mobile_phones.png b/common/img/emoji/no_mobile_phones.png deleted file mode 100644 index 41df57cf82..0000000000 Binary files a/common/img/emoji/no_mobile_phones.png and /dev/null differ diff --git a/common/img/emoji/no_mouth.png b/common/img/emoji/no_mouth.png deleted file mode 100644 index d9ec7ca7d7..0000000000 Binary files a/common/img/emoji/no_mouth.png and /dev/null differ diff --git a/common/img/emoji/no_pedestrians.png b/common/img/emoji/no_pedestrians.png deleted file mode 100644 index c35f530b22..0000000000 Binary files a/common/img/emoji/no_pedestrians.png and /dev/null differ diff --git a/common/img/emoji/no_smoking.png b/common/img/emoji/no_smoking.png deleted file mode 100644 index eb11d79115..0000000000 Binary files a/common/img/emoji/no_smoking.png and /dev/null differ diff --git a/common/img/emoji/non-potable_water.png b/common/img/emoji/non-potable_water.png deleted file mode 100644 index 1b29d35b98..0000000000 Binary files a/common/img/emoji/non-potable_water.png and /dev/null differ diff --git a/common/img/emoji/nose.png b/common/img/emoji/nose.png deleted file mode 100644 index ad17c16c29..0000000000 Binary files a/common/img/emoji/nose.png and /dev/null differ diff --git a/common/img/emoji/notebook.png b/common/img/emoji/notebook.png deleted file mode 100644 index 07ea6087ed..0000000000 Binary files a/common/img/emoji/notebook.png and /dev/null differ diff --git a/common/img/emoji/notebook_with_decorative_cover.png b/common/img/emoji/notebook_with_decorative_cover.png deleted file mode 100644 index 4f3b14c85f..0000000000 Binary files a/common/img/emoji/notebook_with_decorative_cover.png and /dev/null differ diff --git a/common/img/emoji/notes.png b/common/img/emoji/notes.png deleted file mode 100644 index a13147faed..0000000000 Binary files a/common/img/emoji/notes.png and /dev/null differ diff --git a/common/img/emoji/nut_and_bolt.png b/common/img/emoji/nut_and_bolt.png deleted file mode 100644 index bddfa72a7d..0000000000 Binary files a/common/img/emoji/nut_and_bolt.png and /dev/null differ diff --git a/common/img/emoji/o.png b/common/img/emoji/o.png deleted file mode 100644 index 0ededebe31..0000000000 Binary files a/common/img/emoji/o.png and /dev/null differ diff --git a/common/img/emoji/o2.png b/common/img/emoji/o2.png deleted file mode 100644 index d85f9fb98c..0000000000 Binary files a/common/img/emoji/o2.png and /dev/null differ diff --git a/common/img/emoji/ocean.png b/common/img/emoji/ocean.png deleted file mode 100644 index f8d520cd49..0000000000 Binary files a/common/img/emoji/ocean.png and /dev/null differ diff --git a/common/img/emoji/octocat.png b/common/img/emoji/octocat.png deleted file mode 100644 index 9d74d902ae..0000000000 Binary files a/common/img/emoji/octocat.png and /dev/null differ diff --git a/common/img/emoji/octopus.png b/common/img/emoji/octopus.png deleted file mode 100644 index 52ce64b468..0000000000 Binary files a/common/img/emoji/octopus.png and /dev/null differ diff --git a/common/img/emoji/oden.png b/common/img/emoji/oden.png deleted file mode 100644 index 73add1c73c..0000000000 Binary files a/common/img/emoji/oden.png and /dev/null differ diff --git a/common/img/emoji/office.png b/common/img/emoji/office.png deleted file mode 100644 index 3f20b56422..0000000000 Binary files a/common/img/emoji/office.png and /dev/null differ diff --git a/common/img/emoji/ok.png b/common/img/emoji/ok.png deleted file mode 100644 index 6433d1a90a..0000000000 Binary files a/common/img/emoji/ok.png and /dev/null differ diff --git a/common/img/emoji/ok_hand.png b/common/img/emoji/ok_hand.png deleted file mode 100644 index 3177439dcc..0000000000 Binary files a/common/img/emoji/ok_hand.png and /dev/null differ diff --git a/common/img/emoji/ok_woman.png b/common/img/emoji/ok_woman.png deleted file mode 100644 index e8b98194ed..0000000000 Binary files a/common/img/emoji/ok_woman.png and /dev/null differ diff --git a/common/img/emoji/older_man.png b/common/img/emoji/older_man.png deleted file mode 100644 index 149f0cfb8e..0000000000 Binary files a/common/img/emoji/older_man.png and /dev/null differ diff --git a/common/img/emoji/older_woman.png b/common/img/emoji/older_woman.png deleted file mode 100644 index f839565f47..0000000000 Binary files a/common/img/emoji/older_woman.png and /dev/null differ diff --git a/common/img/emoji/on.png b/common/img/emoji/on.png deleted file mode 100644 index 3595387fb6..0000000000 Binary files a/common/img/emoji/on.png and /dev/null differ diff --git a/common/img/emoji/oncoming_automobile.png b/common/img/emoji/oncoming_automobile.png deleted file mode 100644 index cb46de22cb..0000000000 Binary files a/common/img/emoji/oncoming_automobile.png and /dev/null differ diff --git a/common/img/emoji/oncoming_bus.png b/common/img/emoji/oncoming_bus.png deleted file mode 100644 index 3695f76235..0000000000 Binary files a/common/img/emoji/oncoming_bus.png and /dev/null differ diff --git a/common/img/emoji/oncoming_police_car.png b/common/img/emoji/oncoming_police_car.png deleted file mode 100644 index af20e7eff0..0000000000 Binary files a/common/img/emoji/oncoming_police_car.png and /dev/null differ diff --git a/common/img/emoji/oncoming_taxi.png b/common/img/emoji/oncoming_taxi.png deleted file mode 100644 index f78cf3103b..0000000000 Binary files a/common/img/emoji/oncoming_taxi.png and /dev/null differ diff --git a/common/img/emoji/one.png b/common/img/emoji/one.png deleted file mode 100644 index 2d1f9f8c49..0000000000 Binary files a/common/img/emoji/one.png and /dev/null differ diff --git a/common/img/emoji/open_book.png b/common/img/emoji/open_book.png deleted file mode 100644 index 8b698415c3..0000000000 Binary files a/common/img/emoji/open_book.png and /dev/null differ diff --git a/common/img/emoji/open_file_folder.png b/common/img/emoji/open_file_folder.png deleted file mode 100644 index 2bbbbf5e7c..0000000000 Binary files a/common/img/emoji/open_file_folder.png and /dev/null differ diff --git a/common/img/emoji/open_hands.png b/common/img/emoji/open_hands.png deleted file mode 100644 index 2cc25bd41a..0000000000 Binary files a/common/img/emoji/open_hands.png and /dev/null differ diff --git a/common/img/emoji/open_mouth.png b/common/img/emoji/open_mouth.png deleted file mode 100644 index e5283582c3..0000000000 Binary files a/common/img/emoji/open_mouth.png and /dev/null differ diff --git a/common/img/emoji/ophiuchus.png b/common/img/emoji/ophiuchus.png deleted file mode 100644 index 4eef715bc2..0000000000 Binary files a/common/img/emoji/ophiuchus.png and /dev/null differ diff --git a/common/img/emoji/orange_book.png b/common/img/emoji/orange_book.png deleted file mode 100644 index 49650d59e5..0000000000 Binary files a/common/img/emoji/orange_book.png and /dev/null differ diff --git a/common/img/emoji/outbox_tray.png b/common/img/emoji/outbox_tray.png deleted file mode 100644 index 7ad15e649d..0000000000 Binary files a/common/img/emoji/outbox_tray.png and /dev/null differ diff --git a/common/img/emoji/ox.png b/common/img/emoji/ox.png deleted file mode 100644 index f766980248..0000000000 Binary files a/common/img/emoji/ox.png and /dev/null differ diff --git a/common/img/emoji/package.png b/common/img/emoji/package.png deleted file mode 100644 index 26602af9d8..0000000000 Binary files a/common/img/emoji/package.png and /dev/null differ diff --git a/common/img/emoji/page_facing_up.png b/common/img/emoji/page_facing_up.png deleted file mode 100644 index 64cd2e1b2a..0000000000 Binary files a/common/img/emoji/page_facing_up.png and /dev/null differ diff --git a/common/img/emoji/page_with_curl.png b/common/img/emoji/page_with_curl.png deleted file mode 100644 index bf8f979d31..0000000000 Binary files a/common/img/emoji/page_with_curl.png and /dev/null differ diff --git a/common/img/emoji/pager.png b/common/img/emoji/pager.png deleted file mode 100644 index e3e1fc44ee..0000000000 Binary files a/common/img/emoji/pager.png and /dev/null differ diff --git a/common/img/emoji/palm_tree.png b/common/img/emoji/palm_tree.png deleted file mode 100644 index d534785ef9..0000000000 Binary files a/common/img/emoji/palm_tree.png and /dev/null differ diff --git a/common/img/emoji/panda_face.png b/common/img/emoji/panda_face.png deleted file mode 100644 index a794fb17f6..0000000000 Binary files a/common/img/emoji/panda_face.png and /dev/null differ diff --git a/common/img/emoji/paperclip.png b/common/img/emoji/paperclip.png deleted file mode 100644 index 774412dc10..0000000000 Binary files a/common/img/emoji/paperclip.png and /dev/null differ diff --git a/common/img/emoji/parking.png b/common/img/emoji/parking.png deleted file mode 100644 index c24af81ccf..0000000000 Binary files a/common/img/emoji/parking.png and /dev/null differ diff --git a/common/img/emoji/part_alternation_mark.png b/common/img/emoji/part_alternation_mark.png deleted file mode 100644 index 45dc9b851a..0000000000 Binary files a/common/img/emoji/part_alternation_mark.png and /dev/null differ diff --git a/common/img/emoji/partly_sunny.png b/common/img/emoji/partly_sunny.png deleted file mode 100644 index 020dd5ff69..0000000000 Binary files a/common/img/emoji/partly_sunny.png and /dev/null differ diff --git a/common/img/emoji/passport_control.png b/common/img/emoji/passport_control.png deleted file mode 100644 index 675b76d378..0000000000 Binary files a/common/img/emoji/passport_control.png and /dev/null differ diff --git a/common/img/emoji/paw_prints.png b/common/img/emoji/paw_prints.png deleted file mode 100644 index 89b9fec9ef..0000000000 Binary files a/common/img/emoji/paw_prints.png and /dev/null differ diff --git a/common/img/emoji/peach.png b/common/img/emoji/peach.png deleted file mode 100644 index ee2139ecb8..0000000000 Binary files a/common/img/emoji/peach.png and /dev/null differ diff --git a/common/img/emoji/pear.png b/common/img/emoji/pear.png deleted file mode 100644 index f24aca8c0a..0000000000 Binary files a/common/img/emoji/pear.png and /dev/null differ diff --git a/common/img/emoji/pencil.png b/common/img/emoji/pencil.png deleted file mode 100644 index fc97ddbc92..0000000000 Binary files a/common/img/emoji/pencil.png and /dev/null differ diff --git a/common/img/emoji/pencil2.png b/common/img/emoji/pencil2.png deleted file mode 100644 index e624373b49..0000000000 Binary files a/common/img/emoji/pencil2.png and /dev/null differ diff --git a/common/img/emoji/penguin.png b/common/img/emoji/penguin.png deleted file mode 100644 index d8edbcb8fa..0000000000 Binary files a/common/img/emoji/penguin.png and /dev/null differ diff --git a/common/img/emoji/pensive.png b/common/img/emoji/pensive.png deleted file mode 100644 index 2f3bad9453..0000000000 Binary files a/common/img/emoji/pensive.png and /dev/null differ diff --git a/common/img/emoji/performing_arts.png b/common/img/emoji/performing_arts.png deleted file mode 100644 index 899fbe5a79..0000000000 Binary files a/common/img/emoji/performing_arts.png and /dev/null differ diff --git a/common/img/emoji/persevere.png b/common/img/emoji/persevere.png deleted file mode 100644 index c7e433e8ec..0000000000 Binary files a/common/img/emoji/persevere.png and /dev/null differ diff --git a/common/img/emoji/person_frowning.png b/common/img/emoji/person_frowning.png deleted file mode 100644 index 6f34d5e159..0000000000 Binary files a/common/img/emoji/person_frowning.png and /dev/null differ diff --git a/common/img/emoji/person_with_blond_hair.png b/common/img/emoji/person_with_blond_hair.png deleted file mode 100644 index c144301cbb..0000000000 Binary files a/common/img/emoji/person_with_blond_hair.png and /dev/null differ diff --git a/common/img/emoji/person_with_pouting_face.png b/common/img/emoji/person_with_pouting_face.png deleted file mode 100644 index c4a95c3b2a..0000000000 Binary files a/common/img/emoji/person_with_pouting_face.png and /dev/null differ diff --git a/common/img/emoji/phone.png b/common/img/emoji/phone.png deleted file mode 100644 index 87d2559b55..0000000000 Binary files a/common/img/emoji/phone.png and /dev/null differ diff --git a/common/img/emoji/pig.png b/common/img/emoji/pig.png deleted file mode 100644 index f7f273c733..0000000000 Binary files a/common/img/emoji/pig.png and /dev/null differ diff --git a/common/img/emoji/pig2.png b/common/img/emoji/pig2.png deleted file mode 100644 index fec3374d70..0000000000 Binary files a/common/img/emoji/pig2.png and /dev/null differ diff --git a/common/img/emoji/pig_nose.png b/common/img/emoji/pig_nose.png deleted file mode 100644 index 38d612446e..0000000000 Binary files a/common/img/emoji/pig_nose.png and /dev/null differ diff --git a/common/img/emoji/pill.png b/common/img/emoji/pill.png deleted file mode 100644 index cd84a78ff7..0000000000 Binary files a/common/img/emoji/pill.png and /dev/null differ diff --git a/common/img/emoji/pineapple.png b/common/img/emoji/pineapple.png deleted file mode 100644 index d6f8e28769..0000000000 Binary files a/common/img/emoji/pineapple.png and /dev/null differ diff --git a/common/img/emoji/pisces.png b/common/img/emoji/pisces.png deleted file mode 100644 index 5a2da0a059..0000000000 Binary files a/common/img/emoji/pisces.png and /dev/null differ diff --git a/common/img/emoji/pizza.png b/common/img/emoji/pizza.png deleted file mode 100644 index 460367d02c..0000000000 Binary files a/common/img/emoji/pizza.png and /dev/null differ diff --git a/common/img/emoji/point_down.png b/common/img/emoji/point_down.png deleted file mode 100644 index 658c6d9187..0000000000 Binary files a/common/img/emoji/point_down.png and /dev/null differ diff --git a/common/img/emoji/point_left.png b/common/img/emoji/point_left.png deleted file mode 100644 index fee9cac4da..0000000000 Binary files a/common/img/emoji/point_left.png and /dev/null differ diff --git a/common/img/emoji/point_right.png b/common/img/emoji/point_right.png deleted file mode 100644 index b04e2849d0..0000000000 Binary files a/common/img/emoji/point_right.png and /dev/null differ diff --git a/common/img/emoji/point_up.png b/common/img/emoji/point_up.png deleted file mode 100644 index 01896e214a..0000000000 Binary files a/common/img/emoji/point_up.png and /dev/null differ diff --git a/common/img/emoji/point_up_2.png b/common/img/emoji/point_up_2.png deleted file mode 100644 index 196d109a87..0000000000 Binary files a/common/img/emoji/point_up_2.png and /dev/null differ diff --git a/common/img/emoji/police_car.png b/common/img/emoji/police_car.png deleted file mode 100644 index b8f17275ee..0000000000 Binary files a/common/img/emoji/police_car.png and /dev/null differ diff --git a/common/img/emoji/poodle.png b/common/img/emoji/poodle.png deleted file mode 100644 index adac80bd97..0000000000 Binary files a/common/img/emoji/poodle.png and /dev/null differ diff --git a/common/img/emoji/poop.png b/common/img/emoji/poop.png deleted file mode 100644 index 73a4dc8400..0000000000 Binary files a/common/img/emoji/poop.png and /dev/null differ diff --git a/common/img/emoji/post_office.png b/common/img/emoji/post_office.png deleted file mode 100644 index 43b59e30ec..0000000000 Binary files a/common/img/emoji/post_office.png and /dev/null differ diff --git a/common/img/emoji/postal_horn.png b/common/img/emoji/postal_horn.png deleted file mode 100644 index e9b713bbec..0000000000 Binary files a/common/img/emoji/postal_horn.png and /dev/null differ diff --git a/common/img/emoji/postbox.png b/common/img/emoji/postbox.png deleted file mode 100644 index ce04b7008b..0000000000 Binary files a/common/img/emoji/postbox.png and /dev/null differ diff --git a/common/img/emoji/potable_water.png b/common/img/emoji/potable_water.png deleted file mode 100644 index e9fd56079c..0000000000 Binary files a/common/img/emoji/potable_water.png and /dev/null differ diff --git a/common/img/emoji/pouch.png b/common/img/emoji/pouch.png deleted file mode 100644 index 0bc5879fcb..0000000000 Binary files a/common/img/emoji/pouch.png and /dev/null differ diff --git a/common/img/emoji/poultry_leg.png b/common/img/emoji/poultry_leg.png deleted file mode 100644 index 43ad859651..0000000000 Binary files a/common/img/emoji/poultry_leg.png and /dev/null differ diff --git a/common/img/emoji/pound.png b/common/img/emoji/pound.png deleted file mode 100644 index f8be91d7a4..0000000000 Binary files a/common/img/emoji/pound.png and /dev/null differ diff --git a/common/img/emoji/pouting_cat.png b/common/img/emoji/pouting_cat.png deleted file mode 100644 index 4325fd48dd..0000000000 Binary files a/common/img/emoji/pouting_cat.png and /dev/null differ diff --git a/common/img/emoji/pray.png b/common/img/emoji/pray.png deleted file mode 100644 index f86c992d5a..0000000000 Binary files a/common/img/emoji/pray.png and /dev/null differ diff --git a/common/img/emoji/princess.png b/common/img/emoji/princess.png deleted file mode 100644 index 1ebb2ce9b1..0000000000 Binary files a/common/img/emoji/princess.png and /dev/null differ diff --git a/common/img/emoji/punch.png b/common/img/emoji/punch.png deleted file mode 100644 index 2d41fd37e8..0000000000 Binary files a/common/img/emoji/punch.png and /dev/null differ diff --git a/common/img/emoji/purple_heart.png b/common/img/emoji/purple_heart.png deleted file mode 100644 index d5f875043f..0000000000 Binary files a/common/img/emoji/purple_heart.png and /dev/null differ diff --git a/common/img/emoji/purse.png b/common/img/emoji/purse.png deleted file mode 100644 index 8f06a2b932..0000000000 Binary files a/common/img/emoji/purse.png and /dev/null differ diff --git a/common/img/emoji/pushpin.png b/common/img/emoji/pushpin.png deleted file mode 100644 index 540c4ecb88..0000000000 Binary files a/common/img/emoji/pushpin.png and /dev/null differ diff --git a/common/img/emoji/put_litter_in_its_place.png b/common/img/emoji/put_litter_in_its_place.png deleted file mode 100644 index c2e350c2dc..0000000000 Binary files a/common/img/emoji/put_litter_in_its_place.png and /dev/null differ diff --git a/common/img/emoji/question.png b/common/img/emoji/question.png deleted file mode 100644 index 63fd7f8372..0000000000 Binary files a/common/img/emoji/question.png and /dev/null differ diff --git a/common/img/emoji/rabbit.png b/common/img/emoji/rabbit.png deleted file mode 100644 index 5cb3ef6f0c..0000000000 Binary files a/common/img/emoji/rabbit.png and /dev/null differ diff --git a/common/img/emoji/rabbit2.png b/common/img/emoji/rabbit2.png deleted file mode 100644 index 5bc993e799..0000000000 Binary files a/common/img/emoji/rabbit2.png and /dev/null differ diff --git a/common/img/emoji/racehorse.png b/common/img/emoji/racehorse.png deleted file mode 100644 index 4d09c64de7..0000000000 Binary files a/common/img/emoji/racehorse.png and /dev/null differ diff --git a/common/img/emoji/radio.png b/common/img/emoji/radio.png deleted file mode 100644 index ea589efe32..0000000000 Binary files a/common/img/emoji/radio.png and /dev/null differ diff --git a/common/img/emoji/radio_button.png b/common/img/emoji/radio_button.png deleted file mode 100644 index 63755eec25..0000000000 Binary files a/common/img/emoji/radio_button.png and /dev/null differ diff --git a/common/img/emoji/rage.png b/common/img/emoji/rage.png deleted file mode 100644 index c65ddff552..0000000000 Binary files a/common/img/emoji/rage.png and /dev/null differ diff --git a/common/img/emoji/rage1.png b/common/img/emoji/rage1.png deleted file mode 100644 index dd2c84f923..0000000000 Binary files a/common/img/emoji/rage1.png and /dev/null differ diff --git a/common/img/emoji/rage2.png b/common/img/emoji/rage2.png deleted file mode 100644 index f792e063b4..0000000000 Binary files a/common/img/emoji/rage2.png and /dev/null differ diff --git a/common/img/emoji/rage3.png b/common/img/emoji/rage3.png deleted file mode 100644 index 58764cbcb3..0000000000 Binary files a/common/img/emoji/rage3.png and /dev/null differ diff --git a/common/img/emoji/rage4.png b/common/img/emoji/rage4.png deleted file mode 100644 index c726c94a29..0000000000 Binary files a/common/img/emoji/rage4.png and /dev/null differ diff --git a/common/img/emoji/railway_car.png b/common/img/emoji/railway_car.png deleted file mode 100644 index 22361158fb..0000000000 Binary files a/common/img/emoji/railway_car.png and /dev/null differ diff --git a/common/img/emoji/rainbow.png b/common/img/emoji/rainbow.png deleted file mode 100644 index 6b1faa0379..0000000000 Binary files a/common/img/emoji/rainbow.png and /dev/null differ diff --git a/common/img/emoji/raised_hand.png b/common/img/emoji/raised_hand.png deleted file mode 100644 index 5e45c25a56..0000000000 Binary files a/common/img/emoji/raised_hand.png and /dev/null differ diff --git a/common/img/emoji/raised_hands.png b/common/img/emoji/raised_hands.png deleted file mode 100644 index e03142bdce..0000000000 Binary files a/common/img/emoji/raised_hands.png and /dev/null differ diff --git a/common/img/emoji/raising_hand.png b/common/img/emoji/raising_hand.png deleted file mode 100644 index e1741a40e7..0000000000 Binary files a/common/img/emoji/raising_hand.png and /dev/null differ diff --git a/common/img/emoji/ram.png b/common/img/emoji/ram.png deleted file mode 100644 index 5ea7bfbc0d..0000000000 Binary files a/common/img/emoji/ram.png and /dev/null differ diff --git a/common/img/emoji/ramen.png b/common/img/emoji/ramen.png deleted file mode 100644 index 78dc7d537f..0000000000 Binary files a/common/img/emoji/ramen.png and /dev/null differ diff --git a/common/img/emoji/rat.png b/common/img/emoji/rat.png deleted file mode 100644 index 1c463dfde6..0000000000 Binary files a/common/img/emoji/rat.png and /dev/null differ diff --git a/common/img/emoji/recycle.png b/common/img/emoji/recycle.png deleted file mode 100644 index 99104c0e9c..0000000000 Binary files a/common/img/emoji/recycle.png and /dev/null differ diff --git a/common/img/emoji/red_car.png b/common/img/emoji/red_car.png deleted file mode 100644 index d70a2f0626..0000000000 Binary files a/common/img/emoji/red_car.png and /dev/null differ diff --git a/common/img/emoji/red_circle.png b/common/img/emoji/red_circle.png deleted file mode 100644 index b391289b20..0000000000 Binary files a/common/img/emoji/red_circle.png and /dev/null differ diff --git a/common/img/emoji/registered.png b/common/img/emoji/registered.png deleted file mode 100644 index e5394109ac..0000000000 Binary files a/common/img/emoji/registered.png and /dev/null differ diff --git a/common/img/emoji/relaxed.png b/common/img/emoji/relaxed.png deleted file mode 100644 index bbab82d3bb..0000000000 Binary files a/common/img/emoji/relaxed.png and /dev/null differ diff --git a/common/img/emoji/relieved.png b/common/img/emoji/relieved.png deleted file mode 100644 index 820cf315a1..0000000000 Binary files a/common/img/emoji/relieved.png and /dev/null differ diff --git a/common/img/emoji/repeat.png b/common/img/emoji/repeat.png deleted file mode 100644 index 80113b6929..0000000000 Binary files a/common/img/emoji/repeat.png and /dev/null differ diff --git a/common/img/emoji/repeat_one.png b/common/img/emoji/repeat_one.png deleted file mode 100644 index 3c47bcc1f3..0000000000 Binary files a/common/img/emoji/repeat_one.png and /dev/null differ diff --git a/common/img/emoji/restroom.png b/common/img/emoji/restroom.png deleted file mode 100644 index 312ca3dc2d..0000000000 Binary files a/common/img/emoji/restroom.png and /dev/null differ diff --git a/common/img/emoji/revolving_hearts.png b/common/img/emoji/revolving_hearts.png deleted file mode 100644 index ea3317c47f..0000000000 Binary files a/common/img/emoji/revolving_hearts.png and /dev/null differ diff --git a/common/img/emoji/rewind.png b/common/img/emoji/rewind.png deleted file mode 100644 index 13ba866ada..0000000000 Binary files a/common/img/emoji/rewind.png and /dev/null differ diff --git a/common/img/emoji/ribbon.png b/common/img/emoji/ribbon.png deleted file mode 100644 index 63ee5ba5af..0000000000 Binary files a/common/img/emoji/ribbon.png and /dev/null differ diff --git a/common/img/emoji/rice.png b/common/img/emoji/rice.png deleted file mode 100644 index f4773edec8..0000000000 Binary files a/common/img/emoji/rice.png and /dev/null differ diff --git a/common/img/emoji/rice_ball.png b/common/img/emoji/rice_ball.png deleted file mode 100644 index 04f8a88067..0000000000 Binary files a/common/img/emoji/rice_ball.png and /dev/null differ diff --git a/common/img/emoji/rice_cracker.png b/common/img/emoji/rice_cracker.png deleted file mode 100644 index 954c901e93..0000000000 Binary files a/common/img/emoji/rice_cracker.png and /dev/null differ diff --git a/common/img/emoji/rice_scene.png b/common/img/emoji/rice_scene.png deleted file mode 100644 index 14361988db..0000000000 Binary files a/common/img/emoji/rice_scene.png and /dev/null differ diff --git a/common/img/emoji/ring.png b/common/img/emoji/ring.png deleted file mode 100644 index 8a57fd68ba..0000000000 Binary files a/common/img/emoji/ring.png and /dev/null differ diff --git a/common/img/emoji/rocket.png b/common/img/emoji/rocket.png deleted file mode 100644 index 783078d379..0000000000 Binary files a/common/img/emoji/rocket.png and /dev/null differ diff --git a/common/img/emoji/roller_coaster.png b/common/img/emoji/roller_coaster.png deleted file mode 100644 index 9180b9861d..0000000000 Binary files a/common/img/emoji/roller_coaster.png and /dev/null differ diff --git a/common/img/emoji/rooster.png b/common/img/emoji/rooster.png deleted file mode 100644 index fab23ad362..0000000000 Binary files a/common/img/emoji/rooster.png and /dev/null differ diff --git a/common/img/emoji/rose.png b/common/img/emoji/rose.png deleted file mode 100644 index 3479fbcbbd..0000000000 Binary files a/common/img/emoji/rose.png and /dev/null differ diff --git a/common/img/emoji/rotating_light.png b/common/img/emoji/rotating_light.png deleted file mode 100644 index 6cf4a775e0..0000000000 Binary files a/common/img/emoji/rotating_light.png and /dev/null differ diff --git a/common/img/emoji/round_pushpin.png b/common/img/emoji/round_pushpin.png deleted file mode 100644 index e498e92cf6..0000000000 Binary files a/common/img/emoji/round_pushpin.png and /dev/null differ diff --git a/common/img/emoji/rowboat.png b/common/img/emoji/rowboat.png deleted file mode 100644 index fe8ae3ecda..0000000000 Binary files a/common/img/emoji/rowboat.png and /dev/null differ diff --git a/common/img/emoji/ru.png b/common/img/emoji/ru.png deleted file mode 100644 index 55fcf3549e..0000000000 Binary files a/common/img/emoji/ru.png and /dev/null differ diff --git a/common/img/emoji/rugby_football.png b/common/img/emoji/rugby_football.png deleted file mode 100644 index f8db67d701..0000000000 Binary files a/common/img/emoji/rugby_football.png and /dev/null differ diff --git a/common/img/emoji/runner.png b/common/img/emoji/runner.png deleted file mode 100644 index 1ecfd9059d..0000000000 Binary files a/common/img/emoji/runner.png and /dev/null differ diff --git a/common/img/emoji/running.png b/common/img/emoji/running.png deleted file mode 100644 index 1ecfd9059d..0000000000 Binary files a/common/img/emoji/running.png and /dev/null differ diff --git a/common/img/emoji/running_shirt_with_sash.png b/common/img/emoji/running_shirt_with_sash.png deleted file mode 100644 index 0d68bba091..0000000000 Binary files a/common/img/emoji/running_shirt_with_sash.png and /dev/null differ diff --git a/common/img/emoji/sa.png b/common/img/emoji/sa.png deleted file mode 100644 index 387f098b99..0000000000 Binary files a/common/img/emoji/sa.png and /dev/null differ diff --git a/common/img/emoji/sagittarius.png b/common/img/emoji/sagittarius.png deleted file mode 100644 index 8b5435baaa..0000000000 Binary files a/common/img/emoji/sagittarius.png and /dev/null differ diff --git a/common/img/emoji/sailboat.png b/common/img/emoji/sailboat.png deleted file mode 100644 index ff656dc62b..0000000000 Binary files a/common/img/emoji/sailboat.png and /dev/null differ diff --git a/common/img/emoji/sake.png b/common/img/emoji/sake.png deleted file mode 100644 index 1f69907e58..0000000000 Binary files a/common/img/emoji/sake.png and /dev/null differ diff --git a/common/img/emoji/sandal.png b/common/img/emoji/sandal.png deleted file mode 100644 index aa62cca5d6..0000000000 Binary files a/common/img/emoji/sandal.png and /dev/null differ diff --git a/common/img/emoji/santa.png b/common/img/emoji/santa.png deleted file mode 100644 index a2240c07e7..0000000000 Binary files a/common/img/emoji/santa.png and /dev/null differ diff --git a/common/img/emoji/satellite.png b/common/img/emoji/satellite.png deleted file mode 100644 index 3481cc2ef4..0000000000 Binary files a/common/img/emoji/satellite.png and /dev/null differ diff --git a/common/img/emoji/satisfied.png b/common/img/emoji/satisfied.png deleted file mode 100644 index 11c91eb22e..0000000000 Binary files a/common/img/emoji/satisfied.png and /dev/null differ diff --git a/common/img/emoji/saxophone.png b/common/img/emoji/saxophone.png deleted file mode 100644 index 011559a767..0000000000 Binary files a/common/img/emoji/saxophone.png and /dev/null differ diff --git a/common/img/emoji/school.png b/common/img/emoji/school.png deleted file mode 100644 index afd922bf13..0000000000 Binary files a/common/img/emoji/school.png and /dev/null differ diff --git a/common/img/emoji/school_satchel.png b/common/img/emoji/school_satchel.png deleted file mode 100644 index edfb19aec9..0000000000 Binary files a/common/img/emoji/school_satchel.png and /dev/null differ diff --git a/common/img/emoji/scissors.png b/common/img/emoji/scissors.png deleted file mode 100644 index 020e052244..0000000000 Binary files a/common/img/emoji/scissors.png and /dev/null differ diff --git a/common/img/emoji/scorpius.png b/common/img/emoji/scorpius.png deleted file mode 100644 index 67fcea1658..0000000000 Binary files a/common/img/emoji/scorpius.png and /dev/null differ diff --git a/common/img/emoji/scream.png b/common/img/emoji/scream.png deleted file mode 100644 index 76bfc6b8a6..0000000000 Binary files a/common/img/emoji/scream.png and /dev/null differ diff --git a/common/img/emoji/scream_cat.png b/common/img/emoji/scream_cat.png deleted file mode 100644 index d94cd34ff5..0000000000 Binary files a/common/img/emoji/scream_cat.png and /dev/null differ diff --git a/common/img/emoji/scroll.png b/common/img/emoji/scroll.png deleted file mode 100644 index c5a10e6b8f..0000000000 Binary files a/common/img/emoji/scroll.png and /dev/null differ diff --git a/common/img/emoji/seat.png b/common/img/emoji/seat.png deleted file mode 100644 index d1cb864b4b..0000000000 Binary files a/common/img/emoji/seat.png and /dev/null differ diff --git a/common/img/emoji/secret.png b/common/img/emoji/secret.png deleted file mode 100644 index 82e383a60d..0000000000 Binary files a/common/img/emoji/secret.png and /dev/null differ diff --git a/common/img/emoji/see_no_evil.png b/common/img/emoji/see_no_evil.png deleted file mode 100644 index 0890a62227..0000000000 Binary files a/common/img/emoji/see_no_evil.png and /dev/null differ diff --git a/common/img/emoji/seedling.png b/common/img/emoji/seedling.png deleted file mode 100644 index f0eb5a6b99..0000000000 Binary files a/common/img/emoji/seedling.png and /dev/null differ diff --git a/common/img/emoji/seven.png b/common/img/emoji/seven.png deleted file mode 100644 index 354e89ae75..0000000000 Binary files a/common/img/emoji/seven.png and /dev/null differ diff --git a/common/img/emoji/shaved_ice.png b/common/img/emoji/shaved_ice.png deleted file mode 100644 index 0d0b382c22..0000000000 Binary files a/common/img/emoji/shaved_ice.png and /dev/null differ diff --git a/common/img/emoji/sheep.png b/common/img/emoji/sheep.png deleted file mode 100644 index c7277d2898..0000000000 Binary files a/common/img/emoji/sheep.png and /dev/null differ diff --git a/common/img/emoji/shell.png b/common/img/emoji/shell.png deleted file mode 100644 index 3145b56496..0000000000 Binary files a/common/img/emoji/shell.png and /dev/null differ diff --git a/common/img/emoji/ship.png b/common/img/emoji/ship.png deleted file mode 100644 index 5d2d8b602b..0000000000 Binary files a/common/img/emoji/ship.png and /dev/null differ diff --git a/common/img/emoji/shipit.png b/common/img/emoji/shipit.png deleted file mode 100644 index a58a47f62f..0000000000 Binary files a/common/img/emoji/shipit.png and /dev/null differ diff --git a/common/img/emoji/shirt.png b/common/img/emoji/shirt.png deleted file mode 100644 index 297a6d63ed..0000000000 Binary files a/common/img/emoji/shirt.png and /dev/null differ diff --git a/common/img/emoji/shit.png b/common/img/emoji/shit.png deleted file mode 100644 index 73a4dc8400..0000000000 Binary files a/common/img/emoji/shit.png and /dev/null differ diff --git a/common/img/emoji/shoe.png b/common/img/emoji/shoe.png deleted file mode 100644 index ecba9ba7d0..0000000000 Binary files a/common/img/emoji/shoe.png and /dev/null differ diff --git a/common/img/emoji/shower.png b/common/img/emoji/shower.png deleted file mode 100644 index 94f82aac02..0000000000 Binary files a/common/img/emoji/shower.png and /dev/null differ diff --git a/common/img/emoji/signal_strength.png b/common/img/emoji/signal_strength.png deleted file mode 100644 index a4bd23ebf7..0000000000 Binary files a/common/img/emoji/signal_strength.png and /dev/null differ diff --git a/common/img/emoji/six.png b/common/img/emoji/six.png deleted file mode 100644 index 5688055657..0000000000 Binary files a/common/img/emoji/six.png and /dev/null differ diff --git a/common/img/emoji/six_pointed_star.png b/common/img/emoji/six_pointed_star.png deleted file mode 100644 index 010f8f5f95..0000000000 Binary files a/common/img/emoji/six_pointed_star.png and /dev/null differ diff --git a/common/img/emoji/ski.png b/common/img/emoji/ski.png deleted file mode 100644 index c97de3ed92..0000000000 Binary files a/common/img/emoji/ski.png and /dev/null differ diff --git a/common/img/emoji/skull.png b/common/img/emoji/skull.png deleted file mode 100644 index bd4ee38297..0000000000 Binary files a/common/img/emoji/skull.png and /dev/null differ diff --git a/common/img/emoji/sleeping.png b/common/img/emoji/sleeping.png deleted file mode 100644 index a2f3bf757e..0000000000 Binary files a/common/img/emoji/sleeping.png and /dev/null differ diff --git a/common/img/emoji/sleepy.png b/common/img/emoji/sleepy.png deleted file mode 100644 index df4f55efd9..0000000000 Binary files a/common/img/emoji/sleepy.png and /dev/null differ diff --git a/common/img/emoji/slot_machine.png b/common/img/emoji/slot_machine.png deleted file mode 100644 index 26f114830b..0000000000 Binary files a/common/img/emoji/slot_machine.png and /dev/null differ diff --git a/common/img/emoji/small_blue_diamond.png b/common/img/emoji/small_blue_diamond.png deleted file mode 100644 index 5a7b5d555a..0000000000 Binary files a/common/img/emoji/small_blue_diamond.png and /dev/null differ diff --git a/common/img/emoji/small_orange_diamond.png b/common/img/emoji/small_orange_diamond.png deleted file mode 100644 index 04941d37b6..0000000000 Binary files a/common/img/emoji/small_orange_diamond.png and /dev/null differ diff --git a/common/img/emoji/small_red_triangle.png b/common/img/emoji/small_red_triangle.png deleted file mode 100644 index 8c4428da8f..0000000000 Binary files a/common/img/emoji/small_red_triangle.png and /dev/null differ diff --git a/common/img/emoji/small_red_triangle_down.png b/common/img/emoji/small_red_triangle_down.png deleted file mode 100644 index 94832f060c..0000000000 Binary files a/common/img/emoji/small_red_triangle_down.png and /dev/null differ diff --git a/common/img/emoji/smile.png b/common/img/emoji/smile.png deleted file mode 100644 index 81a8396899..0000000000 Binary files a/common/img/emoji/smile.png and /dev/null differ diff --git a/common/img/emoji/smile_cat.png b/common/img/emoji/smile_cat.png deleted file mode 100644 index ad333ba3b6..0000000000 Binary files a/common/img/emoji/smile_cat.png and /dev/null differ diff --git a/common/img/emoji/smiley.png b/common/img/emoji/smiley.png deleted file mode 100644 index 77b581d68f..0000000000 Binary files a/common/img/emoji/smiley.png and /dev/null differ diff --git a/common/img/emoji/smiley_cat.png b/common/img/emoji/smiley_cat.png deleted file mode 100644 index dbf1b0276a..0000000000 Binary files a/common/img/emoji/smiley_cat.png and /dev/null differ diff --git a/common/img/emoji/smiling_imp.png b/common/img/emoji/smiling_imp.png deleted file mode 100644 index d904049309..0000000000 Binary files a/common/img/emoji/smiling_imp.png and /dev/null differ diff --git a/common/img/emoji/smirk.png b/common/img/emoji/smirk.png deleted file mode 100644 index bc6e5082c8..0000000000 Binary files a/common/img/emoji/smirk.png and /dev/null differ diff --git a/common/img/emoji/smirk_cat.png b/common/img/emoji/smirk_cat.png deleted file mode 100644 index 351565e246..0000000000 Binary files a/common/img/emoji/smirk_cat.png and /dev/null differ diff --git a/common/img/emoji/smoking.png b/common/img/emoji/smoking.png deleted file mode 100644 index 4aad6cbd7c..0000000000 Binary files a/common/img/emoji/smoking.png and /dev/null differ diff --git a/common/img/emoji/snail.png b/common/img/emoji/snail.png deleted file mode 100644 index e75e69a84d..0000000000 Binary files a/common/img/emoji/snail.png and /dev/null differ diff --git a/common/img/emoji/snake.png b/common/img/emoji/snake.png deleted file mode 100644 index ef58933e2b..0000000000 Binary files a/common/img/emoji/snake.png and /dev/null differ diff --git a/common/img/emoji/snowboarder.png b/common/img/emoji/snowboarder.png deleted file mode 100644 index aeda5c8d87..0000000000 Binary files a/common/img/emoji/snowboarder.png and /dev/null differ diff --git a/common/img/emoji/snowflake.png b/common/img/emoji/snowflake.png deleted file mode 100644 index 54b68ff4f1..0000000000 Binary files a/common/img/emoji/snowflake.png and /dev/null differ diff --git a/common/img/emoji/snowman.png b/common/img/emoji/snowman.png deleted file mode 100644 index a97902e530..0000000000 Binary files a/common/img/emoji/snowman.png and /dev/null differ diff --git a/common/img/emoji/sob.png b/common/img/emoji/sob.png deleted file mode 100644 index 7d433183aa..0000000000 Binary files a/common/img/emoji/sob.png and /dev/null differ diff --git a/common/img/emoji/soccer.png b/common/img/emoji/soccer.png deleted file mode 100644 index 1e118b5b18..0000000000 Binary files a/common/img/emoji/soccer.png and /dev/null differ diff --git a/common/img/emoji/soon.png b/common/img/emoji/soon.png deleted file mode 100644 index 9386615a32..0000000000 Binary files a/common/img/emoji/soon.png and /dev/null differ diff --git a/common/img/emoji/sos.png b/common/img/emoji/sos.png deleted file mode 100644 index e3e16ef73f..0000000000 Binary files a/common/img/emoji/sos.png and /dev/null differ diff --git a/common/img/emoji/sound.png b/common/img/emoji/sound.png deleted file mode 100644 index 6aa4dbff4c..0000000000 Binary files a/common/img/emoji/sound.png and /dev/null differ diff --git a/common/img/emoji/space_invader.png b/common/img/emoji/space_invader.png deleted file mode 100644 index 3840491674..0000000000 Binary files a/common/img/emoji/space_invader.png and /dev/null differ diff --git a/common/img/emoji/spades.png b/common/img/emoji/spades.png deleted file mode 100644 index 133a1aba8a..0000000000 Binary files a/common/img/emoji/spades.png and /dev/null differ diff --git a/common/img/emoji/spaghetti.png b/common/img/emoji/spaghetti.png deleted file mode 100644 index 08de243f55..0000000000 Binary files a/common/img/emoji/spaghetti.png and /dev/null differ diff --git a/common/img/emoji/sparkle.png b/common/img/emoji/sparkle.png deleted file mode 100644 index 23a68ceb20..0000000000 Binary files a/common/img/emoji/sparkle.png and /dev/null differ diff --git a/common/img/emoji/sparkler.png b/common/img/emoji/sparkler.png deleted file mode 100644 index 4aabd7e0ed..0000000000 Binary files a/common/img/emoji/sparkler.png and /dev/null differ diff --git a/common/img/emoji/sparkles.png b/common/img/emoji/sparkles.png deleted file mode 100644 index 92138828df..0000000000 Binary files a/common/img/emoji/sparkles.png and /dev/null differ diff --git a/common/img/emoji/sparkling_heart.png b/common/img/emoji/sparkling_heart.png deleted file mode 100644 index 0826bbc063..0000000000 Binary files a/common/img/emoji/sparkling_heart.png and /dev/null differ diff --git a/common/img/emoji/speak_no_evil.png b/common/img/emoji/speak_no_evil.png deleted file mode 100644 index 87944c4de5..0000000000 Binary files a/common/img/emoji/speak_no_evil.png and /dev/null differ diff --git a/common/img/emoji/speaker.png b/common/img/emoji/speaker.png deleted file mode 100644 index c884bd4f6c..0000000000 Binary files a/common/img/emoji/speaker.png and /dev/null differ diff --git a/common/img/emoji/speech_balloon.png b/common/img/emoji/speech_balloon.png deleted file mode 100644 index 2896c27888..0000000000 Binary files a/common/img/emoji/speech_balloon.png and /dev/null differ diff --git a/common/img/emoji/speedboat.png b/common/img/emoji/speedboat.png deleted file mode 100644 index da6689b3be..0000000000 Binary files a/common/img/emoji/speedboat.png and /dev/null differ diff --git a/common/img/emoji/squirrel.png b/common/img/emoji/squirrel.png deleted file mode 100644 index a58a47f62f..0000000000 Binary files a/common/img/emoji/squirrel.png and /dev/null differ diff --git a/common/img/emoji/star.png b/common/img/emoji/star.png deleted file mode 100644 index 1bfddc8625..0000000000 Binary files a/common/img/emoji/star.png and /dev/null differ diff --git a/common/img/emoji/star2.png b/common/img/emoji/star2.png deleted file mode 100644 index 8b40ff4c8c..0000000000 Binary files a/common/img/emoji/star2.png and /dev/null differ diff --git a/common/img/emoji/stars.png b/common/img/emoji/stars.png deleted file mode 100644 index 097a84241c..0000000000 Binary files a/common/img/emoji/stars.png and /dev/null differ diff --git a/common/img/emoji/station.png b/common/img/emoji/station.png deleted file mode 100644 index e77daa8a75..0000000000 Binary files a/common/img/emoji/station.png and /dev/null differ diff --git a/common/img/emoji/statue_of_liberty.png b/common/img/emoji/statue_of_liberty.png deleted file mode 100644 index 9ad9028068..0000000000 Binary files a/common/img/emoji/statue_of_liberty.png and /dev/null differ diff --git a/common/img/emoji/steam_locomotive.png b/common/img/emoji/steam_locomotive.png deleted file mode 100644 index 5495077667..0000000000 Binary files a/common/img/emoji/steam_locomotive.png and /dev/null differ diff --git a/common/img/emoji/stew.png b/common/img/emoji/stew.png deleted file mode 100644 index 6e80b4a9c4..0000000000 Binary files a/common/img/emoji/stew.png and /dev/null differ diff --git a/common/img/emoji/straight_ruler.png b/common/img/emoji/straight_ruler.png deleted file mode 100644 index af8cb4bcff..0000000000 Binary files a/common/img/emoji/straight_ruler.png and /dev/null differ diff --git a/common/img/emoji/strawberry.png b/common/img/emoji/strawberry.png deleted file mode 100644 index 13eb827ab8..0000000000 Binary files a/common/img/emoji/strawberry.png and /dev/null differ diff --git a/common/img/emoji/stuck_out_tongue.png b/common/img/emoji/stuck_out_tongue.png deleted file mode 100644 index 53c41433f5..0000000000 Binary files a/common/img/emoji/stuck_out_tongue.png and /dev/null differ diff --git a/common/img/emoji/stuck_out_tongue_closed_eyes.png b/common/img/emoji/stuck_out_tongue_closed_eyes.png deleted file mode 100644 index 333716ee1f..0000000000 Binary files a/common/img/emoji/stuck_out_tongue_closed_eyes.png and /dev/null differ diff --git a/common/img/emoji/stuck_out_tongue_winking_eye.png b/common/img/emoji/stuck_out_tongue_winking_eye.png deleted file mode 100644 index 6ae9d497d3..0000000000 Binary files a/common/img/emoji/stuck_out_tongue_winking_eye.png and /dev/null differ diff --git a/common/img/emoji/sun_with_face.png b/common/img/emoji/sun_with_face.png deleted file mode 100644 index ee276636fa..0000000000 Binary files a/common/img/emoji/sun_with_face.png and /dev/null differ diff --git a/common/img/emoji/sunflower.png b/common/img/emoji/sunflower.png deleted file mode 100644 index d9bad194a2..0000000000 Binary files a/common/img/emoji/sunflower.png and /dev/null differ diff --git a/common/img/emoji/sunglasses.png b/common/img/emoji/sunglasses.png deleted file mode 100644 index 1c468a1c91..0000000000 Binary files a/common/img/emoji/sunglasses.png and /dev/null differ diff --git a/common/img/emoji/sunny.png b/common/img/emoji/sunny.png deleted file mode 100644 index d23c095e08..0000000000 Binary files a/common/img/emoji/sunny.png and /dev/null differ diff --git a/common/img/emoji/sunrise.png b/common/img/emoji/sunrise.png deleted file mode 100644 index ec58dcc94f..0000000000 Binary files a/common/img/emoji/sunrise.png and /dev/null differ diff --git a/common/img/emoji/sunrise_over_mountains.png b/common/img/emoji/sunrise_over_mountains.png deleted file mode 100644 index ebc3db1468..0000000000 Binary files a/common/img/emoji/sunrise_over_mountains.png and /dev/null differ diff --git a/common/img/emoji/surfer.png b/common/img/emoji/surfer.png deleted file mode 100644 index b067e8cb32..0000000000 Binary files a/common/img/emoji/surfer.png and /dev/null differ diff --git a/common/img/emoji/sushi.png b/common/img/emoji/sushi.png deleted file mode 100644 index 0d179bd975..0000000000 Binary files a/common/img/emoji/sushi.png and /dev/null differ diff --git a/common/img/emoji/suspect.png b/common/img/emoji/suspect.png deleted file mode 100644 index 58e8921c0a..0000000000 Binary files a/common/img/emoji/suspect.png and /dev/null differ diff --git a/common/img/emoji/suspension_railway.png b/common/img/emoji/suspension_railway.png deleted file mode 100644 index aaa45f61f1..0000000000 Binary files a/common/img/emoji/suspension_railway.png and /dev/null differ diff --git a/common/img/emoji/sweat.png b/common/img/emoji/sweat.png deleted file mode 100644 index e894b76996..0000000000 Binary files a/common/img/emoji/sweat.png and /dev/null differ diff --git a/common/img/emoji/sweat_drops.png b/common/img/emoji/sweat_drops.png deleted file mode 100644 index a83b3e960c..0000000000 Binary files a/common/img/emoji/sweat_drops.png and /dev/null differ diff --git a/common/img/emoji/sweat_smile.png b/common/img/emoji/sweat_smile.png deleted file mode 100644 index 3903f717f3..0000000000 Binary files a/common/img/emoji/sweat_smile.png and /dev/null differ diff --git a/common/img/emoji/sweet_potato.png b/common/img/emoji/sweet_potato.png deleted file mode 100644 index 32117fa9c7..0000000000 Binary files a/common/img/emoji/sweet_potato.png and /dev/null differ diff --git a/common/img/emoji/swimmer.png b/common/img/emoji/swimmer.png deleted file mode 100644 index d3878a0652..0000000000 Binary files a/common/img/emoji/swimmer.png and /dev/null differ diff --git a/common/img/emoji/symbols.png b/common/img/emoji/symbols.png deleted file mode 100644 index 16bc1da921..0000000000 Binary files a/common/img/emoji/symbols.png and /dev/null differ diff --git a/common/img/emoji/syringe.png b/common/img/emoji/syringe.png deleted file mode 100644 index e7e7ab6e39..0000000000 Binary files a/common/img/emoji/syringe.png and /dev/null differ diff --git a/common/img/emoji/tada.png b/common/img/emoji/tada.png deleted file mode 100644 index 7411b5266a..0000000000 Binary files a/common/img/emoji/tada.png and /dev/null differ diff --git a/common/img/emoji/tanabata_tree.png b/common/img/emoji/tanabata_tree.png deleted file mode 100644 index 473346410f..0000000000 Binary files a/common/img/emoji/tanabata_tree.png and /dev/null differ diff --git a/common/img/emoji/tangerine.png b/common/img/emoji/tangerine.png deleted file mode 100644 index fc9d4f82ad..0000000000 Binary files a/common/img/emoji/tangerine.png and /dev/null differ diff --git a/common/img/emoji/taurus.png b/common/img/emoji/taurus.png deleted file mode 100644 index 6af582f69d..0000000000 Binary files a/common/img/emoji/taurus.png and /dev/null differ diff --git a/common/img/emoji/taxi.png b/common/img/emoji/taxi.png deleted file mode 100644 index 60a50d365a..0000000000 Binary files a/common/img/emoji/taxi.png and /dev/null differ diff --git a/common/img/emoji/tea.png b/common/img/emoji/tea.png deleted file mode 100644 index 3ece0b708a..0000000000 Binary files a/common/img/emoji/tea.png and /dev/null differ diff --git a/common/img/emoji/telephone.png b/common/img/emoji/telephone.png deleted file mode 100644 index 87d2559b55..0000000000 Binary files a/common/img/emoji/telephone.png and /dev/null differ diff --git a/common/img/emoji/telephone_receiver.png b/common/img/emoji/telephone_receiver.png deleted file mode 100644 index 36e21e0123..0000000000 Binary files a/common/img/emoji/telephone_receiver.png and /dev/null differ diff --git a/common/img/emoji/telescope.png b/common/img/emoji/telescope.png deleted file mode 100644 index 51fd8a07fa..0000000000 Binary files a/common/img/emoji/telescope.png and /dev/null differ diff --git a/common/img/emoji/tennis.png b/common/img/emoji/tennis.png deleted file mode 100644 index 278d904ee2..0000000000 Binary files a/common/img/emoji/tennis.png and /dev/null differ diff --git a/common/img/emoji/tent.png b/common/img/emoji/tent.png deleted file mode 100644 index 5c0d20e48b..0000000000 Binary files a/common/img/emoji/tent.png and /dev/null differ diff --git a/common/img/emoji/thought_balloon.png b/common/img/emoji/thought_balloon.png deleted file mode 100644 index 701bdf0f64..0000000000 Binary files a/common/img/emoji/thought_balloon.png and /dev/null differ diff --git a/common/img/emoji/three.png b/common/img/emoji/three.png deleted file mode 100644 index 55644c9900..0000000000 Binary files a/common/img/emoji/three.png and /dev/null differ diff --git a/common/img/emoji/thumbsdown.png b/common/img/emoji/thumbsdown.png deleted file mode 100644 index e44c04219e..0000000000 Binary files a/common/img/emoji/thumbsdown.png and /dev/null differ diff --git a/common/img/emoji/thumbsup.png b/common/img/emoji/thumbsup.png deleted file mode 100644 index 3a43ecae29..0000000000 Binary files a/common/img/emoji/thumbsup.png and /dev/null differ diff --git a/common/img/emoji/ticket.png b/common/img/emoji/ticket.png deleted file mode 100644 index cdacf1a70b..0000000000 Binary files a/common/img/emoji/ticket.png and /dev/null differ diff --git a/common/img/emoji/tiger.png b/common/img/emoji/tiger.png deleted file mode 100644 index d6cc84a3ba..0000000000 Binary files a/common/img/emoji/tiger.png and /dev/null differ diff --git a/common/img/emoji/tiger2.png b/common/img/emoji/tiger2.png deleted file mode 100644 index b0c7d8dc3e..0000000000 Binary files a/common/img/emoji/tiger2.png and /dev/null differ diff --git a/common/img/emoji/tired_face.png b/common/img/emoji/tired_face.png deleted file mode 100644 index 3a8eefe565..0000000000 Binary files a/common/img/emoji/tired_face.png and /dev/null differ diff --git a/common/img/emoji/tm.png b/common/img/emoji/tm.png deleted file mode 100644 index 9ba71b75ba..0000000000 Binary files a/common/img/emoji/tm.png and /dev/null differ diff --git a/common/img/emoji/toilet.png b/common/img/emoji/toilet.png deleted file mode 100644 index e5cc4119a1..0000000000 Binary files a/common/img/emoji/toilet.png and /dev/null differ diff --git a/common/img/emoji/tokyo_tower.png b/common/img/emoji/tokyo_tower.png deleted file mode 100644 index e1cbd7a3c5..0000000000 Binary files a/common/img/emoji/tokyo_tower.png and /dev/null differ diff --git a/common/img/emoji/tomato.png b/common/img/emoji/tomato.png deleted file mode 100644 index a129700bbb..0000000000 Binary files a/common/img/emoji/tomato.png and /dev/null differ diff --git a/common/img/emoji/tongue.png b/common/img/emoji/tongue.png deleted file mode 100644 index b0bab12078..0000000000 Binary files a/common/img/emoji/tongue.png and /dev/null differ diff --git a/common/img/emoji/top.png b/common/img/emoji/top.png deleted file mode 100644 index 5aa4dd442d..0000000000 Binary files a/common/img/emoji/top.png and /dev/null differ diff --git a/common/img/emoji/tophat.png b/common/img/emoji/tophat.png deleted file mode 100644 index 7d27134d6a..0000000000 Binary files a/common/img/emoji/tophat.png and /dev/null differ diff --git a/common/img/emoji/tractor.png b/common/img/emoji/tractor.png deleted file mode 100644 index 058fd3eda5..0000000000 Binary files a/common/img/emoji/tractor.png and /dev/null differ diff --git a/common/img/emoji/traffic_light.png b/common/img/emoji/traffic_light.png deleted file mode 100644 index 42eaf70912..0000000000 Binary files a/common/img/emoji/traffic_light.png and /dev/null differ diff --git a/common/img/emoji/train.png b/common/img/emoji/train.png deleted file mode 100644 index 0a8ea52b2b..0000000000 Binary files a/common/img/emoji/train.png and /dev/null differ diff --git a/common/img/emoji/train2.png b/common/img/emoji/train2.png deleted file mode 100644 index 9c0d3ab640..0000000000 Binary files a/common/img/emoji/train2.png and /dev/null differ diff --git a/common/img/emoji/tram.png b/common/img/emoji/tram.png deleted file mode 100644 index 5eb29fb71c..0000000000 Binary files a/common/img/emoji/tram.png and /dev/null differ diff --git a/common/img/emoji/triangular_flag_on_post.png b/common/img/emoji/triangular_flag_on_post.png deleted file mode 100644 index f9a3f32d71..0000000000 Binary files a/common/img/emoji/triangular_flag_on_post.png and /dev/null differ diff --git a/common/img/emoji/triangular_ruler.png b/common/img/emoji/triangular_ruler.png deleted file mode 100644 index 383677cb74..0000000000 Binary files a/common/img/emoji/triangular_ruler.png and /dev/null differ diff --git a/common/img/emoji/trident.png b/common/img/emoji/trident.png deleted file mode 100644 index d79a7b4cce..0000000000 Binary files a/common/img/emoji/trident.png and /dev/null differ diff --git a/common/img/emoji/triumph.png b/common/img/emoji/triumph.png deleted file mode 100644 index 92f93bd102..0000000000 Binary files a/common/img/emoji/triumph.png and /dev/null differ diff --git a/common/img/emoji/trolleybus.png b/common/img/emoji/trolleybus.png deleted file mode 100644 index b9740a53f8..0000000000 Binary files a/common/img/emoji/trolleybus.png and /dev/null differ diff --git a/common/img/emoji/trollface.png b/common/img/emoji/trollface.png deleted file mode 100644 index cce7c75858..0000000000 Binary files a/common/img/emoji/trollface.png and /dev/null differ diff --git a/common/img/emoji/trophy.png b/common/img/emoji/trophy.png deleted file mode 100644 index 95d3b63f52..0000000000 Binary files a/common/img/emoji/trophy.png and /dev/null differ diff --git a/common/img/emoji/tropical_drink.png b/common/img/emoji/tropical_drink.png deleted file mode 100644 index 55ca9eeda7..0000000000 Binary files a/common/img/emoji/tropical_drink.png and /dev/null differ diff --git a/common/img/emoji/tropical_fish.png b/common/img/emoji/tropical_fish.png deleted file mode 100644 index a6d734987b..0000000000 Binary files a/common/img/emoji/tropical_fish.png and /dev/null differ diff --git a/common/img/emoji/truck.png b/common/img/emoji/truck.png deleted file mode 100644 index 3f25ba1f92..0000000000 Binary files a/common/img/emoji/truck.png and /dev/null differ diff --git a/common/img/emoji/trumpet.png b/common/img/emoji/trumpet.png deleted file mode 100644 index 8d4703fc22..0000000000 Binary files a/common/img/emoji/trumpet.png and /dev/null differ diff --git a/common/img/emoji/tshirt.png b/common/img/emoji/tshirt.png deleted file mode 100644 index 297a6d63ed..0000000000 Binary files a/common/img/emoji/tshirt.png and /dev/null differ diff --git a/common/img/emoji/tulip.png b/common/img/emoji/tulip.png deleted file mode 100644 index b3ee1102a5..0000000000 Binary files a/common/img/emoji/tulip.png and /dev/null differ diff --git a/common/img/emoji/turtle.png b/common/img/emoji/turtle.png deleted file mode 100644 index 04d1d96847..0000000000 Binary files a/common/img/emoji/turtle.png and /dev/null differ diff --git a/common/img/emoji/tv.png b/common/img/emoji/tv.png deleted file mode 100644 index 803dc3d412..0000000000 Binary files a/common/img/emoji/tv.png and /dev/null differ diff --git a/common/img/emoji/twisted_rightwards_arrows.png b/common/img/emoji/twisted_rightwards_arrows.png deleted file mode 100644 index 25cde18b25..0000000000 Binary files a/common/img/emoji/twisted_rightwards_arrows.png and /dev/null differ diff --git a/common/img/emoji/two.png b/common/img/emoji/two.png deleted file mode 100644 index c191f8a322..0000000000 Binary files a/common/img/emoji/two.png and /dev/null differ diff --git a/common/img/emoji/two_hearts.png b/common/img/emoji/two_hearts.png deleted file mode 100644 index b189e9aea8..0000000000 Binary files a/common/img/emoji/two_hearts.png and /dev/null differ diff --git a/common/img/emoji/two_men_holding_hands.png b/common/img/emoji/two_men_holding_hands.png deleted file mode 100644 index d1099f21ff..0000000000 Binary files a/common/img/emoji/two_men_holding_hands.png and /dev/null differ diff --git a/common/img/emoji/two_women_holding_hands.png b/common/img/emoji/two_women_holding_hands.png deleted file mode 100644 index 619646c4e0..0000000000 Binary files a/common/img/emoji/two_women_holding_hands.png and /dev/null differ diff --git a/common/img/emoji/u5272.png b/common/img/emoji/u5272.png deleted file mode 100644 index 2148253fc1..0000000000 Binary files a/common/img/emoji/u5272.png and /dev/null differ diff --git a/common/img/emoji/u5408.png b/common/img/emoji/u5408.png deleted file mode 100644 index 03ab0d8746..0000000000 Binary files a/common/img/emoji/u5408.png and /dev/null differ diff --git a/common/img/emoji/u55b6.png b/common/img/emoji/u55b6.png deleted file mode 100644 index ba946d3f33..0000000000 Binary files a/common/img/emoji/u55b6.png and /dev/null differ diff --git a/common/img/emoji/u6307.png b/common/img/emoji/u6307.png deleted file mode 100644 index 6557f5672f..0000000000 Binary files a/common/img/emoji/u6307.png and /dev/null differ diff --git a/common/img/emoji/u6708.png b/common/img/emoji/u6708.png deleted file mode 100644 index e4dfe5aa76..0000000000 Binary files a/common/img/emoji/u6708.png and /dev/null differ diff --git a/common/img/emoji/u6709.png b/common/img/emoji/u6709.png deleted file mode 100644 index cd8fb3f62a..0000000000 Binary files a/common/img/emoji/u6709.png and /dev/null differ diff --git a/common/img/emoji/u6e80.png b/common/img/emoji/u6e80.png deleted file mode 100644 index 5df1cb878f..0000000000 Binary files a/common/img/emoji/u6e80.png and /dev/null differ diff --git a/common/img/emoji/u7121.png b/common/img/emoji/u7121.png deleted file mode 100644 index 25f694ed3f..0000000000 Binary files a/common/img/emoji/u7121.png and /dev/null differ diff --git a/common/img/emoji/u7533.png b/common/img/emoji/u7533.png deleted file mode 100644 index fc4a9901b4..0000000000 Binary files a/common/img/emoji/u7533.png and /dev/null differ diff --git a/common/img/emoji/u7981.png b/common/img/emoji/u7981.png deleted file mode 100644 index f550a573da..0000000000 Binary files a/common/img/emoji/u7981.png and /dev/null differ diff --git a/common/img/emoji/u7a7a.png b/common/img/emoji/u7a7a.png deleted file mode 100644 index c05f5cff73..0000000000 Binary files a/common/img/emoji/u7a7a.png and /dev/null differ diff --git a/common/img/emoji/uk.png b/common/img/emoji/uk.png deleted file mode 100644 index 2a62c7a081..0000000000 Binary files a/common/img/emoji/uk.png and /dev/null differ diff --git a/common/img/emoji/umbrella.png b/common/img/emoji/umbrella.png deleted file mode 100644 index 1db722fa66..0000000000 Binary files a/common/img/emoji/umbrella.png and /dev/null differ diff --git a/common/img/emoji/unamused.png b/common/img/emoji/unamused.png deleted file mode 100644 index 3722e6f575..0000000000 Binary files a/common/img/emoji/unamused.png and /dev/null differ diff --git a/common/img/emoji/underage.png b/common/img/emoji/underage.png deleted file mode 100644 index a789b3c620..0000000000 Binary files a/common/img/emoji/underage.png and /dev/null differ diff --git a/common/img/emoji/unicode/0023-20e3.png b/common/img/emoji/unicode/0023-20e3.png deleted file mode 100644 index 6765d7d3c2..0000000000 Binary files a/common/img/emoji/unicode/0023-20e3.png and /dev/null differ diff --git a/common/img/emoji/unicode/0023-fe0f-20e3.png b/common/img/emoji/unicode/0023-fe0f-20e3.png deleted file mode 100644 index 6765d7d3c2..0000000000 Binary files a/common/img/emoji/unicode/0023-fe0f-20e3.png and /dev/null differ diff --git a/common/img/emoji/unicode/0030-20e3.png b/common/img/emoji/unicode/0030-20e3.png deleted file mode 100644 index 15e7446c81..0000000000 Binary files a/common/img/emoji/unicode/0030-20e3.png and /dev/null differ diff --git a/common/img/emoji/unicode/0030-fe0f-20e3.png b/common/img/emoji/unicode/0030-fe0f-20e3.png deleted file mode 100644 index 15e7446c81..0000000000 Binary files a/common/img/emoji/unicode/0030-fe0f-20e3.png and /dev/null differ diff --git a/common/img/emoji/unicode/0031-20e3.png b/common/img/emoji/unicode/0031-20e3.png deleted file mode 100644 index 2d1f9f8c49..0000000000 Binary files a/common/img/emoji/unicode/0031-20e3.png and /dev/null differ diff --git a/common/img/emoji/unicode/0031-fe0f-20e3.png b/common/img/emoji/unicode/0031-fe0f-20e3.png deleted file mode 100644 index 2d1f9f8c49..0000000000 Binary files a/common/img/emoji/unicode/0031-fe0f-20e3.png and /dev/null differ diff --git a/common/img/emoji/unicode/0032-20e3.png b/common/img/emoji/unicode/0032-20e3.png deleted file mode 100644 index c191f8a322..0000000000 Binary files a/common/img/emoji/unicode/0032-20e3.png and /dev/null differ diff --git a/common/img/emoji/unicode/0032-fe0f-20e3.png b/common/img/emoji/unicode/0032-fe0f-20e3.png deleted file mode 100644 index c191f8a322..0000000000 Binary files a/common/img/emoji/unicode/0032-fe0f-20e3.png and /dev/null differ diff --git a/common/img/emoji/unicode/0033-20e3.png b/common/img/emoji/unicode/0033-20e3.png deleted file mode 100644 index 55644c9900..0000000000 Binary files a/common/img/emoji/unicode/0033-20e3.png and /dev/null differ diff --git a/common/img/emoji/unicode/0033-fe0f-20e3.png b/common/img/emoji/unicode/0033-fe0f-20e3.png deleted file mode 100644 index 55644c9900..0000000000 Binary files a/common/img/emoji/unicode/0033-fe0f-20e3.png and /dev/null differ diff --git a/common/img/emoji/unicode/0034-20e3.png b/common/img/emoji/unicode/0034-20e3.png deleted file mode 100644 index 14782ba23b..0000000000 Binary files a/common/img/emoji/unicode/0034-20e3.png and /dev/null differ diff --git a/common/img/emoji/unicode/0034-fe0f-20e3.png b/common/img/emoji/unicode/0034-fe0f-20e3.png deleted file mode 100644 index 14782ba23b..0000000000 Binary files a/common/img/emoji/unicode/0034-fe0f-20e3.png and /dev/null differ diff --git a/common/img/emoji/unicode/0035-20e3.png b/common/img/emoji/unicode/0035-20e3.png deleted file mode 100644 index 794321aa22..0000000000 Binary files a/common/img/emoji/unicode/0035-20e3.png and /dev/null differ diff --git a/common/img/emoji/unicode/0035-fe0f-20e3.png b/common/img/emoji/unicode/0035-fe0f-20e3.png deleted file mode 100644 index 794321aa22..0000000000 Binary files a/common/img/emoji/unicode/0035-fe0f-20e3.png and /dev/null differ diff --git a/common/img/emoji/unicode/0036-20e3.png b/common/img/emoji/unicode/0036-20e3.png deleted file mode 100644 index 5688055657..0000000000 Binary files a/common/img/emoji/unicode/0036-20e3.png and /dev/null differ diff --git a/common/img/emoji/unicode/0036-fe0f-20e3.png b/common/img/emoji/unicode/0036-fe0f-20e3.png deleted file mode 100644 index 5688055657..0000000000 Binary files a/common/img/emoji/unicode/0036-fe0f-20e3.png and /dev/null differ diff --git a/common/img/emoji/unicode/0037-20e3.png b/common/img/emoji/unicode/0037-20e3.png deleted file mode 100644 index 354e89ae75..0000000000 Binary files a/common/img/emoji/unicode/0037-20e3.png and /dev/null differ diff --git a/common/img/emoji/unicode/0037-fe0f-20e3.png b/common/img/emoji/unicode/0037-fe0f-20e3.png deleted file mode 100644 index 354e89ae75..0000000000 Binary files a/common/img/emoji/unicode/0037-fe0f-20e3.png and /dev/null differ diff --git a/common/img/emoji/unicode/0038-20e3.png b/common/img/emoji/unicode/0038-20e3.png deleted file mode 100644 index 7bdb422327..0000000000 Binary files a/common/img/emoji/unicode/0038-20e3.png and /dev/null differ diff --git a/common/img/emoji/unicode/0038-fe0f-20e3.png b/common/img/emoji/unicode/0038-fe0f-20e3.png deleted file mode 100644 index 7bdb422327..0000000000 Binary files a/common/img/emoji/unicode/0038-fe0f-20e3.png and /dev/null differ diff --git a/common/img/emoji/unicode/0039-20e3.png b/common/img/emoji/unicode/0039-20e3.png deleted file mode 100644 index 8006cc909f..0000000000 Binary files a/common/img/emoji/unicode/0039-20e3.png and /dev/null differ diff --git a/common/img/emoji/unicode/0039-fe0f-20e3.png b/common/img/emoji/unicode/0039-fe0f-20e3.png deleted file mode 100644 index 8006cc909f..0000000000 Binary files a/common/img/emoji/unicode/0039-fe0f-20e3.png and /dev/null differ diff --git a/common/img/emoji/unicode/00a9.png b/common/img/emoji/unicode/00a9.png deleted file mode 100644 index d59f580a94..0000000000 Binary files a/common/img/emoji/unicode/00a9.png and /dev/null differ diff --git a/common/img/emoji/unicode/00ae.png b/common/img/emoji/unicode/00ae.png deleted file mode 100644 index e5394109ac..0000000000 Binary files a/common/img/emoji/unicode/00ae.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f004-fe0f.png b/common/img/emoji/unicode/1f004-fe0f.png deleted file mode 100644 index f51ce65fdd..0000000000 Binary files a/common/img/emoji/unicode/1f004-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f004.png b/common/img/emoji/unicode/1f004.png deleted file mode 100644 index f51ce65fdd..0000000000 Binary files a/common/img/emoji/unicode/1f004.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f0cf.png b/common/img/emoji/unicode/1f0cf.png deleted file mode 100644 index 4c78f3614d..0000000000 Binary files a/common/img/emoji/unicode/1f0cf.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f170.png b/common/img/emoji/unicode/1f170.png deleted file mode 100644 index 4908a44fc0..0000000000 Binary files a/common/img/emoji/unicode/1f170.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f171.png b/common/img/emoji/unicode/1f171.png deleted file mode 100644 index 8742b3d2e3..0000000000 Binary files a/common/img/emoji/unicode/1f171.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f17e.png b/common/img/emoji/unicode/1f17e.png deleted file mode 100644 index d85f9fb98c..0000000000 Binary files a/common/img/emoji/unicode/1f17e.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f17f-fe0f.png b/common/img/emoji/unicode/1f17f-fe0f.png deleted file mode 100644 index c24af81ccf..0000000000 Binary files a/common/img/emoji/unicode/1f17f-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f17f.png b/common/img/emoji/unicode/1f17f.png deleted file mode 100644 index c24af81ccf..0000000000 Binary files a/common/img/emoji/unicode/1f17f.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f18e.png b/common/img/emoji/unicode/1f18e.png deleted file mode 100644 index 2a52220476..0000000000 Binary files a/common/img/emoji/unicode/1f18e.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f191.png b/common/img/emoji/unicode/1f191.png deleted file mode 100644 index 15ac67525a..0000000000 Binary files a/common/img/emoji/unicode/1f191.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f192.png b/common/img/emoji/unicode/1f192.png deleted file mode 100644 index 937dcd7921..0000000000 Binary files a/common/img/emoji/unicode/1f192.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f193.png b/common/img/emoji/unicode/1f193.png deleted file mode 100644 index c886cf2494..0000000000 Binary files a/common/img/emoji/unicode/1f193.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f194.png b/common/img/emoji/unicode/1f194.png deleted file mode 100644 index 47437a76d3..0000000000 Binary files a/common/img/emoji/unicode/1f194.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f195.png b/common/img/emoji/unicode/1f195.png deleted file mode 100644 index 28d1570e0a..0000000000 Binary files a/common/img/emoji/unicode/1f195.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f196.png b/common/img/emoji/unicode/1f196.png deleted file mode 100644 index 2ca180ae39..0000000000 Binary files a/common/img/emoji/unicode/1f196.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f197.png b/common/img/emoji/unicode/1f197.png deleted file mode 100644 index 6433d1a90a..0000000000 Binary files a/common/img/emoji/unicode/1f197.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f198.png b/common/img/emoji/unicode/1f198.png deleted file mode 100644 index e3e16ef73f..0000000000 Binary files a/common/img/emoji/unicode/1f198.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f199.png b/common/img/emoji/unicode/1f199.png deleted file mode 100644 index 829219a868..0000000000 Binary files a/common/img/emoji/unicode/1f199.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f19a.png b/common/img/emoji/unicode/1f19a.png deleted file mode 100644 index 863638850e..0000000000 Binary files a/common/img/emoji/unicode/1f19a.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f1e8-1f1f3.png b/common/img/emoji/unicode/1f1e8-1f1f3.png deleted file mode 100644 index b30dcc53df..0000000000 Binary files a/common/img/emoji/unicode/1f1e8-1f1f3.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f1e9-1f1ea.png b/common/img/emoji/unicode/1f1e9-1f1ea.png deleted file mode 100644 index 16a28548c9..0000000000 Binary files a/common/img/emoji/unicode/1f1e9-1f1ea.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f1ea-1f1f8.png b/common/img/emoji/unicode/1f1ea-1f1f8.png deleted file mode 100644 index 71b30bff35..0000000000 Binary files a/common/img/emoji/unicode/1f1ea-1f1f8.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f1eb-1f1f7.png b/common/img/emoji/unicode/1f1eb-1f1f7.png deleted file mode 100644 index 6311c91159..0000000000 Binary files a/common/img/emoji/unicode/1f1eb-1f1f7.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f1ec-1f1e7.png b/common/img/emoji/unicode/1f1ec-1f1e7.png deleted file mode 100644 index 2a62c7a081..0000000000 Binary files a/common/img/emoji/unicode/1f1ec-1f1e7.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f1ee-1f1f9.png b/common/img/emoji/unicode/1f1ee-1f1f9.png deleted file mode 100644 index 70bc9f3246..0000000000 Binary files a/common/img/emoji/unicode/1f1ee-1f1f9.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f1ef-1f1f5.png b/common/img/emoji/unicode/1f1ef-1f1f5.png deleted file mode 100644 index b786efbbd8..0000000000 Binary files a/common/img/emoji/unicode/1f1ef-1f1f5.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f1f0-1f1f7.png b/common/img/emoji/unicode/1f1f0-1f1f7.png deleted file mode 100644 index b4c0c1b673..0000000000 Binary files a/common/img/emoji/unicode/1f1f0-1f1f7.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f1f7-1f1fa.png b/common/img/emoji/unicode/1f1f7-1f1fa.png deleted file mode 100644 index 55fcf3549e..0000000000 Binary files a/common/img/emoji/unicode/1f1f7-1f1fa.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f1fa-1f1f8.png b/common/img/emoji/unicode/1f1fa-1f1f8.png deleted file mode 100644 index 38137669aa..0000000000 Binary files a/common/img/emoji/unicode/1f1fa-1f1f8.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f201.png b/common/img/emoji/unicode/1f201.png deleted file mode 100644 index 3bef28c9fd..0000000000 Binary files a/common/img/emoji/unicode/1f201.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f202.png b/common/img/emoji/unicode/1f202.png deleted file mode 100644 index 387f098b99..0000000000 Binary files a/common/img/emoji/unicode/1f202.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f21a-fe0f.png b/common/img/emoji/unicode/1f21a-fe0f.png deleted file mode 100644 index 25f694ed3f..0000000000 Binary files a/common/img/emoji/unicode/1f21a-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f21a.png b/common/img/emoji/unicode/1f21a.png deleted file mode 100644 index 25f694ed3f..0000000000 Binary files a/common/img/emoji/unicode/1f21a.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f22f-fe0f.png b/common/img/emoji/unicode/1f22f-fe0f.png deleted file mode 100644 index 6557f5672f..0000000000 Binary files a/common/img/emoji/unicode/1f22f-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f22f.png b/common/img/emoji/unicode/1f22f.png deleted file mode 100644 index 6557f5672f..0000000000 Binary files a/common/img/emoji/unicode/1f22f.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f232.png b/common/img/emoji/unicode/1f232.png deleted file mode 100644 index f550a573da..0000000000 Binary files a/common/img/emoji/unicode/1f232.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f233.png b/common/img/emoji/unicode/1f233.png deleted file mode 100644 index c05f5cff73..0000000000 Binary files a/common/img/emoji/unicode/1f233.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f234.png b/common/img/emoji/unicode/1f234.png deleted file mode 100644 index 03ab0d8746..0000000000 Binary files a/common/img/emoji/unicode/1f234.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f235.png b/common/img/emoji/unicode/1f235.png deleted file mode 100644 index 5df1cb878f..0000000000 Binary files a/common/img/emoji/unicode/1f235.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f236.png b/common/img/emoji/unicode/1f236.png deleted file mode 100644 index cd8fb3f62a..0000000000 Binary files a/common/img/emoji/unicode/1f236.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f237.png b/common/img/emoji/unicode/1f237.png deleted file mode 100644 index e4dfe5aa76..0000000000 Binary files a/common/img/emoji/unicode/1f237.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f238.png b/common/img/emoji/unicode/1f238.png deleted file mode 100644 index fc4a9901b4..0000000000 Binary files a/common/img/emoji/unicode/1f238.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f239.png b/common/img/emoji/unicode/1f239.png deleted file mode 100644 index 2148253fc1..0000000000 Binary files a/common/img/emoji/unicode/1f239.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f23a.png b/common/img/emoji/unicode/1f23a.png deleted file mode 100644 index ba946d3f33..0000000000 Binary files a/common/img/emoji/unicode/1f23a.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f250.png b/common/img/emoji/unicode/1f250.png deleted file mode 100644 index e79af78442..0000000000 Binary files a/common/img/emoji/unicode/1f250.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f251.png b/common/img/emoji/unicode/1f251.png deleted file mode 100644 index 2d20090318..0000000000 Binary files a/common/img/emoji/unicode/1f251.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f300.png b/common/img/emoji/unicode/1f300.png deleted file mode 100644 index 6c49f64b2f..0000000000 Binary files a/common/img/emoji/unicode/1f300.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f301.png b/common/img/emoji/unicode/1f301.png deleted file mode 100644 index 3c7b8b04b9..0000000000 Binary files a/common/img/emoji/unicode/1f301.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f302.png b/common/img/emoji/unicode/1f302.png deleted file mode 100644 index 072c5c217a..0000000000 Binary files a/common/img/emoji/unicode/1f302.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f303.png b/common/img/emoji/unicode/1f303.png deleted file mode 100644 index d4de585f64..0000000000 Binary files a/common/img/emoji/unicode/1f303.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f304.png b/common/img/emoji/unicode/1f304.png deleted file mode 100644 index ebc3db1468..0000000000 Binary files a/common/img/emoji/unicode/1f304.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f305.png b/common/img/emoji/unicode/1f305.png deleted file mode 100644 index ec58dcc94f..0000000000 Binary files a/common/img/emoji/unicode/1f305.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f306.png b/common/img/emoji/unicode/1f306.png deleted file mode 100644 index 7cb178a2cc..0000000000 Binary files a/common/img/emoji/unicode/1f306.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f307.png b/common/img/emoji/unicode/1f307.png deleted file mode 100644 index 91ca2a40b6..0000000000 Binary files a/common/img/emoji/unicode/1f307.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f308.png b/common/img/emoji/unicode/1f308.png deleted file mode 100644 index 6b1faa0379..0000000000 Binary files a/common/img/emoji/unicode/1f308.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f309.png b/common/img/emoji/unicode/1f309.png deleted file mode 100644 index 495b06c3df..0000000000 Binary files a/common/img/emoji/unicode/1f309.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f30a.png b/common/img/emoji/unicode/1f30a.png deleted file mode 100644 index f8d520cd49..0000000000 Binary files a/common/img/emoji/unicode/1f30a.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f30b.png b/common/img/emoji/unicode/1f30b.png deleted file mode 100644 index 9b434539b0..0000000000 Binary files a/common/img/emoji/unicode/1f30b.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f30c.png b/common/img/emoji/unicode/1f30c.png deleted file mode 100644 index 901090a126..0000000000 Binary files a/common/img/emoji/unicode/1f30c.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f30d.png b/common/img/emoji/unicode/1f30d.png deleted file mode 100644 index 44ce5ecb62..0000000000 Binary files a/common/img/emoji/unicode/1f30d.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f30e.png b/common/img/emoji/unicode/1f30e.png deleted file mode 100644 index 97d7176713..0000000000 Binary files a/common/img/emoji/unicode/1f30e.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f30f.png b/common/img/emoji/unicode/1f30f.png deleted file mode 100644 index 95ec357ca8..0000000000 Binary files a/common/img/emoji/unicode/1f30f.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f310.png b/common/img/emoji/unicode/1f310.png deleted file mode 100644 index b198646670..0000000000 Binary files a/common/img/emoji/unicode/1f310.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f311.png b/common/img/emoji/unicode/1f311.png deleted file mode 100644 index 540239b1f3..0000000000 Binary files a/common/img/emoji/unicode/1f311.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f312.png b/common/img/emoji/unicode/1f312.png deleted file mode 100644 index c8f13dd31c..0000000000 Binary files a/common/img/emoji/unicode/1f312.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f313.png b/common/img/emoji/unicode/1f313.png deleted file mode 100644 index f38c236937..0000000000 Binary files a/common/img/emoji/unicode/1f313.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f314.png b/common/img/emoji/unicode/1f314.png deleted file mode 100644 index dd8c484589..0000000000 Binary files a/common/img/emoji/unicode/1f314.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f315.png b/common/img/emoji/unicode/1f315.png deleted file mode 100644 index 8ff657a259..0000000000 Binary files a/common/img/emoji/unicode/1f315.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f316.png b/common/img/emoji/unicode/1f316.png deleted file mode 100644 index 8e324ec5f7..0000000000 Binary files a/common/img/emoji/unicode/1f316.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f317.png b/common/img/emoji/unicode/1f317.png deleted file mode 100644 index 355e3c3f79..0000000000 Binary files a/common/img/emoji/unicode/1f317.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f318.png b/common/img/emoji/unicode/1f318.png deleted file mode 100644 index 30387780fe..0000000000 Binary files a/common/img/emoji/unicode/1f318.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f319.png b/common/img/emoji/unicode/1f319.png deleted file mode 100644 index afdb450d1d..0000000000 Binary files a/common/img/emoji/unicode/1f319.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f31a.png b/common/img/emoji/unicode/1f31a.png deleted file mode 100644 index b9aff7a068..0000000000 Binary files a/common/img/emoji/unicode/1f31a.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f31b.png b/common/img/emoji/unicode/1f31b.png deleted file mode 100644 index 85ae2ce72d..0000000000 Binary files a/common/img/emoji/unicode/1f31b.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f31c.png b/common/img/emoji/unicode/1f31c.png deleted file mode 100644 index 9ece82dfec..0000000000 Binary files a/common/img/emoji/unicode/1f31c.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f31d.png b/common/img/emoji/unicode/1f31d.png deleted file mode 100644 index 94395a4080..0000000000 Binary files a/common/img/emoji/unicode/1f31d.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f31e.png b/common/img/emoji/unicode/1f31e.png deleted file mode 100644 index ee276636fa..0000000000 Binary files a/common/img/emoji/unicode/1f31e.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f31f.png b/common/img/emoji/unicode/1f31f.png deleted file mode 100644 index 8b40ff4c8c..0000000000 Binary files a/common/img/emoji/unicode/1f31f.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f320.png b/common/img/emoji/unicode/1f320.png deleted file mode 100644 index 097a84241c..0000000000 Binary files a/common/img/emoji/unicode/1f320.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f330.png b/common/img/emoji/unicode/1f330.png deleted file mode 100644 index 066fb6bf6d..0000000000 Binary files a/common/img/emoji/unicode/1f330.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f331.png b/common/img/emoji/unicode/1f331.png deleted file mode 100644 index f0eb5a6b99..0000000000 Binary files a/common/img/emoji/unicode/1f331.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f332.png b/common/img/emoji/unicode/1f332.png deleted file mode 100644 index ae8ad10376..0000000000 Binary files a/common/img/emoji/unicode/1f332.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f333.png b/common/img/emoji/unicode/1f333.png deleted file mode 100644 index 9bb16bdfec..0000000000 Binary files a/common/img/emoji/unicode/1f333.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f334.png b/common/img/emoji/unicode/1f334.png deleted file mode 100644 index d534785ef9..0000000000 Binary files a/common/img/emoji/unicode/1f334.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f335.png b/common/img/emoji/unicode/1f335.png deleted file mode 100644 index 5a2c3cc725..0000000000 Binary files a/common/img/emoji/unicode/1f335.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f337.png b/common/img/emoji/unicode/1f337.png deleted file mode 100644 index b3ee1102a5..0000000000 Binary files a/common/img/emoji/unicode/1f337.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f338.png b/common/img/emoji/unicode/1f338.png deleted file mode 100644 index e031554999..0000000000 Binary files a/common/img/emoji/unicode/1f338.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f339.png b/common/img/emoji/unicode/1f339.png deleted file mode 100644 index 3479fbcbbd..0000000000 Binary files a/common/img/emoji/unicode/1f339.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f33a.png b/common/img/emoji/unicode/1f33a.png deleted file mode 100644 index 32a3774c09..0000000000 Binary files a/common/img/emoji/unicode/1f33a.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f33b.png b/common/img/emoji/unicode/1f33b.png deleted file mode 100644 index d9bad194a2..0000000000 Binary files a/common/img/emoji/unicode/1f33b.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f33c.png b/common/img/emoji/unicode/1f33c.png deleted file mode 100644 index 55a97353b4..0000000000 Binary files a/common/img/emoji/unicode/1f33c.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f33d.png b/common/img/emoji/unicode/1f33d.png deleted file mode 100644 index fe5d8b1287..0000000000 Binary files a/common/img/emoji/unicode/1f33d.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f33e.png b/common/img/emoji/unicode/1f33e.png deleted file mode 100644 index a9bba5c2c1..0000000000 Binary files a/common/img/emoji/unicode/1f33e.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f33f.png b/common/img/emoji/unicode/1f33f.png deleted file mode 100644 index de1ff1b73b..0000000000 Binary files a/common/img/emoji/unicode/1f33f.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f340.png b/common/img/emoji/unicode/1f340.png deleted file mode 100644 index f2014bea44..0000000000 Binary files a/common/img/emoji/unicode/1f340.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f341.png b/common/img/emoji/unicode/1f341.png deleted file mode 100644 index 4e9b47207d..0000000000 Binary files a/common/img/emoji/unicode/1f341.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f342.png b/common/img/emoji/unicode/1f342.png deleted file mode 100644 index d49f9c1757..0000000000 Binary files a/common/img/emoji/unicode/1f342.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f343.png b/common/img/emoji/unicode/1f343.png deleted file mode 100644 index 801e578e66..0000000000 Binary files a/common/img/emoji/unicode/1f343.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f344.png b/common/img/emoji/unicode/1f344.png deleted file mode 100644 index 5eeed8e790..0000000000 Binary files a/common/img/emoji/unicode/1f344.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f345.png b/common/img/emoji/unicode/1f345.png deleted file mode 100644 index a129700bbb..0000000000 Binary files a/common/img/emoji/unicode/1f345.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f346.png b/common/img/emoji/unicode/1f346.png deleted file mode 100644 index 566d6a844c..0000000000 Binary files a/common/img/emoji/unicode/1f346.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f347.png b/common/img/emoji/unicode/1f347.png deleted file mode 100644 index 0f9f007a12..0000000000 Binary files a/common/img/emoji/unicode/1f347.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f348.png b/common/img/emoji/unicode/1f348.png deleted file mode 100644 index 11c13cbbd4..0000000000 Binary files a/common/img/emoji/unicode/1f348.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f349.png b/common/img/emoji/unicode/1f349.png deleted file mode 100644 index fc212be784..0000000000 Binary files a/common/img/emoji/unicode/1f349.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f34a.png b/common/img/emoji/unicode/1f34a.png deleted file mode 100644 index fc9d4f82ad..0000000000 Binary files a/common/img/emoji/unicode/1f34a.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f34b.png b/common/img/emoji/unicode/1f34b.png deleted file mode 100644 index 9814dc9598..0000000000 Binary files a/common/img/emoji/unicode/1f34b.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f34c.png b/common/img/emoji/unicode/1f34c.png deleted file mode 100644 index a0563afb95..0000000000 Binary files a/common/img/emoji/unicode/1f34c.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f34d.png b/common/img/emoji/unicode/1f34d.png deleted file mode 100644 index d6f8e28769..0000000000 Binary files a/common/img/emoji/unicode/1f34d.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f34e.png b/common/img/emoji/unicode/1f34e.png deleted file mode 100644 index 08aa17b951..0000000000 Binary files a/common/img/emoji/unicode/1f34e.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f34f.png b/common/img/emoji/unicode/1f34f.png deleted file mode 100644 index 337205cd12..0000000000 Binary files a/common/img/emoji/unicode/1f34f.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f350.png b/common/img/emoji/unicode/1f350.png deleted file mode 100644 index f24aca8c0a..0000000000 Binary files a/common/img/emoji/unicode/1f350.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f351.png b/common/img/emoji/unicode/1f351.png deleted file mode 100644 index ee2139ecb8..0000000000 Binary files a/common/img/emoji/unicode/1f351.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f352.png b/common/img/emoji/unicode/1f352.png deleted file mode 100644 index 8d3e044f2f..0000000000 Binary files a/common/img/emoji/unicode/1f352.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f353.png b/common/img/emoji/unicode/1f353.png deleted file mode 100644 index 13eb827ab8..0000000000 Binary files a/common/img/emoji/unicode/1f353.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f354.png b/common/img/emoji/unicode/1f354.png deleted file mode 100644 index 9f1a3fdff6..0000000000 Binary files a/common/img/emoji/unicode/1f354.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f355.png b/common/img/emoji/unicode/1f355.png deleted file mode 100644 index 460367d02c..0000000000 Binary files a/common/img/emoji/unicode/1f355.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f356.png b/common/img/emoji/unicode/1f356.png deleted file mode 100644 index d6b311b6b2..0000000000 Binary files a/common/img/emoji/unicode/1f356.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f357.png b/common/img/emoji/unicode/1f357.png deleted file mode 100644 index 43ad859651..0000000000 Binary files a/common/img/emoji/unicode/1f357.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f358.png b/common/img/emoji/unicode/1f358.png deleted file mode 100644 index 954c901e93..0000000000 Binary files a/common/img/emoji/unicode/1f358.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f359.png b/common/img/emoji/unicode/1f359.png deleted file mode 100644 index 04f8a88067..0000000000 Binary files a/common/img/emoji/unicode/1f359.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f35a.png b/common/img/emoji/unicode/1f35a.png deleted file mode 100644 index f4773edec8..0000000000 Binary files a/common/img/emoji/unicode/1f35a.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f35b.png b/common/img/emoji/unicode/1f35b.png deleted file mode 100644 index 7983c706a4..0000000000 Binary files a/common/img/emoji/unicode/1f35b.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f35c.png b/common/img/emoji/unicode/1f35c.png deleted file mode 100644 index 78dc7d537f..0000000000 Binary files a/common/img/emoji/unicode/1f35c.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f35d.png b/common/img/emoji/unicode/1f35d.png deleted file mode 100644 index 08de243f55..0000000000 Binary files a/common/img/emoji/unicode/1f35d.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f35e.png b/common/img/emoji/unicode/1f35e.png deleted file mode 100644 index 7e7c63753d..0000000000 Binary files a/common/img/emoji/unicode/1f35e.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f35f.png b/common/img/emoji/unicode/1f35f.png deleted file mode 100644 index cfef66966a..0000000000 Binary files a/common/img/emoji/unicode/1f35f.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f360.png b/common/img/emoji/unicode/1f360.png deleted file mode 100644 index 32117fa9c7..0000000000 Binary files a/common/img/emoji/unicode/1f360.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f361.png b/common/img/emoji/unicode/1f361.png deleted file mode 100644 index 2d042aebeb..0000000000 Binary files a/common/img/emoji/unicode/1f361.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f362.png b/common/img/emoji/unicode/1f362.png deleted file mode 100644 index 73add1c73c..0000000000 Binary files a/common/img/emoji/unicode/1f362.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f363.png b/common/img/emoji/unicode/1f363.png deleted file mode 100644 index 0d179bd975..0000000000 Binary files a/common/img/emoji/unicode/1f363.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f364.png b/common/img/emoji/unicode/1f364.png deleted file mode 100644 index c8c284bf14..0000000000 Binary files a/common/img/emoji/unicode/1f364.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f365.png b/common/img/emoji/unicode/1f365.png deleted file mode 100644 index a8f22614d6..0000000000 Binary files a/common/img/emoji/unicode/1f365.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f366.png b/common/img/emoji/unicode/1f366.png deleted file mode 100644 index 871ce09768..0000000000 Binary files a/common/img/emoji/unicode/1f366.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f367.png b/common/img/emoji/unicode/1f367.png deleted file mode 100644 index 0d0b382c22..0000000000 Binary files a/common/img/emoji/unicode/1f367.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f368.png b/common/img/emoji/unicode/1f368.png deleted file mode 100644 index 190be01650..0000000000 Binary files a/common/img/emoji/unicode/1f368.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f369.png b/common/img/emoji/unicode/1f369.png deleted file mode 100644 index ccf8691296..0000000000 Binary files a/common/img/emoji/unicode/1f369.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f36a.png b/common/img/emoji/unicode/1f36a.png deleted file mode 100644 index 653edb258c..0000000000 Binary files a/common/img/emoji/unicode/1f36a.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f36b.png b/common/img/emoji/unicode/1f36b.png deleted file mode 100644 index c7ec19d079..0000000000 Binary files a/common/img/emoji/unicode/1f36b.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f36c.png b/common/img/emoji/unicode/1f36c.png deleted file mode 100644 index 33722f236e..0000000000 Binary files a/common/img/emoji/unicode/1f36c.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f36d.png b/common/img/emoji/unicode/1f36d.png deleted file mode 100644 index ba55e7093f..0000000000 Binary files a/common/img/emoji/unicode/1f36d.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f36e.png b/common/img/emoji/unicode/1f36e.png deleted file mode 100644 index 9f843b4c13..0000000000 Binary files a/common/img/emoji/unicode/1f36e.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f36f.png b/common/img/emoji/unicode/1f36f.png deleted file mode 100644 index 73278898a4..0000000000 Binary files a/common/img/emoji/unicode/1f36f.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f370.png b/common/img/emoji/unicode/1f370.png deleted file mode 100644 index efeb9b4b21..0000000000 Binary files a/common/img/emoji/unicode/1f370.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f371.png b/common/img/emoji/unicode/1f371.png deleted file mode 100644 index c6d99e89b6..0000000000 Binary files a/common/img/emoji/unicode/1f371.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f372.png b/common/img/emoji/unicode/1f372.png deleted file mode 100644 index 6e80b4a9c4..0000000000 Binary files a/common/img/emoji/unicode/1f372.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f373.png b/common/img/emoji/unicode/1f373.png deleted file mode 100644 index c3de6ae4ea..0000000000 Binary files a/common/img/emoji/unicode/1f373.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f374.png b/common/img/emoji/unicode/1f374.png deleted file mode 100644 index 8ba4bc6535..0000000000 Binary files a/common/img/emoji/unicode/1f374.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f375.png b/common/img/emoji/unicode/1f375.png deleted file mode 100644 index 3ece0b708a..0000000000 Binary files a/common/img/emoji/unicode/1f375.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f376.png b/common/img/emoji/unicode/1f376.png deleted file mode 100644 index 1f69907e58..0000000000 Binary files a/common/img/emoji/unicode/1f376.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f377.png b/common/img/emoji/unicode/1f377.png deleted file mode 100644 index 82b0f00057..0000000000 Binary files a/common/img/emoji/unicode/1f377.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f378.png b/common/img/emoji/unicode/1f378.png deleted file mode 100644 index 28b45ea514..0000000000 Binary files a/common/img/emoji/unicode/1f378.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f379.png b/common/img/emoji/unicode/1f379.png deleted file mode 100644 index 55ca9eeda7..0000000000 Binary files a/common/img/emoji/unicode/1f379.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f37a.png b/common/img/emoji/unicode/1f37a.png deleted file mode 100644 index cd78bed744..0000000000 Binary files a/common/img/emoji/unicode/1f37a.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f37b.png b/common/img/emoji/unicode/1f37b.png deleted file mode 100644 index cc5e4ab5aa..0000000000 Binary files a/common/img/emoji/unicode/1f37b.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f37c.png b/common/img/emoji/unicode/1f37c.png deleted file mode 100644 index 1b2cfe5e30..0000000000 Binary files a/common/img/emoji/unicode/1f37c.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f380.png b/common/img/emoji/unicode/1f380.png deleted file mode 100644 index 63ee5ba5af..0000000000 Binary files a/common/img/emoji/unicode/1f380.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f381.png b/common/img/emoji/unicode/1f381.png deleted file mode 100644 index 552cfdc2b9..0000000000 Binary files a/common/img/emoji/unicode/1f381.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f382.png b/common/img/emoji/unicode/1f382.png deleted file mode 100644 index 36e8edcbec..0000000000 Binary files a/common/img/emoji/unicode/1f382.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f383.png b/common/img/emoji/unicode/1f383.png deleted file mode 100644 index 1f7667ea45..0000000000 Binary files a/common/img/emoji/unicode/1f383.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f384.png b/common/img/emoji/unicode/1f384.png deleted file mode 100644 index d813b9593d..0000000000 Binary files a/common/img/emoji/unicode/1f384.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f385.png b/common/img/emoji/unicode/1f385.png deleted file mode 100644 index a2240c07e7..0000000000 Binary files a/common/img/emoji/unicode/1f385.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f386.png b/common/img/emoji/unicode/1f386.png deleted file mode 100644 index b4eccd5775..0000000000 Binary files a/common/img/emoji/unicode/1f386.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f387.png b/common/img/emoji/unicode/1f387.png deleted file mode 100644 index 4aabd7e0ed..0000000000 Binary files a/common/img/emoji/unicode/1f387.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f388.png b/common/img/emoji/unicode/1f388.png deleted file mode 100644 index a4d3207b8e..0000000000 Binary files a/common/img/emoji/unicode/1f388.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f389.png b/common/img/emoji/unicode/1f389.png deleted file mode 100644 index 7411b5266a..0000000000 Binary files a/common/img/emoji/unicode/1f389.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f38a.png b/common/img/emoji/unicode/1f38a.png deleted file mode 100644 index bd293e3d87..0000000000 Binary files a/common/img/emoji/unicode/1f38a.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f38b.png b/common/img/emoji/unicode/1f38b.png deleted file mode 100644 index 473346410f..0000000000 Binary files a/common/img/emoji/unicode/1f38b.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f38c.png b/common/img/emoji/unicode/1f38c.png deleted file mode 100644 index 2ffbb2627a..0000000000 Binary files a/common/img/emoji/unicode/1f38c.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f38d.png b/common/img/emoji/unicode/1f38d.png deleted file mode 100644 index fc858d0fc2..0000000000 Binary files a/common/img/emoji/unicode/1f38d.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f38e.png b/common/img/emoji/unicode/1f38e.png deleted file mode 100644 index 47ce33900c..0000000000 Binary files a/common/img/emoji/unicode/1f38e.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f38f.png b/common/img/emoji/unicode/1f38f.png deleted file mode 100644 index 540164e84e..0000000000 Binary files a/common/img/emoji/unicode/1f38f.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f390.png b/common/img/emoji/unicode/1f390.png deleted file mode 100644 index efacf5dd4b..0000000000 Binary files a/common/img/emoji/unicode/1f390.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f391.png b/common/img/emoji/unicode/1f391.png deleted file mode 100644 index 14361988db..0000000000 Binary files a/common/img/emoji/unicode/1f391.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f392.png b/common/img/emoji/unicode/1f392.png deleted file mode 100644 index edfb19aec9..0000000000 Binary files a/common/img/emoji/unicode/1f392.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f393.png b/common/img/emoji/unicode/1f393.png deleted file mode 100644 index 2e811b097a..0000000000 Binary files a/common/img/emoji/unicode/1f393.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f3a0.png b/common/img/emoji/unicode/1f3a0.png deleted file mode 100644 index 765d2c0a8b..0000000000 Binary files a/common/img/emoji/unicode/1f3a0.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f3a1.png b/common/img/emoji/unicode/1f3a1.png deleted file mode 100644 index 54a1dcfa1e..0000000000 Binary files a/common/img/emoji/unicode/1f3a1.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f3a2.png b/common/img/emoji/unicode/1f3a2.png deleted file mode 100644 index 9180b9861d..0000000000 Binary files a/common/img/emoji/unicode/1f3a2.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f3a3.png b/common/img/emoji/unicode/1f3a3.png deleted file mode 100644 index d84609c3b7..0000000000 Binary files a/common/img/emoji/unicode/1f3a3.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f3a4.png b/common/img/emoji/unicode/1f3a4.png deleted file mode 100644 index ce19a2bb66..0000000000 Binary files a/common/img/emoji/unicode/1f3a4.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f3a5.png b/common/img/emoji/unicode/1f3a5.png deleted file mode 100644 index 9c14384092..0000000000 Binary files a/common/img/emoji/unicode/1f3a5.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f3a6.png b/common/img/emoji/unicode/1f3a6.png deleted file mode 100644 index a990ccf99c..0000000000 Binary files a/common/img/emoji/unicode/1f3a6.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f3a7.png b/common/img/emoji/unicode/1f3a7.png deleted file mode 100644 index ad83000e68..0000000000 Binary files a/common/img/emoji/unicode/1f3a7.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f3a8.png b/common/img/emoji/unicode/1f3a8.png deleted file mode 100644 index d45212b034..0000000000 Binary files a/common/img/emoji/unicode/1f3a8.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f3a9.png b/common/img/emoji/unicode/1f3a9.png deleted file mode 100644 index 7d27134d6a..0000000000 Binary files a/common/img/emoji/unicode/1f3a9.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f3aa.png b/common/img/emoji/unicode/1f3aa.png deleted file mode 100644 index 4af8719aa0..0000000000 Binary files a/common/img/emoji/unicode/1f3aa.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f3ab.png b/common/img/emoji/unicode/1f3ab.png deleted file mode 100644 index cdacf1a70b..0000000000 Binary files a/common/img/emoji/unicode/1f3ab.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f3ac.png b/common/img/emoji/unicode/1f3ac.png deleted file mode 100644 index 4e1dc111d7..0000000000 Binary files a/common/img/emoji/unicode/1f3ac.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f3ad.png b/common/img/emoji/unicode/1f3ad.png deleted file mode 100644 index 899fbe5a79..0000000000 Binary files a/common/img/emoji/unicode/1f3ad.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f3ae.png b/common/img/emoji/unicode/1f3ae.png deleted file mode 100644 index 59d45baeab..0000000000 Binary files a/common/img/emoji/unicode/1f3ae.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f3af.png b/common/img/emoji/unicode/1f3af.png deleted file mode 100644 index 0438fe54f9..0000000000 Binary files a/common/img/emoji/unicode/1f3af.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f3b0.png b/common/img/emoji/unicode/1f3b0.png deleted file mode 100644 index 26f114830b..0000000000 Binary files a/common/img/emoji/unicode/1f3b0.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f3b1.png b/common/img/emoji/unicode/1f3b1.png deleted file mode 100644 index c2c710d450..0000000000 Binary files a/common/img/emoji/unicode/1f3b1.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f3b2.png b/common/img/emoji/unicode/1f3b2.png deleted file mode 100644 index 4136e78ec9..0000000000 Binary files a/common/img/emoji/unicode/1f3b2.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f3b3.png b/common/img/emoji/unicode/1f3b3.png deleted file mode 100644 index 13d8ece2ee..0000000000 Binary files a/common/img/emoji/unicode/1f3b3.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f3b4.png b/common/img/emoji/unicode/1f3b4.png deleted file mode 100644 index cc46a6a1fa..0000000000 Binary files a/common/img/emoji/unicode/1f3b4.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f3b5.png b/common/img/emoji/unicode/1f3b5.png deleted file mode 100644 index 68b261bcba..0000000000 Binary files a/common/img/emoji/unicode/1f3b5.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f3b6.png b/common/img/emoji/unicode/1f3b6.png deleted file mode 100644 index a13147faed..0000000000 Binary files a/common/img/emoji/unicode/1f3b6.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f3b7.png b/common/img/emoji/unicode/1f3b7.png deleted file mode 100644 index 011559a767..0000000000 Binary files a/common/img/emoji/unicode/1f3b7.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f3b8.png b/common/img/emoji/unicode/1f3b8.png deleted file mode 100644 index 2b7fa43c94..0000000000 Binary files a/common/img/emoji/unicode/1f3b8.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f3b9.png b/common/img/emoji/unicode/1f3b9.png deleted file mode 100644 index 93647a4a32..0000000000 Binary files a/common/img/emoji/unicode/1f3b9.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f3ba.png b/common/img/emoji/unicode/1f3ba.png deleted file mode 100644 index 8d4703fc22..0000000000 Binary files a/common/img/emoji/unicode/1f3ba.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f3bb.png b/common/img/emoji/unicode/1f3bb.png deleted file mode 100644 index 0dba5ba2b6..0000000000 Binary files a/common/img/emoji/unicode/1f3bb.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f3bc.png b/common/img/emoji/unicode/1f3bc.png deleted file mode 100644 index 0c927d32fa..0000000000 Binary files a/common/img/emoji/unicode/1f3bc.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f3bd.png b/common/img/emoji/unicode/1f3bd.png deleted file mode 100644 index 0d68bba091..0000000000 Binary files a/common/img/emoji/unicode/1f3bd.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f3be.png b/common/img/emoji/unicode/1f3be.png deleted file mode 100644 index 278d904ee2..0000000000 Binary files a/common/img/emoji/unicode/1f3be.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f3bf.png b/common/img/emoji/unicode/1f3bf.png deleted file mode 100644 index c97de3ed92..0000000000 Binary files a/common/img/emoji/unicode/1f3bf.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f3c0.png b/common/img/emoji/unicode/1f3c0.png deleted file mode 100644 index ef694bec4c..0000000000 Binary files a/common/img/emoji/unicode/1f3c0.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f3c1.png b/common/img/emoji/unicode/1f3c1.png deleted file mode 100644 index ead4a68dd3..0000000000 Binary files a/common/img/emoji/unicode/1f3c1.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f3c2.png b/common/img/emoji/unicode/1f3c2.png deleted file mode 100644 index aeda5c8d87..0000000000 Binary files a/common/img/emoji/unicode/1f3c2.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f3c3.png b/common/img/emoji/unicode/1f3c3.png deleted file mode 100644 index 1ecfd9059d..0000000000 Binary files a/common/img/emoji/unicode/1f3c3.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f3c4.png b/common/img/emoji/unicode/1f3c4.png deleted file mode 100644 index b067e8cb32..0000000000 Binary files a/common/img/emoji/unicode/1f3c4.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f3c6.png b/common/img/emoji/unicode/1f3c6.png deleted file mode 100644 index 95d3b63f52..0000000000 Binary files a/common/img/emoji/unicode/1f3c6.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f3c7.png b/common/img/emoji/unicode/1f3c7.png deleted file mode 100644 index e3bbaec1d6..0000000000 Binary files a/common/img/emoji/unicode/1f3c7.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f3c8.png b/common/img/emoji/unicode/1f3c8.png deleted file mode 100644 index 0e4e168fa8..0000000000 Binary files a/common/img/emoji/unicode/1f3c8.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f3c9.png b/common/img/emoji/unicode/1f3c9.png deleted file mode 100644 index f8db67d701..0000000000 Binary files a/common/img/emoji/unicode/1f3c9.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f3ca.png b/common/img/emoji/unicode/1f3ca.png deleted file mode 100644 index d3878a0652..0000000000 Binary files a/common/img/emoji/unicode/1f3ca.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f3e0.png b/common/img/emoji/unicode/1f3e0.png deleted file mode 100644 index 95b9ee0948..0000000000 Binary files a/common/img/emoji/unicode/1f3e0.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f3e1.png b/common/img/emoji/unicode/1f3e1.png deleted file mode 100644 index eccbfe943a..0000000000 Binary files a/common/img/emoji/unicode/1f3e1.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f3e2.png b/common/img/emoji/unicode/1f3e2.png deleted file mode 100644 index 3f20b56422..0000000000 Binary files a/common/img/emoji/unicode/1f3e2.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f3e3.png b/common/img/emoji/unicode/1f3e3.png deleted file mode 100644 index 43b59e30ec..0000000000 Binary files a/common/img/emoji/unicode/1f3e3.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f3e4.png b/common/img/emoji/unicode/1f3e4.png deleted file mode 100644 index 0f65b14530..0000000000 Binary files a/common/img/emoji/unicode/1f3e4.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f3e5.png b/common/img/emoji/unicode/1f3e5.png deleted file mode 100644 index c05c49377f..0000000000 Binary files a/common/img/emoji/unicode/1f3e5.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f3e6.png b/common/img/emoji/unicode/1f3e6.png deleted file mode 100644 index 1faa8777e4..0000000000 Binary files a/common/img/emoji/unicode/1f3e6.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f3e7.png b/common/img/emoji/unicode/1f3e7.png deleted file mode 100644 index c2846e7921..0000000000 Binary files a/common/img/emoji/unicode/1f3e7.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f3e8.png b/common/img/emoji/unicode/1f3e8.png deleted file mode 100644 index d29f276a18..0000000000 Binary files a/common/img/emoji/unicode/1f3e8.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f3e9.png b/common/img/emoji/unicode/1f3e9.png deleted file mode 100644 index 44d7db828a..0000000000 Binary files a/common/img/emoji/unicode/1f3e9.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f3ea.png b/common/img/emoji/unicode/1f3ea.png deleted file mode 100644 index 671696c2df..0000000000 Binary files a/common/img/emoji/unicode/1f3ea.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f3eb.png b/common/img/emoji/unicode/1f3eb.png deleted file mode 100644 index afd922bf13..0000000000 Binary files a/common/img/emoji/unicode/1f3eb.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f3ec.png b/common/img/emoji/unicode/1f3ec.png deleted file mode 100644 index 68d959c507..0000000000 Binary files a/common/img/emoji/unicode/1f3ec.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f3ed.png b/common/img/emoji/unicode/1f3ed.png deleted file mode 100644 index 6404634793..0000000000 Binary files a/common/img/emoji/unicode/1f3ed.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f3ee.png b/common/img/emoji/unicode/1f3ee.png deleted file mode 100644 index 18730ad559..0000000000 Binary files a/common/img/emoji/unicode/1f3ee.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f3ef.png b/common/img/emoji/unicode/1f3ef.png deleted file mode 100644 index f225ab217c..0000000000 Binary files a/common/img/emoji/unicode/1f3ef.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f3f0.png b/common/img/emoji/unicode/1f3f0.png deleted file mode 100644 index 8229b8a8a9..0000000000 Binary files a/common/img/emoji/unicode/1f3f0.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f400.png b/common/img/emoji/unicode/1f400.png deleted file mode 100644 index 1c463dfde6..0000000000 Binary files a/common/img/emoji/unicode/1f400.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f401.png b/common/img/emoji/unicode/1f401.png deleted file mode 100644 index 2d777e5e1a..0000000000 Binary files a/common/img/emoji/unicode/1f401.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f402.png b/common/img/emoji/unicode/1f402.png deleted file mode 100644 index f766980248..0000000000 Binary files a/common/img/emoji/unicode/1f402.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f403.png b/common/img/emoji/unicode/1f403.png deleted file mode 100644 index 3bcde3edd9..0000000000 Binary files a/common/img/emoji/unicode/1f403.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f404.png b/common/img/emoji/unicode/1f404.png deleted file mode 100644 index 594c92155b..0000000000 Binary files a/common/img/emoji/unicode/1f404.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f405.png b/common/img/emoji/unicode/1f405.png deleted file mode 100644 index b0c7d8dc3e..0000000000 Binary files a/common/img/emoji/unicode/1f405.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f406.png b/common/img/emoji/unicode/1f406.png deleted file mode 100644 index 8abfc4a272..0000000000 Binary files a/common/img/emoji/unicode/1f406.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f407.png b/common/img/emoji/unicode/1f407.png deleted file mode 100644 index 5bc993e799..0000000000 Binary files a/common/img/emoji/unicode/1f407.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f408.png b/common/img/emoji/unicode/1f408.png deleted file mode 100644 index 977c992c52..0000000000 Binary files a/common/img/emoji/unicode/1f408.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f409.png b/common/img/emoji/unicode/1f409.png deleted file mode 100644 index e399d60e1d..0000000000 Binary files a/common/img/emoji/unicode/1f409.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f40a.png b/common/img/emoji/unicode/1f40a.png deleted file mode 100644 index 7435d5ab3c..0000000000 Binary files a/common/img/emoji/unicode/1f40a.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f40b.png b/common/img/emoji/unicode/1f40b.png deleted file mode 100644 index 4af657b2fd..0000000000 Binary files a/common/img/emoji/unicode/1f40b.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f40c.png b/common/img/emoji/unicode/1f40c.png deleted file mode 100644 index e75e69a84d..0000000000 Binary files a/common/img/emoji/unicode/1f40c.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f40d.png b/common/img/emoji/unicode/1f40d.png deleted file mode 100644 index ef58933e2b..0000000000 Binary files a/common/img/emoji/unicode/1f40d.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f40e.png b/common/img/emoji/unicode/1f40e.png deleted file mode 100644 index 4d09c64de7..0000000000 Binary files a/common/img/emoji/unicode/1f40e.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f40f.png b/common/img/emoji/unicode/1f40f.png deleted file mode 100644 index 5ea7bfbc0d..0000000000 Binary files a/common/img/emoji/unicode/1f40f.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f410.png b/common/img/emoji/unicode/1f410.png deleted file mode 100644 index 4be9cf3040..0000000000 Binary files a/common/img/emoji/unicode/1f410.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f411.png b/common/img/emoji/unicode/1f411.png deleted file mode 100644 index c7277d2898..0000000000 Binary files a/common/img/emoji/unicode/1f411.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f412.png b/common/img/emoji/unicode/1f412.png deleted file mode 100644 index 6407035977..0000000000 Binary files a/common/img/emoji/unicode/1f412.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f413.png b/common/img/emoji/unicode/1f413.png deleted file mode 100644 index fab23ad362..0000000000 Binary files a/common/img/emoji/unicode/1f413.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f414.png b/common/img/emoji/unicode/1f414.png deleted file mode 100644 index 6d25c0ef4a..0000000000 Binary files a/common/img/emoji/unicode/1f414.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f415.png b/common/img/emoji/unicode/1f415.png deleted file mode 100644 index c7f6a24ac8..0000000000 Binary files a/common/img/emoji/unicode/1f415.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f416.png b/common/img/emoji/unicode/1f416.png deleted file mode 100644 index fec3374d70..0000000000 Binary files a/common/img/emoji/unicode/1f416.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f417.png b/common/img/emoji/unicode/1f417.png deleted file mode 100644 index 8196ad4a14..0000000000 Binary files a/common/img/emoji/unicode/1f417.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f418.png b/common/img/emoji/unicode/1f418.png deleted file mode 100644 index 5ca04570e2..0000000000 Binary files a/common/img/emoji/unicode/1f418.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f419.png b/common/img/emoji/unicode/1f419.png deleted file mode 100644 index 52ce64b468..0000000000 Binary files a/common/img/emoji/unicode/1f419.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f41a.png b/common/img/emoji/unicode/1f41a.png deleted file mode 100644 index 3145b56496..0000000000 Binary files a/common/img/emoji/unicode/1f41a.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f41b.png b/common/img/emoji/unicode/1f41b.png deleted file mode 100644 index c2eaf7a708..0000000000 Binary files a/common/img/emoji/unicode/1f41b.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f41c.png b/common/img/emoji/unicode/1f41c.png deleted file mode 100644 index b92d1cc14b..0000000000 Binary files a/common/img/emoji/unicode/1f41c.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f41d.png b/common/img/emoji/unicode/1f41d.png deleted file mode 100644 index f53733953a..0000000000 Binary files a/common/img/emoji/unicode/1f41d.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f41e.png b/common/img/emoji/unicode/1f41e.png deleted file mode 100644 index 222577ca7e..0000000000 Binary files a/common/img/emoji/unicode/1f41e.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f41f.png b/common/img/emoji/unicode/1f41f.png deleted file mode 100644 index dc2a3f52d9..0000000000 Binary files a/common/img/emoji/unicode/1f41f.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f420.png b/common/img/emoji/unicode/1f420.png deleted file mode 100644 index a6d734987b..0000000000 Binary files a/common/img/emoji/unicode/1f420.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f421.png b/common/img/emoji/unicode/1f421.png deleted file mode 100644 index a1d47cb7e6..0000000000 Binary files a/common/img/emoji/unicode/1f421.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f422.png b/common/img/emoji/unicode/1f422.png deleted file mode 100644 index 04d1d96847..0000000000 Binary files a/common/img/emoji/unicode/1f422.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f423.png b/common/img/emoji/unicode/1f423.png deleted file mode 100644 index 005a55519f..0000000000 Binary files a/common/img/emoji/unicode/1f423.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f424.png b/common/img/emoji/unicode/1f424.png deleted file mode 100644 index 9be8d29300..0000000000 Binary files a/common/img/emoji/unicode/1f424.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f425.png b/common/img/emoji/unicode/1f425.png deleted file mode 100644 index 39c25bc7cc..0000000000 Binary files a/common/img/emoji/unicode/1f425.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f426.png b/common/img/emoji/unicode/1f426.png deleted file mode 100644 index e6be8c0278..0000000000 Binary files a/common/img/emoji/unicode/1f426.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f427.png b/common/img/emoji/unicode/1f427.png deleted file mode 100644 index d8edbcb8fa..0000000000 Binary files a/common/img/emoji/unicode/1f427.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f428.png b/common/img/emoji/unicode/1f428.png deleted file mode 100644 index e17bd3cf53..0000000000 Binary files a/common/img/emoji/unicode/1f428.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f429.png b/common/img/emoji/unicode/1f429.png deleted file mode 100644 index adac80bd97..0000000000 Binary files a/common/img/emoji/unicode/1f429.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f42a.png b/common/img/emoji/unicode/1f42a.png deleted file mode 100644 index c8c7b9ffa0..0000000000 Binary files a/common/img/emoji/unicode/1f42a.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f42b.png b/common/img/emoji/unicode/1f42b.png deleted file mode 100644 index 496c186ae6..0000000000 Binary files a/common/img/emoji/unicode/1f42b.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f42c.png b/common/img/emoji/unicode/1f42c.png deleted file mode 100644 index 9326077a92..0000000000 Binary files a/common/img/emoji/unicode/1f42c.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f42d.png b/common/img/emoji/unicode/1f42d.png deleted file mode 100644 index 8ff162e2db..0000000000 Binary files a/common/img/emoji/unicode/1f42d.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f42e.png b/common/img/emoji/unicode/1f42e.png deleted file mode 100644 index 12e1ab6c0b..0000000000 Binary files a/common/img/emoji/unicode/1f42e.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f42f.png b/common/img/emoji/unicode/1f42f.png deleted file mode 100644 index d6cc84a3ba..0000000000 Binary files a/common/img/emoji/unicode/1f42f.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f430.png b/common/img/emoji/unicode/1f430.png deleted file mode 100644 index 5cb3ef6f0c..0000000000 Binary files a/common/img/emoji/unicode/1f430.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f431.png b/common/img/emoji/unicode/1f431.png deleted file mode 100644 index 09b9ef79a7..0000000000 Binary files a/common/img/emoji/unicode/1f431.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f432.png b/common/img/emoji/unicode/1f432.png deleted file mode 100644 index e5e556bd10..0000000000 Binary files a/common/img/emoji/unicode/1f432.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f433.png b/common/img/emoji/unicode/1f433.png deleted file mode 100644 index 5bb113e428..0000000000 Binary files a/common/img/emoji/unicode/1f433.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f434.png b/common/img/emoji/unicode/1f434.png deleted file mode 100644 index 78d580ad3e..0000000000 Binary files a/common/img/emoji/unicode/1f434.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f435.png b/common/img/emoji/unicode/1f435.png deleted file mode 100644 index 6964cf4d51..0000000000 Binary files a/common/img/emoji/unicode/1f435.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f436.png b/common/img/emoji/unicode/1f436.png deleted file mode 100644 index 389a02bf28..0000000000 Binary files a/common/img/emoji/unicode/1f436.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f437.png b/common/img/emoji/unicode/1f437.png deleted file mode 100644 index f7f273c733..0000000000 Binary files a/common/img/emoji/unicode/1f437.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f438.png b/common/img/emoji/unicode/1f438.png deleted file mode 100644 index cfe11b18ff..0000000000 Binary files a/common/img/emoji/unicode/1f438.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f439.png b/common/img/emoji/unicode/1f439.png deleted file mode 100644 index ada9c3108e..0000000000 Binary files a/common/img/emoji/unicode/1f439.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f43a.png b/common/img/emoji/unicode/1f43a.png deleted file mode 100644 index c60c96895f..0000000000 Binary files a/common/img/emoji/unicode/1f43a.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f43b.png b/common/img/emoji/unicode/1f43b.png deleted file mode 100644 index f5afe920e8..0000000000 Binary files a/common/img/emoji/unicode/1f43b.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f43c.png b/common/img/emoji/unicode/1f43c.png deleted file mode 100644 index a794fb17f6..0000000000 Binary files a/common/img/emoji/unicode/1f43c.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f43d.png b/common/img/emoji/unicode/1f43d.png deleted file mode 100644 index 38d612446e..0000000000 Binary files a/common/img/emoji/unicode/1f43d.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f43e.png b/common/img/emoji/unicode/1f43e.png deleted file mode 100644 index 89b9fec9ef..0000000000 Binary files a/common/img/emoji/unicode/1f43e.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f440.png b/common/img/emoji/unicode/1f440.png deleted file mode 100644 index dc2216f63d..0000000000 Binary files a/common/img/emoji/unicode/1f440.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f442.png b/common/img/emoji/unicode/1f442.png deleted file mode 100644 index 2bbbf10c9e..0000000000 Binary files a/common/img/emoji/unicode/1f442.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f443.png b/common/img/emoji/unicode/1f443.png deleted file mode 100644 index ad17c16c29..0000000000 Binary files a/common/img/emoji/unicode/1f443.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f444.png b/common/img/emoji/unicode/1f444.png deleted file mode 100644 index 826ed1102d..0000000000 Binary files a/common/img/emoji/unicode/1f444.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f445.png b/common/img/emoji/unicode/1f445.png deleted file mode 100644 index b0bab12078..0000000000 Binary files a/common/img/emoji/unicode/1f445.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f446.png b/common/img/emoji/unicode/1f446.png deleted file mode 100644 index 196d109a87..0000000000 Binary files a/common/img/emoji/unicode/1f446.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f447.png b/common/img/emoji/unicode/1f447.png deleted file mode 100644 index 658c6d9187..0000000000 Binary files a/common/img/emoji/unicode/1f447.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f448.png b/common/img/emoji/unicode/1f448.png deleted file mode 100644 index fee9cac4da..0000000000 Binary files a/common/img/emoji/unicode/1f448.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f449.png b/common/img/emoji/unicode/1f449.png deleted file mode 100644 index b04e2849d0..0000000000 Binary files a/common/img/emoji/unicode/1f449.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f44a.png b/common/img/emoji/unicode/1f44a.png deleted file mode 100644 index 2d41fd37e8..0000000000 Binary files a/common/img/emoji/unicode/1f44a.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f44b.png b/common/img/emoji/unicode/1f44b.png deleted file mode 100644 index e78402eb08..0000000000 Binary files a/common/img/emoji/unicode/1f44b.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f44c.png b/common/img/emoji/unicode/1f44c.png deleted file mode 100644 index 3177439dcc..0000000000 Binary files a/common/img/emoji/unicode/1f44c.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f44d.png b/common/img/emoji/unicode/1f44d.png deleted file mode 100644 index 3a43ecae29..0000000000 Binary files a/common/img/emoji/unicode/1f44d.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f44e.png b/common/img/emoji/unicode/1f44e.png deleted file mode 100644 index e44c04219e..0000000000 Binary files a/common/img/emoji/unicode/1f44e.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f44f.png b/common/img/emoji/unicode/1f44f.png deleted file mode 100644 index d01c982a75..0000000000 Binary files a/common/img/emoji/unicode/1f44f.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f450.png b/common/img/emoji/unicode/1f450.png deleted file mode 100644 index 2cc25bd41a..0000000000 Binary files a/common/img/emoji/unicode/1f450.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f451.png b/common/img/emoji/unicode/1f451.png deleted file mode 100644 index 39da1d5287..0000000000 Binary files a/common/img/emoji/unicode/1f451.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f452.png b/common/img/emoji/unicode/1f452.png deleted file mode 100644 index 4cb2e6a693..0000000000 Binary files a/common/img/emoji/unicode/1f452.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f453.png b/common/img/emoji/unicode/1f453.png deleted file mode 100644 index a3cf75a27a..0000000000 Binary files a/common/img/emoji/unicode/1f453.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f454.png b/common/img/emoji/unicode/1f454.png deleted file mode 100644 index 80461c66f3..0000000000 Binary files a/common/img/emoji/unicode/1f454.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f455.png b/common/img/emoji/unicode/1f455.png deleted file mode 100644 index 297a6d63ed..0000000000 Binary files a/common/img/emoji/unicode/1f455.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f456.png b/common/img/emoji/unicode/1f456.png deleted file mode 100644 index d721cea54c..0000000000 Binary files a/common/img/emoji/unicode/1f456.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f457.png b/common/img/emoji/unicode/1f457.png deleted file mode 100644 index 6434e2e2f3..0000000000 Binary files a/common/img/emoji/unicode/1f457.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f458.png b/common/img/emoji/unicode/1f458.png deleted file mode 100644 index 34ffe137dc..0000000000 Binary files a/common/img/emoji/unicode/1f458.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f459.png b/common/img/emoji/unicode/1f459.png deleted file mode 100644 index 4ff63b40f8..0000000000 Binary files a/common/img/emoji/unicode/1f459.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f45a.png b/common/img/emoji/unicode/1f45a.png deleted file mode 100644 index aa297c7b65..0000000000 Binary files a/common/img/emoji/unicode/1f45a.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f45b.png b/common/img/emoji/unicode/1f45b.png deleted file mode 100644 index 8f06a2b932..0000000000 Binary files a/common/img/emoji/unicode/1f45b.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f45c.png b/common/img/emoji/unicode/1f45c.png deleted file mode 100644 index d7adf04ddf..0000000000 Binary files a/common/img/emoji/unicode/1f45c.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f45d.png b/common/img/emoji/unicode/1f45d.png deleted file mode 100644 index 0bc5879fcb..0000000000 Binary files a/common/img/emoji/unicode/1f45d.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f45e.png b/common/img/emoji/unicode/1f45e.png deleted file mode 100644 index ecba9ba7d0..0000000000 Binary files a/common/img/emoji/unicode/1f45e.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f45f.png b/common/img/emoji/unicode/1f45f.png deleted file mode 100644 index 45b82e61cf..0000000000 Binary files a/common/img/emoji/unicode/1f45f.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f460.png b/common/img/emoji/unicode/1f460.png deleted file mode 100644 index 525b6a0dd6..0000000000 Binary files a/common/img/emoji/unicode/1f460.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f461.png b/common/img/emoji/unicode/1f461.png deleted file mode 100644 index aa62cca5d6..0000000000 Binary files a/common/img/emoji/unicode/1f461.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f462.png b/common/img/emoji/unicode/1f462.png deleted file mode 100644 index 58d0fdbcd0..0000000000 Binary files a/common/img/emoji/unicode/1f462.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f463.png b/common/img/emoji/unicode/1f463.png deleted file mode 100644 index d7a25614f7..0000000000 Binary files a/common/img/emoji/unicode/1f463.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f464.png b/common/img/emoji/unicode/1f464.png deleted file mode 100644 index d131398692..0000000000 Binary files a/common/img/emoji/unicode/1f464.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f465.png b/common/img/emoji/unicode/1f465.png deleted file mode 100644 index 1f3aabcff6..0000000000 Binary files a/common/img/emoji/unicode/1f465.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f466.png b/common/img/emoji/unicode/1f466.png deleted file mode 100644 index f79f1f2980..0000000000 Binary files a/common/img/emoji/unicode/1f466.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f467.png b/common/img/emoji/unicode/1f467.png deleted file mode 100644 index ea4126941f..0000000000 Binary files a/common/img/emoji/unicode/1f467.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f468.png b/common/img/emoji/unicode/1f468.png deleted file mode 100644 index d9bfa26a67..0000000000 Binary files a/common/img/emoji/unicode/1f468.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f469.png b/common/img/emoji/unicode/1f469.png deleted file mode 100644 index 6bf0d2b129..0000000000 Binary files a/common/img/emoji/unicode/1f469.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f46a.png b/common/img/emoji/unicode/1f46a.png deleted file mode 100644 index b4b365f3a5..0000000000 Binary files a/common/img/emoji/unicode/1f46a.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f46b.png b/common/img/emoji/unicode/1f46b.png deleted file mode 100644 index 9e51f40e16..0000000000 Binary files a/common/img/emoji/unicode/1f46b.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f46c.png b/common/img/emoji/unicode/1f46c.png deleted file mode 100644 index d1099f21ff..0000000000 Binary files a/common/img/emoji/unicode/1f46c.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f46d.png b/common/img/emoji/unicode/1f46d.png deleted file mode 100644 index 619646c4e0..0000000000 Binary files a/common/img/emoji/unicode/1f46d.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f46e.png b/common/img/emoji/unicode/1f46e.png deleted file mode 100644 index 43a5a84f82..0000000000 Binary files a/common/img/emoji/unicode/1f46e.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f46f.png b/common/img/emoji/unicode/1f46f.png deleted file mode 100644 index 2dfb451a73..0000000000 Binary files a/common/img/emoji/unicode/1f46f.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f470.png b/common/img/emoji/unicode/1f470.png deleted file mode 100644 index dd0b0cfdad..0000000000 Binary files a/common/img/emoji/unicode/1f470.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f471.png b/common/img/emoji/unicode/1f471.png deleted file mode 100644 index c144301cbb..0000000000 Binary files a/common/img/emoji/unicode/1f471.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f472.png b/common/img/emoji/unicode/1f472.png deleted file mode 100644 index 7aad74b55e..0000000000 Binary files a/common/img/emoji/unicode/1f472.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f473.png b/common/img/emoji/unicode/1f473.png deleted file mode 100644 index 036604caf2..0000000000 Binary files a/common/img/emoji/unicode/1f473.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f474.png b/common/img/emoji/unicode/1f474.png deleted file mode 100644 index 149f0cfb8e..0000000000 Binary files a/common/img/emoji/unicode/1f474.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f475.png b/common/img/emoji/unicode/1f475.png deleted file mode 100644 index f839565f47..0000000000 Binary files a/common/img/emoji/unicode/1f475.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f476.png b/common/img/emoji/unicode/1f476.png deleted file mode 100644 index 3b29da40b6..0000000000 Binary files a/common/img/emoji/unicode/1f476.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f477.png b/common/img/emoji/unicode/1f477.png deleted file mode 100644 index 4d64860478..0000000000 Binary files a/common/img/emoji/unicode/1f477.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f478.png b/common/img/emoji/unicode/1f478.png deleted file mode 100644 index 1ebb2ce9b1..0000000000 Binary files a/common/img/emoji/unicode/1f478.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f479.png b/common/img/emoji/unicode/1f479.png deleted file mode 100644 index e9f5471c9a..0000000000 Binary files a/common/img/emoji/unicode/1f479.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f47a.png b/common/img/emoji/unicode/1f47a.png deleted file mode 100644 index bd21b18757..0000000000 Binary files a/common/img/emoji/unicode/1f47a.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f47b.png b/common/img/emoji/unicode/1f47b.png deleted file mode 100644 index 671dd0c9e2..0000000000 Binary files a/common/img/emoji/unicode/1f47b.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f47c.png b/common/img/emoji/unicode/1f47c.png deleted file mode 100644 index da52c310c6..0000000000 Binary files a/common/img/emoji/unicode/1f47c.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f47d.png b/common/img/emoji/unicode/1f47d.png deleted file mode 100644 index e3fd76a78d..0000000000 Binary files a/common/img/emoji/unicode/1f47d.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f47e.png b/common/img/emoji/unicode/1f47e.png deleted file mode 100644 index 3840491674..0000000000 Binary files a/common/img/emoji/unicode/1f47e.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f47f.png b/common/img/emoji/unicode/1f47f.png deleted file mode 100644 index 48e570105d..0000000000 Binary files a/common/img/emoji/unicode/1f47f.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f480.png b/common/img/emoji/unicode/1f480.png deleted file mode 100644 index bd4ee38297..0000000000 Binary files a/common/img/emoji/unicode/1f480.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f481.png b/common/img/emoji/unicode/1f481.png deleted file mode 100644 index 52c0a50a3f..0000000000 Binary files a/common/img/emoji/unicode/1f481.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f482.png b/common/img/emoji/unicode/1f482.png deleted file mode 100644 index b67b335d68..0000000000 Binary files a/common/img/emoji/unicode/1f482.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f483.png b/common/img/emoji/unicode/1f483.png deleted file mode 100644 index 6885a0bc3d..0000000000 Binary files a/common/img/emoji/unicode/1f483.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f484.png b/common/img/emoji/unicode/1f484.png deleted file mode 100644 index 82f990c567..0000000000 Binary files a/common/img/emoji/unicode/1f484.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f485.png b/common/img/emoji/unicode/1f485.png deleted file mode 100644 index 6a66e63d2a..0000000000 Binary files a/common/img/emoji/unicode/1f485.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f486.png b/common/img/emoji/unicode/1f486.png deleted file mode 100644 index dd30d15975..0000000000 Binary files a/common/img/emoji/unicode/1f486.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f487.png b/common/img/emoji/unicode/1f487.png deleted file mode 100644 index 902d273f6c..0000000000 Binary files a/common/img/emoji/unicode/1f487.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f488.png b/common/img/emoji/unicode/1f488.png deleted file mode 100644 index a10cb23228..0000000000 Binary files a/common/img/emoji/unicode/1f488.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f489.png b/common/img/emoji/unicode/1f489.png deleted file mode 100644 index e7e7ab6e39..0000000000 Binary files a/common/img/emoji/unicode/1f489.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f48a.png b/common/img/emoji/unicode/1f48a.png deleted file mode 100644 index cd84a78ff7..0000000000 Binary files a/common/img/emoji/unicode/1f48a.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f48b.png b/common/img/emoji/unicode/1f48b.png deleted file mode 100644 index 4ae2c2b5d0..0000000000 Binary files a/common/img/emoji/unicode/1f48b.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f48c.png b/common/img/emoji/unicode/1f48c.png deleted file mode 100644 index e29981f445..0000000000 Binary files a/common/img/emoji/unicode/1f48c.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f48d.png b/common/img/emoji/unicode/1f48d.png deleted file mode 100644 index 8a57fd68ba..0000000000 Binary files a/common/img/emoji/unicode/1f48d.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f48e.png b/common/img/emoji/unicode/1f48e.png deleted file mode 100644 index 8a5d8dad5c..0000000000 Binary files a/common/img/emoji/unicode/1f48e.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f48f.png b/common/img/emoji/unicode/1f48f.png deleted file mode 100644 index d02790822e..0000000000 Binary files a/common/img/emoji/unicode/1f48f.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f490.png b/common/img/emoji/unicode/1f490.png deleted file mode 100644 index ce637832e1..0000000000 Binary files a/common/img/emoji/unicode/1f490.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f491.png b/common/img/emoji/unicode/1f491.png deleted file mode 100644 index c503f40a93..0000000000 Binary files a/common/img/emoji/unicode/1f491.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f492.png b/common/img/emoji/unicode/1f492.png deleted file mode 100644 index ead19d52cf..0000000000 Binary files a/common/img/emoji/unicode/1f492.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f493.png b/common/img/emoji/unicode/1f493.png deleted file mode 100644 index b6628f6fa7..0000000000 Binary files a/common/img/emoji/unicode/1f493.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f494.png b/common/img/emoji/unicode/1f494.png deleted file mode 100644 index a1bc850ecb..0000000000 Binary files a/common/img/emoji/unicode/1f494.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f495.png b/common/img/emoji/unicode/1f495.png deleted file mode 100644 index b189e9aea8..0000000000 Binary files a/common/img/emoji/unicode/1f495.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f496.png b/common/img/emoji/unicode/1f496.png deleted file mode 100644 index 0826bbc063..0000000000 Binary files a/common/img/emoji/unicode/1f496.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f497.png b/common/img/emoji/unicode/1f497.png deleted file mode 100644 index a7491cbeae..0000000000 Binary files a/common/img/emoji/unicode/1f497.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f498.png b/common/img/emoji/unicode/1f498.png deleted file mode 100644 index 4987284767..0000000000 Binary files a/common/img/emoji/unicode/1f498.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f499.png b/common/img/emoji/unicode/1f499.png deleted file mode 100644 index baa29b31bc..0000000000 Binary files a/common/img/emoji/unicode/1f499.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f49a.png b/common/img/emoji/unicode/1f49a.png deleted file mode 100644 index 7289cb8147..0000000000 Binary files a/common/img/emoji/unicode/1f49a.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f49b.png b/common/img/emoji/unicode/1f49b.png deleted file mode 100644 index fa41ce78ac..0000000000 Binary files a/common/img/emoji/unicode/1f49b.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f49c.png b/common/img/emoji/unicode/1f49c.png deleted file mode 100644 index d5f875043f..0000000000 Binary files a/common/img/emoji/unicode/1f49c.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f49d.png b/common/img/emoji/unicode/1f49d.png deleted file mode 100644 index f31c26a3fc..0000000000 Binary files a/common/img/emoji/unicode/1f49d.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f49e.png b/common/img/emoji/unicode/1f49e.png deleted file mode 100644 index ea3317c47f..0000000000 Binary files a/common/img/emoji/unicode/1f49e.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f49f.png b/common/img/emoji/unicode/1f49f.png deleted file mode 100644 index b40a486758..0000000000 Binary files a/common/img/emoji/unicode/1f49f.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4a0.png b/common/img/emoji/unicode/1f4a0.png deleted file mode 100644 index dfd1098b39..0000000000 Binary files a/common/img/emoji/unicode/1f4a0.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4a1.png b/common/img/emoji/unicode/1f4a1.png deleted file mode 100644 index 23afca1c73..0000000000 Binary files a/common/img/emoji/unicode/1f4a1.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4a2.png b/common/img/emoji/unicode/1f4a2.png deleted file mode 100644 index 6fb4dca185..0000000000 Binary files a/common/img/emoji/unicode/1f4a2.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4a3.png b/common/img/emoji/unicode/1f4a3.png deleted file mode 100644 index 3289787dcf..0000000000 Binary files a/common/img/emoji/unicode/1f4a3.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4a4.png b/common/img/emoji/unicode/1f4a4.png deleted file mode 100644 index 30be04655a..0000000000 Binary files a/common/img/emoji/unicode/1f4a4.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4a5.png b/common/img/emoji/unicode/1f4a5.png deleted file mode 100644 index bddeb8f49f..0000000000 Binary files a/common/img/emoji/unicode/1f4a5.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4a6.png b/common/img/emoji/unicode/1f4a6.png deleted file mode 100644 index a83b3e960c..0000000000 Binary files a/common/img/emoji/unicode/1f4a6.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4a7.png b/common/img/emoji/unicode/1f4a7.png deleted file mode 100644 index 9eff46339f..0000000000 Binary files a/common/img/emoji/unicode/1f4a7.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4a8.png b/common/img/emoji/unicode/1f4a8.png deleted file mode 100644 index dc2c0a8f46..0000000000 Binary files a/common/img/emoji/unicode/1f4a8.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4a9.png b/common/img/emoji/unicode/1f4a9.png deleted file mode 100644 index 73a4dc8400..0000000000 Binary files a/common/img/emoji/unicode/1f4a9.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4aa.png b/common/img/emoji/unicode/1f4aa.png deleted file mode 100644 index 19f92efb66..0000000000 Binary files a/common/img/emoji/unicode/1f4aa.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4ab.png b/common/img/emoji/unicode/1f4ab.png deleted file mode 100644 index 55213d2dde..0000000000 Binary files a/common/img/emoji/unicode/1f4ab.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4ac.png b/common/img/emoji/unicode/1f4ac.png deleted file mode 100644 index 2896c27888..0000000000 Binary files a/common/img/emoji/unicode/1f4ac.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4ad.png b/common/img/emoji/unicode/1f4ad.png deleted file mode 100644 index 701bdf0f64..0000000000 Binary files a/common/img/emoji/unicode/1f4ad.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4ae.png b/common/img/emoji/unicode/1f4ae.png deleted file mode 100644 index c0929d0dd9..0000000000 Binary files a/common/img/emoji/unicode/1f4ae.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4af.png b/common/img/emoji/unicode/1f4af.png deleted file mode 100644 index bce9ab14f5..0000000000 Binary files a/common/img/emoji/unicode/1f4af.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4b0.png b/common/img/emoji/unicode/1f4b0.png deleted file mode 100644 index 5546c04bad..0000000000 Binary files a/common/img/emoji/unicode/1f4b0.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4b1.png b/common/img/emoji/unicode/1f4b1.png deleted file mode 100644 index d5ee21fc68..0000000000 Binary files a/common/img/emoji/unicode/1f4b1.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4b2.png b/common/img/emoji/unicode/1f4b2.png deleted file mode 100644 index 361e26aef8..0000000000 Binary files a/common/img/emoji/unicode/1f4b2.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4b3.png b/common/img/emoji/unicode/1f4b3.png deleted file mode 100644 index be1c1dd306..0000000000 Binary files a/common/img/emoji/unicode/1f4b3.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4b4.png b/common/img/emoji/unicode/1f4b4.png deleted file mode 100644 index 139bc936e0..0000000000 Binary files a/common/img/emoji/unicode/1f4b4.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4b5.png b/common/img/emoji/unicode/1f4b5.png deleted file mode 100644 index 63de884951..0000000000 Binary files a/common/img/emoji/unicode/1f4b5.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4b6.png b/common/img/emoji/unicode/1f4b6.png deleted file mode 100644 index 1c5904b714..0000000000 Binary files a/common/img/emoji/unicode/1f4b6.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4b7.png b/common/img/emoji/unicode/1f4b7.png deleted file mode 100644 index f8be91d7a4..0000000000 Binary files a/common/img/emoji/unicode/1f4b7.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4b8.png b/common/img/emoji/unicode/1f4b8.png deleted file mode 100644 index 135e3981ed..0000000000 Binary files a/common/img/emoji/unicode/1f4b8.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4b9.png b/common/img/emoji/unicode/1f4b9.png deleted file mode 100644 index ac2c4bb093..0000000000 Binary files a/common/img/emoji/unicode/1f4b9.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4ba.png b/common/img/emoji/unicode/1f4ba.png deleted file mode 100644 index d1cb864b4b..0000000000 Binary files a/common/img/emoji/unicode/1f4ba.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4bb.png b/common/img/emoji/unicode/1f4bb.png deleted file mode 100644 index d4d2687627..0000000000 Binary files a/common/img/emoji/unicode/1f4bb.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4bc.png b/common/img/emoji/unicode/1f4bc.png deleted file mode 100644 index 46e82b0010..0000000000 Binary files a/common/img/emoji/unicode/1f4bc.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4bd.png b/common/img/emoji/unicode/1f4bd.png deleted file mode 100644 index e19cc5d015..0000000000 Binary files a/common/img/emoji/unicode/1f4bd.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4be.png b/common/img/emoji/unicode/1f4be.png deleted file mode 100644 index 4ad56315ae..0000000000 Binary files a/common/img/emoji/unicode/1f4be.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4bf.png b/common/img/emoji/unicode/1f4bf.png deleted file mode 100644 index baff835c48..0000000000 Binary files a/common/img/emoji/unicode/1f4bf.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4c0.png b/common/img/emoji/unicode/1f4c0.png deleted file mode 100644 index 363c83d01c..0000000000 Binary files a/common/img/emoji/unicode/1f4c0.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4c1.png b/common/img/emoji/unicode/1f4c1.png deleted file mode 100644 index 4d8bebf8a9..0000000000 Binary files a/common/img/emoji/unicode/1f4c1.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4c2.png b/common/img/emoji/unicode/1f4c2.png deleted file mode 100644 index 2bbbbf5e7c..0000000000 Binary files a/common/img/emoji/unicode/1f4c2.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4c3.png b/common/img/emoji/unicode/1f4c3.png deleted file mode 100644 index bf8f979d31..0000000000 Binary files a/common/img/emoji/unicode/1f4c3.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4c4.png b/common/img/emoji/unicode/1f4c4.png deleted file mode 100644 index 64cd2e1b2a..0000000000 Binary files a/common/img/emoji/unicode/1f4c4.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4c5.png b/common/img/emoji/unicode/1f4c5.png deleted file mode 100644 index 6ad2efa5fd..0000000000 Binary files a/common/img/emoji/unicode/1f4c5.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4c6.png b/common/img/emoji/unicode/1f4c6.png deleted file mode 100644 index 900b868bb9..0000000000 Binary files a/common/img/emoji/unicode/1f4c6.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4c7.png b/common/img/emoji/unicode/1f4c7.png deleted file mode 100644 index 374e94e9e8..0000000000 Binary files a/common/img/emoji/unicode/1f4c7.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4c8.png b/common/img/emoji/unicode/1f4c8.png deleted file mode 100644 index de3e9ba7b5..0000000000 Binary files a/common/img/emoji/unicode/1f4c8.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4c9.png b/common/img/emoji/unicode/1f4c9.png deleted file mode 100644 index 65b82f0441..0000000000 Binary files a/common/img/emoji/unicode/1f4c9.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4ca.png b/common/img/emoji/unicode/1f4ca.png deleted file mode 100644 index 7871cc6032..0000000000 Binary files a/common/img/emoji/unicode/1f4ca.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4cb.png b/common/img/emoji/unicode/1f4cb.png deleted file mode 100644 index e2c74e6df8..0000000000 Binary files a/common/img/emoji/unicode/1f4cb.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4cc.png b/common/img/emoji/unicode/1f4cc.png deleted file mode 100644 index 540c4ecb88..0000000000 Binary files a/common/img/emoji/unicode/1f4cc.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4cd.png b/common/img/emoji/unicode/1f4cd.png deleted file mode 100644 index e498e92cf6..0000000000 Binary files a/common/img/emoji/unicode/1f4cd.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4ce.png b/common/img/emoji/unicode/1f4ce.png deleted file mode 100644 index 774412dc10..0000000000 Binary files a/common/img/emoji/unicode/1f4ce.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4cf.png b/common/img/emoji/unicode/1f4cf.png deleted file mode 100644 index af8cb4bcff..0000000000 Binary files a/common/img/emoji/unicode/1f4cf.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4d0.png b/common/img/emoji/unicode/1f4d0.png deleted file mode 100644 index 383677cb74..0000000000 Binary files a/common/img/emoji/unicode/1f4d0.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4d1.png b/common/img/emoji/unicode/1f4d1.png deleted file mode 100644 index 0c4e3bf17d..0000000000 Binary files a/common/img/emoji/unicode/1f4d1.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4d2.png b/common/img/emoji/unicode/1f4d2.png deleted file mode 100644 index e4f72aceac..0000000000 Binary files a/common/img/emoji/unicode/1f4d2.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4d3.png b/common/img/emoji/unicode/1f4d3.png deleted file mode 100644 index 07ea6087ed..0000000000 Binary files a/common/img/emoji/unicode/1f4d3.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4d4.png b/common/img/emoji/unicode/1f4d4.png deleted file mode 100644 index 4f3b14c85f..0000000000 Binary files a/common/img/emoji/unicode/1f4d4.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4d5.png b/common/img/emoji/unicode/1f4d5.png deleted file mode 100644 index 484029c5eb..0000000000 Binary files a/common/img/emoji/unicode/1f4d5.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4d6.png b/common/img/emoji/unicode/1f4d6.png deleted file mode 100644 index 8b698415c3..0000000000 Binary files a/common/img/emoji/unicode/1f4d6.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4d7.png b/common/img/emoji/unicode/1f4d7.png deleted file mode 100644 index e86651e5c5..0000000000 Binary files a/common/img/emoji/unicode/1f4d7.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4d8.png b/common/img/emoji/unicode/1f4d8.png deleted file mode 100644 index e2b9e8c797..0000000000 Binary files a/common/img/emoji/unicode/1f4d8.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4d9.png b/common/img/emoji/unicode/1f4d9.png deleted file mode 100644 index 49650d59e5..0000000000 Binary files a/common/img/emoji/unicode/1f4d9.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4da.png b/common/img/emoji/unicode/1f4da.png deleted file mode 100644 index dca06a1ad9..0000000000 Binary files a/common/img/emoji/unicode/1f4da.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4db.png b/common/img/emoji/unicode/1f4db.png deleted file mode 100644 index 2b712dcd55..0000000000 Binary files a/common/img/emoji/unicode/1f4db.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4dc.png b/common/img/emoji/unicode/1f4dc.png deleted file mode 100644 index c5a10e6b8f..0000000000 Binary files a/common/img/emoji/unicode/1f4dc.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4dd.png b/common/img/emoji/unicode/1f4dd.png deleted file mode 100644 index fc97ddbc92..0000000000 Binary files a/common/img/emoji/unicode/1f4dd.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4de.png b/common/img/emoji/unicode/1f4de.png deleted file mode 100644 index 36e21e0123..0000000000 Binary files a/common/img/emoji/unicode/1f4de.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4df.png b/common/img/emoji/unicode/1f4df.png deleted file mode 100644 index e3e1fc44ee..0000000000 Binary files a/common/img/emoji/unicode/1f4df.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4e0.png b/common/img/emoji/unicode/1f4e0.png deleted file mode 100644 index 62be2c958f..0000000000 Binary files a/common/img/emoji/unicode/1f4e0.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4e1.png b/common/img/emoji/unicode/1f4e1.png deleted file mode 100644 index 3481cc2ef4..0000000000 Binary files a/common/img/emoji/unicode/1f4e1.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4e2.png b/common/img/emoji/unicode/1f4e2.png deleted file mode 100644 index 752385e523..0000000000 Binary files a/common/img/emoji/unicode/1f4e2.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4e3.png b/common/img/emoji/unicode/1f4e3.png deleted file mode 100644 index 5d9319e72d..0000000000 Binary files a/common/img/emoji/unicode/1f4e3.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4e4.png b/common/img/emoji/unicode/1f4e4.png deleted file mode 100644 index 7ad15e649d..0000000000 Binary files a/common/img/emoji/unicode/1f4e4.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4e5.png b/common/img/emoji/unicode/1f4e5.png deleted file mode 100644 index e2df0f8970..0000000000 Binary files a/common/img/emoji/unicode/1f4e5.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4e6.png b/common/img/emoji/unicode/1f4e6.png deleted file mode 100644 index 26602af9d8..0000000000 Binary files a/common/img/emoji/unicode/1f4e6.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4e7.png b/common/img/emoji/unicode/1f4e7.png deleted file mode 100644 index 176a8e1e82..0000000000 Binary files a/common/img/emoji/unicode/1f4e7.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4e8.png b/common/img/emoji/unicode/1f4e8.png deleted file mode 100644 index afc8271251..0000000000 Binary files a/common/img/emoji/unicode/1f4e8.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4e9.png b/common/img/emoji/unicode/1f4e9.png deleted file mode 100644 index 0e01fd5f05..0000000000 Binary files a/common/img/emoji/unicode/1f4e9.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4ea.png b/common/img/emoji/unicode/1f4ea.png deleted file mode 100644 index a5982b69bb..0000000000 Binary files a/common/img/emoji/unicode/1f4ea.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4eb.png b/common/img/emoji/unicode/1f4eb.png deleted file mode 100644 index 8351e70760..0000000000 Binary files a/common/img/emoji/unicode/1f4eb.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4ec.png b/common/img/emoji/unicode/1f4ec.png deleted file mode 100644 index dae3459436..0000000000 Binary files a/common/img/emoji/unicode/1f4ec.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4ed.png b/common/img/emoji/unicode/1f4ed.png deleted file mode 100644 index 59f15c5d7d..0000000000 Binary files a/common/img/emoji/unicode/1f4ed.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4ee.png b/common/img/emoji/unicode/1f4ee.png deleted file mode 100644 index ce04b7008b..0000000000 Binary files a/common/img/emoji/unicode/1f4ee.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4ef.png b/common/img/emoji/unicode/1f4ef.png deleted file mode 100644 index e9b713bbec..0000000000 Binary files a/common/img/emoji/unicode/1f4ef.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4f0.png b/common/img/emoji/unicode/1f4f0.png deleted file mode 100644 index d171394e6a..0000000000 Binary files a/common/img/emoji/unicode/1f4f0.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4f1.png b/common/img/emoji/unicode/1f4f1.png deleted file mode 100644 index df007103b0..0000000000 Binary files a/common/img/emoji/unicode/1f4f1.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4f2.png b/common/img/emoji/unicode/1f4f2.png deleted file mode 100644 index 837897f261..0000000000 Binary files a/common/img/emoji/unicode/1f4f2.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4f3.png b/common/img/emoji/unicode/1f4f3.png deleted file mode 100644 index a716e96c63..0000000000 Binary files a/common/img/emoji/unicode/1f4f3.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4f4.png b/common/img/emoji/unicode/1f4f4.png deleted file mode 100644 index fa16c763c9..0000000000 Binary files a/common/img/emoji/unicode/1f4f4.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4f5.png b/common/img/emoji/unicode/1f4f5.png deleted file mode 100644 index 41df57cf82..0000000000 Binary files a/common/img/emoji/unicode/1f4f5.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4f6.png b/common/img/emoji/unicode/1f4f6.png deleted file mode 100644 index a4bd23ebf7..0000000000 Binary files a/common/img/emoji/unicode/1f4f6.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4f7.png b/common/img/emoji/unicode/1f4f7.png deleted file mode 100644 index 397d03b393..0000000000 Binary files a/common/img/emoji/unicode/1f4f7.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4f9.png b/common/img/emoji/unicode/1f4f9.png deleted file mode 100644 index 274cecdd6d..0000000000 Binary files a/common/img/emoji/unicode/1f4f9.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4fa.png b/common/img/emoji/unicode/1f4fa.png deleted file mode 100644 index 803dc3d412..0000000000 Binary files a/common/img/emoji/unicode/1f4fa.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4fb.png b/common/img/emoji/unicode/1f4fb.png deleted file mode 100644 index ea589efe32..0000000000 Binary files a/common/img/emoji/unicode/1f4fb.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f4fc.png b/common/img/emoji/unicode/1f4fc.png deleted file mode 100644 index 881081c177..0000000000 Binary files a/common/img/emoji/unicode/1f4fc.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f500.png b/common/img/emoji/unicode/1f500.png deleted file mode 100644 index 25cde18b25..0000000000 Binary files a/common/img/emoji/unicode/1f500.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f501.png b/common/img/emoji/unicode/1f501.png deleted file mode 100644 index 80113b6929..0000000000 Binary files a/common/img/emoji/unicode/1f501.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f502.png b/common/img/emoji/unicode/1f502.png deleted file mode 100644 index 3c47bcc1f3..0000000000 Binary files a/common/img/emoji/unicode/1f502.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f503.png b/common/img/emoji/unicode/1f503.png deleted file mode 100644 index 5f84d7e72b..0000000000 Binary files a/common/img/emoji/unicode/1f503.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f504.png b/common/img/emoji/unicode/1f504.png deleted file mode 100644 index 1933ae18b9..0000000000 Binary files a/common/img/emoji/unicode/1f504.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f505.png b/common/img/emoji/unicode/1f505.png deleted file mode 100644 index ea15bde4f0..0000000000 Binary files a/common/img/emoji/unicode/1f505.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f506.png b/common/img/emoji/unicode/1f506.png deleted file mode 100644 index ba9de7d409..0000000000 Binary files a/common/img/emoji/unicode/1f506.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f507.png b/common/img/emoji/unicode/1f507.png deleted file mode 100644 index 4cf67c367d..0000000000 Binary files a/common/img/emoji/unicode/1f507.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f508.png b/common/img/emoji/unicode/1f508.png deleted file mode 100644 index c884bd4f6c..0000000000 Binary files a/common/img/emoji/unicode/1f508.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f509.png b/common/img/emoji/unicode/1f509.png deleted file mode 100644 index 6aa4dbff4c..0000000000 Binary files a/common/img/emoji/unicode/1f509.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f50a.png b/common/img/emoji/unicode/1f50a.png deleted file mode 100644 index f63e814973..0000000000 Binary files a/common/img/emoji/unicode/1f50a.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f50b.png b/common/img/emoji/unicode/1f50b.png deleted file mode 100644 index aa7eedce4b..0000000000 Binary files a/common/img/emoji/unicode/1f50b.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f50c.png b/common/img/emoji/unicode/1f50c.png deleted file mode 100644 index 7a3d6cee68..0000000000 Binary files a/common/img/emoji/unicode/1f50c.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f50d.png b/common/img/emoji/unicode/1f50d.png deleted file mode 100644 index aa5b1d7c46..0000000000 Binary files a/common/img/emoji/unicode/1f50d.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f50e.png b/common/img/emoji/unicode/1f50e.png deleted file mode 100644 index 6e6cf11e6d..0000000000 Binary files a/common/img/emoji/unicode/1f50e.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f50f.png b/common/img/emoji/unicode/1f50f.png deleted file mode 100644 index 375e67e825..0000000000 Binary files a/common/img/emoji/unicode/1f50f.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f510.png b/common/img/emoji/unicode/1f510.png deleted file mode 100644 index e6fdf6cb20..0000000000 Binary files a/common/img/emoji/unicode/1f510.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f511.png b/common/img/emoji/unicode/1f511.png deleted file mode 100644 index 34673213f6..0000000000 Binary files a/common/img/emoji/unicode/1f511.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f512.png b/common/img/emoji/unicode/1f512.png deleted file mode 100644 index 4892b02355..0000000000 Binary files a/common/img/emoji/unicode/1f512.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f513.png b/common/img/emoji/unicode/1f513.png deleted file mode 100644 index 22b429cd02..0000000000 Binary files a/common/img/emoji/unicode/1f513.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f514.png b/common/img/emoji/unicode/1f514.png deleted file mode 100644 index 69acceb286..0000000000 Binary files a/common/img/emoji/unicode/1f514.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f515.png b/common/img/emoji/unicode/1f515.png deleted file mode 100644 index 613b81cd21..0000000000 Binary files a/common/img/emoji/unicode/1f515.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f516.png b/common/img/emoji/unicode/1f516.png deleted file mode 100644 index dbee45c605..0000000000 Binary files a/common/img/emoji/unicode/1f516.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f517.png b/common/img/emoji/unicode/1f517.png deleted file mode 100644 index ffb8f62cec..0000000000 Binary files a/common/img/emoji/unicode/1f517.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f518.png b/common/img/emoji/unicode/1f518.png deleted file mode 100644 index 63755eec25..0000000000 Binary files a/common/img/emoji/unicode/1f518.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f519.png b/common/img/emoji/unicode/1f519.png deleted file mode 100644 index 0cde628762..0000000000 Binary files a/common/img/emoji/unicode/1f519.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f51a.png b/common/img/emoji/unicode/1f51a.png deleted file mode 100644 index edb0bda245..0000000000 Binary files a/common/img/emoji/unicode/1f51a.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f51b.png b/common/img/emoji/unicode/1f51b.png deleted file mode 100644 index 3595387fb6..0000000000 Binary files a/common/img/emoji/unicode/1f51b.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f51c.png b/common/img/emoji/unicode/1f51c.png deleted file mode 100644 index 9386615a32..0000000000 Binary files a/common/img/emoji/unicode/1f51c.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f51d.png b/common/img/emoji/unicode/1f51d.png deleted file mode 100644 index 5aa4dd442d..0000000000 Binary files a/common/img/emoji/unicode/1f51d.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f51e.png b/common/img/emoji/unicode/1f51e.png deleted file mode 100644 index a789b3c620..0000000000 Binary files a/common/img/emoji/unicode/1f51e.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f51f.png b/common/img/emoji/unicode/1f51f.png deleted file mode 100644 index 71dac1c1cc..0000000000 Binary files a/common/img/emoji/unicode/1f51f.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f520.png b/common/img/emoji/unicode/1f520.png deleted file mode 100644 index ffc0cba4b4..0000000000 Binary files a/common/img/emoji/unicode/1f520.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f521.png b/common/img/emoji/unicode/1f521.png deleted file mode 100644 index 5218470b63..0000000000 Binary files a/common/img/emoji/unicode/1f521.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f522.png b/common/img/emoji/unicode/1f522.png deleted file mode 100644 index c47c2e1f9f..0000000000 Binary files a/common/img/emoji/unicode/1f522.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f523.png b/common/img/emoji/unicode/1f523.png deleted file mode 100644 index 16bc1da921..0000000000 Binary files a/common/img/emoji/unicode/1f523.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f524.png b/common/img/emoji/unicode/1f524.png deleted file mode 100644 index 505d40a155..0000000000 Binary files a/common/img/emoji/unicode/1f524.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f525.png b/common/img/emoji/unicode/1f525.png deleted file mode 100644 index f2a3149bbf..0000000000 Binary files a/common/img/emoji/unicode/1f525.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f526.png b/common/img/emoji/unicode/1f526.png deleted file mode 100644 index 215940aa8f..0000000000 Binary files a/common/img/emoji/unicode/1f526.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f527.png b/common/img/emoji/unicode/1f527.png deleted file mode 100644 index a87072ad13..0000000000 Binary files a/common/img/emoji/unicode/1f527.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f528.png b/common/img/emoji/unicode/1f528.png deleted file mode 100644 index 6b75bc37b3..0000000000 Binary files a/common/img/emoji/unicode/1f528.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f529.png b/common/img/emoji/unicode/1f529.png deleted file mode 100644 index bddfa72a7d..0000000000 Binary files a/common/img/emoji/unicode/1f529.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f52a.png b/common/img/emoji/unicode/1f52a.png deleted file mode 100644 index 18eade0acf..0000000000 Binary files a/common/img/emoji/unicode/1f52a.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f52b.png b/common/img/emoji/unicode/1f52b.png deleted file mode 100644 index c49dc52c6c..0000000000 Binary files a/common/img/emoji/unicode/1f52b.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f52c.png b/common/img/emoji/unicode/1f52c.png deleted file mode 100644 index f11d54c010..0000000000 Binary files a/common/img/emoji/unicode/1f52c.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f52d.png b/common/img/emoji/unicode/1f52d.png deleted file mode 100644 index 51fd8a07fa..0000000000 Binary files a/common/img/emoji/unicode/1f52d.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f52e.png b/common/img/emoji/unicode/1f52e.png deleted file mode 100644 index 6d2c6c42d4..0000000000 Binary files a/common/img/emoji/unicode/1f52e.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f52f.png b/common/img/emoji/unicode/1f52f.png deleted file mode 100644 index 010f8f5f95..0000000000 Binary files a/common/img/emoji/unicode/1f52f.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f530.png b/common/img/emoji/unicode/1f530.png deleted file mode 100644 index 1f022d175d..0000000000 Binary files a/common/img/emoji/unicode/1f530.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f531.png b/common/img/emoji/unicode/1f531.png deleted file mode 100644 index d79a7b4cce..0000000000 Binary files a/common/img/emoji/unicode/1f531.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f532.png b/common/img/emoji/unicode/1f532.png deleted file mode 100644 index 7332e397ca..0000000000 Binary files a/common/img/emoji/unicode/1f532.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f533.png b/common/img/emoji/unicode/1f533.png deleted file mode 100644 index 63c7a3ef40..0000000000 Binary files a/common/img/emoji/unicode/1f533.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f534.png b/common/img/emoji/unicode/1f534.png deleted file mode 100644 index b391289b20..0000000000 Binary files a/common/img/emoji/unicode/1f534.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f535.png b/common/img/emoji/unicode/1f535.png deleted file mode 100644 index a5b4ad4aaa..0000000000 Binary files a/common/img/emoji/unicode/1f535.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f536.png b/common/img/emoji/unicode/1f536.png deleted file mode 100644 index 46d52e5cb6..0000000000 Binary files a/common/img/emoji/unicode/1f536.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f537.png b/common/img/emoji/unicode/1f537.png deleted file mode 100644 index f4598ec0f2..0000000000 Binary files a/common/img/emoji/unicode/1f537.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f538.png b/common/img/emoji/unicode/1f538.png deleted file mode 100644 index 04941d37b6..0000000000 Binary files a/common/img/emoji/unicode/1f538.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f539.png b/common/img/emoji/unicode/1f539.png deleted file mode 100644 index 5a7b5d555a..0000000000 Binary files a/common/img/emoji/unicode/1f539.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f53a.png b/common/img/emoji/unicode/1f53a.png deleted file mode 100644 index 8c4428da8f..0000000000 Binary files a/common/img/emoji/unicode/1f53a.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f53b.png b/common/img/emoji/unicode/1f53b.png deleted file mode 100644 index 94832f060c..0000000000 Binary files a/common/img/emoji/unicode/1f53b.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f53c.png b/common/img/emoji/unicode/1f53c.png deleted file mode 100644 index 1217331977..0000000000 Binary files a/common/img/emoji/unicode/1f53c.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f53d.png b/common/img/emoji/unicode/1f53d.png deleted file mode 100644 index f7f2d51013..0000000000 Binary files a/common/img/emoji/unicode/1f53d.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f550.png b/common/img/emoji/unicode/1f550.png deleted file mode 100644 index ca34e89751..0000000000 Binary files a/common/img/emoji/unicode/1f550.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f551.png b/common/img/emoji/unicode/1f551.png deleted file mode 100644 index 1a12524ee4..0000000000 Binary files a/common/img/emoji/unicode/1f551.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f552.png b/common/img/emoji/unicode/1f552.png deleted file mode 100644 index cd99bb155d..0000000000 Binary files a/common/img/emoji/unicode/1f552.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f553.png b/common/img/emoji/unicode/1f553.png deleted file mode 100644 index 7274e8b072..0000000000 Binary files a/common/img/emoji/unicode/1f553.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f554.png b/common/img/emoji/unicode/1f554.png deleted file mode 100644 index 3ed5a81af4..0000000000 Binary files a/common/img/emoji/unicode/1f554.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f555.png b/common/img/emoji/unicode/1f555.png deleted file mode 100644 index ac38cb9260..0000000000 Binary files a/common/img/emoji/unicode/1f555.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f556.png b/common/img/emoji/unicode/1f556.png deleted file mode 100644 index 6a138dfdea..0000000000 Binary files a/common/img/emoji/unicode/1f556.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f557.png b/common/img/emoji/unicode/1f557.png deleted file mode 100644 index 6690cd74ea..0000000000 Binary files a/common/img/emoji/unicode/1f557.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f558.png b/common/img/emoji/unicode/1f558.png deleted file mode 100644 index c4ad74609f..0000000000 Binary files a/common/img/emoji/unicode/1f558.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f559.png b/common/img/emoji/unicode/1f559.png deleted file mode 100644 index f710bef5c4..0000000000 Binary files a/common/img/emoji/unicode/1f559.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f55a.png b/common/img/emoji/unicode/1f55a.png deleted file mode 100644 index fbc165b995..0000000000 Binary files a/common/img/emoji/unicode/1f55a.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f55b.png b/common/img/emoji/unicode/1f55b.png deleted file mode 100644 index c1ca82f395..0000000000 Binary files a/common/img/emoji/unicode/1f55b.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f55c.png b/common/img/emoji/unicode/1f55c.png deleted file mode 100644 index df93920190..0000000000 Binary files a/common/img/emoji/unicode/1f55c.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f55d.png b/common/img/emoji/unicode/1f55d.png deleted file mode 100644 index f12c6912af..0000000000 Binary files a/common/img/emoji/unicode/1f55d.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f55e.png b/common/img/emoji/unicode/1f55e.png deleted file mode 100644 index 1dc9628ea2..0000000000 Binary files a/common/img/emoji/unicode/1f55e.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f55f.png b/common/img/emoji/unicode/1f55f.png deleted file mode 100644 index 7726aaea1b..0000000000 Binary files a/common/img/emoji/unicode/1f55f.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f560.png b/common/img/emoji/unicode/1f560.png deleted file mode 100644 index e08d4ad2ba..0000000000 Binary files a/common/img/emoji/unicode/1f560.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f561.png b/common/img/emoji/unicode/1f561.png deleted file mode 100644 index 46f0681f1c..0000000000 Binary files a/common/img/emoji/unicode/1f561.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f562.png b/common/img/emoji/unicode/1f562.png deleted file mode 100644 index 18aab22fd8..0000000000 Binary files a/common/img/emoji/unicode/1f562.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f563.png b/common/img/emoji/unicode/1f563.png deleted file mode 100644 index ec3e382dd4..0000000000 Binary files a/common/img/emoji/unicode/1f563.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f564.png b/common/img/emoji/unicode/1f564.png deleted file mode 100644 index fd35221428..0000000000 Binary files a/common/img/emoji/unicode/1f564.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f565.png b/common/img/emoji/unicode/1f565.png deleted file mode 100644 index 84a3bc8fbd..0000000000 Binary files a/common/img/emoji/unicode/1f565.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f566.png b/common/img/emoji/unicode/1f566.png deleted file mode 100644 index 415999ec83..0000000000 Binary files a/common/img/emoji/unicode/1f566.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f567.png b/common/img/emoji/unicode/1f567.png deleted file mode 100644 index a6527154d1..0000000000 Binary files a/common/img/emoji/unicode/1f567.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f5fb.png b/common/img/emoji/unicode/1f5fb.png deleted file mode 100644 index 4c313e583f..0000000000 Binary files a/common/img/emoji/unicode/1f5fb.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f5fc.png b/common/img/emoji/unicode/1f5fc.png deleted file mode 100644 index e1cbd7a3c5..0000000000 Binary files a/common/img/emoji/unicode/1f5fc.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f5fd.png b/common/img/emoji/unicode/1f5fd.png deleted file mode 100644 index 9ad9028068..0000000000 Binary files a/common/img/emoji/unicode/1f5fd.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f5fe.png b/common/img/emoji/unicode/1f5fe.png deleted file mode 100644 index 4593280359..0000000000 Binary files a/common/img/emoji/unicode/1f5fe.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f5ff.png b/common/img/emoji/unicode/1f5ff.png deleted file mode 100644 index 61a1a9c21a..0000000000 Binary files a/common/img/emoji/unicode/1f5ff.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f600.png b/common/img/emoji/unicode/1f600.png deleted file mode 100644 index 0ef00d79d0..0000000000 Binary files a/common/img/emoji/unicode/1f600.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f601.png b/common/img/emoji/unicode/1f601.png deleted file mode 100644 index 591cfcef8b..0000000000 Binary files a/common/img/emoji/unicode/1f601.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f602.png b/common/img/emoji/unicode/1f602.png deleted file mode 100644 index 47df693d42..0000000000 Binary files a/common/img/emoji/unicode/1f602.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f603.png b/common/img/emoji/unicode/1f603.png deleted file mode 100644 index 77b581d68f..0000000000 Binary files a/common/img/emoji/unicode/1f603.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f604.png b/common/img/emoji/unicode/1f604.png deleted file mode 100644 index 81a8396899..0000000000 Binary files a/common/img/emoji/unicode/1f604.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f605.png b/common/img/emoji/unicode/1f605.png deleted file mode 100644 index 3903f717f3..0000000000 Binary files a/common/img/emoji/unicode/1f605.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f606.png b/common/img/emoji/unicode/1f606.png deleted file mode 100644 index 11c91eb22e..0000000000 Binary files a/common/img/emoji/unicode/1f606.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f607.png b/common/img/emoji/unicode/1f607.png deleted file mode 100644 index 503b614f8d..0000000000 Binary files a/common/img/emoji/unicode/1f607.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f608.png b/common/img/emoji/unicode/1f608.png deleted file mode 100644 index d904049309..0000000000 Binary files a/common/img/emoji/unicode/1f608.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f609.png b/common/img/emoji/unicode/1f609.png deleted file mode 100644 index 756766dd3e..0000000000 Binary files a/common/img/emoji/unicode/1f609.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f60a.png b/common/img/emoji/unicode/1f60a.png deleted file mode 100644 index 1e9021cb6f..0000000000 Binary files a/common/img/emoji/unicode/1f60a.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f60b.png b/common/img/emoji/unicode/1f60b.png deleted file mode 100644 index fc39637ecd..0000000000 Binary files a/common/img/emoji/unicode/1f60b.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f60c.png b/common/img/emoji/unicode/1f60c.png deleted file mode 100644 index 820cf315a1..0000000000 Binary files a/common/img/emoji/unicode/1f60c.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f60d.png b/common/img/emoji/unicode/1f60d.png deleted file mode 100644 index 0e5794270e..0000000000 Binary files a/common/img/emoji/unicode/1f60d.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f60e.png b/common/img/emoji/unicode/1f60e.png deleted file mode 100644 index 1c468a1c91..0000000000 Binary files a/common/img/emoji/unicode/1f60e.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f60f.png b/common/img/emoji/unicode/1f60f.png deleted file mode 100644 index bc6e5082c8..0000000000 Binary files a/common/img/emoji/unicode/1f60f.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f610.png b/common/img/emoji/unicode/1f610.png deleted file mode 100644 index 682a1ba066..0000000000 Binary files a/common/img/emoji/unicode/1f610.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f611.png b/common/img/emoji/unicode/1f611.png deleted file mode 100644 index 1798f24de1..0000000000 Binary files a/common/img/emoji/unicode/1f611.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f612.png b/common/img/emoji/unicode/1f612.png deleted file mode 100644 index 3722e6f575..0000000000 Binary files a/common/img/emoji/unicode/1f612.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f613.png b/common/img/emoji/unicode/1f613.png deleted file mode 100644 index e894b76996..0000000000 Binary files a/common/img/emoji/unicode/1f613.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f614.png b/common/img/emoji/unicode/1f614.png deleted file mode 100644 index 2f3bad9453..0000000000 Binary files a/common/img/emoji/unicode/1f614.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f615.png b/common/img/emoji/unicode/1f615.png deleted file mode 100644 index 18ff760ac9..0000000000 Binary files a/common/img/emoji/unicode/1f615.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f616.png b/common/img/emoji/unicode/1f616.png deleted file mode 100644 index a5877a0a79..0000000000 Binary files a/common/img/emoji/unicode/1f616.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f617.png b/common/img/emoji/unicode/1f617.png deleted file mode 100644 index eb049c80bd..0000000000 Binary files a/common/img/emoji/unicode/1f617.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f618.png b/common/img/emoji/unicode/1f618.png deleted file mode 100644 index af9a80b7f0..0000000000 Binary files a/common/img/emoji/unicode/1f618.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f619.png b/common/img/emoji/unicode/1f619.png deleted file mode 100644 index d85706e706..0000000000 Binary files a/common/img/emoji/unicode/1f619.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f61a.png b/common/img/emoji/unicode/1f61a.png deleted file mode 100644 index 449de19704..0000000000 Binary files a/common/img/emoji/unicode/1f61a.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f61b.png b/common/img/emoji/unicode/1f61b.png deleted file mode 100644 index 53c41433f5..0000000000 Binary files a/common/img/emoji/unicode/1f61b.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f61c.png b/common/img/emoji/unicode/1f61c.png deleted file mode 100644 index 6ae9d497d3..0000000000 Binary files a/common/img/emoji/unicode/1f61c.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f61d.png b/common/img/emoji/unicode/1f61d.png deleted file mode 100644 index 333716ee1f..0000000000 Binary files a/common/img/emoji/unicode/1f61d.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f61e.png b/common/img/emoji/unicode/1f61e.png deleted file mode 100644 index 8255200871..0000000000 Binary files a/common/img/emoji/unicode/1f61e.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f61f.png b/common/img/emoji/unicode/1f61f.png deleted file mode 100644 index afd9283fc0..0000000000 Binary files a/common/img/emoji/unicode/1f61f.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f620.png b/common/img/emoji/unicode/1f620.png deleted file mode 100644 index 34174f5e5c..0000000000 Binary files a/common/img/emoji/unicode/1f620.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f621.png b/common/img/emoji/unicode/1f621.png deleted file mode 100644 index c65ddff552..0000000000 Binary files a/common/img/emoji/unicode/1f621.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f622.png b/common/img/emoji/unicode/1f622.png deleted file mode 100644 index 6d0d9afd28..0000000000 Binary files a/common/img/emoji/unicode/1f622.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f623.png b/common/img/emoji/unicode/1f623.png deleted file mode 100644 index c7e433e8ec..0000000000 Binary files a/common/img/emoji/unicode/1f623.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f624.png b/common/img/emoji/unicode/1f624.png deleted file mode 100644 index 92f93bd102..0000000000 Binary files a/common/img/emoji/unicode/1f624.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f625.png b/common/img/emoji/unicode/1f625.png deleted file mode 100644 index fa5f9e7f9f..0000000000 Binary files a/common/img/emoji/unicode/1f625.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f626.png b/common/img/emoji/unicode/1f626.png deleted file mode 100644 index 7f8b6c77bd..0000000000 Binary files a/common/img/emoji/unicode/1f626.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f627.png b/common/img/emoji/unicode/1f627.png deleted file mode 100644 index c2edad796e..0000000000 Binary files a/common/img/emoji/unicode/1f627.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f628.png b/common/img/emoji/unicode/1f628.png deleted file mode 100644 index 513fce47b6..0000000000 Binary files a/common/img/emoji/unicode/1f628.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f629.png b/common/img/emoji/unicode/1f629.png deleted file mode 100644 index 0c5475411c..0000000000 Binary files a/common/img/emoji/unicode/1f629.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f62a.png b/common/img/emoji/unicode/1f62a.png deleted file mode 100644 index df4f55efd9..0000000000 Binary files a/common/img/emoji/unicode/1f62a.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f62b.png b/common/img/emoji/unicode/1f62b.png deleted file mode 100644 index 3a8eefe565..0000000000 Binary files a/common/img/emoji/unicode/1f62b.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f62c.png b/common/img/emoji/unicode/1f62c.png deleted file mode 100644 index f78e9407db..0000000000 Binary files a/common/img/emoji/unicode/1f62c.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f62d.png b/common/img/emoji/unicode/1f62d.png deleted file mode 100644 index 7d433183aa..0000000000 Binary files a/common/img/emoji/unicode/1f62d.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f62e.png b/common/img/emoji/unicode/1f62e.png deleted file mode 100644 index e5283582c3..0000000000 Binary files a/common/img/emoji/unicode/1f62e.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f62f.png b/common/img/emoji/unicode/1f62f.png deleted file mode 100644 index afa3f66865..0000000000 Binary files a/common/img/emoji/unicode/1f62f.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f630.png b/common/img/emoji/unicode/1f630.png deleted file mode 100644 index b9e39bc60f..0000000000 Binary files a/common/img/emoji/unicode/1f630.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f631.png b/common/img/emoji/unicode/1f631.png deleted file mode 100644 index 76bfc6b8a6..0000000000 Binary files a/common/img/emoji/unicode/1f631.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f632.png b/common/img/emoji/unicode/1f632.png deleted file mode 100644 index 858a83484a..0000000000 Binary files a/common/img/emoji/unicode/1f632.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f633.png b/common/img/emoji/unicode/1f633.png deleted file mode 100644 index 9b49410c0c..0000000000 Binary files a/common/img/emoji/unicode/1f633.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f634.png b/common/img/emoji/unicode/1f634.png deleted file mode 100644 index a2f3bf757e..0000000000 Binary files a/common/img/emoji/unicode/1f634.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f635.png b/common/img/emoji/unicode/1f635.png deleted file mode 100644 index 8001d6ff8f..0000000000 Binary files a/common/img/emoji/unicode/1f635.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f636.png b/common/img/emoji/unicode/1f636.png deleted file mode 100644 index d9ec7ca7d7..0000000000 Binary files a/common/img/emoji/unicode/1f636.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f637.png b/common/img/emoji/unicode/1f637.png deleted file mode 100644 index 05887e99c6..0000000000 Binary files a/common/img/emoji/unicode/1f637.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f638.png b/common/img/emoji/unicode/1f638.png deleted file mode 100644 index ad333ba3b6..0000000000 Binary files a/common/img/emoji/unicode/1f638.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f639.png b/common/img/emoji/unicode/1f639.png deleted file mode 100644 index 6c60cb0efc..0000000000 Binary files a/common/img/emoji/unicode/1f639.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f63a.png b/common/img/emoji/unicode/1f63a.png deleted file mode 100644 index dbf1b0276a..0000000000 Binary files a/common/img/emoji/unicode/1f63a.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f63b.png b/common/img/emoji/unicode/1f63b.png deleted file mode 100644 index eeba240e53..0000000000 Binary files a/common/img/emoji/unicode/1f63b.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f63c.png b/common/img/emoji/unicode/1f63c.png deleted file mode 100644 index 351565e246..0000000000 Binary files a/common/img/emoji/unicode/1f63c.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f63d.png b/common/img/emoji/unicode/1f63d.png deleted file mode 100644 index adc62fbe3c..0000000000 Binary files a/common/img/emoji/unicode/1f63d.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f63e.png b/common/img/emoji/unicode/1f63e.png deleted file mode 100644 index 4325fd48dd..0000000000 Binary files a/common/img/emoji/unicode/1f63e.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f63f.png b/common/img/emoji/unicode/1f63f.png deleted file mode 100644 index 42d4c27cab..0000000000 Binary files a/common/img/emoji/unicode/1f63f.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f640.png b/common/img/emoji/unicode/1f640.png deleted file mode 100644 index d94cd34ff5..0000000000 Binary files a/common/img/emoji/unicode/1f640.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f645.png b/common/img/emoji/unicode/1f645.png deleted file mode 100644 index d459a35bc1..0000000000 Binary files a/common/img/emoji/unicode/1f645.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f646.png b/common/img/emoji/unicode/1f646.png deleted file mode 100644 index e8b98194ed..0000000000 Binary files a/common/img/emoji/unicode/1f646.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f647.png b/common/img/emoji/unicode/1f647.png deleted file mode 100644 index 024cb61049..0000000000 Binary files a/common/img/emoji/unicode/1f647.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f648.png b/common/img/emoji/unicode/1f648.png deleted file mode 100644 index 0890a62227..0000000000 Binary files a/common/img/emoji/unicode/1f648.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f649.png b/common/img/emoji/unicode/1f649.png deleted file mode 100644 index f97a1f9a09..0000000000 Binary files a/common/img/emoji/unicode/1f649.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f64a.png b/common/img/emoji/unicode/1f64a.png deleted file mode 100644 index 87944c4de5..0000000000 Binary files a/common/img/emoji/unicode/1f64a.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f64b.png b/common/img/emoji/unicode/1f64b.png deleted file mode 100644 index e1741a40e7..0000000000 Binary files a/common/img/emoji/unicode/1f64b.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f64c.png b/common/img/emoji/unicode/1f64c.png deleted file mode 100644 index e03142bdce..0000000000 Binary files a/common/img/emoji/unicode/1f64c.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f64d.png b/common/img/emoji/unicode/1f64d.png deleted file mode 100644 index 6f34d5e159..0000000000 Binary files a/common/img/emoji/unicode/1f64d.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f64e.png b/common/img/emoji/unicode/1f64e.png deleted file mode 100644 index c4a95c3b2a..0000000000 Binary files a/common/img/emoji/unicode/1f64e.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f64f.png b/common/img/emoji/unicode/1f64f.png deleted file mode 100644 index f86c992d5a..0000000000 Binary files a/common/img/emoji/unicode/1f64f.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f680.png b/common/img/emoji/unicode/1f680.png deleted file mode 100644 index 783078d379..0000000000 Binary files a/common/img/emoji/unicode/1f680.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f681.png b/common/img/emoji/unicode/1f681.png deleted file mode 100644 index 8e82a0d587..0000000000 Binary files a/common/img/emoji/unicode/1f681.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f682.png b/common/img/emoji/unicode/1f682.png deleted file mode 100644 index 5495077667..0000000000 Binary files a/common/img/emoji/unicode/1f682.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f683.png b/common/img/emoji/unicode/1f683.png deleted file mode 100644 index 22361158fb..0000000000 Binary files a/common/img/emoji/unicode/1f683.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f684.png b/common/img/emoji/unicode/1f684.png deleted file mode 100644 index 8eca368458..0000000000 Binary files a/common/img/emoji/unicode/1f684.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f685.png b/common/img/emoji/unicode/1f685.png deleted file mode 100644 index 16651acff8..0000000000 Binary files a/common/img/emoji/unicode/1f685.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f686.png b/common/img/emoji/unicode/1f686.png deleted file mode 100644 index 9c0d3ab640..0000000000 Binary files a/common/img/emoji/unicode/1f686.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f687.png b/common/img/emoji/unicode/1f687.png deleted file mode 100644 index 7f34f6be34..0000000000 Binary files a/common/img/emoji/unicode/1f687.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f688.png b/common/img/emoji/unicode/1f688.png deleted file mode 100644 index bcfe801eec..0000000000 Binary files a/common/img/emoji/unicode/1f688.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f689.png b/common/img/emoji/unicode/1f689.png deleted file mode 100644 index e77daa8a75..0000000000 Binary files a/common/img/emoji/unicode/1f689.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f68a.png b/common/img/emoji/unicode/1f68a.png deleted file mode 100644 index 5eb29fb71c..0000000000 Binary files a/common/img/emoji/unicode/1f68a.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f68b.png b/common/img/emoji/unicode/1f68b.png deleted file mode 100644 index 0a8ea52b2b..0000000000 Binary files a/common/img/emoji/unicode/1f68b.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f68c.png b/common/img/emoji/unicode/1f68c.png deleted file mode 100644 index 823aa39e49..0000000000 Binary files a/common/img/emoji/unicode/1f68c.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f68d.png b/common/img/emoji/unicode/1f68d.png deleted file mode 100644 index 3695f76235..0000000000 Binary files a/common/img/emoji/unicode/1f68d.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f68e.png b/common/img/emoji/unicode/1f68e.png deleted file mode 100644 index b9740a53f8..0000000000 Binary files a/common/img/emoji/unicode/1f68e.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f68f.png b/common/img/emoji/unicode/1f68f.png deleted file mode 100644 index 99af2322ad..0000000000 Binary files a/common/img/emoji/unicode/1f68f.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f690.png b/common/img/emoji/unicode/1f690.png deleted file mode 100644 index c52cef2340..0000000000 Binary files a/common/img/emoji/unicode/1f690.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f691.png b/common/img/emoji/unicode/1f691.png deleted file mode 100644 index b740f45dba..0000000000 Binary files a/common/img/emoji/unicode/1f691.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f692.png b/common/img/emoji/unicode/1f692.png deleted file mode 100644 index 9e6c59c997..0000000000 Binary files a/common/img/emoji/unicode/1f692.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f693.png b/common/img/emoji/unicode/1f693.png deleted file mode 100644 index b8f17275ee..0000000000 Binary files a/common/img/emoji/unicode/1f693.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f694.png b/common/img/emoji/unicode/1f694.png deleted file mode 100644 index af20e7eff0..0000000000 Binary files a/common/img/emoji/unicode/1f694.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f695.png b/common/img/emoji/unicode/1f695.png deleted file mode 100644 index 60a50d365a..0000000000 Binary files a/common/img/emoji/unicode/1f695.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f696.png b/common/img/emoji/unicode/1f696.png deleted file mode 100644 index f78cf3103b..0000000000 Binary files a/common/img/emoji/unicode/1f696.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f697.png b/common/img/emoji/unicode/1f697.png deleted file mode 100644 index d70a2f0626..0000000000 Binary files a/common/img/emoji/unicode/1f697.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f698.png b/common/img/emoji/unicode/1f698.png deleted file mode 100644 index cb46de22cb..0000000000 Binary files a/common/img/emoji/unicode/1f698.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f699.png b/common/img/emoji/unicode/1f699.png deleted file mode 100644 index 978291e087..0000000000 Binary files a/common/img/emoji/unicode/1f699.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f69a.png b/common/img/emoji/unicode/1f69a.png deleted file mode 100644 index 3f25ba1f92..0000000000 Binary files a/common/img/emoji/unicode/1f69a.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f69b.png b/common/img/emoji/unicode/1f69b.png deleted file mode 100644 index 81ec1f9174..0000000000 Binary files a/common/img/emoji/unicode/1f69b.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f69c.png b/common/img/emoji/unicode/1f69c.png deleted file mode 100644 index 058fd3eda5..0000000000 Binary files a/common/img/emoji/unicode/1f69c.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f69d.png b/common/img/emoji/unicode/1f69d.png deleted file mode 100644 index 913d300246..0000000000 Binary files a/common/img/emoji/unicode/1f69d.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f69e.png b/common/img/emoji/unicode/1f69e.png deleted file mode 100644 index 1f3d1aab56..0000000000 Binary files a/common/img/emoji/unicode/1f69e.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f69f.png b/common/img/emoji/unicode/1f69f.png deleted file mode 100644 index aaa45f61f1..0000000000 Binary files a/common/img/emoji/unicode/1f69f.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f6a0.png b/common/img/emoji/unicode/1f6a0.png deleted file mode 100644 index 5688bb239a..0000000000 Binary files a/common/img/emoji/unicode/1f6a0.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f6a1.png b/common/img/emoji/unicode/1f6a1.png deleted file mode 100644 index 38f6dfe233..0000000000 Binary files a/common/img/emoji/unicode/1f6a1.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f6a2.png b/common/img/emoji/unicode/1f6a2.png deleted file mode 100644 index 5d2d8b602b..0000000000 Binary files a/common/img/emoji/unicode/1f6a2.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f6a3.png b/common/img/emoji/unicode/1f6a3.png deleted file mode 100644 index fe8ae3ecda..0000000000 Binary files a/common/img/emoji/unicode/1f6a3.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f6a4.png b/common/img/emoji/unicode/1f6a4.png deleted file mode 100644 index da6689b3be..0000000000 Binary files a/common/img/emoji/unicode/1f6a4.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f6a5.png b/common/img/emoji/unicode/1f6a5.png deleted file mode 100644 index 42eaf70912..0000000000 Binary files a/common/img/emoji/unicode/1f6a5.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f6a6.png b/common/img/emoji/unicode/1f6a6.png deleted file mode 100644 index 7a5ba35f09..0000000000 Binary files a/common/img/emoji/unicode/1f6a6.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f6a7.png b/common/img/emoji/unicode/1f6a7.png deleted file mode 100644 index 523e9f10bf..0000000000 Binary files a/common/img/emoji/unicode/1f6a7.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f6a8.png b/common/img/emoji/unicode/1f6a8.png deleted file mode 100644 index 6cf4a775e0..0000000000 Binary files a/common/img/emoji/unicode/1f6a8.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f6a9.png b/common/img/emoji/unicode/1f6a9.png deleted file mode 100644 index f9a3f32d71..0000000000 Binary files a/common/img/emoji/unicode/1f6a9.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f6aa.png b/common/img/emoji/unicode/1f6aa.png deleted file mode 100644 index 83c819ae46..0000000000 Binary files a/common/img/emoji/unicode/1f6aa.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f6ab.png b/common/img/emoji/unicode/1f6ab.png deleted file mode 100644 index a8444d18d2..0000000000 Binary files a/common/img/emoji/unicode/1f6ab.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f6ac.png b/common/img/emoji/unicode/1f6ac.png deleted file mode 100644 index 4aad6cbd7c..0000000000 Binary files a/common/img/emoji/unicode/1f6ac.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f6ad.png b/common/img/emoji/unicode/1f6ad.png deleted file mode 100644 index eb11d79115..0000000000 Binary files a/common/img/emoji/unicode/1f6ad.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f6ae.png b/common/img/emoji/unicode/1f6ae.png deleted file mode 100644 index c2e350c2dc..0000000000 Binary files a/common/img/emoji/unicode/1f6ae.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f6af.png b/common/img/emoji/unicode/1f6af.png deleted file mode 100644 index 38c7ae7af2..0000000000 Binary files a/common/img/emoji/unicode/1f6af.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f6b0.png b/common/img/emoji/unicode/1f6b0.png deleted file mode 100644 index e9fd56079c..0000000000 Binary files a/common/img/emoji/unicode/1f6b0.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f6b1.png b/common/img/emoji/unicode/1f6b1.png deleted file mode 100644 index 1b29d35b98..0000000000 Binary files a/common/img/emoji/unicode/1f6b1.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f6b2.png b/common/img/emoji/unicode/1f6b2.png deleted file mode 100644 index 6573860272..0000000000 Binary files a/common/img/emoji/unicode/1f6b2.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f6b3.png b/common/img/emoji/unicode/1f6b3.png deleted file mode 100644 index 4b26216645..0000000000 Binary files a/common/img/emoji/unicode/1f6b3.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f6b4.png b/common/img/emoji/unicode/1f6b4.png deleted file mode 100644 index 4e3e0549c2..0000000000 Binary files a/common/img/emoji/unicode/1f6b4.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f6b5.png b/common/img/emoji/unicode/1f6b5.png deleted file mode 100644 index b698897566..0000000000 Binary files a/common/img/emoji/unicode/1f6b5.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f6b6.png b/common/img/emoji/unicode/1f6b6.png deleted file mode 100644 index 7a2bfacfc9..0000000000 Binary files a/common/img/emoji/unicode/1f6b6.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f6b7.png b/common/img/emoji/unicode/1f6b7.png deleted file mode 100644 index c35f530b22..0000000000 Binary files a/common/img/emoji/unicode/1f6b7.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f6b8.png b/common/img/emoji/unicode/1f6b8.png deleted file mode 100644 index b0302ae625..0000000000 Binary files a/common/img/emoji/unicode/1f6b8.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f6b9.png b/common/img/emoji/unicode/1f6b9.png deleted file mode 100644 index abccfc9f2c..0000000000 Binary files a/common/img/emoji/unicode/1f6b9.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f6ba.png b/common/img/emoji/unicode/1f6ba.png deleted file mode 100644 index 518b76a6d2..0000000000 Binary files a/common/img/emoji/unicode/1f6ba.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f6bb.png b/common/img/emoji/unicode/1f6bb.png deleted file mode 100644 index 312ca3dc2d..0000000000 Binary files a/common/img/emoji/unicode/1f6bb.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f6bc.png b/common/img/emoji/unicode/1f6bc.png deleted file mode 100644 index 2e58725cf5..0000000000 Binary files a/common/img/emoji/unicode/1f6bc.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f6bd.png b/common/img/emoji/unicode/1f6bd.png deleted file mode 100644 index e5cc4119a1..0000000000 Binary files a/common/img/emoji/unicode/1f6bd.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f6be.png b/common/img/emoji/unicode/1f6be.png deleted file mode 100644 index dfe84d2a73..0000000000 Binary files a/common/img/emoji/unicode/1f6be.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f6bf.png b/common/img/emoji/unicode/1f6bf.png deleted file mode 100644 index 94f82aac02..0000000000 Binary files a/common/img/emoji/unicode/1f6bf.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f6c0.png b/common/img/emoji/unicode/1f6c0.png deleted file mode 100644 index 8f75d1d249..0000000000 Binary files a/common/img/emoji/unicode/1f6c0.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f6c1.png b/common/img/emoji/unicode/1f6c1.png deleted file mode 100644 index 1c3f844ab2..0000000000 Binary files a/common/img/emoji/unicode/1f6c1.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f6c2.png b/common/img/emoji/unicode/1f6c2.png deleted file mode 100644 index 675b76d378..0000000000 Binary files a/common/img/emoji/unicode/1f6c2.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f6c3.png b/common/img/emoji/unicode/1f6c3.png deleted file mode 100644 index 92691e3117..0000000000 Binary files a/common/img/emoji/unicode/1f6c3.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f6c4.png b/common/img/emoji/unicode/1f6c4.png deleted file mode 100644 index 59ae044a45..0000000000 Binary files a/common/img/emoji/unicode/1f6c4.png and /dev/null differ diff --git a/common/img/emoji/unicode/1f6c5.png b/common/img/emoji/unicode/1f6c5.png deleted file mode 100644 index 1c08b464db..0000000000 Binary files a/common/img/emoji/unicode/1f6c5.png and /dev/null differ diff --git a/common/img/emoji/unicode/203c-fe0f.png b/common/img/emoji/unicode/203c-fe0f.png deleted file mode 100644 index 7270f0afe6..0000000000 Binary files a/common/img/emoji/unicode/203c-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/203c.png b/common/img/emoji/unicode/203c.png deleted file mode 100644 index 7270f0afe6..0000000000 Binary files a/common/img/emoji/unicode/203c.png and /dev/null differ diff --git a/common/img/emoji/unicode/2049-fe0f.png b/common/img/emoji/unicode/2049-fe0f.png deleted file mode 100644 index 64304b9f5f..0000000000 Binary files a/common/img/emoji/unicode/2049-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/2049.png b/common/img/emoji/unicode/2049.png deleted file mode 100644 index 64304b9f5f..0000000000 Binary files a/common/img/emoji/unicode/2049.png and /dev/null differ diff --git a/common/img/emoji/unicode/2122.png b/common/img/emoji/unicode/2122.png deleted file mode 100644 index 9ba71b75ba..0000000000 Binary files a/common/img/emoji/unicode/2122.png and /dev/null differ diff --git a/common/img/emoji/unicode/2139-fe0f.png b/common/img/emoji/unicode/2139-fe0f.png deleted file mode 100644 index 9cb8b09b24..0000000000 Binary files a/common/img/emoji/unicode/2139-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/2139.png b/common/img/emoji/unicode/2139.png deleted file mode 100644 index 9cb8b09b24..0000000000 Binary files a/common/img/emoji/unicode/2139.png and /dev/null differ diff --git a/common/img/emoji/unicode/2194-fe0f.png b/common/img/emoji/unicode/2194-fe0f.png deleted file mode 100644 index b9fd11c515..0000000000 Binary files a/common/img/emoji/unicode/2194-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/2194.png b/common/img/emoji/unicode/2194.png deleted file mode 100644 index b9fd11c515..0000000000 Binary files a/common/img/emoji/unicode/2194.png and /dev/null differ diff --git a/common/img/emoji/unicode/2195-fe0f.png b/common/img/emoji/unicode/2195-fe0f.png deleted file mode 100644 index b718c21458..0000000000 Binary files a/common/img/emoji/unicode/2195-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/2195.png b/common/img/emoji/unicode/2195.png deleted file mode 100644 index b718c21458..0000000000 Binary files a/common/img/emoji/unicode/2195.png and /dev/null differ diff --git a/common/img/emoji/unicode/2196-fe0f.png b/common/img/emoji/unicode/2196-fe0f.png deleted file mode 100644 index 12aebd9a7d..0000000000 Binary files a/common/img/emoji/unicode/2196-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/2196.png b/common/img/emoji/unicode/2196.png deleted file mode 100644 index 12aebd9a7d..0000000000 Binary files a/common/img/emoji/unicode/2196.png and /dev/null differ diff --git a/common/img/emoji/unicode/2197-fe0f.png b/common/img/emoji/unicode/2197-fe0f.png deleted file mode 100644 index 0daf4e9408..0000000000 Binary files a/common/img/emoji/unicode/2197-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/2197.png b/common/img/emoji/unicode/2197.png deleted file mode 100644 index 0daf4e9408..0000000000 Binary files a/common/img/emoji/unicode/2197.png and /dev/null differ diff --git a/common/img/emoji/unicode/2198-fe0f.png b/common/img/emoji/unicode/2198-fe0f.png deleted file mode 100644 index 2a15cc7ccc..0000000000 Binary files a/common/img/emoji/unicode/2198-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/2198.png b/common/img/emoji/unicode/2198.png deleted file mode 100644 index 2a15cc7ccc..0000000000 Binary files a/common/img/emoji/unicode/2198.png and /dev/null differ diff --git a/common/img/emoji/unicode/2199-fe0f.png b/common/img/emoji/unicode/2199-fe0f.png deleted file mode 100644 index a4438cb6e7..0000000000 Binary files a/common/img/emoji/unicode/2199-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/2199.png b/common/img/emoji/unicode/2199.png deleted file mode 100644 index a4438cb6e7..0000000000 Binary files a/common/img/emoji/unicode/2199.png and /dev/null differ diff --git a/common/img/emoji/unicode/21a9-fe0f.png b/common/img/emoji/unicode/21a9-fe0f.png deleted file mode 100644 index bc45dfefd4..0000000000 Binary files a/common/img/emoji/unicode/21a9-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/21a9.png b/common/img/emoji/unicode/21a9.png deleted file mode 100644 index bc45dfefd4..0000000000 Binary files a/common/img/emoji/unicode/21a9.png and /dev/null differ diff --git a/common/img/emoji/unicode/21aa-fe0f.png b/common/img/emoji/unicode/21aa-fe0f.png deleted file mode 100644 index 8b4ea6e172..0000000000 Binary files a/common/img/emoji/unicode/21aa-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/21aa.png b/common/img/emoji/unicode/21aa.png deleted file mode 100644 index 8b4ea6e172..0000000000 Binary files a/common/img/emoji/unicode/21aa.png and /dev/null differ diff --git a/common/img/emoji/unicode/231a-fe0f.png b/common/img/emoji/unicode/231a-fe0f.png deleted file mode 100644 index d503bb87c2..0000000000 Binary files a/common/img/emoji/unicode/231a-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/231a.png b/common/img/emoji/unicode/231a.png deleted file mode 100644 index d503bb87c2..0000000000 Binary files a/common/img/emoji/unicode/231a.png and /dev/null differ diff --git a/common/img/emoji/unicode/231b-fe0f.png b/common/img/emoji/unicode/231b-fe0f.png deleted file mode 100644 index 405aab41be..0000000000 Binary files a/common/img/emoji/unicode/231b-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/231b.png b/common/img/emoji/unicode/231b.png deleted file mode 100644 index 405aab41be..0000000000 Binary files a/common/img/emoji/unicode/231b.png and /dev/null differ diff --git a/common/img/emoji/unicode/23e9.png b/common/img/emoji/unicode/23e9.png deleted file mode 100644 index b94a117262..0000000000 Binary files a/common/img/emoji/unicode/23e9.png and /dev/null differ diff --git a/common/img/emoji/unicode/23ea.png b/common/img/emoji/unicode/23ea.png deleted file mode 100644 index 13ba866ada..0000000000 Binary files a/common/img/emoji/unicode/23ea.png and /dev/null differ diff --git a/common/img/emoji/unicode/23eb.png b/common/img/emoji/unicode/23eb.png deleted file mode 100644 index d42979d4bf..0000000000 Binary files a/common/img/emoji/unicode/23eb.png and /dev/null differ diff --git a/common/img/emoji/unicode/23ec.png b/common/img/emoji/unicode/23ec.png deleted file mode 100644 index 2ecbebcda1..0000000000 Binary files a/common/img/emoji/unicode/23ec.png and /dev/null differ diff --git a/common/img/emoji/unicode/23f0.png b/common/img/emoji/unicode/23f0.png deleted file mode 100644 index 86ca8c8ed4..0000000000 Binary files a/common/img/emoji/unicode/23f0.png and /dev/null differ diff --git a/common/img/emoji/unicode/23f3.png b/common/img/emoji/unicode/23f3.png deleted file mode 100644 index 52c9eb7042..0000000000 Binary files a/common/img/emoji/unicode/23f3.png and /dev/null differ diff --git a/common/img/emoji/unicode/24c2-fe0f.png b/common/img/emoji/unicode/24c2-fe0f.png deleted file mode 100644 index 7424665e2b..0000000000 Binary files a/common/img/emoji/unicode/24c2-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/24c2.png b/common/img/emoji/unicode/24c2.png deleted file mode 100644 index 7424665e2b..0000000000 Binary files a/common/img/emoji/unicode/24c2.png and /dev/null differ diff --git a/common/img/emoji/unicode/25aa-fe0f.png b/common/img/emoji/unicode/25aa-fe0f.png deleted file mode 100644 index a247751ece..0000000000 Binary files a/common/img/emoji/unicode/25aa-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/25aa.png b/common/img/emoji/unicode/25aa.png deleted file mode 100644 index a247751ece..0000000000 Binary files a/common/img/emoji/unicode/25aa.png and /dev/null differ diff --git a/common/img/emoji/unicode/25ab-fe0f.png b/common/img/emoji/unicode/25ab-fe0f.png deleted file mode 100644 index 24ba879f46..0000000000 Binary files a/common/img/emoji/unicode/25ab-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/25ab.png b/common/img/emoji/unicode/25ab.png deleted file mode 100644 index 24ba879f46..0000000000 Binary files a/common/img/emoji/unicode/25ab.png and /dev/null differ diff --git a/common/img/emoji/unicode/25b6-fe0f.png b/common/img/emoji/unicode/25b6-fe0f.png deleted file mode 100644 index fbfe711b64..0000000000 Binary files a/common/img/emoji/unicode/25b6-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/25b6.png b/common/img/emoji/unicode/25b6.png deleted file mode 100644 index fbfe711b64..0000000000 Binary files a/common/img/emoji/unicode/25b6.png and /dev/null differ diff --git a/common/img/emoji/unicode/25c0-fe0f.png b/common/img/emoji/unicode/25c0-fe0f.png deleted file mode 100644 index 2be422ba39..0000000000 Binary files a/common/img/emoji/unicode/25c0-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/25c0.png b/common/img/emoji/unicode/25c0.png deleted file mode 100644 index 2be422ba39..0000000000 Binary files a/common/img/emoji/unicode/25c0.png and /dev/null differ diff --git a/common/img/emoji/unicode/25fb-fe0f.png b/common/img/emoji/unicode/25fb-fe0f.png deleted file mode 100644 index 199808bcf2..0000000000 Binary files a/common/img/emoji/unicode/25fb-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/25fb.png b/common/img/emoji/unicode/25fb.png deleted file mode 100644 index 199808bcf2..0000000000 Binary files a/common/img/emoji/unicode/25fb.png and /dev/null differ diff --git a/common/img/emoji/unicode/25fc-fe0f.png b/common/img/emoji/unicode/25fc-fe0f.png deleted file mode 100644 index 204cce12c2..0000000000 Binary files a/common/img/emoji/unicode/25fc-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/25fc.png b/common/img/emoji/unicode/25fc.png deleted file mode 100644 index 204cce12c2..0000000000 Binary files a/common/img/emoji/unicode/25fc.png and /dev/null differ diff --git a/common/img/emoji/unicode/25fd-fe0f.png b/common/img/emoji/unicode/25fd-fe0f.png deleted file mode 100644 index a115cdc49e..0000000000 Binary files a/common/img/emoji/unicode/25fd-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/25fd.png b/common/img/emoji/unicode/25fd.png deleted file mode 100644 index a115cdc49e..0000000000 Binary files a/common/img/emoji/unicode/25fd.png and /dev/null differ diff --git a/common/img/emoji/unicode/25fe-fe0f.png b/common/img/emoji/unicode/25fe-fe0f.png deleted file mode 100644 index 25bfe9c453..0000000000 Binary files a/common/img/emoji/unicode/25fe-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/25fe.png b/common/img/emoji/unicode/25fe.png deleted file mode 100644 index 25bfe9c453..0000000000 Binary files a/common/img/emoji/unicode/25fe.png and /dev/null differ diff --git a/common/img/emoji/unicode/2600-fe0f.png b/common/img/emoji/unicode/2600-fe0f.png deleted file mode 100644 index d23c095e08..0000000000 Binary files a/common/img/emoji/unicode/2600-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/2600.png b/common/img/emoji/unicode/2600.png deleted file mode 100644 index d23c095e08..0000000000 Binary files a/common/img/emoji/unicode/2600.png and /dev/null differ diff --git a/common/img/emoji/unicode/2601-fe0f.png b/common/img/emoji/unicode/2601-fe0f.png deleted file mode 100644 index b31c08c0b8..0000000000 Binary files a/common/img/emoji/unicode/2601-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/2601.png b/common/img/emoji/unicode/2601.png deleted file mode 100644 index b31c08c0b8..0000000000 Binary files a/common/img/emoji/unicode/2601.png and /dev/null differ diff --git a/common/img/emoji/unicode/260e-fe0f.png b/common/img/emoji/unicode/260e-fe0f.png deleted file mode 100644 index 87d2559b55..0000000000 Binary files a/common/img/emoji/unicode/260e-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/260e.png b/common/img/emoji/unicode/260e.png deleted file mode 100644 index 87d2559b55..0000000000 Binary files a/common/img/emoji/unicode/260e.png and /dev/null differ diff --git a/common/img/emoji/unicode/2611-fe0f.png b/common/img/emoji/unicode/2611-fe0f.png deleted file mode 100644 index f07a466c77..0000000000 Binary files a/common/img/emoji/unicode/2611-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/2611.png b/common/img/emoji/unicode/2611.png deleted file mode 100644 index f07a466c77..0000000000 Binary files a/common/img/emoji/unicode/2611.png and /dev/null differ diff --git a/common/img/emoji/unicode/2614-fe0f.png b/common/img/emoji/unicode/2614-fe0f.png deleted file mode 100644 index 1db722fa66..0000000000 Binary files a/common/img/emoji/unicode/2614-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/2614.png b/common/img/emoji/unicode/2614.png deleted file mode 100644 index 1db722fa66..0000000000 Binary files a/common/img/emoji/unicode/2614.png and /dev/null differ diff --git a/common/img/emoji/unicode/2615-fe0f.png b/common/img/emoji/unicode/2615-fe0f.png deleted file mode 100644 index 57e1adcb04..0000000000 Binary files a/common/img/emoji/unicode/2615-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/2615.png b/common/img/emoji/unicode/2615.png deleted file mode 100644 index 57e1adcb04..0000000000 Binary files a/common/img/emoji/unicode/2615.png and /dev/null differ diff --git a/common/img/emoji/unicode/261d-fe0f.png b/common/img/emoji/unicode/261d-fe0f.png deleted file mode 100644 index 01896e214a..0000000000 Binary files a/common/img/emoji/unicode/261d-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/261d.png b/common/img/emoji/unicode/261d.png deleted file mode 100644 index 01896e214a..0000000000 Binary files a/common/img/emoji/unicode/261d.png and /dev/null differ diff --git a/common/img/emoji/unicode/263a-fe0f.png b/common/img/emoji/unicode/263a-fe0f.png deleted file mode 100644 index bbab82d3bb..0000000000 Binary files a/common/img/emoji/unicode/263a-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/263a.png b/common/img/emoji/unicode/263a.png deleted file mode 100644 index bbab82d3bb..0000000000 Binary files a/common/img/emoji/unicode/263a.png and /dev/null differ diff --git a/common/img/emoji/unicode/2648-fe0f.png b/common/img/emoji/unicode/2648-fe0f.png deleted file mode 100644 index d676fd3920..0000000000 Binary files a/common/img/emoji/unicode/2648-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/2648.png b/common/img/emoji/unicode/2648.png deleted file mode 100644 index d676fd3920..0000000000 Binary files a/common/img/emoji/unicode/2648.png and /dev/null differ diff --git a/common/img/emoji/unicode/2649-fe0f.png b/common/img/emoji/unicode/2649-fe0f.png deleted file mode 100644 index 6af582f69d..0000000000 Binary files a/common/img/emoji/unicode/2649-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/2649.png b/common/img/emoji/unicode/2649.png deleted file mode 100644 index 6af582f69d..0000000000 Binary files a/common/img/emoji/unicode/2649.png and /dev/null differ diff --git a/common/img/emoji/unicode/264a-fe0f.png b/common/img/emoji/unicode/264a-fe0f.png deleted file mode 100644 index d926f6e88e..0000000000 Binary files a/common/img/emoji/unicode/264a-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/264a.png b/common/img/emoji/unicode/264a.png deleted file mode 100644 index d926f6e88e..0000000000 Binary files a/common/img/emoji/unicode/264a.png and /dev/null differ diff --git a/common/img/emoji/unicode/264b-fe0f.png b/common/img/emoji/unicode/264b-fe0f.png deleted file mode 100644 index ea43a4a2a0..0000000000 Binary files a/common/img/emoji/unicode/264b-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/264b.png b/common/img/emoji/unicode/264b.png deleted file mode 100644 index ea43a4a2a0..0000000000 Binary files a/common/img/emoji/unicode/264b.png and /dev/null differ diff --git a/common/img/emoji/unicode/264c-fe0f.png b/common/img/emoji/unicode/264c-fe0f.png deleted file mode 100644 index e025933b2f..0000000000 Binary files a/common/img/emoji/unicode/264c-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/264c.png b/common/img/emoji/unicode/264c.png deleted file mode 100644 index e025933b2f..0000000000 Binary files a/common/img/emoji/unicode/264c.png and /dev/null differ diff --git a/common/img/emoji/unicode/264d-fe0f.png b/common/img/emoji/unicode/264d-fe0f.png deleted file mode 100644 index 72e1763f57..0000000000 Binary files a/common/img/emoji/unicode/264d-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/264d.png b/common/img/emoji/unicode/264d.png deleted file mode 100644 index 72e1763f57..0000000000 Binary files a/common/img/emoji/unicode/264d.png and /dev/null differ diff --git a/common/img/emoji/unicode/264e-fe0f.png b/common/img/emoji/unicode/264e-fe0f.png deleted file mode 100644 index c9062dd2ee..0000000000 Binary files a/common/img/emoji/unicode/264e-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/264e.png b/common/img/emoji/unicode/264e.png deleted file mode 100644 index c9062dd2ee..0000000000 Binary files a/common/img/emoji/unicode/264e.png and /dev/null differ diff --git a/common/img/emoji/unicode/264f-fe0f.png b/common/img/emoji/unicode/264f-fe0f.png deleted file mode 100644 index 67fcea1658..0000000000 Binary files a/common/img/emoji/unicode/264f-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/264f.png b/common/img/emoji/unicode/264f.png deleted file mode 100644 index 67fcea1658..0000000000 Binary files a/common/img/emoji/unicode/264f.png and /dev/null differ diff --git a/common/img/emoji/unicode/2650-fe0f.png b/common/img/emoji/unicode/2650-fe0f.png deleted file mode 100644 index 8b5435baaa..0000000000 Binary files a/common/img/emoji/unicode/2650-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/2650.png b/common/img/emoji/unicode/2650.png deleted file mode 100644 index 8b5435baaa..0000000000 Binary files a/common/img/emoji/unicode/2650.png and /dev/null differ diff --git a/common/img/emoji/unicode/2651-fe0f.png b/common/img/emoji/unicode/2651-fe0f.png deleted file mode 100644 index f2044e7893..0000000000 Binary files a/common/img/emoji/unicode/2651-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/2651.png b/common/img/emoji/unicode/2651.png deleted file mode 100644 index f2044e7893..0000000000 Binary files a/common/img/emoji/unicode/2651.png and /dev/null differ diff --git a/common/img/emoji/unicode/2652-fe0f.png b/common/img/emoji/unicode/2652-fe0f.png deleted file mode 100644 index cbff66edcf..0000000000 Binary files a/common/img/emoji/unicode/2652-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/2652.png b/common/img/emoji/unicode/2652.png deleted file mode 100644 index cbff66edcf..0000000000 Binary files a/common/img/emoji/unicode/2652.png and /dev/null differ diff --git a/common/img/emoji/unicode/2653-fe0f.png b/common/img/emoji/unicode/2653-fe0f.png deleted file mode 100644 index 5a2da0a059..0000000000 Binary files a/common/img/emoji/unicode/2653-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/2653.png b/common/img/emoji/unicode/2653.png deleted file mode 100644 index 5a2da0a059..0000000000 Binary files a/common/img/emoji/unicode/2653.png and /dev/null differ diff --git a/common/img/emoji/unicode/2660-fe0f.png b/common/img/emoji/unicode/2660-fe0f.png deleted file mode 100644 index 133a1aba8a..0000000000 Binary files a/common/img/emoji/unicode/2660-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/2660.png b/common/img/emoji/unicode/2660.png deleted file mode 100644 index 133a1aba8a..0000000000 Binary files a/common/img/emoji/unicode/2660.png and /dev/null differ diff --git a/common/img/emoji/unicode/2663-fe0f.png b/common/img/emoji/unicode/2663-fe0f.png deleted file mode 100644 index bfab536569..0000000000 Binary files a/common/img/emoji/unicode/2663-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/2663.png b/common/img/emoji/unicode/2663.png deleted file mode 100644 index bfab536569..0000000000 Binary files a/common/img/emoji/unicode/2663.png and /dev/null differ diff --git a/common/img/emoji/unicode/2665-fe0f.png b/common/img/emoji/unicode/2665-fe0f.png deleted file mode 100644 index e894715385..0000000000 Binary files a/common/img/emoji/unicode/2665-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/2665.png b/common/img/emoji/unicode/2665.png deleted file mode 100644 index e894715385..0000000000 Binary files a/common/img/emoji/unicode/2665.png and /dev/null differ diff --git a/common/img/emoji/unicode/2666-fe0f.png b/common/img/emoji/unicode/2666-fe0f.png deleted file mode 100644 index fe0827758b..0000000000 Binary files a/common/img/emoji/unicode/2666-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/2666.png b/common/img/emoji/unicode/2666.png deleted file mode 100644 index fe0827758b..0000000000 Binary files a/common/img/emoji/unicode/2666.png and /dev/null differ diff --git a/common/img/emoji/unicode/2668-fe0f.png b/common/img/emoji/unicode/2668-fe0f.png deleted file mode 100644 index a0bc9d75f2..0000000000 Binary files a/common/img/emoji/unicode/2668-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/2668.png b/common/img/emoji/unicode/2668.png deleted file mode 100644 index a0bc9d75f2..0000000000 Binary files a/common/img/emoji/unicode/2668.png and /dev/null differ diff --git a/common/img/emoji/unicode/267b-fe0f.png b/common/img/emoji/unicode/267b-fe0f.png deleted file mode 100644 index 99104c0e9c..0000000000 Binary files a/common/img/emoji/unicode/267b-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/267b.png b/common/img/emoji/unicode/267b.png deleted file mode 100644 index 99104c0e9c..0000000000 Binary files a/common/img/emoji/unicode/267b.png and /dev/null differ diff --git a/common/img/emoji/unicode/267f-fe0f.png b/common/img/emoji/unicode/267f-fe0f.png deleted file mode 100644 index eddcdd7977..0000000000 Binary files a/common/img/emoji/unicode/267f-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/267f.png b/common/img/emoji/unicode/267f.png deleted file mode 100644 index eddcdd7977..0000000000 Binary files a/common/img/emoji/unicode/267f.png and /dev/null differ diff --git a/common/img/emoji/unicode/2693-fe0f.png b/common/img/emoji/unicode/2693-fe0f.png deleted file mode 100644 index 0c5192e647..0000000000 Binary files a/common/img/emoji/unicode/2693-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/2693.png b/common/img/emoji/unicode/2693.png deleted file mode 100644 index 0c5192e647..0000000000 Binary files a/common/img/emoji/unicode/2693.png and /dev/null differ diff --git a/common/img/emoji/unicode/26a0-fe0f.png b/common/img/emoji/unicode/26a0-fe0f.png deleted file mode 100644 index 466658d99a..0000000000 Binary files a/common/img/emoji/unicode/26a0-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/26a0.png b/common/img/emoji/unicode/26a0.png deleted file mode 100644 index 466658d99a..0000000000 Binary files a/common/img/emoji/unicode/26a0.png and /dev/null differ diff --git a/common/img/emoji/unicode/26a1-fe0f.png b/common/img/emoji/unicode/26a1-fe0f.png deleted file mode 100644 index 260c531b9e..0000000000 Binary files a/common/img/emoji/unicode/26a1-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/26a1.png b/common/img/emoji/unicode/26a1.png deleted file mode 100644 index 260c531b9e..0000000000 Binary files a/common/img/emoji/unicode/26a1.png and /dev/null differ diff --git a/common/img/emoji/unicode/26aa-fe0f.png b/common/img/emoji/unicode/26aa-fe0f.png deleted file mode 100644 index da782ae297..0000000000 Binary files a/common/img/emoji/unicode/26aa-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/26aa.png b/common/img/emoji/unicode/26aa.png deleted file mode 100644 index da782ae297..0000000000 Binary files a/common/img/emoji/unicode/26aa.png and /dev/null differ diff --git a/common/img/emoji/unicode/26ab-fe0f.png b/common/img/emoji/unicode/26ab-fe0f.png deleted file mode 100644 index e46f9df615..0000000000 Binary files a/common/img/emoji/unicode/26ab-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/26ab.png b/common/img/emoji/unicode/26ab.png deleted file mode 100644 index e46f9df615..0000000000 Binary files a/common/img/emoji/unicode/26ab.png and /dev/null differ diff --git a/common/img/emoji/unicode/26bd-fe0f.png b/common/img/emoji/unicode/26bd-fe0f.png deleted file mode 100644 index 1e118b5b18..0000000000 Binary files a/common/img/emoji/unicode/26bd-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/26bd.png b/common/img/emoji/unicode/26bd.png deleted file mode 100644 index 1e118b5b18..0000000000 Binary files a/common/img/emoji/unicode/26bd.png and /dev/null differ diff --git a/common/img/emoji/unicode/26be-fe0f.png b/common/img/emoji/unicode/26be-fe0f.png deleted file mode 100644 index da004e2ead..0000000000 Binary files a/common/img/emoji/unicode/26be-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/26be.png b/common/img/emoji/unicode/26be.png deleted file mode 100644 index da004e2ead..0000000000 Binary files a/common/img/emoji/unicode/26be.png and /dev/null differ diff --git a/common/img/emoji/unicode/26c4-fe0f.png b/common/img/emoji/unicode/26c4-fe0f.png deleted file mode 100644 index a97902e530..0000000000 Binary files a/common/img/emoji/unicode/26c4-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/26c4.png b/common/img/emoji/unicode/26c4.png deleted file mode 100644 index a97902e530..0000000000 Binary files a/common/img/emoji/unicode/26c4.png and /dev/null differ diff --git a/common/img/emoji/unicode/26c5-fe0f.png b/common/img/emoji/unicode/26c5-fe0f.png deleted file mode 100644 index 020dd5ff69..0000000000 Binary files a/common/img/emoji/unicode/26c5-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/26c5.png b/common/img/emoji/unicode/26c5.png deleted file mode 100644 index 020dd5ff69..0000000000 Binary files a/common/img/emoji/unicode/26c5.png and /dev/null differ diff --git a/common/img/emoji/unicode/26ce.png b/common/img/emoji/unicode/26ce.png deleted file mode 100644 index 4eef715bc2..0000000000 Binary files a/common/img/emoji/unicode/26ce.png and /dev/null differ diff --git a/common/img/emoji/unicode/26d4-fe0f.png b/common/img/emoji/unicode/26d4-fe0f.png deleted file mode 100644 index cf2086a8e7..0000000000 Binary files a/common/img/emoji/unicode/26d4-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/26d4.png b/common/img/emoji/unicode/26d4.png deleted file mode 100644 index cf2086a8e7..0000000000 Binary files a/common/img/emoji/unicode/26d4.png and /dev/null differ diff --git a/common/img/emoji/unicode/26ea-fe0f.png b/common/img/emoji/unicode/26ea-fe0f.png deleted file mode 100644 index 4c07c6b9ea..0000000000 Binary files a/common/img/emoji/unicode/26ea-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/26ea.png b/common/img/emoji/unicode/26ea.png deleted file mode 100644 index 4c07c6b9ea..0000000000 Binary files a/common/img/emoji/unicode/26ea.png and /dev/null differ diff --git a/common/img/emoji/unicode/26f2-fe0f.png b/common/img/emoji/unicode/26f2-fe0f.png deleted file mode 100644 index da126e6486..0000000000 Binary files a/common/img/emoji/unicode/26f2-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/26f2.png b/common/img/emoji/unicode/26f2.png deleted file mode 100644 index da126e6486..0000000000 Binary files a/common/img/emoji/unicode/26f2.png and /dev/null differ diff --git a/common/img/emoji/unicode/26f3-fe0f.png b/common/img/emoji/unicode/26f3-fe0f.png deleted file mode 100644 index cba2116a7e..0000000000 Binary files a/common/img/emoji/unicode/26f3-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/26f3.png b/common/img/emoji/unicode/26f3.png deleted file mode 100644 index cba2116a7e..0000000000 Binary files a/common/img/emoji/unicode/26f3.png and /dev/null differ diff --git a/common/img/emoji/unicode/26f5-fe0f.png b/common/img/emoji/unicode/26f5-fe0f.png deleted file mode 100644 index ff656dc62b..0000000000 Binary files a/common/img/emoji/unicode/26f5-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/26f5.png b/common/img/emoji/unicode/26f5.png deleted file mode 100644 index ff656dc62b..0000000000 Binary files a/common/img/emoji/unicode/26f5.png and /dev/null differ diff --git a/common/img/emoji/unicode/26fa-fe0f.png b/common/img/emoji/unicode/26fa-fe0f.png deleted file mode 100644 index 5c0d20e48b..0000000000 Binary files a/common/img/emoji/unicode/26fa-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/26fa.png b/common/img/emoji/unicode/26fa.png deleted file mode 100644 index 5c0d20e48b..0000000000 Binary files a/common/img/emoji/unicode/26fa.png and /dev/null differ diff --git a/common/img/emoji/unicode/26fd-fe0f.png b/common/img/emoji/unicode/26fd-fe0f.png deleted file mode 100644 index 54c29aeb1d..0000000000 Binary files a/common/img/emoji/unicode/26fd-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/26fd.png b/common/img/emoji/unicode/26fd.png deleted file mode 100644 index 54c29aeb1d..0000000000 Binary files a/common/img/emoji/unicode/26fd.png and /dev/null differ diff --git a/common/img/emoji/unicode/2702-fe0f.png b/common/img/emoji/unicode/2702-fe0f.png deleted file mode 100644 index 020e052244..0000000000 Binary files a/common/img/emoji/unicode/2702-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/2702.png b/common/img/emoji/unicode/2702.png deleted file mode 100644 index 020e052244..0000000000 Binary files a/common/img/emoji/unicode/2702.png and /dev/null differ diff --git a/common/img/emoji/unicode/2705.png b/common/img/emoji/unicode/2705.png deleted file mode 100644 index 61dc0583cf..0000000000 Binary files a/common/img/emoji/unicode/2705.png and /dev/null differ diff --git a/common/img/emoji/unicode/2708-fe0f.png b/common/img/emoji/unicode/2708-fe0f.png deleted file mode 100644 index 8407cb6757..0000000000 Binary files a/common/img/emoji/unicode/2708-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/2708.png b/common/img/emoji/unicode/2708.png deleted file mode 100644 index 8407cb6757..0000000000 Binary files a/common/img/emoji/unicode/2708.png and /dev/null differ diff --git a/common/img/emoji/unicode/2709-fe0f.png b/common/img/emoji/unicode/2709-fe0f.png deleted file mode 100644 index 3631861bbf..0000000000 Binary files a/common/img/emoji/unicode/2709-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/2709.png b/common/img/emoji/unicode/2709.png deleted file mode 100644 index 3631861bbf..0000000000 Binary files a/common/img/emoji/unicode/2709.png and /dev/null differ diff --git a/common/img/emoji/unicode/270a.png b/common/img/emoji/unicode/270a.png deleted file mode 100644 index ecc8874c2f..0000000000 Binary files a/common/img/emoji/unicode/270a.png and /dev/null differ diff --git a/common/img/emoji/unicode/270b.png b/common/img/emoji/unicode/270b.png deleted file mode 100644 index 5e45c25a56..0000000000 Binary files a/common/img/emoji/unicode/270b.png and /dev/null differ diff --git a/common/img/emoji/unicode/270c-fe0f.png b/common/img/emoji/unicode/270c-fe0f.png deleted file mode 100644 index f61267c281..0000000000 Binary files a/common/img/emoji/unicode/270c-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/270c.png b/common/img/emoji/unicode/270c.png deleted file mode 100644 index f61267c281..0000000000 Binary files a/common/img/emoji/unicode/270c.png and /dev/null differ diff --git a/common/img/emoji/unicode/270f-fe0f.png b/common/img/emoji/unicode/270f-fe0f.png deleted file mode 100644 index e624373b49..0000000000 Binary files a/common/img/emoji/unicode/270f-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/270f.png b/common/img/emoji/unicode/270f.png deleted file mode 100644 index e624373b49..0000000000 Binary files a/common/img/emoji/unicode/270f.png and /dev/null differ diff --git a/common/img/emoji/unicode/2712-fe0f.png b/common/img/emoji/unicode/2712-fe0f.png deleted file mode 100644 index 29f6994c11..0000000000 Binary files a/common/img/emoji/unicode/2712-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/2712.png b/common/img/emoji/unicode/2712.png deleted file mode 100644 index 29f6994c11..0000000000 Binary files a/common/img/emoji/unicode/2712.png and /dev/null differ diff --git a/common/img/emoji/unicode/2714-fe0f.png b/common/img/emoji/unicode/2714-fe0f.png deleted file mode 100644 index 336d2626d0..0000000000 Binary files a/common/img/emoji/unicode/2714-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/2714.png b/common/img/emoji/unicode/2714.png deleted file mode 100644 index 336d2626d0..0000000000 Binary files a/common/img/emoji/unicode/2714.png and /dev/null differ diff --git a/common/img/emoji/unicode/2716-fe0f.png b/common/img/emoji/unicode/2716-fe0f.png deleted file mode 100644 index 13d6660786..0000000000 Binary files a/common/img/emoji/unicode/2716-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/2716.png b/common/img/emoji/unicode/2716.png deleted file mode 100644 index 13d6660786..0000000000 Binary files a/common/img/emoji/unicode/2716.png and /dev/null differ diff --git a/common/img/emoji/unicode/2728.png b/common/img/emoji/unicode/2728.png deleted file mode 100644 index 92138828df..0000000000 Binary files a/common/img/emoji/unicode/2728.png and /dev/null differ diff --git a/common/img/emoji/unicode/2733-fe0f.png b/common/img/emoji/unicode/2733-fe0f.png deleted file mode 100644 index 946a20333a..0000000000 Binary files a/common/img/emoji/unicode/2733-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/2733.png b/common/img/emoji/unicode/2733.png deleted file mode 100644 index 946a20333a..0000000000 Binary files a/common/img/emoji/unicode/2733.png and /dev/null differ diff --git a/common/img/emoji/unicode/2734-fe0f.png b/common/img/emoji/unicode/2734-fe0f.png deleted file mode 100644 index 73dc6a0c93..0000000000 Binary files a/common/img/emoji/unicode/2734-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/2734.png b/common/img/emoji/unicode/2734.png deleted file mode 100644 index 73dc6a0c93..0000000000 Binary files a/common/img/emoji/unicode/2734.png and /dev/null differ diff --git a/common/img/emoji/unicode/2744-fe0f.png b/common/img/emoji/unicode/2744-fe0f.png deleted file mode 100644 index 54b68ff4f1..0000000000 Binary files a/common/img/emoji/unicode/2744-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/2744.png b/common/img/emoji/unicode/2744.png deleted file mode 100644 index 54b68ff4f1..0000000000 Binary files a/common/img/emoji/unicode/2744.png and /dev/null differ diff --git a/common/img/emoji/unicode/2747-fe0f.png b/common/img/emoji/unicode/2747-fe0f.png deleted file mode 100644 index 23a68ceb20..0000000000 Binary files a/common/img/emoji/unicode/2747-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/2747.png b/common/img/emoji/unicode/2747.png deleted file mode 100644 index 23a68ceb20..0000000000 Binary files a/common/img/emoji/unicode/2747.png and /dev/null differ diff --git a/common/img/emoji/unicode/274c.png b/common/img/emoji/unicode/274c.png deleted file mode 100644 index b84f63557a..0000000000 Binary files a/common/img/emoji/unicode/274c.png and /dev/null differ diff --git a/common/img/emoji/unicode/274e.png b/common/img/emoji/unicode/274e.png deleted file mode 100644 index b47a0cece5..0000000000 Binary files a/common/img/emoji/unicode/274e.png and /dev/null differ diff --git a/common/img/emoji/unicode/2753.png b/common/img/emoji/unicode/2753.png deleted file mode 100644 index 63fd7f8372..0000000000 Binary files a/common/img/emoji/unicode/2753.png and /dev/null differ diff --git a/common/img/emoji/unicode/2754.png b/common/img/emoji/unicode/2754.png deleted file mode 100644 index 57db41ead4..0000000000 Binary files a/common/img/emoji/unicode/2754.png and /dev/null differ diff --git a/common/img/emoji/unicode/2755.png b/common/img/emoji/unicode/2755.png deleted file mode 100644 index a50d265e9d..0000000000 Binary files a/common/img/emoji/unicode/2755.png and /dev/null differ diff --git a/common/img/emoji/unicode/2757-fe0f.png b/common/img/emoji/unicode/2757-fe0f.png deleted file mode 100644 index 4c560f5e3f..0000000000 Binary files a/common/img/emoji/unicode/2757-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/2757.png b/common/img/emoji/unicode/2757.png deleted file mode 100644 index 4c560f5e3f..0000000000 Binary files a/common/img/emoji/unicode/2757.png and /dev/null differ diff --git a/common/img/emoji/unicode/2764-fe0f.png b/common/img/emoji/unicode/2764-fe0f.png deleted file mode 100644 index 7d7790ce4d..0000000000 Binary files a/common/img/emoji/unicode/2764-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/2764.png b/common/img/emoji/unicode/2764.png deleted file mode 100644 index 7d7790ce4d..0000000000 Binary files a/common/img/emoji/unicode/2764.png and /dev/null differ diff --git a/common/img/emoji/unicode/2795.png b/common/img/emoji/unicode/2795.png deleted file mode 100644 index 61595387bb..0000000000 Binary files a/common/img/emoji/unicode/2795.png and /dev/null differ diff --git a/common/img/emoji/unicode/2796.png b/common/img/emoji/unicode/2796.png deleted file mode 100644 index b8d3d82f2c..0000000000 Binary files a/common/img/emoji/unicode/2796.png and /dev/null differ diff --git a/common/img/emoji/unicode/2797.png b/common/img/emoji/unicode/2797.png deleted file mode 100644 index ac757a238e..0000000000 Binary files a/common/img/emoji/unicode/2797.png and /dev/null differ diff --git a/common/img/emoji/unicode/27a1-fe0f.png b/common/img/emoji/unicode/27a1-fe0f.png deleted file mode 100644 index e5cca853da..0000000000 Binary files a/common/img/emoji/unicode/27a1-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/27a1.png b/common/img/emoji/unicode/27a1.png deleted file mode 100644 index e5cca853da..0000000000 Binary files a/common/img/emoji/unicode/27a1.png and /dev/null differ diff --git a/common/img/emoji/unicode/27b0.png b/common/img/emoji/unicode/27b0.png deleted file mode 100644 index 8f051aca43..0000000000 Binary files a/common/img/emoji/unicode/27b0.png and /dev/null differ diff --git a/common/img/emoji/unicode/27bf.png b/common/img/emoji/unicode/27bf.png deleted file mode 100644 index ef34df3a40..0000000000 Binary files a/common/img/emoji/unicode/27bf.png and /dev/null differ diff --git a/common/img/emoji/unicode/2934-fe0f.png b/common/img/emoji/unicode/2934-fe0f.png deleted file mode 100644 index c8f670a1ef..0000000000 Binary files a/common/img/emoji/unicode/2934-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/2934.png b/common/img/emoji/unicode/2934.png deleted file mode 100644 index c8f670a1ef..0000000000 Binary files a/common/img/emoji/unicode/2934.png and /dev/null differ diff --git a/common/img/emoji/unicode/2935-fe0f.png b/common/img/emoji/unicode/2935-fe0f.png deleted file mode 100644 index 56dd3b9d3c..0000000000 Binary files a/common/img/emoji/unicode/2935-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/2935.png b/common/img/emoji/unicode/2935.png deleted file mode 100644 index 56dd3b9d3c..0000000000 Binary files a/common/img/emoji/unicode/2935.png and /dev/null differ diff --git a/common/img/emoji/unicode/2b05-fe0f.png b/common/img/emoji/unicode/2b05-fe0f.png deleted file mode 100644 index 9d7d1b5687..0000000000 Binary files a/common/img/emoji/unicode/2b05-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/2b05.png b/common/img/emoji/unicode/2b05.png deleted file mode 100644 index 9d7d1b5687..0000000000 Binary files a/common/img/emoji/unicode/2b05.png and /dev/null differ diff --git a/common/img/emoji/unicode/2b06-fe0f.png b/common/img/emoji/unicode/2b06-fe0f.png deleted file mode 100644 index 565ce2952a..0000000000 Binary files a/common/img/emoji/unicode/2b06-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/2b06.png b/common/img/emoji/unicode/2b06.png deleted file mode 100644 index 565ce2952a..0000000000 Binary files a/common/img/emoji/unicode/2b06.png and /dev/null differ diff --git a/common/img/emoji/unicode/2b07-fe0f.png b/common/img/emoji/unicode/2b07-fe0f.png deleted file mode 100644 index 3956eb399f..0000000000 Binary files a/common/img/emoji/unicode/2b07-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/2b07.png b/common/img/emoji/unicode/2b07.png deleted file mode 100644 index 3956eb399f..0000000000 Binary files a/common/img/emoji/unicode/2b07.png and /dev/null differ diff --git a/common/img/emoji/unicode/2b1b-fe0f.png b/common/img/emoji/unicode/2b1b-fe0f.png deleted file mode 100644 index 71da10de81..0000000000 Binary files a/common/img/emoji/unicode/2b1b-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/2b1b.png b/common/img/emoji/unicode/2b1b.png deleted file mode 100644 index 71da10de81..0000000000 Binary files a/common/img/emoji/unicode/2b1b.png and /dev/null differ diff --git a/common/img/emoji/unicode/2b1c-fe0f.png b/common/img/emoji/unicode/2b1c-fe0f.png deleted file mode 100644 index 60cb19a137..0000000000 Binary files a/common/img/emoji/unicode/2b1c-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/2b1c.png b/common/img/emoji/unicode/2b1c.png deleted file mode 100644 index 60cb19a137..0000000000 Binary files a/common/img/emoji/unicode/2b1c.png and /dev/null differ diff --git a/common/img/emoji/unicode/2b50-fe0f.png b/common/img/emoji/unicode/2b50-fe0f.png deleted file mode 100644 index 1bfddc8625..0000000000 Binary files a/common/img/emoji/unicode/2b50-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/2b50.png b/common/img/emoji/unicode/2b50.png deleted file mode 100644 index 1bfddc8625..0000000000 Binary files a/common/img/emoji/unicode/2b50.png and /dev/null differ diff --git a/common/img/emoji/unicode/2b55-fe0f.png b/common/img/emoji/unicode/2b55-fe0f.png deleted file mode 100644 index 0ededebe31..0000000000 Binary files a/common/img/emoji/unicode/2b55-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/2b55.png b/common/img/emoji/unicode/2b55.png deleted file mode 100644 index 0ededebe31..0000000000 Binary files a/common/img/emoji/unicode/2b55.png and /dev/null differ diff --git a/common/img/emoji/unicode/3030.png b/common/img/emoji/unicode/3030.png deleted file mode 100644 index 77f626cc5c..0000000000 Binary files a/common/img/emoji/unicode/3030.png and /dev/null differ diff --git a/common/img/emoji/unicode/303d-fe0f.png b/common/img/emoji/unicode/303d-fe0f.png deleted file mode 100644 index 45dc9b851a..0000000000 Binary files a/common/img/emoji/unicode/303d-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/303d.png b/common/img/emoji/unicode/303d.png deleted file mode 100644 index 45dc9b851a..0000000000 Binary files a/common/img/emoji/unicode/303d.png and /dev/null differ diff --git a/common/img/emoji/unicode/3297-fe0f.png b/common/img/emoji/unicode/3297-fe0f.png deleted file mode 100644 index dcbb1d229e..0000000000 Binary files a/common/img/emoji/unicode/3297-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/3297.png b/common/img/emoji/unicode/3297.png deleted file mode 100644 index dcbb1d229e..0000000000 Binary files a/common/img/emoji/unicode/3297.png and /dev/null differ diff --git a/common/img/emoji/unicode/3299-fe0f.png b/common/img/emoji/unicode/3299-fe0f.png deleted file mode 100644 index 82e383a60d..0000000000 Binary files a/common/img/emoji/unicode/3299-fe0f.png and /dev/null differ diff --git a/common/img/emoji/unicode/3299.png b/common/img/emoji/unicode/3299.png deleted file mode 100644 index 82e383a60d..0000000000 Binary files a/common/img/emoji/unicode/3299.png and /dev/null differ diff --git a/common/img/emoji/unlock.png b/common/img/emoji/unlock.png deleted file mode 100644 index 22b429cd02..0000000000 Binary files a/common/img/emoji/unlock.png and /dev/null differ diff --git a/common/img/emoji/up.png b/common/img/emoji/up.png deleted file mode 100644 index 829219a868..0000000000 Binary files a/common/img/emoji/up.png and /dev/null differ diff --git a/common/img/emoji/us.png b/common/img/emoji/us.png deleted file mode 100644 index 38137669aa..0000000000 Binary files a/common/img/emoji/us.png and /dev/null differ diff --git a/common/img/emoji/v.png b/common/img/emoji/v.png deleted file mode 100644 index f61267c281..0000000000 Binary files a/common/img/emoji/v.png and /dev/null differ diff --git a/common/img/emoji/vertical_traffic_light.png b/common/img/emoji/vertical_traffic_light.png deleted file mode 100644 index 7a5ba35f09..0000000000 Binary files a/common/img/emoji/vertical_traffic_light.png and /dev/null differ diff --git a/common/img/emoji/vhs.png b/common/img/emoji/vhs.png deleted file mode 100644 index 881081c177..0000000000 Binary files a/common/img/emoji/vhs.png and /dev/null differ diff --git a/common/img/emoji/vibration_mode.png b/common/img/emoji/vibration_mode.png deleted file mode 100644 index a716e96c63..0000000000 Binary files a/common/img/emoji/vibration_mode.png and /dev/null differ diff --git a/common/img/emoji/video_camera.png b/common/img/emoji/video_camera.png deleted file mode 100644 index 274cecdd6d..0000000000 Binary files a/common/img/emoji/video_camera.png and /dev/null differ diff --git a/common/img/emoji/video_game.png b/common/img/emoji/video_game.png deleted file mode 100644 index 59d45baeab..0000000000 Binary files a/common/img/emoji/video_game.png and /dev/null differ diff --git a/common/img/emoji/violin.png b/common/img/emoji/violin.png deleted file mode 100644 index 0dba5ba2b6..0000000000 Binary files a/common/img/emoji/violin.png and /dev/null differ diff --git a/common/img/emoji/virgo.png b/common/img/emoji/virgo.png deleted file mode 100644 index 72e1763f57..0000000000 Binary files a/common/img/emoji/virgo.png and /dev/null differ diff --git a/common/img/emoji/volcano.png b/common/img/emoji/volcano.png deleted file mode 100644 index 9b434539b0..0000000000 Binary files a/common/img/emoji/volcano.png and /dev/null differ diff --git a/common/img/emoji/vs.png b/common/img/emoji/vs.png deleted file mode 100644 index 863638850e..0000000000 Binary files a/common/img/emoji/vs.png and /dev/null differ diff --git a/common/img/emoji/walking.png b/common/img/emoji/walking.png deleted file mode 100644 index 7a2bfacfc9..0000000000 Binary files a/common/img/emoji/walking.png and /dev/null differ diff --git a/common/img/emoji/waning_crescent_moon.png b/common/img/emoji/waning_crescent_moon.png deleted file mode 100644 index 30387780fe..0000000000 Binary files a/common/img/emoji/waning_crescent_moon.png and /dev/null differ diff --git a/common/img/emoji/waning_gibbous_moon.png b/common/img/emoji/waning_gibbous_moon.png deleted file mode 100644 index 8e324ec5f7..0000000000 Binary files a/common/img/emoji/waning_gibbous_moon.png and /dev/null differ diff --git a/common/img/emoji/warning.png b/common/img/emoji/warning.png deleted file mode 100644 index 466658d99a..0000000000 Binary files a/common/img/emoji/warning.png and /dev/null differ diff --git a/common/img/emoji/watch.png b/common/img/emoji/watch.png deleted file mode 100644 index d503bb87c2..0000000000 Binary files a/common/img/emoji/watch.png and /dev/null differ diff --git a/common/img/emoji/water_buffalo.png b/common/img/emoji/water_buffalo.png deleted file mode 100644 index 3bcde3edd9..0000000000 Binary files a/common/img/emoji/water_buffalo.png and /dev/null differ diff --git a/common/img/emoji/watermelon.png b/common/img/emoji/watermelon.png deleted file mode 100644 index fc212be784..0000000000 Binary files a/common/img/emoji/watermelon.png and /dev/null differ diff --git a/common/img/emoji/wave.png b/common/img/emoji/wave.png deleted file mode 100644 index e78402eb08..0000000000 Binary files a/common/img/emoji/wave.png and /dev/null differ diff --git a/common/img/emoji/wavy_dash.png b/common/img/emoji/wavy_dash.png deleted file mode 100644 index 77f626cc5c..0000000000 Binary files a/common/img/emoji/wavy_dash.png and /dev/null differ diff --git a/common/img/emoji/waxing_crescent_moon.png b/common/img/emoji/waxing_crescent_moon.png deleted file mode 100644 index c8f13dd31c..0000000000 Binary files a/common/img/emoji/waxing_crescent_moon.png and /dev/null differ diff --git a/common/img/emoji/waxing_gibbous_moon.png b/common/img/emoji/waxing_gibbous_moon.png deleted file mode 100644 index dd8c484589..0000000000 Binary files a/common/img/emoji/waxing_gibbous_moon.png and /dev/null differ diff --git a/common/img/emoji/wc.png b/common/img/emoji/wc.png deleted file mode 100644 index dfe84d2a73..0000000000 Binary files a/common/img/emoji/wc.png and /dev/null differ diff --git a/common/img/emoji/weary.png b/common/img/emoji/weary.png deleted file mode 100644 index 0c5475411c..0000000000 Binary files a/common/img/emoji/weary.png and /dev/null differ diff --git a/common/img/emoji/wedding.png b/common/img/emoji/wedding.png deleted file mode 100644 index ead19d52cf..0000000000 Binary files a/common/img/emoji/wedding.png and /dev/null differ diff --git a/common/img/emoji/whale.png b/common/img/emoji/whale.png deleted file mode 100644 index 5bb113e428..0000000000 Binary files a/common/img/emoji/whale.png and /dev/null differ diff --git a/common/img/emoji/whale2.png b/common/img/emoji/whale2.png deleted file mode 100644 index 4af657b2fd..0000000000 Binary files a/common/img/emoji/whale2.png and /dev/null differ diff --git a/common/img/emoji/wheelchair.png b/common/img/emoji/wheelchair.png deleted file mode 100644 index eddcdd7977..0000000000 Binary files a/common/img/emoji/wheelchair.png and /dev/null differ diff --git a/common/img/emoji/white_check_mark.png b/common/img/emoji/white_check_mark.png deleted file mode 100644 index 61dc0583cf..0000000000 Binary files a/common/img/emoji/white_check_mark.png and /dev/null differ diff --git a/common/img/emoji/white_circle.png b/common/img/emoji/white_circle.png deleted file mode 100644 index da782ae297..0000000000 Binary files a/common/img/emoji/white_circle.png and /dev/null differ diff --git a/common/img/emoji/white_flower.png b/common/img/emoji/white_flower.png deleted file mode 100644 index c0929d0dd9..0000000000 Binary files a/common/img/emoji/white_flower.png and /dev/null differ diff --git a/common/img/emoji/white_large_square.png b/common/img/emoji/white_large_square.png deleted file mode 100644 index 60cb19a137..0000000000 Binary files a/common/img/emoji/white_large_square.png and /dev/null differ diff --git a/common/img/emoji/white_medium_small_square.png b/common/img/emoji/white_medium_small_square.png deleted file mode 100644 index a115cdc49e..0000000000 Binary files a/common/img/emoji/white_medium_small_square.png and /dev/null differ diff --git a/common/img/emoji/white_medium_square.png b/common/img/emoji/white_medium_square.png deleted file mode 100644 index 199808bcf2..0000000000 Binary files a/common/img/emoji/white_medium_square.png and /dev/null differ diff --git a/common/img/emoji/white_small_square.png b/common/img/emoji/white_small_square.png deleted file mode 100644 index 24ba879f46..0000000000 Binary files a/common/img/emoji/white_small_square.png and /dev/null differ diff --git a/common/img/emoji/white_square_button.png b/common/img/emoji/white_square_button.png deleted file mode 100644 index 63c7a3ef40..0000000000 Binary files a/common/img/emoji/white_square_button.png and /dev/null differ diff --git a/common/img/emoji/wind_chime.png b/common/img/emoji/wind_chime.png deleted file mode 100644 index efacf5dd4b..0000000000 Binary files a/common/img/emoji/wind_chime.png and /dev/null differ diff --git a/common/img/emoji/wine_glass.png b/common/img/emoji/wine_glass.png deleted file mode 100644 index 82b0f00057..0000000000 Binary files a/common/img/emoji/wine_glass.png and /dev/null differ diff --git a/common/img/emoji/wink.png b/common/img/emoji/wink.png deleted file mode 100644 index 756766dd3e..0000000000 Binary files a/common/img/emoji/wink.png and /dev/null differ diff --git a/common/img/emoji/wolf.png b/common/img/emoji/wolf.png deleted file mode 100644 index c60c96895f..0000000000 Binary files a/common/img/emoji/wolf.png and /dev/null differ diff --git a/common/img/emoji/woman.png b/common/img/emoji/woman.png deleted file mode 100644 index 6bf0d2b129..0000000000 Binary files a/common/img/emoji/woman.png and /dev/null differ diff --git a/common/img/emoji/womans_clothes.png b/common/img/emoji/womans_clothes.png deleted file mode 100644 index aa297c7b65..0000000000 Binary files a/common/img/emoji/womans_clothes.png and /dev/null differ diff --git a/common/img/emoji/womans_hat.png b/common/img/emoji/womans_hat.png deleted file mode 100644 index 4cb2e6a693..0000000000 Binary files a/common/img/emoji/womans_hat.png and /dev/null differ diff --git a/common/img/emoji/womens.png b/common/img/emoji/womens.png deleted file mode 100644 index 518b76a6d2..0000000000 Binary files a/common/img/emoji/womens.png and /dev/null differ diff --git a/common/img/emoji/worried.png b/common/img/emoji/worried.png deleted file mode 100644 index afd9283fc0..0000000000 Binary files a/common/img/emoji/worried.png and /dev/null differ diff --git a/common/img/emoji/wrench.png b/common/img/emoji/wrench.png deleted file mode 100644 index a87072ad13..0000000000 Binary files a/common/img/emoji/wrench.png and /dev/null differ diff --git a/common/img/emoji/x.png b/common/img/emoji/x.png deleted file mode 100644 index b84f63557a..0000000000 Binary files a/common/img/emoji/x.png and /dev/null differ diff --git a/common/img/emoji/yellow_heart.png b/common/img/emoji/yellow_heart.png deleted file mode 100644 index fa41ce78ac..0000000000 Binary files a/common/img/emoji/yellow_heart.png and /dev/null differ diff --git a/common/img/emoji/yen.png b/common/img/emoji/yen.png deleted file mode 100644 index 139bc936e0..0000000000 Binary files a/common/img/emoji/yen.png and /dev/null differ diff --git a/common/img/emoji/yum.png b/common/img/emoji/yum.png deleted file mode 100644 index fc39637ecd..0000000000 Binary files a/common/img/emoji/yum.png and /dev/null differ diff --git a/common/img/emoji/zap.png b/common/img/emoji/zap.png deleted file mode 100644 index 260c531b9e..0000000000 Binary files a/common/img/emoji/zap.png and /dev/null differ diff --git a/common/img/emoji/zero.png b/common/img/emoji/zero.png deleted file mode 100644 index 15e7446c81..0000000000 Binary files a/common/img/emoji/zero.png and /dev/null differ diff --git a/common/img/emoji/zzz.png b/common/img/emoji/zzz.png deleted file mode 100644 index 30be04655a..0000000000 Binary files a/common/img/emoji/zzz.png and /dev/null differ diff --git a/common/img/sprites/quest_bewilder.gif b/common/img/sprites/quest_bewilder.gif new file mode 100644 index 0000000000..ebf2677bf1 Binary files /dev/null and b/common/img/sprites/quest_bewilder.gif differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_JackOLantern-Base.png b/common/img/sprites/spritesmith/achievements/achievement-bewilder.png similarity index 74% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_JackOLantern-Base.png rename to common/img/sprites/spritesmith/achievements/achievement-bewilder.png index fc41e4581f..133193f297 100644 Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_JackOLantern-Base.png and b/common/img/sprites/spritesmith/achievements/achievement-bewilder.png differ diff --git a/common/img/sprites/spritesmith/achievements/achievement-bewilder2x.png b/common/img/sprites/spritesmith/achievements/achievement-bewilder2x.png new file mode 100644 index 0000000000..ba4a4b82f2 Binary files /dev/null and b/common/img/sprites/spritesmith/achievements/achievement-bewilder2x.png differ diff --git a/common/img/sprites/spritesmith/achievements/achievement-partyOn.png b/common/img/sprites/spritesmith/achievements/achievement-partyOn.png new file mode 100644 index 0000000000..d3362c6fcd Binary files /dev/null and b/common/img/sprites/spritesmith/achievements/achievement-partyOn.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-CottonCandyBlue.png b/common/img/sprites/spritesmith/achievements/achievement-partyOn2x.png similarity index 68% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-CottonCandyBlue.png rename to common/img/sprites/spritesmith/achievements/achievement-partyOn2x.png index 5abeee7f00..ca224b2e7e 100644 Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-CottonCandyBlue.png and b/common/img/sprites/spritesmith/achievements/achievement-partyOn2x.png differ diff --git a/common/img/sprites/spritesmith/achievements/achievement-partyUp.png b/common/img/sprites/spritesmith/achievements/achievement-partyUp.png new file mode 100644 index 0000000000..7918337362 Binary files /dev/null and b/common/img/sprites/spritesmith/achievements/achievement-partyUp.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-White.png b/common/img/sprites/spritesmith/achievements/achievement-partyUp2x.png similarity index 75% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-White.png rename to common/img/sprites/spritesmith/achievements/achievement-partyUp2x.png index c37579df3b..799764a565 100644 Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-White.png and b/common/img/sprites/spritesmith/achievements/achievement-partyUp2x.png differ diff --git a/common/img/sprites/spritesmith/backgrounds/background_archery_range.png b/common/img/sprites/spritesmith/backgrounds/background_archery_range.png new file mode 100644 index 0000000000..bf6af82205 Binary files /dev/null and b/common/img/sprites/spritesmith/backgrounds/background_archery_range.png differ diff --git a/common/img/sprites/spritesmith/backgrounds/background_deep_mine.png b/common/img/sprites/spritesmith/backgrounds/background_deep_mine.png new file mode 100644 index 0000000000..e2599173c2 Binary files /dev/null and b/common/img/sprites/spritesmith/backgrounds/background_deep_mine.png differ diff --git a/common/img/sprites/spritesmith/backgrounds/background_giant_florals.png b/common/img/sprites/spritesmith/backgrounds/background_giant_florals.png new file mode 100644 index 0000000000..7dddca7331 Binary files /dev/null and b/common/img/sprites/spritesmith/backgrounds/background_giant_florals.png differ diff --git a/common/img/sprites/spritesmith/backgrounds/background_rainbows_end.png b/common/img/sprites/spritesmith/backgrounds/background_rainbows_end.png new file mode 100644 index 0000000000..9258dee1a8 Binary files /dev/null and b/common/img/sprites/spritesmith/backgrounds/background_rainbows_end.png differ diff --git a/common/img/sprites/spritesmith/backgrounds/background_rainforest.png b/common/img/sprites/spritesmith/backgrounds/background_rainforest.png new file mode 100644 index 0000000000..322d81089b Binary files /dev/null and b/common/img/sprites/spritesmith/backgrounds/background_rainforest.png differ diff --git a/common/img/sprites/spritesmith/backgrounds/background_south_pole.png b/common/img/sprites/spritesmith/backgrounds/background_south_pole.png index 989daebc9b..9152113aec 100644 Binary files a/common/img/sprites/spritesmith/backgrounds/background_south_pole.png and b/common/img/sprites/spritesmith/backgrounds/background_south_pole.png differ diff --git a/common/img/sprites/spritesmith/backgrounds/background_stone_circle.png b/common/img/sprites/spritesmith/backgrounds/background_stone_circle.png new file mode 100644 index 0000000000..313cb32b0c Binary files /dev/null and b/common/img/sprites/spritesmith/backgrounds/background_stone_circle.png differ diff --git a/common/img/sprites/spritesmith/customize/chairs/button_chair_black.png b/common/img/sprites/spritesmith/customize/chairs/button_chair_black.png new file mode 100644 index 0000000000..b04abe4701 Binary files /dev/null and b/common/img/sprites/spritesmith/customize/chairs/button_chair_black.png differ diff --git a/common/img/sprites/spritesmith/customize/chairs/chair_black.png b/common/img/sprites/spritesmith/customize/chairs/chair_black.png new file mode 100644 index 0000000000..59fbcdbb33 Binary files /dev/null and b/common/img/sprites/spritesmith/customize/chairs/chair_black.png differ diff --git a/common/img/sprites/spritesmith/gear/armoire/broad_armor_armoire_basicArcherArmor.png b/common/img/sprites/spritesmith/gear/armoire/broad_armor_armoire_basicArcherArmor.png new file mode 100644 index 0000000000..43e71e03f3 Binary files /dev/null and b/common/img/sprites/spritesmith/gear/armoire/broad_armor_armoire_basicArcherArmor.png differ diff --git a/common/img/sprites/spritesmith/gear/armoire/broad_armor_armoire_minerOveralls.png b/common/img/sprites/spritesmith/gear/armoire/broad_armor_armoire_minerOveralls.png new file mode 100644 index 0000000000..42651a8e11 Binary files /dev/null and b/common/img/sprites/spritesmith/gear/armoire/broad_armor_armoire_minerOveralls.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-Shade.png b/common/img/sprites/spritesmith/gear/armoire/headAccessory_armoire_comicalArrow.png similarity index 76% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-Shade.png rename to common/img/sprites/spritesmith/gear/armoire/headAccessory_armoire_comicalArrow.png index 3e8a0fc2c5..03eef458d8 100644 Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-Shade.png and b/common/img/sprites/spritesmith/gear/armoire/headAccessory_armoire_comicalArrow.png differ diff --git a/common/img/sprites/spritesmith/gear/armoire/head_armoire_basicArcherCap.png b/common/img/sprites/spritesmith/gear/armoire/head_armoire_basicArcherCap.png new file mode 100644 index 0000000000..d3143b2387 Binary files /dev/null and b/common/img/sprites/spritesmith/gear/armoire/head_armoire_basicArcherCap.png differ diff --git a/common/img/sprites/spritesmith/gear/armoire/head_armoire_minerHelmet.png b/common/img/sprites/spritesmith/gear/armoire/head_armoire_minerHelmet.png new file mode 100644 index 0000000000..dd618c912f Binary files /dev/null and b/common/img/sprites/spritesmith/gear/armoire/head_armoire_minerHelmet.png differ diff --git a/common/img/sprites/spritesmith/gear/armoire/shield_armoire_mysticLamp.png b/common/img/sprites/spritesmith/gear/armoire/shield_armoire_mysticLamp.png new file mode 100644 index 0000000000..5f07b91461 Binary files /dev/null and b/common/img/sprites/spritesmith/gear/armoire/shield_armoire_mysticLamp.png differ diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_basicArcherArmor.png b/common/img/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_basicArcherArmor.png new file mode 100644 index 0000000000..81d15d3e1e Binary files /dev/null and b/common/img/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_basicArcherArmor.png differ diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_minerOveralls.png b/common/img/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_minerOveralls.png new file mode 100644 index 0000000000..f1d9bdfb4a Binary files /dev/null and b/common/img/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_minerOveralls.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-Skeleton.png b/common/img/sprites/spritesmith/gear/armoire/shop/shop_headAccessory_armoire_comicalArrow.png similarity index 76% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-Skeleton.png rename to common/img/sprites/spritesmith/gear/armoire/shop/shop_headAccessory_armoire_comicalArrow.png index ddb4ab2829..3047793f8c 100644 Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-Skeleton.png and b/common/img/sprites/spritesmith/gear/armoire/shop/shop_headAccessory_armoire_comicalArrow.png differ diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_basicArcherCap.png b/common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_basicArcherCap.png new file mode 100644 index 0000000000..2ed22911ba Binary files /dev/null and b/common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_basicArcherCap.png differ diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_minerHelmet.png b/common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_minerHelmet.png new file mode 100644 index 0000000000..6e7d73d20c Binary files /dev/null and b/common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_minerHelmet.png differ diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_mysticLamp.png b/common/img/sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_mysticLamp.png new file mode 100644 index 0000000000..9d491e87eb Binary files /dev/null and b/common/img/sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_mysticLamp.png differ diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_basicLongbow.png b/common/img/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_basicLongbow.png new file mode 100644 index 0000000000..62c578b161 Binary files /dev/null and b/common/img/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_basicLongbow.png differ diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_miningPickax.png b/common/img/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_miningPickax.png new file mode 100644 index 0000000000..f478f675ea Binary files /dev/null and b/common/img/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_miningPickax.png differ diff --git a/common/img/sprites/spritesmith/gear/armoire/slim_armor_armoire_basicArcherArmor.png b/common/img/sprites/spritesmith/gear/armoire/slim_armor_armoire_basicArcherArmor.png new file mode 100644 index 0000000000..7ea018ce14 Binary files /dev/null and b/common/img/sprites/spritesmith/gear/armoire/slim_armor_armoire_basicArcherArmor.png differ diff --git a/common/img/sprites/spritesmith/gear/armoire/slim_armor_armoire_minerOveralls.png b/common/img/sprites/spritesmith/gear/armoire/slim_armor_armoire_minerOveralls.png new file mode 100644 index 0000000000..e441e06e00 Binary files /dev/null and b/common/img/sprites/spritesmith/gear/armoire/slim_armor_armoire_minerOveralls.png differ diff --git a/common/img/sprites/spritesmith/gear/armoire/weapon_armoire_basicLongbow.png b/common/img/sprites/spritesmith/gear/armoire/weapon_armoire_basicLongbow.png new file mode 100644 index 0000000000..89dc1c492b Binary files /dev/null and b/common/img/sprites/spritesmith/gear/armoire/weapon_armoire_basicLongbow.png differ diff --git a/common/img/sprites/spritesmith/gear/armoire/weapon_armoire_miningPickax.png b/common/img/sprites/spritesmith/gear/armoire/weapon_armoire_miningPickax.png new file mode 100644 index 0000000000..16f7a15e4f Binary files /dev/null and b/common/img/sprites/spritesmith/gear/armoire/weapon_armoire_miningPickax.png differ diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201602/back_mystery_201602.png b/common/img/sprites/spritesmith/gear/events/mystery_201602/back_mystery_201602.png new file mode 100644 index 0000000000..77e7bba2d0 Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/mystery_201602/back_mystery_201602.png differ diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201602/head_mystery_201602.png b/common/img/sprites/spritesmith/gear/events/mystery_201602/head_mystery_201602.png new file mode 100644 index 0000000000..cab178c4c0 Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/mystery_201602/head_mystery_201602.png differ diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201602/shop_back_mystery_201602.png b/common/img/sprites/spritesmith/gear/events/mystery_201602/shop_back_mystery_201602.png new file mode 100644 index 0000000000..5e8a7f7300 Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/mystery_201602/shop_back_mystery_201602.png differ diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201602/shop_head_mystery_201602.png b/common/img/sprites/spritesmith/gear/events/mystery_201602/shop_head_mystery_201602.png new file mode 100644 index 0000000000..dad1cc0e22 Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/mystery_201602/shop_head_mystery_201602.png differ diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201603/broad_armor_mystery_201603.png b/common/img/sprites/spritesmith/gear/events/mystery_201603/broad_armor_mystery_201603.png new file mode 100644 index 0000000000..08fd18ae07 Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/mystery_201603/broad_armor_mystery_201603.png differ diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201603/head_mystery_201603.png b/common/img/sprites/spritesmith/gear/events/mystery_201603/head_mystery_201603.png new file mode 100644 index 0000000000..373ea193c8 Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/mystery_201603/head_mystery_201603.png differ diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201603/shop_armor_mystery_201603.png b/common/img/sprites/spritesmith/gear/events/mystery_201603/shop_armor_mystery_201603.png new file mode 100644 index 0000000000..86701990c3 Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/mystery_201603/shop_armor_mystery_201603.png differ diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201603/shop_head_mystery_201603.png b/common/img/sprites/spritesmith/gear/events/mystery_201603/shop_head_mystery_201603.png new file mode 100644 index 0000000000..a74213dc6a Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/mystery_201603/shop_head_mystery_201603.png differ diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201603/slim_armor_mystery_201603.png b/common/img/sprites/spritesmith/gear/events/mystery_201603/slim_armor_mystery_201603.png new file mode 100644 index 0000000000..ffa65ae74b Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/mystery_201603/slim_armor_mystery_201603.png differ diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201604/broad_armor_mystery_201604.png b/common/img/sprites/spritesmith/gear/events/mystery_201604/broad_armor_mystery_201604.png new file mode 100644 index 0000000000..861e73402c Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/mystery_201604/broad_armor_mystery_201604.png differ diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201604/head_mystery_201604.png b/common/img/sprites/spritesmith/gear/events/mystery_201604/head_mystery_201604.png new file mode 100644 index 0000000000..c5412d24f8 Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/mystery_201604/head_mystery_201604.png differ diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201604/shop_armor_mystery_201604.png b/common/img/sprites/spritesmith/gear/events/mystery_201604/shop_armor_mystery_201604.png new file mode 100644 index 0000000000..e706770bc0 Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/mystery_201604/shop_armor_mystery_201604.png differ diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201604/shop_head_mystery_201604.png b/common/img/sprites/spritesmith/gear/events/mystery_201604/shop_head_mystery_201604.png new file mode 100644 index 0000000000..235e660f67 Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/mystery_201604/shop_head_mystery_201604.png differ diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201604/slim_armor_mystery_201604.png b/common/img/sprites/spritesmith/gear/events/mystery_201604/slim_armor_mystery_201604.png new file mode 100644 index 0000000000..afb3853479 Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/mystery_201604/slim_armor_mystery_201604.png differ diff --git a/common/img/sprites/spritesmith/gear/events/spring/broad_armor_special_spring2016Healer.png b/common/img/sprites/spritesmith/gear/events/spring/broad_armor_special_spring2016Healer.png new file mode 100644 index 0000000000..2a406cf8de Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/spring/broad_armor_special_spring2016Healer.png differ diff --git a/common/img/sprites/spritesmith/gear/events/spring/broad_armor_special_spring2016Mage.png b/common/img/sprites/spritesmith/gear/events/spring/broad_armor_special_spring2016Mage.png new file mode 100644 index 0000000000..907b3dcdc3 Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/spring/broad_armor_special_spring2016Mage.png differ diff --git a/common/img/sprites/spritesmith/gear/events/spring/broad_armor_special_spring2016Rogue.png b/common/img/sprites/spritesmith/gear/events/spring/broad_armor_special_spring2016Rogue.png new file mode 100644 index 0000000000..4f0e5c57a8 Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/spring/broad_armor_special_spring2016Rogue.png differ diff --git a/common/img/sprites/spritesmith/gear/events/spring/broad_armor_special_spring2016Warrior.png b/common/img/sprites/spritesmith/gear/events/spring/broad_armor_special_spring2016Warrior.png new file mode 100644 index 0000000000..93b89f2ba2 Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/spring/broad_armor_special_spring2016Warrior.png differ diff --git a/common/img/sprites/spritesmith/gear/events/spring/headAccessory_special_spring2016Healer.png b/common/img/sprites/spritesmith/gear/events/spring/headAccessory_special_spring2016Healer.png new file mode 100644 index 0000000000..9234ebcc1f Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/spring/headAccessory_special_spring2016Healer.png differ diff --git a/common/img/sprites/spritesmith/gear/events/spring/headAccessory_special_spring2016Mage.png b/common/img/sprites/spritesmith/gear/events/spring/headAccessory_special_spring2016Mage.png new file mode 100644 index 0000000000..ef764e2302 Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/spring/headAccessory_special_spring2016Mage.png differ diff --git a/common/img/sprites/spritesmith/gear/events/spring/headAccessory_special_spring2016Rogue.png b/common/img/sprites/spritesmith/gear/events/spring/headAccessory_special_spring2016Rogue.png new file mode 100644 index 0000000000..80e047c35d Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/spring/headAccessory_special_spring2016Rogue.png differ diff --git a/common/img/sprites/spritesmith/gear/events/spring/headAccessory_special_spring2016Warrior.png b/common/img/sprites/spritesmith/gear/events/spring/headAccessory_special_spring2016Warrior.png new file mode 100644 index 0000000000..f46b92ada1 Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/spring/headAccessory_special_spring2016Warrior.png differ diff --git a/common/img/sprites/spritesmith/gear/events/spring/head_special_spring2016Healer.png b/common/img/sprites/spritesmith/gear/events/spring/head_special_spring2016Healer.png new file mode 100644 index 0000000000..9caaaf84df Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/spring/head_special_spring2016Healer.png differ diff --git a/common/img/sprites/spritesmith/gear/events/spring/head_special_spring2016Mage.png b/common/img/sprites/spritesmith/gear/events/spring/head_special_spring2016Mage.png new file mode 100644 index 0000000000..77b617977a Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/spring/head_special_spring2016Mage.png differ diff --git a/common/img/sprites/spritesmith/gear/events/spring/head_special_spring2016Rogue.png b/common/img/sprites/spritesmith/gear/events/spring/head_special_spring2016Rogue.png new file mode 100644 index 0000000000..ca6c35c8ca Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/spring/head_special_spring2016Rogue.png differ diff --git a/common/img/sprites/spritesmith/gear/events/spring/head_special_spring2016Warrior.png b/common/img/sprites/spritesmith/gear/events/spring/head_special_spring2016Warrior.png new file mode 100644 index 0000000000..3bb9b02517 Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/spring/head_special_spring2016Warrior.png differ diff --git a/common/img/sprites/spritesmith/gear/events/spring/shield_special_spring2016Healer.png b/common/img/sprites/spritesmith/gear/events/spring/shield_special_spring2016Healer.png new file mode 100644 index 0000000000..0004b8a840 Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/spring/shield_special_spring2016Healer.png differ diff --git a/common/img/sprites/spritesmith/gear/events/spring/shield_special_spring2016Rogue.png b/common/img/sprites/spritesmith/gear/events/spring/shield_special_spring2016Rogue.png new file mode 100644 index 0000000000..088bac77b5 Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/spring/shield_special_spring2016Rogue.png differ diff --git a/common/img/sprites/spritesmith/gear/events/spring/shield_special_spring2016Warrior.png b/common/img/sprites/spritesmith/gear/events/spring/shield_special_spring2016Warrior.png new file mode 100644 index 0000000000..2220d2456b Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/spring/shield_special_spring2016Warrior.png differ diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_armor_special_spring2016Healer.png b/common/img/sprites/spritesmith/gear/events/spring/shop/shop_armor_special_spring2016Healer.png new file mode 100644 index 0000000000..f9b344c4cb Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/spring/shop/shop_armor_special_spring2016Healer.png differ diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_armor_special_spring2016Mage.png b/common/img/sprites/spritesmith/gear/events/spring/shop/shop_armor_special_spring2016Mage.png new file mode 100644 index 0000000000..5c121d34af Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/spring/shop/shop_armor_special_spring2016Mage.png differ diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_armor_special_spring2016Rogue.png b/common/img/sprites/spritesmith/gear/events/spring/shop/shop_armor_special_spring2016Rogue.png new file mode 100644 index 0000000000..0dd4b64a46 Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/spring/shop/shop_armor_special_spring2016Rogue.png differ diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_armor_special_spring2016Warrior.png b/common/img/sprites/spritesmith/gear/events/spring/shop/shop_armor_special_spring2016Warrior.png new file mode 100644 index 0000000000..88900901a4 Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/spring/shop/shop_armor_special_spring2016Warrior.png differ diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_headAccessory_special_spring2016Healer.png b/common/img/sprites/spritesmith/gear/events/spring/shop/shop_headAccessory_special_spring2016Healer.png new file mode 100644 index 0000000000..be7e60f7a9 Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/spring/shop/shop_headAccessory_special_spring2016Healer.png differ diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_headAccessory_special_spring2016Mage.png b/common/img/sprites/spritesmith/gear/events/spring/shop/shop_headAccessory_special_spring2016Mage.png new file mode 100644 index 0000000000..5eb67f884e Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/spring/shop/shop_headAccessory_special_spring2016Mage.png differ diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_headAccessory_special_spring2016Rogue.png b/common/img/sprites/spritesmith/gear/events/spring/shop/shop_headAccessory_special_spring2016Rogue.png new file mode 100644 index 0000000000..64b3e8022f Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/spring/shop/shop_headAccessory_special_spring2016Rogue.png differ diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_headAccessory_special_spring2016Warrior.png b/common/img/sprites/spritesmith/gear/events/spring/shop/shop_headAccessory_special_spring2016Warrior.png new file mode 100644 index 0000000000..bcc95bfd32 Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/spring/shop/shop_headAccessory_special_spring2016Warrior.png differ diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_head_special_spring2016Healer.png b/common/img/sprites/spritesmith/gear/events/spring/shop/shop_head_special_spring2016Healer.png new file mode 100644 index 0000000000..9e83074181 Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/spring/shop/shop_head_special_spring2016Healer.png differ diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_head_special_spring2016Mage.png b/common/img/sprites/spritesmith/gear/events/spring/shop/shop_head_special_spring2016Mage.png new file mode 100644 index 0000000000..fb5e474290 Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/spring/shop/shop_head_special_spring2016Mage.png differ diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_head_special_spring2016Rogue.png b/common/img/sprites/spritesmith/gear/events/spring/shop/shop_head_special_spring2016Rogue.png new file mode 100644 index 0000000000..ef4a2c5d20 Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/spring/shop/shop_head_special_spring2016Rogue.png differ diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_head_special_spring2016Warrior.png b/common/img/sprites/spritesmith/gear/events/spring/shop/shop_head_special_spring2016Warrior.png new file mode 100644 index 0000000000..6d7fa58fc0 Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/spring/shop/shop_head_special_spring2016Warrior.png differ diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_shield_special_spring2016Healer.png b/common/img/sprites/spritesmith/gear/events/spring/shop/shop_shield_special_spring2016Healer.png new file mode 100644 index 0000000000..8929e46787 Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/spring/shop/shop_shield_special_spring2016Healer.png differ diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_shield_special_spring2016Rogue.png b/common/img/sprites/spritesmith/gear/events/spring/shop/shop_shield_special_spring2016Rogue.png new file mode 100644 index 0000000000..d9119cfc51 Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/spring/shop/shop_shield_special_spring2016Rogue.png differ diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_shield_special_spring2016Warrior.png b/common/img/sprites/spritesmith/gear/events/spring/shop/shop_shield_special_spring2016Warrior.png new file mode 100644 index 0000000000..640cf5b420 Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/spring/shop/shop_shield_special_spring2016Warrior.png differ diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_weapon_special_spring2016Healer.png b/common/img/sprites/spritesmith/gear/events/spring/shop/shop_weapon_special_spring2016Healer.png new file mode 100644 index 0000000000..b2d95372c5 Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/spring/shop/shop_weapon_special_spring2016Healer.png differ diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_weapon_special_spring2016Mage.png b/common/img/sprites/spritesmith/gear/events/spring/shop/shop_weapon_special_spring2016Mage.png new file mode 100644 index 0000000000..2255e86079 Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/spring/shop/shop_weapon_special_spring2016Mage.png differ diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_weapon_special_spring2016Rogue.png b/common/img/sprites/spritesmith/gear/events/spring/shop/shop_weapon_special_spring2016Rogue.png new file mode 100644 index 0000000000..8dc95951b5 Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/spring/shop/shop_weapon_special_spring2016Rogue.png differ diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_weapon_special_spring2016Warrior.png b/common/img/sprites/spritesmith/gear/events/spring/shop/shop_weapon_special_spring2016Warrior.png new file mode 100644 index 0000000000..56fc507379 Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/spring/shop/shop_weapon_special_spring2016Warrior.png differ diff --git a/common/img/sprites/spritesmith/gear/events/spring/slim_armor_special_spring2016Healer.png b/common/img/sprites/spritesmith/gear/events/spring/slim_armor_special_spring2016Healer.png new file mode 100644 index 0000000000..503a33ed1c Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/spring/slim_armor_special_spring2016Healer.png differ diff --git a/common/img/sprites/spritesmith/gear/events/spring/slim_armor_special_spring2016Mage.png b/common/img/sprites/spritesmith/gear/events/spring/slim_armor_special_spring2016Mage.png new file mode 100644 index 0000000000..c9e4e17bb5 Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/spring/slim_armor_special_spring2016Mage.png differ diff --git a/common/img/sprites/spritesmith/gear/events/spring/slim_armor_special_spring2016Rogue.png b/common/img/sprites/spritesmith/gear/events/spring/slim_armor_special_spring2016Rogue.png new file mode 100644 index 0000000000..73f97ba166 Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/spring/slim_armor_special_spring2016Rogue.png differ diff --git a/common/img/sprites/spritesmith/gear/events/spring/slim_armor_special_spring2016Warrior.png b/common/img/sprites/spritesmith/gear/events/spring/slim_armor_special_spring2016Warrior.png new file mode 100644 index 0000000000..e3a78f818e Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/spring/slim_armor_special_spring2016Warrior.png differ diff --git a/common/img/sprites/spritesmith/gear/events/spring/weapon_special_spring2016Healer.png b/common/img/sprites/spritesmith/gear/events/spring/weapon_special_spring2016Healer.png new file mode 100644 index 0000000000..385a260d7b Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/spring/weapon_special_spring2016Healer.png differ diff --git a/common/img/sprites/spritesmith/gear/events/spring/weapon_special_spring2016Mage.png b/common/img/sprites/spritesmith/gear/events/spring/weapon_special_spring2016Mage.png new file mode 100644 index 0000000000..b03d07b50c Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/spring/weapon_special_spring2016Mage.png differ diff --git a/common/img/sprites/spritesmith/gear/events/spring/weapon_special_spring2016Rogue.png b/common/img/sprites/spritesmith/gear/events/spring/weapon_special_spring2016Rogue.png new file mode 100644 index 0000000000..b8212d9846 Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/spring/weapon_special_spring2016Rogue.png differ diff --git a/common/img/sprites/spritesmith/gear/events/spring/weapon_special_spring2016Warrior.png b/common/img/sprites/spritesmith/gear/events/spring/weapon_special_spring2016Warrior.png new file mode 100644 index 0000000000..5035fc9af4 Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/spring/weapon_special_spring2016Warrior.png differ diff --git a/common/img/sprites/spritesmith/npcs/npc_alex.png b/common/img/sprites/spritesmith/npcs/npc_alex.png index e904970937..8982854041 100644 Binary files a/common/img/sprites/spritesmith/npcs/npc_alex.png and b/common/img/sprites/spritesmith/npcs/npc_alex.png differ diff --git a/common/img/sprites/spritesmith/npcs/npc_alex_broken.png b/common/img/sprites/spritesmith/npcs/npc_alex_broken.png new file mode 100644 index 0000000000..5859ed22e6 Binary files /dev/null and b/common/img/sprites/spritesmith/npcs/npc_alex_broken.png differ diff --git a/common/img/sprites/spritesmith/npcs/npc_aprilFool.png b/common/img/sprites/spritesmith/npcs/npc_aprilFool.png new file mode 100644 index 0000000000..32f1094469 Binary files /dev/null and b/common/img/sprites/spritesmith/npcs/npc_aprilFool.png differ diff --git a/common/img/sprites/spritesmith/npcs/npc_bailey.png b/common/img/sprites/spritesmith/npcs/npc_bailey.png index f6e58617a8..419496bdd0 100644 Binary files a/common/img/sprites/spritesmith/npcs/npc_bailey.png and b/common/img/sprites/spritesmith/npcs/npc_bailey.png differ diff --git a/common/img/sprites/spritesmith/npcs/npc_bailey_broken.png b/common/img/sprites/spritesmith/npcs/npc_bailey_broken.png new file mode 100644 index 0000000000..906fe2fdbe Binary files /dev/null and b/common/img/sprites/spritesmith/npcs/npc_bailey_broken.png differ diff --git a/common/img/sprites/spritesmith/npcs/npc_daniel.png b/common/img/sprites/spritesmith/npcs/npc_daniel.png index b12dd9e254..471f751e72 100644 Binary files a/common/img/sprites/spritesmith/npcs/npc_daniel.png and b/common/img/sprites/spritesmith/npcs/npc_daniel.png differ diff --git a/common/img/sprites/spritesmith/npcs/npc_ian.png b/common/img/sprites/spritesmith/npcs/npc_ian.png new file mode 100644 index 0000000000..86860dfa1b Binary files /dev/null and b/common/img/sprites/spritesmith/npcs/npc_ian.png differ diff --git a/common/img/sprites/spritesmith/npcs/npc_justin.png b/common/img/sprites/spritesmith/npcs/npc_justin.png index 08cb56f206..9365bc12c9 100644 Binary files a/common/img/sprites/spritesmith/npcs/npc_justin.png and b/common/img/sprites/spritesmith/npcs/npc_justin.png differ diff --git a/common/img/sprites/spritesmith/npcs/npc_matt.png b/common/img/sprites/spritesmith/npcs/npc_matt.png index b643153c46..e129d6e43e 100644 Binary files a/common/img/sprites/spritesmith/npcs/npc_matt.png and b/common/img/sprites/spritesmith/npcs/npc_matt.png differ diff --git a/common/img/sprites/spritesmith/npcs/npc_matt_broken.png b/common/img/sprites/spritesmith/npcs/npc_matt_broken.png new file mode 100644 index 0000000000..638dc40166 Binary files /dev/null and b/common/img/sprites/spritesmith/npcs/npc_matt_broken.png differ diff --git a/common/img/sprites/spritesmith/npcs/npc_timetravelers_active.png b/common/img/sprites/spritesmith/npcs/npc_timetravelers_active.png index 422c355bcb..f84a5ba2e0 100644 Binary files a/common/img/sprites/spritesmith/npcs/npc_timetravelers_active.png and b/common/img/sprites/spritesmith/npcs/npc_timetravelers_active.png differ diff --git a/common/img/sprites/spritesmith/npcs/seasonalshop_open.png b/common/img/sprites/spritesmith/npcs/seasonalshop_open.png index 5e0ab92cb1..e1f811893e 100644 Binary files a/common/img/sprites/spritesmith/npcs/seasonalshop_open.png and b/common/img/sprites/spritesmith/npcs/seasonalshop_open.png differ diff --git a/common/img/sprites/spritesmith/quests/quest_TEMPLATE_FOR_MISSING_IMAGE.png b/common/img/sprites/spritesmith/quests/bosses/quest_TEMPLATE_FOR_MISSING_IMAGE.png similarity index 100% rename from common/img/sprites/spritesmith/quests/quest_TEMPLATE_FOR_MISSING_IMAGE.png rename to common/img/sprites/spritesmith/quests/bosses/quest_TEMPLATE_FOR_MISSING_IMAGE.png diff --git a/common/img/sprites/spritesmith/quests/quest_atom1.png b/common/img/sprites/spritesmith/quests/bosses/quest_atom1.png similarity index 100% rename from common/img/sprites/spritesmith/quests/quest_atom1.png rename to common/img/sprites/spritesmith/quests/bosses/quest_atom1.png diff --git a/common/img/sprites/spritesmith/quests/quest_atom2.png b/common/img/sprites/spritesmith/quests/bosses/quest_atom2.png similarity index 100% rename from common/img/sprites/spritesmith/quests/quest_atom2.png rename to common/img/sprites/spritesmith/quests/bosses/quest_atom2.png diff --git a/common/img/sprites/spritesmith/quests/quest_atom3.png b/common/img/sprites/spritesmith/quests/bosses/quest_atom3.png similarity index 100% rename from common/img/sprites/spritesmith/quests/quest_atom3.png rename to common/img/sprites/spritesmith/quests/bosses/quest_atom3.png diff --git a/common/img/sprites/spritesmith/quests/quest_basilist.png b/common/img/sprites/spritesmith/quests/bosses/quest_basilist.png similarity index 100% rename from common/img/sprites/spritesmith/quests/quest_basilist.png rename to common/img/sprites/spritesmith/quests/bosses/quest_basilist.png diff --git a/common/img/sprites/spritesmith/quests/quest_bunny.png b/common/img/sprites/spritesmith/quests/bosses/quest_bunny.png similarity index 100% rename from common/img/sprites/spritesmith/quests/quest_bunny.png rename to common/img/sprites/spritesmith/quests/bosses/quest_bunny.png diff --git a/common/img/sprites/spritesmith/quests/quest_cheetah.png b/common/img/sprites/spritesmith/quests/bosses/quest_cheetah.png similarity index 100% rename from common/img/sprites/spritesmith/quests/quest_cheetah.png rename to common/img/sprites/spritesmith/quests/bosses/quest_cheetah.png diff --git a/common/img/sprites/spritesmith/quests/quest_dilatory.png b/common/img/sprites/spritesmith/quests/bosses/quest_dilatory.png similarity index 100% rename from common/img/sprites/spritesmith/quests/quest_dilatory.png rename to common/img/sprites/spritesmith/quests/bosses/quest_dilatory.png diff --git a/common/img/sprites/spritesmith/quests/bosses/quest_dilatoryDistress1.png b/common/img/sprites/spritesmith/quests/bosses/quest_dilatoryDistress1.png new file mode 100644 index 0000000000..6275bb9cc5 Binary files /dev/null and b/common/img/sprites/spritesmith/quests/bosses/quest_dilatoryDistress1.png differ diff --git a/common/img/sprites/spritesmith/quests/quest_dilatoryDistress2.png b/common/img/sprites/spritesmith/quests/bosses/quest_dilatoryDistress2.png similarity index 100% rename from common/img/sprites/spritesmith/quests/quest_dilatoryDistress2.png rename to common/img/sprites/spritesmith/quests/bosses/quest_dilatoryDistress2.png diff --git a/common/img/sprites/spritesmith/quests/quest_dilatoryDistress3.png b/common/img/sprites/spritesmith/quests/bosses/quest_dilatoryDistress3.png similarity index 100% rename from common/img/sprites/spritesmith/quests/quest_dilatoryDistress3.png rename to common/img/sprites/spritesmith/quests/bosses/quest_dilatoryDistress3.png diff --git a/common/img/sprites/spritesmith/quests/quest_dilatory_derby.png b/common/img/sprites/spritesmith/quests/bosses/quest_dilatory_derby.png similarity index 100% rename from common/img/sprites/spritesmith/quests/quest_dilatory_derby.png rename to common/img/sprites/spritesmith/quests/bosses/quest_dilatory_derby.png diff --git a/common/img/sprites/spritesmith/quests/quest_egg.png b/common/img/sprites/spritesmith/quests/bosses/quest_egg.png similarity index 100% rename from common/img/sprites/spritesmith/quests/quest_egg.png rename to common/img/sprites/spritesmith/quests/bosses/quest_egg.png diff --git a/common/img/sprites/spritesmith/quests/quest_evilsanta.png b/common/img/sprites/spritesmith/quests/bosses/quest_evilsanta.png similarity index 100% rename from common/img/sprites/spritesmith/quests/quest_evilsanta.png rename to common/img/sprites/spritesmith/quests/bosses/quest_evilsanta.png diff --git a/common/img/sprites/spritesmith/quests/quest_evilsanta2.png b/common/img/sprites/spritesmith/quests/bosses/quest_evilsanta2.png similarity index 100% rename from common/img/sprites/spritesmith/quests/quest_evilsanta2.png rename to common/img/sprites/spritesmith/quests/bosses/quest_evilsanta2.png diff --git a/common/img/sprites/spritesmith/quests/bosses/quest_falcon.png b/common/img/sprites/spritesmith/quests/bosses/quest_falcon.png new file mode 100644 index 0000000000..772da170b1 Binary files /dev/null and b/common/img/sprites/spritesmith/quests/bosses/quest_falcon.png differ diff --git a/common/img/sprites/spritesmith/quests/quest_frog.png b/common/img/sprites/spritesmith/quests/bosses/quest_frog.png similarity index 100% rename from common/img/sprites/spritesmith/quests/quest_frog.png rename to common/img/sprites/spritesmith/quests/bosses/quest_frog.png diff --git a/common/img/sprites/spritesmith/quests/quest_ghost_stag.png b/common/img/sprites/spritesmith/quests/bosses/quest_ghost_stag.png similarity index 100% rename from common/img/sprites/spritesmith/quests/quest_ghost_stag.png rename to common/img/sprites/spritesmith/quests/bosses/quest_ghost_stag.png diff --git a/common/img/sprites/spritesmith/quests/quest_goldenknight1.png b/common/img/sprites/spritesmith/quests/bosses/quest_goldenknight1.png similarity index 100% rename from common/img/sprites/spritesmith/quests/quest_goldenknight1.png rename to common/img/sprites/spritesmith/quests/bosses/quest_goldenknight1.png diff --git a/common/img/sprites/spritesmith/quests/quest_goldenknight2.png b/common/img/sprites/spritesmith/quests/bosses/quest_goldenknight2.png similarity index 100% rename from common/img/sprites/spritesmith/quests/quest_goldenknight2.png rename to common/img/sprites/spritesmith/quests/bosses/quest_goldenknight2.png diff --git a/common/img/sprites/spritesmith/quests/quest_goldenknight3.png b/common/img/sprites/spritesmith/quests/bosses/quest_goldenknight3.png similarity index 100% rename from common/img/sprites/spritesmith/quests/quest_goldenknight3.png rename to common/img/sprites/spritesmith/quests/bosses/quest_goldenknight3.png diff --git a/common/img/sprites/spritesmith/quests/quest_gryphon.png b/common/img/sprites/spritesmith/quests/bosses/quest_gryphon.png similarity index 100% rename from common/img/sprites/spritesmith/quests/quest_gryphon.png rename to common/img/sprites/spritesmith/quests/bosses/quest_gryphon.png diff --git a/common/img/sprites/spritesmith/quests/quest_harpy.png b/common/img/sprites/spritesmith/quests/bosses/quest_harpy.png similarity index 100% rename from common/img/sprites/spritesmith/quests/quest_harpy.png rename to common/img/sprites/spritesmith/quests/bosses/quest_harpy.png diff --git a/common/img/sprites/spritesmith/quests/quest_hedgehog.png b/common/img/sprites/spritesmith/quests/bosses/quest_hedgehog.png similarity index 100% rename from common/img/sprites/spritesmith/quests/quest_hedgehog.png rename to common/img/sprites/spritesmith/quests/bosses/quest_hedgehog.png diff --git a/common/img/sprites/spritesmith/quests/quest_horse.png b/common/img/sprites/spritesmith/quests/bosses/quest_horse.png similarity index 100% rename from common/img/sprites/spritesmith/quests/quest_horse.png rename to common/img/sprites/spritesmith/quests/bosses/quest_horse.png diff --git a/common/img/sprites/spritesmith/quests/quest_kraken.png b/common/img/sprites/spritesmith/quests/bosses/quest_kraken.png similarity index 100% rename from common/img/sprites/spritesmith/quests/quest_kraken.png rename to common/img/sprites/spritesmith/quests/bosses/quest_kraken.png diff --git a/common/img/sprites/spritesmith/quests/quest_monkey.png b/common/img/sprites/spritesmith/quests/bosses/quest_monkey.png similarity index 100% rename from common/img/sprites/spritesmith/quests/quest_monkey.png rename to common/img/sprites/spritesmith/quests/bosses/quest_monkey.png diff --git a/common/img/sprites/spritesmith/quests/bosses/quest_moonstone1.png b/common/img/sprites/spritesmith/quests/bosses/quest_moonstone1.png new file mode 100644 index 0000000000..e19c0553bc Binary files /dev/null and b/common/img/sprites/spritesmith/quests/bosses/quest_moonstone1.png differ diff --git a/common/img/sprites/spritesmith/quests/quest_moonstone2.png b/common/img/sprites/spritesmith/quests/bosses/quest_moonstone2.png similarity index 100% rename from common/img/sprites/spritesmith/quests/quest_moonstone2.png rename to common/img/sprites/spritesmith/quests/bosses/quest_moonstone2.png diff --git a/common/img/sprites/spritesmith/quests/quest_moonstone3.png b/common/img/sprites/spritesmith/quests/bosses/quest_moonstone3.png similarity index 100% rename from common/img/sprites/spritesmith/quests/quest_moonstone3.png rename to common/img/sprites/spritesmith/quests/bosses/quest_moonstone3.png diff --git a/common/img/sprites/spritesmith/quests/quest_octopus.png b/common/img/sprites/spritesmith/quests/bosses/quest_octopus.png similarity index 100% rename from common/img/sprites/spritesmith/quests/quest_octopus.png rename to common/img/sprites/spritesmith/quests/bosses/quest_octopus.png diff --git a/common/img/sprites/spritesmith/quests/quest_owl.png b/common/img/sprites/spritesmith/quests/bosses/quest_owl.png similarity index 100% rename from common/img/sprites/spritesmith/quests/quest_owl.png rename to common/img/sprites/spritesmith/quests/bosses/quest_owl.png diff --git a/common/img/sprites/spritesmith/quests/quest_penguin.png b/common/img/sprites/spritesmith/quests/bosses/quest_penguin.png similarity index 100% rename from common/img/sprites/spritesmith/quests/quest_penguin.png rename to common/img/sprites/spritesmith/quests/bosses/quest_penguin.png diff --git a/common/img/sprites/spritesmith/quests/quest_rat.png b/common/img/sprites/spritesmith/quests/bosses/quest_rat.png similarity index 100% rename from common/img/sprites/spritesmith/quests/quest_rat.png rename to common/img/sprites/spritesmith/quests/bosses/quest_rat.png diff --git a/common/img/sprites/spritesmith/quests/quest_rock.png b/common/img/sprites/spritesmith/quests/bosses/quest_rock.png similarity index 100% rename from common/img/sprites/spritesmith/quests/quest_rock.png rename to common/img/sprites/spritesmith/quests/bosses/quest_rock.png diff --git a/common/img/sprites/spritesmith/quests/quest_rooster.png b/common/img/sprites/spritesmith/quests/bosses/quest_rooster.png similarity index 100% rename from common/img/sprites/spritesmith/quests/quest_rooster.png rename to common/img/sprites/spritesmith/quests/bosses/quest_rooster.png diff --git a/common/img/sprites/spritesmith/quests/quest_sabretooth.png b/common/img/sprites/spritesmith/quests/bosses/quest_sabretooth.png similarity index 100% rename from common/img/sprites/spritesmith/quests/quest_sabretooth.png rename to common/img/sprites/spritesmith/quests/bosses/quest_sabretooth.png diff --git a/common/img/sprites/spritesmith/quests/quest_sheep.png b/common/img/sprites/spritesmith/quests/bosses/quest_sheep.png similarity index 100% rename from common/img/sprites/spritesmith/quests/quest_sheep.png rename to common/img/sprites/spritesmith/quests/bosses/quest_sheep.png diff --git a/common/img/sprites/spritesmith/quests/quest_slime.png b/common/img/sprites/spritesmith/quests/bosses/quest_slime.png similarity index 100% rename from common/img/sprites/spritesmith/quests/quest_slime.png rename to common/img/sprites/spritesmith/quests/bosses/quest_slime.png diff --git a/common/img/sprites/spritesmith/quests/bosses/quest_snail.png b/common/img/sprites/spritesmith/quests/bosses/quest_snail.png new file mode 100644 index 0000000000..bb80a3e55a Binary files /dev/null and b/common/img/sprites/spritesmith/quests/bosses/quest_snail.png differ diff --git a/common/img/sprites/spritesmith/quests/quest_snake.png b/common/img/sprites/spritesmith/quests/bosses/quest_snake.png similarity index 100% rename from common/img/sprites/spritesmith/quests/quest_snake.png rename to common/img/sprites/spritesmith/quests/bosses/quest_snake.png diff --git a/common/img/sprites/spritesmith/quests/quest_spider.png b/common/img/sprites/spritesmith/quests/bosses/quest_spider.png similarity index 100% rename from common/img/sprites/spritesmith/quests/quest_spider.png rename to common/img/sprites/spritesmith/quests/bosses/quest_spider.png diff --git a/common/img/sprites/spritesmith/quests/quest_stressbeast.png b/common/img/sprites/spritesmith/quests/bosses/quest_stressbeast.png similarity index 100% rename from common/img/sprites/spritesmith/quests/quest_stressbeast.png rename to common/img/sprites/spritesmith/quests/bosses/quest_stressbeast.png diff --git a/common/img/sprites/spritesmith/quests/quest_stressbeast_bailey.png b/common/img/sprites/spritesmith/quests/bosses/quest_stressbeast_bailey.png similarity index 100% rename from common/img/sprites/spritesmith/quests/quest_stressbeast_bailey.png rename to common/img/sprites/spritesmith/quests/bosses/quest_stressbeast_bailey.png diff --git a/common/img/sprites/spritesmith/quests/quest_stressbeast_guide.png b/common/img/sprites/spritesmith/quests/bosses/quest_stressbeast_guide.png similarity index 100% rename from common/img/sprites/spritesmith/quests/quest_stressbeast_guide.png rename to common/img/sprites/spritesmith/quests/bosses/quest_stressbeast_guide.png diff --git a/common/img/sprites/spritesmith/quests/quest_stressbeast_stables.png b/common/img/sprites/spritesmith/quests/bosses/quest_stressbeast_stables.png similarity index 100% rename from common/img/sprites/spritesmith/quests/quest_stressbeast_stables.png rename to common/img/sprites/spritesmith/quests/bosses/quest_stressbeast_stables.png diff --git a/common/img/sprites/spritesmith/quests/quest_trex.png b/common/img/sprites/spritesmith/quests/bosses/quest_trex.png similarity index 100% rename from common/img/sprites/spritesmith/quests/quest_trex.png rename to common/img/sprites/spritesmith/quests/bosses/quest_trex.png diff --git a/common/img/sprites/spritesmith/quests/quest_trex_undead.png b/common/img/sprites/spritesmith/quests/bosses/quest_trex_undead.png similarity index 100% rename from common/img/sprites/spritesmith/quests/quest_trex_undead.png rename to common/img/sprites/spritesmith/quests/bosses/quest_trex_undead.png diff --git a/common/img/sprites/spritesmith/quests/quest_unicorn.png b/common/img/sprites/spritesmith/quests/bosses/quest_unicorn.png similarity index 100% rename from common/img/sprites/spritesmith/quests/quest_unicorn.png rename to common/img/sprites/spritesmith/quests/bosses/quest_unicorn.png diff --git a/common/img/sprites/spritesmith/quests/quest_vice1.png b/common/img/sprites/spritesmith/quests/bosses/quest_vice1.png similarity index 100% rename from common/img/sprites/spritesmith/quests/quest_vice1.png rename to common/img/sprites/spritesmith/quests/bosses/quest_vice1.png diff --git a/common/img/sprites/spritesmith/quests/quest_vice2.png b/common/img/sprites/spritesmith/quests/bosses/quest_vice2.png similarity index 100% rename from common/img/sprites/spritesmith/quests/quest_vice2.png rename to common/img/sprites/spritesmith/quests/bosses/quest_vice2.png diff --git a/common/img/sprites/spritesmith/quests/quest_vice3.png b/common/img/sprites/spritesmith/quests/bosses/quest_vice3.png similarity index 100% rename from common/img/sprites/spritesmith/quests/quest_vice3.png rename to common/img/sprites/spritesmith/quests/bosses/quest_vice3.png diff --git a/common/img/sprites/spritesmith/quests/quest_whale.png b/common/img/sprites/spritesmith/quests/bosses/quest_whale.png similarity index 100% rename from common/img/sprites/spritesmith/quests/quest_whale.png rename to common/img/sprites/spritesmith/quests/bosses/quest_whale.png diff --git a/common/img/sprites/spritesmith/quests/quest_dilatoryDistress1_blueFins.png b/common/img/sprites/spritesmith/quests/items/quest_dilatoryDistress1_blueFins.png similarity index 100% rename from common/img/sprites/spritesmith/quests/quest_dilatoryDistress1_blueFins.png rename to common/img/sprites/spritesmith/quests/items/quest_dilatoryDistress1_blueFins.png diff --git a/common/img/sprites/spritesmith/quests/quest_dilatoryDistress1_fireCoral.png b/common/img/sprites/spritesmith/quests/items/quest_dilatoryDistress1_fireCoral.png similarity index 100% rename from common/img/sprites/spritesmith/quests/quest_dilatoryDistress1_fireCoral.png rename to common/img/sprites/spritesmith/quests/items/quest_dilatoryDistress1_fireCoral.png diff --git a/common/img/sprites/spritesmith/quests/quest_egg_plainEgg.png b/common/img/sprites/spritesmith/quests/items/quest_egg_plainEgg.png similarity index 100% rename from common/img/sprites/spritesmith/quests/quest_egg_plainEgg.png rename to common/img/sprites/spritesmith/quests/items/quest_egg_plainEgg.png diff --git a/common/img/sprites/spritesmith/quests/quest_goldenknight1_testimony.png b/common/img/sprites/spritesmith/quests/items/quest_goldenknight1_testimony.png similarity index 100% rename from common/img/sprites/spritesmith/quests/quest_goldenknight1_testimony.png rename to common/img/sprites/spritesmith/quests/items/quest_goldenknight1_testimony.png diff --git a/common/img/sprites/spritesmith/quests/quest_moonstone1_moonstone.png b/common/img/sprites/spritesmith/quests/items/quest_moonstone1_moonstone.png similarity index 100% rename from common/img/sprites/spritesmith/quests/quest_moonstone1_moonstone.png rename to common/img/sprites/spritesmith/quests/items/quest_moonstone1_moonstone.png diff --git a/common/img/sprites/spritesmith/quests/quest_vice2_lightCrystal.png b/common/img/sprites/spritesmith/quests/items/quest_vice2_lightCrystal.png similarity index 100% rename from common/img/sprites/spritesmith/quests/quest_vice2_lightCrystal.png rename to common/img/sprites/spritesmith/quests/items/quest_vice2_lightCrystal.png diff --git a/common/img/sprites/spritesmith/quests/quest_dilatoryDistress1.png b/common/img/sprites/spritesmith/quests/quest_dilatoryDistress1.png deleted file mode 100644 index f4dae86ecd..0000000000 Binary files a/common/img/sprites/spritesmith/quests/quest_dilatoryDistress1.png and /dev/null differ diff --git a/common/img/sprites/spritesmith/quests/quest_moonstone1.png b/common/img/sprites/spritesmith/quests/quest_moonstone1.png deleted file mode 100644 index f4dae86ecd..0000000000 Binary files a/common/img/sprites/spritesmith/quests/quest_moonstone1.png and /dev/null differ diff --git a/common/img/sprites/spritesmith/quests/inventory_quest_scroll_atom1.png b/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_atom1.png similarity index 100% rename from common/img/sprites/spritesmith/quests/inventory_quest_scroll_atom1.png rename to common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_atom1.png diff --git a/common/img/sprites/spritesmith/quests/inventory_quest_scroll_atom1_locked.png b/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_atom1_locked.png similarity index 100% rename from common/img/sprites/spritesmith/quests/inventory_quest_scroll_atom1_locked.png rename to common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_atom1_locked.png diff --git a/common/img/sprites/spritesmith/quests/inventory_quest_scroll_atom2.png b/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_atom2.png similarity index 100% rename from common/img/sprites/spritesmith/quests/inventory_quest_scroll_atom2.png rename to common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_atom2.png diff --git a/common/img/sprites/spritesmith/quests/inventory_quest_scroll_atom2_locked.png b/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_atom2_locked.png similarity index 100% rename from common/img/sprites/spritesmith/quests/inventory_quest_scroll_atom2_locked.png rename to common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_atom2_locked.png diff --git a/common/img/sprites/spritesmith/quests/inventory_quest_scroll_atom3.png b/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_atom3.png similarity index 100% rename from common/img/sprites/spritesmith/quests/inventory_quest_scroll_atom3.png rename to common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_atom3.png diff --git a/common/img/sprites/spritesmith/quests/inventory_quest_scroll_atom3_locked.png b/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_atom3_locked.png similarity index 100% rename from common/img/sprites/spritesmith/quests/inventory_quest_scroll_atom3_locked.png rename to common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_atom3_locked.png diff --git a/common/img/sprites/spritesmith/quests/inventory_quest_scroll_basilist.png b/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_basilist.png similarity index 100% rename from common/img/sprites/spritesmith/quests/inventory_quest_scroll_basilist.png rename to common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_basilist.png diff --git a/common/img/sprites/spritesmith/quests/inventory_quest_scroll_bunny.png b/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_bunny.png similarity index 100% rename from common/img/sprites/spritesmith/quests/inventory_quest_scroll_bunny.png rename to common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_bunny.png diff --git a/common/img/sprites/spritesmith/quests/inventory_quest_scroll_cheetah.png b/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_cheetah.png similarity index 100% rename from common/img/sprites/spritesmith/quests/inventory_quest_scroll_cheetah.png rename to common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_cheetah.png diff --git a/common/img/sprites/spritesmith/quests/inventory_quest_scroll_dilatoryDistress1.png b/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_dilatoryDistress1.png similarity index 100% rename from common/img/sprites/spritesmith/quests/inventory_quest_scroll_dilatoryDistress1.png rename to common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_dilatoryDistress1.png diff --git a/common/img/sprites/spritesmith/quests/inventory_quest_scroll_dilatoryDistress2.png b/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_dilatoryDistress2.png similarity index 100% rename from common/img/sprites/spritesmith/quests/inventory_quest_scroll_dilatoryDistress2.png rename to common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_dilatoryDistress2.png diff --git a/common/img/sprites/spritesmith/quests/inventory_quest_scroll_dilatoryDistress2_locked.png b/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_dilatoryDistress2_locked.png similarity index 100% rename from common/img/sprites/spritesmith/quests/inventory_quest_scroll_dilatoryDistress2_locked.png rename to common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_dilatoryDistress2_locked.png diff --git a/common/img/sprites/spritesmith/quests/inventory_quest_scroll_dilatoryDistress3.png b/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_dilatoryDistress3.png similarity index 100% rename from common/img/sprites/spritesmith/quests/inventory_quest_scroll_dilatoryDistress3.png rename to common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_dilatoryDistress3.png diff --git a/common/img/sprites/spritesmith/quests/inventory_quest_scroll_dilatoryDistress3_locked.png b/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_dilatoryDistress3_locked.png similarity index 100% rename from common/img/sprites/spritesmith/quests/inventory_quest_scroll_dilatoryDistress3_locked.png rename to common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_dilatoryDistress3_locked.png diff --git a/common/img/sprites/spritesmith/quests/inventory_quest_scroll_dilatory_derby.png b/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_dilatory_derby.png similarity index 100% rename from common/img/sprites/spritesmith/quests/inventory_quest_scroll_dilatory_derby.png rename to common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_dilatory_derby.png diff --git a/common/img/sprites/spritesmith/quests/inventory_quest_scroll_egg.png b/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_egg.png similarity index 100% rename from common/img/sprites/spritesmith/quests/inventory_quest_scroll_egg.png rename to common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_egg.png diff --git a/common/img/sprites/spritesmith/quests/inventory_quest_scroll_evilsanta.png b/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_evilsanta.png similarity index 100% rename from common/img/sprites/spritesmith/quests/inventory_quest_scroll_evilsanta.png rename to common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_evilsanta.png diff --git a/common/img/sprites/spritesmith/quests/inventory_quest_scroll_evilsanta2.png b/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_evilsanta2.png similarity index 100% rename from common/img/sprites/spritesmith/quests/inventory_quest_scroll_evilsanta2.png rename to common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_evilsanta2.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_falcon.png b/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_falcon.png new file mode 100644 index 0000000000..fc155322be Binary files /dev/null and b/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_falcon.png differ diff --git a/common/img/sprites/spritesmith/quests/inventory_quest_scroll_frog.png b/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_frog.png similarity index 100% rename from common/img/sprites/spritesmith/quests/inventory_quest_scroll_frog.png rename to common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_frog.png diff --git a/common/img/sprites/spritesmith/quests/inventory_quest_scroll_ghost_stag.png b/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_ghost_stag.png similarity index 100% rename from common/img/sprites/spritesmith/quests/inventory_quest_scroll_ghost_stag.png rename to common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_ghost_stag.png diff --git a/common/img/sprites/spritesmith/quests/inventory_quest_scroll_goldenknight1.png b/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_goldenknight1.png similarity index 100% rename from common/img/sprites/spritesmith/quests/inventory_quest_scroll_goldenknight1.png rename to common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_goldenknight1.png diff --git a/common/img/sprites/spritesmith/quests/inventory_quest_scroll_goldenknight1_locked.png b/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_goldenknight1_locked.png similarity index 100% rename from common/img/sprites/spritesmith/quests/inventory_quest_scroll_goldenknight1_locked.png rename to common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_goldenknight1_locked.png diff --git a/common/img/sprites/spritesmith/quests/inventory_quest_scroll_goldenknight2.png b/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_goldenknight2.png similarity index 100% rename from common/img/sprites/spritesmith/quests/inventory_quest_scroll_goldenknight2.png rename to common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_goldenknight2.png diff --git a/common/img/sprites/spritesmith/quests/inventory_quest_scroll_goldenknight2_locked.png b/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_goldenknight2_locked.png similarity index 100% rename from common/img/sprites/spritesmith/quests/inventory_quest_scroll_goldenknight2_locked.png rename to common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_goldenknight2_locked.png diff --git a/common/img/sprites/spritesmith/quests/inventory_quest_scroll_goldenknight3.png b/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_goldenknight3.png similarity index 100% rename from common/img/sprites/spritesmith/quests/inventory_quest_scroll_goldenknight3.png rename to common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_goldenknight3.png diff --git a/common/img/sprites/spritesmith/quests/inventory_quest_scroll_goldenknight3_locked.png b/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_goldenknight3_locked.png similarity index 100% rename from common/img/sprites/spritesmith/quests/inventory_quest_scroll_goldenknight3_locked.png rename to common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_goldenknight3_locked.png diff --git a/common/img/sprites/spritesmith/quests/inventory_quest_scroll_gryphon.png b/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_gryphon.png similarity index 100% rename from common/img/sprites/spritesmith/quests/inventory_quest_scroll_gryphon.png rename to common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_gryphon.png diff --git a/common/img/sprites/spritesmith/quests/inventory_quest_scroll_harpy.png b/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_harpy.png similarity index 100% rename from common/img/sprites/spritesmith/quests/inventory_quest_scroll_harpy.png rename to common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_harpy.png diff --git a/common/img/sprites/spritesmith/quests/inventory_quest_scroll_hedgehog.png b/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_hedgehog.png similarity index 100% rename from common/img/sprites/spritesmith/quests/inventory_quest_scroll_hedgehog.png rename to common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_hedgehog.png diff --git a/common/img/sprites/spritesmith/quests/inventory_quest_scroll_horse.png b/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_horse.png similarity index 100% rename from common/img/sprites/spritesmith/quests/inventory_quest_scroll_horse.png rename to common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_horse.png diff --git a/common/img/sprites/spritesmith/quests/inventory_quest_scroll_kraken.png b/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_kraken.png similarity index 100% rename from common/img/sprites/spritesmith/quests/inventory_quest_scroll_kraken.png rename to common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_kraken.png diff --git a/common/img/sprites/spritesmith/quests/inventory_quest_scroll_monkey.png b/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_monkey.png similarity index 100% rename from common/img/sprites/spritesmith/quests/inventory_quest_scroll_monkey.png rename to common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_monkey.png diff --git a/common/img/sprites/spritesmith/quests/inventory_quest_scroll_moonstone1.png b/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_moonstone1.png similarity index 100% rename from common/img/sprites/spritesmith/quests/inventory_quest_scroll_moonstone1.png rename to common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_moonstone1.png diff --git a/common/img/sprites/spritesmith/quests/inventory_quest_scroll_moonstone1_locked.png b/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_moonstone1_locked.png similarity index 100% rename from common/img/sprites/spritesmith/quests/inventory_quest_scroll_moonstone1_locked.png rename to common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_moonstone1_locked.png diff --git a/common/img/sprites/spritesmith/quests/inventory_quest_scroll_moonstone2.png b/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_moonstone2.png similarity index 100% rename from common/img/sprites/spritesmith/quests/inventory_quest_scroll_moonstone2.png rename to common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_moonstone2.png diff --git a/common/img/sprites/spritesmith/quests/inventory_quest_scroll_moonstone2_locked.png b/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_moonstone2_locked.png similarity index 100% rename from common/img/sprites/spritesmith/quests/inventory_quest_scroll_moonstone2_locked.png rename to common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_moonstone2_locked.png diff --git a/common/img/sprites/spritesmith/quests/inventory_quest_scroll_moonstone3.png b/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_moonstone3.png similarity index 100% rename from common/img/sprites/spritesmith/quests/inventory_quest_scroll_moonstone3.png rename to common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_moonstone3.png diff --git a/common/img/sprites/spritesmith/quests/inventory_quest_scroll_moonstone3_locked.png b/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_moonstone3_locked.png similarity index 100% rename from common/img/sprites/spritesmith/quests/inventory_quest_scroll_moonstone3_locked.png rename to common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_moonstone3_locked.png diff --git a/common/img/sprites/spritesmith/quests/inventory_quest_scroll_octopus.png b/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_octopus.png similarity index 100% rename from common/img/sprites/spritesmith/quests/inventory_quest_scroll_octopus.png rename to common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_octopus.png diff --git a/common/img/sprites/spritesmith/quests/inventory_quest_scroll_owl.png b/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_owl.png similarity index 100% rename from common/img/sprites/spritesmith/quests/inventory_quest_scroll_owl.png rename to common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_owl.png diff --git a/common/img/sprites/spritesmith/quests/inventory_quest_scroll_penguin.png b/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_penguin.png similarity index 100% rename from common/img/sprites/spritesmith/quests/inventory_quest_scroll_penguin.png rename to common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_penguin.png diff --git a/common/img/sprites/spritesmith/quests/inventory_quest_scroll_rat.png b/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_rat.png similarity index 100% rename from common/img/sprites/spritesmith/quests/inventory_quest_scroll_rat.png rename to common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_rat.png diff --git a/common/img/sprites/spritesmith/quests/inventory_quest_scroll_rock.png b/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_rock.png similarity index 100% rename from common/img/sprites/spritesmith/quests/inventory_quest_scroll_rock.png rename to common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_rock.png diff --git a/common/img/sprites/spritesmith/quests/inventory_quest_scroll_rooster.png b/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_rooster.png similarity index 100% rename from common/img/sprites/spritesmith/quests/inventory_quest_scroll_rooster.png rename to common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_rooster.png diff --git a/common/img/sprites/spritesmith/quests/inventory_quest_scroll_sabretooth.png b/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_sabretooth.png similarity index 100% rename from common/img/sprites/spritesmith/quests/inventory_quest_scroll_sabretooth.png rename to common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_sabretooth.png diff --git a/common/img/sprites/spritesmith/quests/inventory_quest_scroll_sheep.png b/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_sheep.png similarity index 100% rename from common/img/sprites/spritesmith/quests/inventory_quest_scroll_sheep.png rename to common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_sheep.png diff --git a/common/img/sprites/spritesmith/quests/inventory_quest_scroll_slime.png b/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_slime.png similarity index 100% rename from common/img/sprites/spritesmith/quests/inventory_quest_scroll_slime.png rename to common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_slime.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_snail.png b/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_snail.png new file mode 100644 index 0000000000..c23f657cfa Binary files /dev/null and b/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_snail.png differ diff --git a/common/img/sprites/spritesmith/quests/inventory_quest_scroll_snake.png b/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_snake.png similarity index 100% rename from common/img/sprites/spritesmith/quests/inventory_quest_scroll_snake.png rename to common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_snake.png diff --git a/common/img/sprites/spritesmith/quests/inventory_quest_scroll_spider.png b/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_spider.png similarity index 100% rename from common/img/sprites/spritesmith/quests/inventory_quest_scroll_spider.png rename to common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_spider.png diff --git a/common/img/sprites/spritesmith/quests/inventory_quest_scroll_trex.png b/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_trex.png similarity index 100% rename from common/img/sprites/spritesmith/quests/inventory_quest_scroll_trex.png rename to common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_trex.png diff --git a/common/img/sprites/spritesmith/quests/inventory_quest_scroll_trex_undead.png b/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_trex_undead.png similarity index 100% rename from common/img/sprites/spritesmith/quests/inventory_quest_scroll_trex_undead.png rename to common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_trex_undead.png diff --git a/common/img/sprites/spritesmith/quests/inventory_quest_scroll_unicorn.png b/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_unicorn.png similarity index 100% rename from common/img/sprites/spritesmith/quests/inventory_quest_scroll_unicorn.png rename to common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_unicorn.png diff --git a/common/img/sprites/spritesmith/quests/inventory_quest_scroll_vice1.png b/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_vice1.png similarity index 100% rename from common/img/sprites/spritesmith/quests/inventory_quest_scroll_vice1.png rename to common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_vice1.png diff --git a/common/img/sprites/spritesmith/quests/inventory_quest_scroll_vice1_locked.png b/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_vice1_locked.png similarity index 100% rename from common/img/sprites/spritesmith/quests/inventory_quest_scroll_vice1_locked.png rename to common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_vice1_locked.png diff --git a/common/img/sprites/spritesmith/quests/inventory_quest_scroll_vice2.png b/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_vice2.png similarity index 100% rename from common/img/sprites/spritesmith/quests/inventory_quest_scroll_vice2.png rename to common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_vice2.png diff --git a/common/img/sprites/spritesmith/quests/inventory_quest_scroll_vice2_locked.png b/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_vice2_locked.png similarity index 100% rename from common/img/sprites/spritesmith/quests/inventory_quest_scroll_vice2_locked.png rename to common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_vice2_locked.png diff --git a/common/img/sprites/spritesmith/quests/inventory_quest_scroll_vice3.png b/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_vice3.png similarity index 100% rename from common/img/sprites/spritesmith/quests/inventory_quest_scroll_vice3.png rename to common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_vice3.png diff --git a/common/img/sprites/spritesmith/quests/inventory_quest_scroll_vice3_locked.png b/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_vice3_locked.png similarity index 100% rename from common/img/sprites/spritesmith/quests/inventory_quest_scroll_vice3_locked.png rename to common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_vice3_locked.png diff --git a/common/img/sprites/spritesmith/quests/inventory_quest_scroll_whale.png b/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_whale.png similarity index 100% rename from common/img/sprites/spritesmith/quests/inventory_quest_scroll_whale.png rename to common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_whale.png diff --git a/common/img/sprites/spritesmith/skills/shop_backStab.png b/common/img/sprites/spritesmith/skills/shop_backStab.png new file mode 100644 index 0000000000..cb3a8dfdad Binary files /dev/null and b/common/img/sprites/spritesmith/skills/shop_backStab.png differ diff --git a/common/img/sprites/spritesmith/skills/shop_brightness.png b/common/img/sprites/spritesmith/skills/shop_brightness.png new file mode 100644 index 0000000000..3b52004bb1 Binary files /dev/null and b/common/img/sprites/spritesmith/skills/shop_brightness.png differ diff --git a/common/img/sprites/spritesmith/skills/shop_defensiveStance.png b/common/img/sprites/spritesmith/skills/shop_defensiveStance.png new file mode 100644 index 0000000000..9fd2007385 Binary files /dev/null and b/common/img/sprites/spritesmith/skills/shop_defensiveStance.png differ diff --git a/common/img/sprites/spritesmith/skills/shop_earth.png b/common/img/sprites/spritesmith/skills/shop_earth.png new file mode 100644 index 0000000000..91e3fd478e Binary files /dev/null and b/common/img/sprites/spritesmith/skills/shop_earth.png differ diff --git a/common/img/sprites/spritesmith/skills/shop_fireball.png b/common/img/sprites/spritesmith/skills/shop_fireball.png new file mode 100644 index 0000000000..40903a415f Binary files /dev/null and b/common/img/sprites/spritesmith/skills/shop_fireball.png differ diff --git a/common/img/sprites/spritesmith/skills/shop_frost.png b/common/img/sprites/spritesmith/skills/shop_frost.png new file mode 100644 index 0000000000..70d4bc023a Binary files /dev/null and b/common/img/sprites/spritesmith/skills/shop_frost.png differ diff --git a/common/img/sprites/spritesmith/skills/shop_heal.png b/common/img/sprites/spritesmith/skills/shop_heal.png new file mode 100644 index 0000000000..30cb2f0415 Binary files /dev/null and b/common/img/sprites/spritesmith/skills/shop_heal.png differ diff --git a/common/img/sprites/spritesmith/skills/shop_heallAll.png b/common/img/sprites/spritesmith/skills/shop_heallAll.png new file mode 100644 index 0000000000..3c355f474a Binary files /dev/null and b/common/img/sprites/spritesmith/skills/shop_heallAll.png differ diff --git a/common/img/sprites/spritesmith/skills/shop_intimidate.png b/common/img/sprites/spritesmith/skills/shop_intimidate.png new file mode 100644 index 0000000000..e0a02f1579 Binary files /dev/null and b/common/img/sprites/spritesmith/skills/shop_intimidate.png differ diff --git a/common/img/sprites/spritesmith/skills/shop_mpheal.png b/common/img/sprites/spritesmith/skills/shop_mpheal.png new file mode 100644 index 0000000000..eb2242cdc4 Binary files /dev/null and b/common/img/sprites/spritesmith/skills/shop_mpheal.png differ diff --git a/common/img/sprites/spritesmith/skills/shop_pickPocket.png b/common/img/sprites/spritesmith/skills/shop_pickPocket.png new file mode 100644 index 0000000000..90aee6a370 Binary files /dev/null and b/common/img/sprites/spritesmith/skills/shop_pickPocket.png differ diff --git a/common/img/sprites/spritesmith/skills/shop_protectAura.png b/common/img/sprites/spritesmith/skills/shop_protectAura.png new file mode 100644 index 0000000000..942a78795d Binary files /dev/null and b/common/img/sprites/spritesmith/skills/shop_protectAura.png differ diff --git a/common/img/sprites/spritesmith/skills/shop_smash.png b/common/img/sprites/spritesmith/skills/shop_smash.png new file mode 100644 index 0000000000..e0b15e45cd Binary files /dev/null and b/common/img/sprites/spritesmith/skills/shop_smash.png differ diff --git a/common/img/sprites/spritesmith/skills/shop_stealth.png b/common/img/sprites/spritesmith/skills/shop_stealth.png new file mode 100644 index 0000000000..fe07a73d2f Binary files /dev/null and b/common/img/sprites/spritesmith/skills/shop_stealth.png differ diff --git a/common/img/sprites/spritesmith/skills/shop_toolsOfTrade.png b/common/img/sprites/spritesmith/skills/shop_toolsOfTrade.png new file mode 100644 index 0000000000..3b82865fde Binary files /dev/null and b/common/img/sprites/spritesmith/skills/shop_toolsOfTrade.png differ diff --git a/common/img/sprites/spritesmith/skills/shop_valorousPresence.png b/common/img/sprites/spritesmith/skills/shop_valorousPresence.png new file mode 100644 index 0000000000..de9f83e853 Binary files /dev/null and b/common/img/sprites/spritesmith/skills/shop_valorousPresence.png differ diff --git a/common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Falcon.png b/common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Falcon.png new file mode 100644 index 0000000000..845f330ae4 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Falcon.png differ diff --git a/common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Snail.png b/common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Snail.png new file mode 100644 index 0000000000..3bdc63e8b1 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Snail.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 deleted file mode 100644 index f92e8de63c..0000000000 Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-Base.png and /dev/null 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 deleted file mode 100644 index 012cb7379b..0000000000 Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-CottonCandyPink.png and /dev/null 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 deleted file mode 100644 index c1c6413657..0000000000 Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-Desert.png and /dev/null 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 deleted file mode 100644 index 2fc5146e1b..0000000000 Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-Golden.png and /dev/null 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 deleted file mode 100644 index af9663eca0..0000000000 Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-Red.png and /dev/null 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 deleted file mode 100644 index 411124e2e9..0000000000 Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-Zombie.png and /dev/null differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-Base.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-Base.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-Desert.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Floral.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Floral.png new file mode 100644 index 0000000000..659492cb74 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Floral.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-Golden.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-Peppermint.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Peppermint.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-Polar.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Polar.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-Polar.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Polar.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-Red.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-Red.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-Shade.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-Spooky.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Spooky.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-Spooky.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Spooky.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-White.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-White.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Bunny-Base.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Bunny-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Bunny-Base.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Bunny-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Bunny-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Bunny-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Bunny-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Bunny-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Bunny-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Bunny-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Bunny-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Bunny-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Bunny-Desert.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Bunny-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Bunny-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Bunny-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Bunny-Golden.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Bunny-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Bunny-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Bunny-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Bunny-Red.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Bunny-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Bunny-Red.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Bunny-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Bunny-Shade.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Bunny-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Bunny-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Bunny-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Bunny-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Bunny-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Bunny-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Bunny-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Bunny-White.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Bunny-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Bunny-White.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Bunny-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Bunny-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Bunny-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Bunny-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Bunny-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-Base.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-Base.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-Desert.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Floral.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Floral.png new file mode 100644 index 0000000000..ab9df040f0 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Floral.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-Golden.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-Peppermint.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Peppermint.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-Red.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-Red.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-Shade.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-Spooky.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Spooky.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-Spooky.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Spooky.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-White.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-White.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cheetah-Base.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cheetah-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cheetah-Base.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cheetah-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cheetah-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cheetah-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cheetah-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cheetah-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cheetah-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cheetah-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cheetah-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cheetah-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cheetah-Desert.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cheetah-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cheetah-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cheetah-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cheetah-Golden.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cheetah-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cheetah-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cheetah-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cheetah-Red.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cheetah-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cheetah-Red.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cheetah-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cheetah-Shade.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cheetah-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cheetah-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cheetah-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cheetah-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cheetah-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cheetah-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cheetah-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cheetah-White.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cheetah-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cheetah-White.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cheetah-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cheetah-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cheetah-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cheetah-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cheetah-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cuttlefish-Base.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cuttlefish-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cuttlefish-Base.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cuttlefish-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cuttlefish-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cuttlefish-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cuttlefish-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cuttlefish-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cuttlefish-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cuttlefish-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cuttlefish-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cuttlefish-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cuttlefish-Desert.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cuttlefish-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cuttlefish-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cuttlefish-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cuttlefish-Golden.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cuttlefish-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cuttlefish-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cuttlefish-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cuttlefish-Red.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cuttlefish-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cuttlefish-Red.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cuttlefish-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cuttlefish-Shade.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cuttlefish-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cuttlefish-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cuttlefish-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cuttlefish-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cuttlefish-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cuttlefish-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cuttlefish-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cuttlefish-White.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cuttlefish-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cuttlefish-White.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cuttlefish-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cuttlefish-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cuttlefish-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cuttlefish-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cuttlefish-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Deer-Base.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Deer-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Deer-Base.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Deer-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Deer-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Deer-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Deer-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Deer-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Deer-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Deer-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Deer-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Deer-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Deer-Desert.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Deer-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Deer-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Deer-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Deer-Golden.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Deer-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Deer-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Deer-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Deer-Red.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Deer-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Deer-Red.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Deer-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Deer-Shade.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Deer-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Deer-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Deer-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Deer-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Deer-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Deer-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Deer-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Deer-White.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Deer-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Deer-White.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Deer-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Deer-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Deer-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Deer-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Deer-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-Base.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-Base.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-Desert.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Floral.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Floral.png new file mode 100644 index 0000000000..6e5f99bea4 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Floral.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-Golden.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-Peppermint.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Peppermint.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-Red.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-Red.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-Shade.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-Spooky.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Spooky.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-Spooky.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Spooky.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-White.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-White.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Egg-Base.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Egg-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Egg-Base.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Egg-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Egg-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Egg-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Egg-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Egg-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Egg-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Egg-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Egg-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Egg-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Egg-Desert.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Egg-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Egg-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Egg-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Egg-Golden.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Egg-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Egg-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Egg-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Egg-Red.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Egg-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Egg-Red.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Egg-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Egg-Shade.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Egg-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Egg-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Egg-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Egg-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Egg-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Egg-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Egg-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Egg-White.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Egg-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Egg-White.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Egg-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Egg-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Egg-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Egg-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Egg-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-Base.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-Base.png new file mode 100644 index 0000000000..adc348f18d Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-CottonCandyBlue.png new file mode 100644 index 0000000000..64fb20b0c5 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-CottonCandyPink.png new file mode 100644 index 0000000000..31f01c2faa Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-Desert.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-Desert.png new file mode 100644 index 0000000000..1733226e7f Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-Golden.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-Golden.png new file mode 100644 index 0000000000..799a3f760c Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-Red.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-Red.png new file mode 100644 index 0000000000..65c3462f1b Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-Shade.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-Shade.png new file mode 100644 index 0000000000..3650a5059c Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-Skeleton.png new file mode 100644 index 0000000000..de5af284ff Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-White.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-White.png new file mode 100644 index 0000000000..ddecdf9167 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-Zombie.png new file mode 100644 index 0000000000..a423353bbb Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_FlyingPig-Base.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_FlyingPig-Base.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_FlyingPig-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_FlyingPig-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_FlyingPig-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_FlyingPig-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_FlyingPig-Desert.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_FlyingPig-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Floral.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Floral.png new file mode 100644 index 0000000000..ae5a122a16 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Floral.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_FlyingPig-Golden.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_FlyingPig-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_FlyingPig-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_FlyingPig-Peppermint.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Peppermint.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_FlyingPig-Red.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_FlyingPig-Red.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_FlyingPig-Shade.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_FlyingPig-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_FlyingPig-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_FlyingPig-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_FlyingPig-Spooky.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Spooky.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_FlyingPig-Spooky.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Spooky.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_FlyingPig-White.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_FlyingPig-White.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_FlyingPig-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_FlyingPig-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-Base.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-Base.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-Desert.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Floral.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Floral.png new file mode 100644 index 0000000000..8e837368a9 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Floral.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-Golden.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-Peppermint.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Peppermint.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-Red.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-Red.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-Shade.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-Spooky.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Spooky.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-Spooky.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Spooky.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-White.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-White.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Frog-Base.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Frog-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Frog-Base.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Frog-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Frog-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Frog-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Frog-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Frog-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Frog-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Frog-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Frog-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Frog-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Frog-Desert.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Frog-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Frog-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Frog-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Frog-Golden.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Frog-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Frog-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Frog-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Frog-Red.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Frog-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Frog-Red.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Frog-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Frog-Shade.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Frog-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Frog-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Frog-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Frog-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Frog-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Frog-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Frog-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Frog-White.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Frog-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Frog-White.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Frog-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Frog-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Frog-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Frog-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Frog-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Gryphon-Base.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Gryphon-Base.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Gryphon-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Gryphon-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Gryphon-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Gryphon-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Gryphon-Desert.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Gryphon-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Gryphon-Golden.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Gryphon-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Gryphon-Red.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Gryphon-Red.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Gryphon-RoyalPurple.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-RoyalPurple.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Gryphon-RoyalPurple.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-RoyalPurple.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Gryphon-Shade.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Gryphon-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Gryphon-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Gryphon-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Gryphon-White.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Gryphon-White.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Gryphon-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Gryphon-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Hedgehog-Base.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Hedgehog-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Hedgehog-Base.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Hedgehog-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Hedgehog-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Hedgehog-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Hedgehog-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Hedgehog-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Hedgehog-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Hedgehog-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Hedgehog-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Hedgehog-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Hedgehog-Desert.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Hedgehog-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Hedgehog-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Hedgehog-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Hedgehog-Golden.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Hedgehog-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Hedgehog-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Hedgehog-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Hedgehog-Red.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Hedgehog-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Hedgehog-Red.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Hedgehog-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Hedgehog-Shade.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Hedgehog-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Hedgehog-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Hedgehog-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Hedgehog-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Hedgehog-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Hedgehog-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Hedgehog-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Hedgehog-White.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Hedgehog-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Hedgehog-White.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Hedgehog-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Hedgehog-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Hedgehog-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Hedgehog-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Hedgehog-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Horse-Base.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Horse-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Horse-Base.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Horse-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Horse-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Horse-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Horse-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Horse-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Horse-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Horse-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Horse-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Horse-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Horse-Desert.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Horse-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Horse-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Horse-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Horse-Golden.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Horse-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Horse-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Horse-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Horse-Red.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Horse-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Horse-Red.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Horse-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Horse-Shade.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Horse-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Horse-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Horse-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Horse-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Horse-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Horse-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Horse-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Horse-White.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Horse-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Horse-White.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Horse-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Horse-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Horse-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Horse-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Horse-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_JackOLantern-Base.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_JackOLantern-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_JackOLantern-Base.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_JackOLantern-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_LionCub-Base.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_LionCub-Base.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_LionCub-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_LionCub-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_LionCub-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_LionCub-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_LionCub-Desert.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_LionCub-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_LionCub-Ethereal.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Ethereal.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_LionCub-Ethereal.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Ethereal.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Floral.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Floral.png new file mode 100644 index 0000000000..bc8a6b9531 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Floral.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_LionCub-Golden.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_LionCub-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_LionCub-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_LionCub-Peppermint.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Peppermint.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_LionCub-Red.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_LionCub-Red.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_LionCub-Shade.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_LionCub-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_LionCub-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_LionCub-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_LionCub-Spooky.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Spooky.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_LionCub-Spooky.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Spooky.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_LionCub-White.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_LionCub-White.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_LionCub-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_LionCub-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_MagicalBee-Base.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_MagicalBee-Base.png new file mode 100644 index 0000000000..8aaf142b0d Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_MagicalBee-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Mammoth-Base.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Mammoth-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Mammoth-Base.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Mammoth-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_MantisShrimp-Base.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_MantisShrimp-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_MantisShrimp-Base.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_MantisShrimp-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Monkey-Base.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Monkey-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Monkey-Base.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Monkey-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Monkey-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Monkey-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Monkey-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Monkey-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Monkey-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Monkey-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Monkey-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Monkey-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Monkey-Desert.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Monkey-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Monkey-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Monkey-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Monkey-Golden.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Monkey-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Monkey-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Monkey-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Monkey-Red.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Monkey-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Monkey-Red.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Monkey-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Monkey-Shade.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Monkey-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Monkey-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Monkey-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Monkey-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Monkey-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Monkey-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Monkey-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Monkey-White.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Monkey-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Monkey-White.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Monkey-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Monkey-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Monkey-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Monkey-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Monkey-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Octopus-Base.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Octopus-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Octopus-Base.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Octopus-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Octopus-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Octopus-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Octopus-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Octopus-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Octopus-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Octopus-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Octopus-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Octopus-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Octopus-Desert.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Octopus-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Octopus-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Octopus-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Octopus-Golden.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Octopus-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Octopus-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Octopus-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Octopus-Red.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Octopus-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Octopus-Red.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Octopus-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Octopus-Shade.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Octopus-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Octopus-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Octopus-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Octopus-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Octopus-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Octopus-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Octopus-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Octopus-White.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Octopus-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Octopus-White.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Octopus-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Octopus-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Octopus-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Octopus-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Octopus-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Orca-Base.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Orca-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Orca-Base.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Orca-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Owl-Base.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Owl-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Owl-Base.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Owl-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Owl-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Owl-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Owl-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Owl-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Owl-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Owl-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Owl-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Owl-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Owl-Desert.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Owl-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Owl-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Owl-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Owl-Golden.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Owl-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Owl-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Owl-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Owl-Red.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Owl-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Owl-Red.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Owl-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Owl-Shade.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Owl-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Owl-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Owl-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Owl-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Owl-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Owl-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Owl-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Owl-White.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Owl-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Owl-White.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Owl-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Owl-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Owl-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Owl-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Owl-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-Base.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-Base.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-Desert.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Floral.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Floral.png new file mode 100644 index 0000000000..fe648f343f Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Floral.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-Golden.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-Peppermint.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Peppermint.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-Red.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-Red.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-Shade.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-Spooky.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Spooky.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-Spooky.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Spooky.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-White.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-White.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Parrot-Base.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Parrot-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Parrot-Base.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Parrot-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Parrot-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Parrot-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Parrot-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Parrot-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Parrot-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Parrot-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Parrot-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Parrot-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Parrot-Desert.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Parrot-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Parrot-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Parrot-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Parrot-Golden.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Parrot-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Parrot-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Parrot-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Parrot-Red.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Parrot-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Parrot-Red.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Parrot-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Parrot-Shade.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Parrot-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Parrot-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Parrot-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Parrot-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Parrot-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Parrot-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Parrot-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Parrot-White.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Parrot-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Parrot-White.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Parrot-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Parrot-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Parrot-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Parrot-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Parrot-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Penguin-Base.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Penguin-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Penguin-Base.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Penguin-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Penguin-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Penguin-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Penguin-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Penguin-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Penguin-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Penguin-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Penguin-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Penguin-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Penguin-Desert.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Penguin-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Penguin-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Penguin-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Penguin-Golden.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Penguin-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Penguin-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Penguin-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Penguin-Red.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Penguin-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Penguin-Red.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Penguin-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Penguin-Shade.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Penguin-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Penguin-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Penguin-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Penguin-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Penguin-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Penguin-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Penguin-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Penguin-White.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Penguin-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Penguin-White.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Penguin-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Penguin-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Penguin-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Penguin-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Penguin-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Phoenix-Base.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Phoenix-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Phoenix-Base.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Phoenix-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Rat-Base.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rat-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Rat-Base.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rat-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Rat-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rat-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Rat-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rat-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Rat-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rat-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Rat-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rat-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Rat-Desert.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rat-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Rat-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rat-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Rat-Golden.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rat-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Rat-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rat-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Rat-Red.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rat-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Rat-Red.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rat-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Rat-Shade.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rat-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Rat-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rat-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Rat-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rat-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Rat-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rat-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Rat-White.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rat-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Rat-White.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rat-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Rat-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rat-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Rat-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rat-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Rock-Base.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rock-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Rock-Base.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rock-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Rock-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rock-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Rock-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rock-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Rock-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rock-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Rock-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rock-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Rock-Desert.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rock-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Rock-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rock-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Rock-Golden.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rock-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Rock-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rock-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Rock-Red.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rock-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Rock-Red.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rock-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Rock-Shade.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rock-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Rock-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rock-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Rock-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rock-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Rock-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rock-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Rock-White.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rock-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Rock-White.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rock-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Rock-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rock-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Rock-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rock-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Rooster-Base.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rooster-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Rooster-Base.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rooster-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Rooster-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rooster-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Rooster-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rooster-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Rooster-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rooster-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Rooster-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rooster-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Rooster-Desert.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rooster-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Rooster-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rooster-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Rooster-Golden.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rooster-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Rooster-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rooster-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Rooster-Red.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rooster-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Rooster-Red.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rooster-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Rooster-Shade.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rooster-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Rooster-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rooster-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Rooster-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rooster-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Rooster-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rooster-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Rooster-White.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rooster-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Rooster-White.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rooster-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Rooster-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rooster-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Rooster-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rooster-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sabretooth-Base.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sabretooth-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sabretooth-Base.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sabretooth-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sabretooth-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sabretooth-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sabretooth-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sabretooth-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sabretooth-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sabretooth-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sabretooth-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sabretooth-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sabretooth-Desert.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sabretooth-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sabretooth-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sabretooth-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sabretooth-Golden.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sabretooth-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sabretooth-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sabretooth-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sabretooth-Red.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sabretooth-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sabretooth-Red.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sabretooth-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sabretooth-Shade.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sabretooth-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sabretooth-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sabretooth-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sabretooth-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sabretooth-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sabretooth-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sabretooth-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sabretooth-White.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sabretooth-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sabretooth-White.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sabretooth-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sabretooth-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sabretooth-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sabretooth-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sabretooth-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Seahorse-Base.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Seahorse-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Seahorse-Base.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Seahorse-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Seahorse-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Seahorse-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Seahorse-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Seahorse-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Seahorse-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Seahorse-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Seahorse-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Seahorse-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Seahorse-Desert.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Seahorse-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Seahorse-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Seahorse-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Seahorse-Golden.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Seahorse-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Seahorse-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Seahorse-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Seahorse-Red.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Seahorse-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Seahorse-Red.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Seahorse-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Seahorse-Shade.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Seahorse-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Seahorse-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Seahorse-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Seahorse-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Seahorse-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Seahorse-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Seahorse-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Seahorse-White.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Seahorse-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Seahorse-White.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Seahorse-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Seahorse-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Seahorse-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Seahorse-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Seahorse-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sheep-Base.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sheep-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sheep-Base.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sheep-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sheep-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sheep-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sheep-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sheep-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sheep-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sheep-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sheep-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sheep-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sheep-Desert.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sheep-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sheep-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sheep-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sheep-Golden.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sheep-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sheep-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sheep-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sheep-Red.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sheep-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sheep-Red.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sheep-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sheep-Shade.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sheep-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sheep-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sheep-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sheep-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sheep-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sheep-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sheep-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sheep-White.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sheep-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sheep-White.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sheep-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sheep-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sheep-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sheep-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sheep-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Slime-Base.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Slime-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Slime-Base.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Slime-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Slime-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Slime-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Slime-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Slime-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Slime-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Slime-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Slime-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Slime-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Slime-Desert.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Slime-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Slime-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Slime-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Slime-Golden.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Slime-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Slime-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Slime-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Slime-Red.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Slime-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Slime-Red.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Slime-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Slime-Shade.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Slime-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Slime-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Slime-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Slime-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Slime-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Slime-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Slime-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Slime-White.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Slime-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Slime-White.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Slime-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Slime-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Slime-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Slime-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Slime-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-Base.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-Base.png new file mode 100644 index 0000000000..2359cb7566 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-CottonCandyBlue.png new file mode 100644 index 0000000000..ccdcb7e703 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-CottonCandyPink.png new file mode 100644 index 0000000000..bafac69648 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-Desert.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-Desert.png new file mode 100644 index 0000000000..af71640f1d Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-Golden.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-Golden.png new file mode 100644 index 0000000000..c72f476af1 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-Red.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-Red.png new file mode 100644 index 0000000000..dac11969cb Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-Shade.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-Shade.png new file mode 100644 index 0000000000..58773a85b1 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-Skeleton.png new file mode 100644 index 0000000000..e498396d06 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-White.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-White.png new file mode 100644 index 0000000000..fde55de1b8 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-Zombie.png new file mode 100644 index 0000000000..69b71360c1 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Snake-Base.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snake-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Snake-Base.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snake-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Snake-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snake-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Snake-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snake-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Snake-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snake-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Snake-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snake-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Snake-Desert.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snake-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Snake-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snake-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Snake-Golden.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snake-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Snake-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snake-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Snake-Red.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snake-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Snake-Red.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snake-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Snake-Shade.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snake-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Snake-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snake-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Snake-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snake-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Snake-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snake-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Snake-White.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snake-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Snake-White.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snake-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Snake-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snake-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Snake-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snake-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Spider-Base.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Spider-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Spider-Base.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Spider-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Spider-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Spider-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Spider-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Spider-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Spider-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Spider-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Spider-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Spider-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Spider-Desert.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Spider-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Spider-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Spider-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Spider-Golden.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Spider-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Spider-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Spider-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Spider-Red.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Spider-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Spider-Red.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Spider-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Spider-Shade.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Spider-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Spider-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Spider-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Spider-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Spider-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Spider-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Spider-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Spider-White.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Spider-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Spider-White.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Spider-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Spider-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Spider-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Spider-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Spider-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_TRex-Base.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TRex-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_TRex-Base.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TRex-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_TRex-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TRex-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_TRex-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TRex-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_TRex-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TRex-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_TRex-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TRex-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_TRex-Desert.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TRex-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_TRex-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TRex-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_TRex-Golden.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TRex-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_TRex-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TRex-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_TRex-Red.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TRex-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_TRex-Red.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TRex-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_TRex-Shade.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TRex-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_TRex-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TRex-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_TRex-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TRex-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_TRex-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TRex-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_TRex-White.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TRex-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_TRex-White.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TRex-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_TRex-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TRex-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_TRex-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TRex-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_TigerCub-Base.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_TigerCub-Base.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_TigerCub-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_TigerCub-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_TigerCub-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_TigerCub-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_TigerCub-Desert.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_TigerCub-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Floral.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Floral.png new file mode 100644 index 0000000000..3d2a356e9b Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Floral.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_TigerCub-Golden.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_TigerCub-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_TigerCub-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_TigerCub-Peppermint.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Peppermint.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_TigerCub-Red.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_TigerCub-Red.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_TigerCub-Shade.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_TigerCub-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_TigerCub-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_TigerCub-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_TigerCub-Spooky.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Spooky.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_TigerCub-Spooky.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Spooky.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_TigerCub-White.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_TigerCub-White.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_TigerCub-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_TigerCub-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Turkey-Base.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Turkey-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Turkey-Base.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Turkey-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Unicorn-Base.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Unicorn-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Unicorn-Base.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Unicorn-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Unicorn-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Unicorn-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Unicorn-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Unicorn-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Unicorn-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Unicorn-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Unicorn-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Unicorn-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Unicorn-Desert.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Unicorn-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Unicorn-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Unicorn-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Unicorn-Golden.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Unicorn-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Unicorn-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Unicorn-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Unicorn-Red.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Unicorn-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Unicorn-Red.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Unicorn-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Unicorn-Shade.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Unicorn-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Unicorn-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Unicorn-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Unicorn-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Unicorn-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Unicorn-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Unicorn-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Unicorn-White.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Unicorn-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Unicorn-White.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Unicorn-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Unicorn-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Unicorn-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Unicorn-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Unicorn-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Whale-Base.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Whale-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Whale-Base.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Whale-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Whale-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Whale-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Whale-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Whale-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Whale-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Whale-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Whale-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Whale-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Whale-Desert.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Whale-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Whale-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Whale-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Whale-Golden.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Whale-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Whale-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Whale-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Whale-Red.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Whale-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Whale-Red.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Whale-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Whale-Shade.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Whale-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Whale-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Whale-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Whale-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Whale-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Whale-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Whale-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Whale-White.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Whale-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Whale-White.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Whale-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Whale-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Whale-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Whale-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Whale-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-Base.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-Base.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-Desert.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Floral.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Floral.png new file mode 100644 index 0000000000..84ac32eee3 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Floral.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-Golden.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-Peppermint.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Peppermint.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-Red.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-Red.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-Shade.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-Spooky.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Spooky.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-Spooky.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Spooky.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-White.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-White.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-Base.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-Base.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-Desert.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Phoenix-Base.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Floral.png similarity index 77% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Phoenix-Base.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Floral.png index 9373310922..a6590594e5 100644 Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Phoenix-Base.png and b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Floral.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-Golden.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-Peppermint.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Peppermint.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-Polar.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Polar.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-Polar.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Polar.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-Red.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-Red.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-Shade.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-Spooky.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Spooky.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-Spooky.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Spooky.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-White.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-White.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Bunny-Base.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Bunny-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Bunny-Base.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Bunny-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Bunny-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Bunny-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Bunny-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Bunny-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Bunny-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Bunny-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Bunny-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Bunny-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Bunny-Desert.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Bunny-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Bunny-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Bunny-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Bunny-Golden.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Bunny-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Bunny-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Bunny-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Bunny-Red.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Bunny-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Bunny-Red.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Bunny-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Bunny-Shade.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Bunny-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Bunny-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Bunny-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Bunny-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Bunny-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Bunny-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Bunny-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Bunny-White.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Bunny-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Bunny-White.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Bunny-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Bunny-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Bunny-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Bunny-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Bunny-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-Base.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-Base.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-Desert.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Floral.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Floral.png new file mode 100644 index 0000000000..29b0d4c7ef Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Floral.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-Golden.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-Peppermint.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Peppermint.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-Red.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-Red.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-Shade.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-Spooky.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Spooky.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-Spooky.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Spooky.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-White.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-White.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cheetah-Base.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cheetah-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cheetah-Base.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cheetah-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cheetah-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cheetah-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cheetah-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cheetah-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cheetah-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cheetah-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cheetah-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cheetah-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cheetah-Desert.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cheetah-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cheetah-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cheetah-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cheetah-Golden.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cheetah-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cheetah-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cheetah-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cheetah-Red.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cheetah-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cheetah-Red.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cheetah-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cheetah-Shade.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cheetah-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cheetah-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cheetah-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cheetah-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cheetah-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cheetah-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cheetah-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cheetah-White.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cheetah-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cheetah-White.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cheetah-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cheetah-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cheetah-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cheetah-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cheetah-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cuttlefish-Base.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cuttlefish-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cuttlefish-Base.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cuttlefish-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cuttlefish-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cuttlefish-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cuttlefish-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cuttlefish-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cuttlefish-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cuttlefish-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cuttlefish-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cuttlefish-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cuttlefish-Desert.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cuttlefish-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cuttlefish-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cuttlefish-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cuttlefish-Golden.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cuttlefish-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cuttlefish-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cuttlefish-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cuttlefish-Red.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cuttlefish-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cuttlefish-Red.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cuttlefish-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cuttlefish-Shade.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cuttlefish-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cuttlefish-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cuttlefish-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cuttlefish-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cuttlefish-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cuttlefish-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cuttlefish-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cuttlefish-White.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cuttlefish-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cuttlefish-White.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cuttlefish-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cuttlefish-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cuttlefish-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cuttlefish-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cuttlefish-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Deer-Base.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Deer-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Deer-Base.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Deer-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Deer-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Deer-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Deer-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Deer-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Deer-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Deer-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Deer-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Deer-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Deer-Desert.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Deer-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Deer-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Deer-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Deer-Golden.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Deer-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Deer-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Deer-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Deer-Red.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Deer-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Deer-Red.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Deer-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Deer-Shade.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Deer-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Deer-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Deer-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Deer-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Deer-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Deer-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Deer-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Deer-White.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Deer-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Deer-White.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Deer-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Deer-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Deer-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Deer-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Deer-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-Base.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-Base.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-Desert.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Floral.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Floral.png new file mode 100644 index 0000000000..73e1888dfa Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Floral.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-Golden.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-Peppermint.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Peppermint.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-Red.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-Red.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-Shade.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-Spooky.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Spooky.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-Spooky.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Spooky.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-White.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-White.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Egg-Base.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Egg-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Egg-Base.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Egg-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Egg-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Egg-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Egg-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Egg-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Egg-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Egg-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Egg-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Egg-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Egg-Desert.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Egg-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Egg-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Egg-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Egg-Golden.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Egg-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Egg-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Egg-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Egg-Red.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Egg-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Egg-Red.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Egg-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Egg-Shade.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Egg-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Egg-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Egg-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Egg-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Egg-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Egg-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Egg-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Egg-White.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Egg-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Egg-White.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Egg-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Egg-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Egg-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Egg-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Egg-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-Base.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-Base.png new file mode 100644 index 0000000000..abbe1a7637 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-CottonCandyBlue.png new file mode 100644 index 0000000000..ce9f230948 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-CottonCandyPink.png new file mode 100644 index 0000000000..6380b66fab Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-Desert.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-Desert.png new file mode 100644 index 0000000000..0a9f7e6be7 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-Golden.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-Golden.png new file mode 100644 index 0000000000..1bf6ede722 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-Red.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-Red.png new file mode 100644 index 0000000000..608604a693 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-Shade.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-Shade.png new file mode 100644 index 0000000000..885af65686 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-Skeleton.png new file mode 100644 index 0000000000..107ccd3093 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-White.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-White.png new file mode 100644 index 0000000000..0427216b3b Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-Zombie.png new file mode 100644 index 0000000000..8ce63f59eb Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_FlyingPig-Base.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_FlyingPig-Base.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_FlyingPig-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_FlyingPig-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_FlyingPig-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_FlyingPig-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_FlyingPig-Desert.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_FlyingPig-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Floral.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Floral.png new file mode 100644 index 0000000000..a02777b167 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Floral.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_FlyingPig-Golden.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_FlyingPig-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_FlyingPig-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_FlyingPig-Peppermint.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Peppermint.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_FlyingPig-Red.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_FlyingPig-Red.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_FlyingPig-Shade.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_FlyingPig-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_FlyingPig-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_FlyingPig-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_FlyingPig-Spooky.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Spooky.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_FlyingPig-Spooky.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Spooky.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_FlyingPig-White.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_FlyingPig-White.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_FlyingPig-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_FlyingPig-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-Base.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-Base.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-Desert.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Floral.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Floral.png new file mode 100644 index 0000000000..751357d1b4 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Floral.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-Golden.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-Peppermint.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Peppermint.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-Red.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-Red.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-Shade.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-Spooky.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Spooky.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-Spooky.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Spooky.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-White.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-White.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Frog-Base.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Frog-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Frog-Base.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Frog-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Frog-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Frog-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Frog-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Frog-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Frog-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Frog-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Frog-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Frog-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Frog-Desert.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Frog-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Frog-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Frog-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Frog-Golden.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Frog-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Frog-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Frog-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Frog-Red.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Frog-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Frog-Red.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Frog-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Frog-Shade.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Frog-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Frog-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Frog-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Frog-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Frog-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Frog-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Frog-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Frog-White.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Frog-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Frog-White.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Frog-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Frog-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Frog-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Frog-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Frog-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Gryphon-Base.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Gryphon-Base.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Gryphon-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Gryphon-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Gryphon-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Gryphon-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Gryphon-Desert.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Gryphon-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Gryphon-Golden.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Gryphon-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Gryphon-Red.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Gryphon-Red.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Gryphon-RoyalPurple.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-RoyalPurple.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Gryphon-RoyalPurple.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-RoyalPurple.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Gryphon-Shade.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Gryphon-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Gryphon-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Gryphon-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Gryphon-White.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Gryphon-White.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Gryphon-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Gryphon-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Hedgehog-Base.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Hedgehog-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Hedgehog-Base.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Hedgehog-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Hedgehog-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Hedgehog-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Hedgehog-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Hedgehog-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Hedgehog-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Hedgehog-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Hedgehog-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Hedgehog-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Hedgehog-Desert.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Hedgehog-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Hedgehog-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Hedgehog-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Hedgehog-Golden.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Hedgehog-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Hedgehog-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Hedgehog-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Hedgehog-Red.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Hedgehog-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Hedgehog-Red.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Hedgehog-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Hedgehog-Shade.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Hedgehog-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Hedgehog-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Hedgehog-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Hedgehog-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Hedgehog-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Hedgehog-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Hedgehog-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Hedgehog-White.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Hedgehog-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Hedgehog-White.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Hedgehog-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Hedgehog-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Hedgehog-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Hedgehog-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Hedgehog-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Horse-Base.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Horse-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Horse-Base.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Horse-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Horse-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Horse-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Horse-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Horse-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Horse-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Horse-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Horse-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Horse-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Horse-Desert.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Horse-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Horse-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Horse-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Horse-Golden.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Horse-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Horse-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Horse-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Horse-Red.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Horse-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Horse-Red.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Horse-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Horse-Shade.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Horse-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Horse-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Horse-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Horse-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Horse-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Horse-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Horse-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Horse-White.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Horse-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Horse-White.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Horse-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Horse-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Horse-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Horse-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Horse-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_JackOLantern-Base.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_JackOLantern-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_JackOLantern-Base.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_JackOLantern-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_LionCub-Base.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_LionCub-Base.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_LionCub-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_LionCub-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_LionCub-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_LionCub-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_LionCub-Desert.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_LionCub-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_LionCub-Ethereal.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Ethereal.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_LionCub-Ethereal.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Ethereal.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Floral.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Floral.png new file mode 100644 index 0000000000..212918a4a0 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Floral.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_LionCub-Golden.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_LionCub-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_LionCub-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_LionCub-Peppermint.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Peppermint.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_LionCub-Red.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_LionCub-Red.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_LionCub-Shade.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_LionCub-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_LionCub-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_LionCub-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_LionCub-Spooky.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Spooky.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_LionCub-Spooky.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Spooky.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_LionCub-White.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_LionCub-White.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_LionCub-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_LionCub-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_MagicalBee-Base.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_MagicalBee-Base.png new file mode 100644 index 0000000000..bf6da48fc5 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_MagicalBee-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Mammoth-Base.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Mammoth-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Mammoth-Base.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Mammoth-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_MantisShrimp-Base.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_MantisShrimp-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_MantisShrimp-Base.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_MantisShrimp-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Monkey-Base.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Monkey-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Monkey-Base.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Monkey-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Monkey-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Monkey-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Monkey-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Monkey-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Monkey-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Monkey-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Monkey-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Monkey-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Monkey-Desert.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Monkey-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Monkey-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Monkey-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Monkey-Golden.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Monkey-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Monkey-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Monkey-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Monkey-Red.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Monkey-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Monkey-Red.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Monkey-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Monkey-Shade.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Monkey-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Monkey-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Monkey-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Monkey-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Monkey-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Monkey-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Monkey-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Monkey-White.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Monkey-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Monkey-White.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Monkey-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Monkey-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Monkey-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Monkey-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Monkey-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Octopus-Base.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Octopus-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Octopus-Base.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Octopus-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Octopus-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Octopus-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Octopus-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Octopus-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Octopus-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Octopus-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Octopus-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Octopus-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Octopus-Desert.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Octopus-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Octopus-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Octopus-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Octopus-Golden.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Octopus-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Octopus-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Octopus-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Octopus-Red.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Octopus-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Octopus-Red.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Octopus-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Octopus-Shade.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Octopus-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Octopus-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Octopus-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Octopus-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Octopus-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Octopus-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Octopus-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Octopus-White.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Octopus-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Octopus-White.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Octopus-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Octopus-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Octopus-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Octopus-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Octopus-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Orca-Base.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Orca-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Orca-Base.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Orca-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Owl-Base.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Owl-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Owl-Base.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Owl-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Owl-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Owl-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Owl-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Owl-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Owl-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Owl-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Owl-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Owl-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Owl-Desert.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Owl-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Owl-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Owl-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Owl-Golden.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Owl-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Owl-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Owl-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Owl-Red.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Owl-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Owl-Red.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Owl-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Owl-Shade.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Owl-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Owl-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Owl-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Owl-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Owl-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Owl-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Owl-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Owl-White.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Owl-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Owl-White.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Owl-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Owl-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Owl-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Owl-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Owl-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-Base.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-Base.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-Desert.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Floral.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Floral.png new file mode 100644 index 0000000000..65adab52a6 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Floral.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-Golden.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-Peppermint.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Peppermint.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-Red.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-Red.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-Shade.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-Spooky.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Spooky.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-Spooky.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Spooky.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-White.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-White.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Parrot-Base.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Parrot-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Parrot-Base.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Parrot-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Parrot-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Parrot-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Parrot-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Parrot-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Parrot-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Parrot-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Parrot-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Parrot-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Parrot-Desert.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Parrot-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Parrot-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Parrot-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Parrot-Golden.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Parrot-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Parrot-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Parrot-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Parrot-Red.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Parrot-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Parrot-Red.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Parrot-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Parrot-Shade.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Parrot-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Parrot-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Parrot-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Parrot-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Parrot-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Parrot-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Parrot-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Parrot-White.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Parrot-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Parrot-White.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Parrot-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Parrot-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Parrot-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Parrot-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Parrot-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Penguin-Base.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Penguin-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Penguin-Base.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Penguin-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Penguin-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Penguin-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Penguin-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Penguin-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Penguin-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Penguin-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Penguin-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Penguin-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Penguin-Desert.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Penguin-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Penguin-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Penguin-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Penguin-Golden.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Penguin-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Penguin-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Penguin-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Penguin-Red.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Penguin-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Penguin-Red.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Penguin-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Penguin-Shade.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Penguin-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Penguin-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Penguin-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Penguin-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Penguin-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Penguin-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Penguin-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Penguin-White.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Penguin-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Penguin-White.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Penguin-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Penguin-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Penguin-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Penguin-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Penguin-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Phoenix-Base.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Phoenix-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Phoenix-Base.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Phoenix-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Rat-Base.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rat-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Rat-Base.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rat-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Rat-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rat-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Rat-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rat-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Rat-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rat-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Rat-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rat-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Rat-Desert.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rat-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Rat-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rat-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Rat-Golden.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rat-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Rat-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rat-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Rat-Red.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rat-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Rat-Red.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rat-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Rat-Shade.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rat-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Rat-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rat-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Rat-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rat-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Rat-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rat-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Rat-White.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rat-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Rat-White.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rat-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Rat-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rat-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Rat-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rat-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Rock-Base.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rock-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Rock-Base.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rock-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Rock-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rock-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Rock-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rock-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Rock-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rock-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Rock-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rock-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Rock-Desert.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rock-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Rock-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rock-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Rock-Golden.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rock-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Rock-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rock-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Rock-Red.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rock-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Rock-Red.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rock-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Rock-Shade.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rock-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Rock-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rock-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Rock-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rock-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Rock-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rock-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Rock-White.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rock-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Rock-White.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rock-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Rock-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rock-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Rock-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rock-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Rooster-Base.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rooster-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Rooster-Base.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rooster-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Rooster-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rooster-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Rooster-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rooster-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Rooster-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rooster-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Rooster-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rooster-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Rooster-Desert.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rooster-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Rooster-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rooster-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Rooster-Golden.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rooster-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Rooster-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rooster-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Rooster-Red.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rooster-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Rooster-Red.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rooster-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Rooster-Shade.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rooster-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Rooster-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rooster-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Rooster-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rooster-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Rooster-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rooster-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Rooster-White.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rooster-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Rooster-White.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rooster-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Rooster-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rooster-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Rooster-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rooster-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sabretooth-Base.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sabretooth-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sabretooth-Base.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sabretooth-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sabretooth-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sabretooth-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sabretooth-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sabretooth-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sabretooth-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sabretooth-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sabretooth-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sabretooth-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sabretooth-Desert.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sabretooth-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sabretooth-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sabretooth-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sabretooth-Golden.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sabretooth-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sabretooth-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sabretooth-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sabretooth-Red.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sabretooth-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sabretooth-Red.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sabretooth-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sabretooth-Shade.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sabretooth-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sabretooth-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sabretooth-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sabretooth-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sabretooth-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sabretooth-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sabretooth-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sabretooth-White.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sabretooth-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sabretooth-White.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sabretooth-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sabretooth-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sabretooth-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sabretooth-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sabretooth-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Seahorse-Base.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Seahorse-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Seahorse-Base.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Seahorse-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Seahorse-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Seahorse-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Seahorse-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Seahorse-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Seahorse-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Seahorse-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Seahorse-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Seahorse-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Seahorse-Desert.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Seahorse-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Seahorse-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Seahorse-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Seahorse-Golden.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Seahorse-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Seahorse-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Seahorse-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Seahorse-Red.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Seahorse-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Seahorse-Red.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Seahorse-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Seahorse-Shade.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Seahorse-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Seahorse-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Seahorse-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Seahorse-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Seahorse-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Seahorse-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Seahorse-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Seahorse-White.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Seahorse-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Seahorse-White.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Seahorse-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Seahorse-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Seahorse-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Seahorse-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Seahorse-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sheep-Base.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sheep-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sheep-Base.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sheep-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sheep-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sheep-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sheep-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sheep-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sheep-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sheep-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sheep-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sheep-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sheep-Desert.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sheep-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sheep-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sheep-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sheep-Golden.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sheep-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sheep-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sheep-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sheep-Red.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sheep-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sheep-Red.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sheep-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sheep-Shade.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sheep-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sheep-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sheep-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sheep-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sheep-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sheep-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sheep-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sheep-White.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sheep-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sheep-White.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sheep-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sheep-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sheep-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sheep-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sheep-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Slime-Base.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Slime-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Slime-Base.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Slime-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Slime-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Slime-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Slime-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Slime-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Slime-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Slime-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Slime-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Slime-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Slime-Desert.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Slime-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Slime-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Slime-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Slime-Golden.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Slime-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Slime-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Slime-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Slime-Red.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Slime-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Slime-Red.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Slime-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Slime-Shade.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Slime-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Slime-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Slime-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Slime-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Slime-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Slime-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Slime-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Slime-White.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Slime-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Slime-White.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Slime-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Slime-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Slime-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Slime-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Slime-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-Base.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-Base.png new file mode 100644 index 0000000000..ac038d3d72 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-CottonCandyBlue.png new file mode 100644 index 0000000000..b832b1814f Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-CottonCandyPink.png new file mode 100644 index 0000000000..a41e02b80f Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-Desert.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-Desert.png new file mode 100644 index 0000000000..9ad07dca80 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-Golden.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-Golden.png new file mode 100644 index 0000000000..979ce41d89 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-Red.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-Red.png new file mode 100644 index 0000000000..daa1cccfc8 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-Shade.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-Shade.png new file mode 100644 index 0000000000..03dcf55902 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-Skeleton.png new file mode 100644 index 0000000000..2bf64616b1 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-White.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-White.png new file mode 100644 index 0000000000..8b5e5acd8a Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-Zombie.png new file mode 100644 index 0000000000..ed97f5eb8e Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Snake-Base.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snake-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Snake-Base.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snake-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Snake-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snake-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Snake-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snake-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Snake-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snake-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Snake-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snake-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Snake-Desert.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snake-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Snake-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snake-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Snake-Golden.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snake-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Snake-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snake-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Snake-Red.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snake-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Snake-Red.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snake-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Snake-Shade.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snake-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Snake-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snake-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Snake-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snake-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Snake-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snake-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Snake-White.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snake-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Snake-White.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snake-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Snake-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snake-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Snake-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snake-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Spider-Base.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Spider-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Spider-Base.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Spider-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Spider-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Spider-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Spider-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Spider-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Spider-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Spider-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Spider-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Spider-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Spider-Desert.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Spider-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Spider-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Spider-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Spider-Golden.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Spider-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Spider-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Spider-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Spider-Red.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Spider-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Spider-Red.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Spider-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Spider-Shade.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Spider-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Spider-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Spider-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Spider-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Spider-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Spider-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Spider-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Spider-White.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Spider-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Spider-White.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Spider-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Spider-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Spider-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Spider-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Spider-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_TRex-Base.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TRex-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_TRex-Base.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TRex-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_TRex-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TRex-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_TRex-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TRex-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_TRex-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TRex-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_TRex-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TRex-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_TRex-Desert.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TRex-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_TRex-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TRex-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_TRex-Golden.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TRex-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_TRex-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TRex-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_TRex-Red.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TRex-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_TRex-Red.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TRex-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_TRex-Shade.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TRex-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_TRex-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TRex-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_TRex-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TRex-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_TRex-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TRex-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_TRex-White.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TRex-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_TRex-White.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TRex-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_TRex-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TRex-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_TRex-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TRex-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_TigerCub-Base.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_TigerCub-Base.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_TigerCub-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_TigerCub-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_TigerCub-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_TigerCub-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_TigerCub-Desert.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_TigerCub-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Floral.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Floral.png new file mode 100644 index 0000000000..312c78df12 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Floral.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_TigerCub-Golden.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_TigerCub-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_TigerCub-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_TigerCub-Peppermint.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Peppermint.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_TigerCub-Red.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_TigerCub-Red.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_TigerCub-Shade.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_TigerCub-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_TigerCub-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_TigerCub-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_TigerCub-Spooky.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Spooky.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_TigerCub-Spooky.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Spooky.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_TigerCub-White.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_TigerCub-White.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_TigerCub-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_TigerCub-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Turkey-Base.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Turkey-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Turkey-Base.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Turkey-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Unicorn-Base.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Unicorn-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Unicorn-Base.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Unicorn-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Unicorn-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Unicorn-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Unicorn-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Unicorn-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Unicorn-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Unicorn-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Unicorn-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Unicorn-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Unicorn-Desert.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Unicorn-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Unicorn-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Unicorn-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Unicorn-Golden.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Unicorn-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Unicorn-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Unicorn-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Unicorn-Red.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Unicorn-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Unicorn-Red.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Unicorn-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Unicorn-Shade.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Unicorn-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Unicorn-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Unicorn-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Unicorn-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Unicorn-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Unicorn-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Unicorn-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Unicorn-White.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Unicorn-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Unicorn-White.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Unicorn-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Unicorn-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Unicorn-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Unicorn-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Unicorn-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Whale-Base.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Whale-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Whale-Base.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Whale-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Whale-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Whale-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Whale-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Whale-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Whale-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Whale-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Whale-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Whale-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Whale-Desert.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Whale-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Whale-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Whale-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Whale-Golden.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Whale-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Whale-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Whale-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Whale-Red.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Whale-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Whale-Red.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Whale-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Whale-Shade.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Whale-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Whale-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Whale-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Whale-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Whale-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Whale-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Whale-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Whale-White.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Whale-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Whale-White.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Whale-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Whale-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Whale-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Whale-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Whale-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-Base.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-Base.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-Desert.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Floral.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Floral.png new file mode 100644 index 0000000000..e3fcf30e24 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Floral.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-Golden.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-Peppermint.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Peppermint.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-Red.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-Red.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-Shade.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-Spooky.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Spooky.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-Spooky.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Spooky.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-White.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-White.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Base.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Base.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Desert.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Floral.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Floral.png new file mode 100644 index 0000000000..12787a5f83 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Floral.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Golden.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Peppermint.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Peppermint.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Polar.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Polar.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Polar.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Polar.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Red.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Red.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Shade.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Spooky.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Spooky.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Spooky.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Spooky.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-White.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-White.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-Base.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Bunny-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-Base.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Bunny-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Bunny-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Bunny-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Bunny-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Bunny-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-Desert.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Bunny-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Bunny-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-Golden.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Bunny-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Bunny-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-Red.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Bunny-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-Red.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Bunny-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-Shade.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Bunny-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Bunny-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Bunny-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Bunny-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-White.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Bunny-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-White.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Bunny-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Bunny-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Bunny-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Base.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Base.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Desert.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Floral.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Floral.png new file mode 100644 index 0000000000..c875d3eb96 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Floral.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Golden.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Peppermint.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Peppermint.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Red.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Red.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Shade.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Spooky.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Spooky.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Spooky.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Spooky.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-White.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-White.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-Base.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cheetah-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-Base.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cheetah-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cheetah-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cheetah-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cheetah-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cheetah-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-Desert.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cheetah-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cheetah-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-Golden.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cheetah-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cheetah-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-Red.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cheetah-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-Red.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cheetah-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-Shade.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cheetah-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cheetah-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cheetah-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cheetah-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-White.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cheetah-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-White.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cheetah-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cheetah-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cheetah-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-Base.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cuttlefish-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-Base.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cuttlefish-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cuttlefish-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cuttlefish-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cuttlefish-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cuttlefish-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-Desert.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cuttlefish-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cuttlefish-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-Golden.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cuttlefish-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cuttlefish-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-Red.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cuttlefish-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-Red.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cuttlefish-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-Shade.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cuttlefish-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cuttlefish-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cuttlefish-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cuttlefish-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-White.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cuttlefish-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-White.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cuttlefish-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cuttlefish-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cuttlefish-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-Base.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Deer-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-Base.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Deer-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Deer-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Deer-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Deer-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Deer-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-Desert.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Deer-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Deer-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-Golden.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Deer-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Deer-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-Red.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Deer-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-Red.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Deer-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-Shade.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Deer-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Deer-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Deer-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Deer-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-White.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Deer-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-White.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Deer-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Deer-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Deer-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Base.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Base.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Desert.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Floral.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Floral.png new file mode 100644 index 0000000000..7027ab4d70 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Floral.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Golden.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Peppermint.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Peppermint.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Red.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Red.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Shade.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Spooky.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Spooky.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Spooky.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Spooky.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-White.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-White.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-Base.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Egg-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-Base.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Egg-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Egg-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Egg-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Egg-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Egg-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-Desert.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Egg-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Egg-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-Golden.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Egg-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Egg-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-Red.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Egg-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-Red.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Egg-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-Shade.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Egg-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Egg-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Egg-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Egg-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-White.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Egg-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-White.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Egg-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Egg-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Egg-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-Base.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-Base.png new file mode 100644 index 0000000000..b9bed4b342 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-CottonCandyBlue.png new file mode 100644 index 0000000000..1554807dc6 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-CottonCandyPink.png new file mode 100644 index 0000000000..9c3b8db614 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-Desert.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-Desert.png new file mode 100644 index 0000000000..fe011951fb Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-Golden.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-Golden.png new file mode 100644 index 0000000000..53f5fa145e Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-Red.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-Red.png new file mode 100644 index 0000000000..1b07e25b4b Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-Shade.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-Shade.png new file mode 100644 index 0000000000..e84faab45c Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-Skeleton.png new file mode 100644 index 0000000000..5438ae2426 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-White.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-White.png new file mode 100644 index 0000000000..4a79aa37f1 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-Zombie.png new file mode 100644 index 0000000000..5722c7a99b Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Base.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Base.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Desert.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Floral.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Floral.png new file mode 100644 index 0000000000..29533683d4 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Floral.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Golden.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Peppermint.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Peppermint.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Red.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Red.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Shade.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Spooky.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Spooky.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Spooky.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Spooky.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-White.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-White.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Base.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Base.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Desert.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Floral.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Floral.png new file mode 100644 index 0000000000..f5303b4f55 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Floral.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Golden.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Peppermint.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Peppermint.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Red.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Red.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Shade.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Spooky.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Spooky.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Spooky.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Spooky.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-White.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-White.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-Base.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-Base.png new file mode 100644 index 0000000000..30a5b4c395 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-CottonCandyBlue.png new file mode 100644 index 0000000000..c4109356d3 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-CottonCandyPink.png new file mode 100644 index 0000000000..362ccb3f1d Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-Desert.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-Desert.png new file mode 100644 index 0000000000..8e659899d4 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-Golden.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-Golden.png new file mode 100644 index 0000000000..70d4fbfd91 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-Red.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-Red.png new file mode 100644 index 0000000000..7c348342b4 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-Shade.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-Shade.png new file mode 100644 index 0000000000..d796a2d966 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-Skeleton.png new file mode 100644 index 0000000000..28555a80a9 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-White.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-White.png new file mode 100644 index 0000000000..5345597843 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-Zombie.png new file mode 100644 index 0000000000..943fdced79 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/icon/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/icon/Mount_Icon_Gryphon-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-Base.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-Desert.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-Golden.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-Red.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-Red.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-RoyalPurple.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-RoyalPurple.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-RoyalPurple.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-RoyalPurple.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-Shade.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-White.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-White.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-Base.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Hedgehog-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-Base.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Hedgehog-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Hedgehog-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Hedgehog-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Hedgehog-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Hedgehog-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-Desert.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Hedgehog-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Hedgehog-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-Golden.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Hedgehog-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Hedgehog-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-Red.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Hedgehog-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-Red.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Hedgehog-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-Shade.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Hedgehog-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Hedgehog-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Hedgehog-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Hedgehog-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-White.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Hedgehog-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-White.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Hedgehog-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Hedgehog-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Hedgehog-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-Base.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Horse-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-Base.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Horse-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Horse-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Horse-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Horse-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Horse-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-Desert.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Horse-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Horse-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-Golden.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Horse-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Horse-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-Red.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Horse-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-Red.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Horse-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-Shade.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Horse-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Horse-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Horse-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Horse-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-White.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Horse-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-White.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Horse-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Horse-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Horse-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_JackOLantern-Base.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_JackOLantern-Base.png new file mode 100644 index 0000000000..3c021b32f7 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/icon/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/icon/Mount_Icon_LionCub-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Base.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Desert.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Ethereal.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Ethereal.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Ethereal.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Ethereal.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Floral.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Floral.png new file mode 100644 index 0000000000..6b76df912d Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Floral.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Golden.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Peppermint.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Peppermint.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Red.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Red.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Shade.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Spooky.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Spooky.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Spooky.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Spooky.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-White.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-White.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_MagicalBee-Base.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_MagicalBee-Base.png new file mode 100644 index 0000000000..299a3ec313 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_MagicalBee-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Mammoth-Base.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Mammoth-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Mammoth-Base.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Mammoth-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_MantisShrimp-Base.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_MantisShrimp-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_MantisShrimp-Base.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_MantisShrimp-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Monkey-Base.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Monkey-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Monkey-Base.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Monkey-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Monkey-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Monkey-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Monkey-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Monkey-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Monkey-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Monkey-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Monkey-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Monkey-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Monkey-Desert.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Monkey-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Monkey-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Monkey-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Monkey-Golden.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Monkey-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Monkey-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Monkey-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Monkey-Red.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Monkey-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Monkey-Red.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Monkey-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Monkey-Shade.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Monkey-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Monkey-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Monkey-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Monkey-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Monkey-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Monkey-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Monkey-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Monkey-White.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Monkey-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Monkey-White.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Monkey-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Monkey-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Monkey-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Monkey-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Monkey-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-Base.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Octopus-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-Base.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Octopus-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Octopus-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Octopus-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Octopus-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Octopus-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-Desert.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Octopus-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Octopus-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-Golden.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Octopus-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Octopus-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-Red.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Octopus-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-Red.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Octopus-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-Shade.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Octopus-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Octopus-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Octopus-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Octopus-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-White.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Octopus-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-White.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Octopus-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Octopus-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Octopus-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Orca-Base.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Orca-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Orca-Base.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Orca-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-Base.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Owl-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-Base.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Owl-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Owl-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Owl-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Owl-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Owl-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-Desert.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Owl-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Owl-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-Golden.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Owl-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Owl-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-Red.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Owl-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-Red.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Owl-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-Shade.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Owl-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Owl-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Owl-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Owl-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-White.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Owl-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-White.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Owl-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Owl-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Owl-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Base.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Base.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Desert.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Floral.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Floral.png new file mode 100644 index 0000000000..fdb842595f Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Floral.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Golden.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Peppermint.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Peppermint.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Red.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Red.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Shade.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Spooky.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Spooky.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Spooky.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Spooky.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-White.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-White.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-Base.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Parrot-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-Base.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Parrot-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Parrot-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Parrot-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Parrot-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Parrot-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-Desert.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Parrot-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Parrot-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-Golden.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Parrot-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Parrot-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-Red.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Parrot-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-Red.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Parrot-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-Shade.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Parrot-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Parrot-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Parrot-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Parrot-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-White.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Parrot-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-White.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Parrot-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Parrot-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Parrot-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-Base.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Penguin-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-Base.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Penguin-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Penguin-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Penguin-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Penguin-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Penguin-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-Desert.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Penguin-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Penguin-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-Golden.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Penguin-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Penguin-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-Red.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Penguin-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-Red.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Penguin-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-Shade.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Penguin-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Penguin-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Penguin-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Penguin-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-White.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Penguin-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-White.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Penguin-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Penguin-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Penguin-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Phoenix-Base.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Phoenix-Base.png new file mode 100644 index 0000000000..3f364ff794 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/icon/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/icon/Mount_Icon_Rat-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-Base.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rat-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rat-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rat-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rat-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rat-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-Desert.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rat-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rat-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-Golden.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rat-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rat-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-Red.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rat-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-Red.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rat-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-Shade.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rat-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rat-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rat-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rat-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-White.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rat-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-White.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rat-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rat-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rat-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-Base.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rock-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-Base.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rock-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rock-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rock-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rock-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rock-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-Desert.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rock-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rock-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-Golden.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rock-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rock-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-Red.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rock-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-Red.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rock-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-Shade.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rock-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rock-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rock-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rock-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-White.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rock-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-White.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rock-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rock-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rock-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-Base.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rooster-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-Base.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rooster-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rooster-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rooster-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rooster-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rooster-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-Desert.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rooster-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rooster-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-Golden.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rooster-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rooster-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-Red.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rooster-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-Red.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rooster-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-Shade.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rooster-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rooster-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rooster-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rooster-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-White.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rooster-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-White.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rooster-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rooster-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rooster-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sabretooth-Base.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sabretooth-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sabretooth-Base.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sabretooth-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sabretooth-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sabretooth-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sabretooth-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sabretooth-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sabretooth-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sabretooth-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sabretooth-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sabretooth-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sabretooth-Desert.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sabretooth-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sabretooth-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sabretooth-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sabretooth-Golden.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sabretooth-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sabretooth-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sabretooth-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sabretooth-Red.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sabretooth-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sabretooth-Red.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sabretooth-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sabretooth-Shade.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sabretooth-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sabretooth-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sabretooth-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sabretooth-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sabretooth-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sabretooth-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sabretooth-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sabretooth-White.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sabretooth-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sabretooth-White.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sabretooth-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sabretooth-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sabretooth-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sabretooth-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sabretooth-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-Base.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Seahorse-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-Base.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Seahorse-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Seahorse-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Seahorse-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Seahorse-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Seahorse-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-Desert.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Seahorse-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Seahorse-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-Golden.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Seahorse-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Seahorse-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-Red.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Seahorse-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-Red.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Seahorse-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-Shade.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Seahorse-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Seahorse-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Seahorse-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Seahorse-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-White.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Seahorse-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-White.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Seahorse-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Seahorse-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Seahorse-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-Base.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sheep-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-Base.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sheep-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sheep-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sheep-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sheep-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sheep-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-Desert.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sheep-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sheep-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-Golden.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sheep-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sheep-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-Red.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sheep-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-Red.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sheep-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-Shade.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sheep-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sheep-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sheep-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sheep-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-White.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sheep-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-White.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sheep-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sheep-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sheep-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-Base.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Slime-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-Base.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Slime-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Slime-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Slime-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Slime-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Slime-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-Desert.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Slime-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Slime-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-Golden.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Slime-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Slime-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-Red.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Slime-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-Red.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Slime-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-Shade.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Slime-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Slime-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Slime-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Slime-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-White.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Slime-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-White.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Slime-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Slime-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Slime-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-Base.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-Base.png new file mode 100644 index 0000000000..773eb1396b Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-CottonCandyBlue.png new file mode 100644 index 0000000000..2a67d90fed Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-CottonCandyPink.png new file mode 100644 index 0000000000..5ce350cebe Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-Desert.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-Desert.png new file mode 100644 index 0000000000..3bdc5d0dac Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-Golden.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-Golden.png new file mode 100644 index 0000000000..2c88f42d06 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-Red.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-Red.png new file mode 100644 index 0000000000..d5ba91a34c Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-Shade.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-Shade.png new file mode 100644 index 0000000000..f311445fc2 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-Skeleton.png new file mode 100644 index 0000000000..269f651903 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-White.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-White.png new file mode 100644 index 0000000000..54c6e747b9 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-Zombie.png new file mode 100644 index 0000000000..af973bbe32 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-Base.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snake-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-Base.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snake-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snake-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snake-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snake-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snake-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-Desert.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snake-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snake-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-Golden.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snake-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snake-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-Red.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snake-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-Red.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snake-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-Shade.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snake-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snake-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snake-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snake-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-White.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snake-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-White.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snake-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snake-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snake-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-Base.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Spider-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-Base.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Spider-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Spider-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Spider-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Spider-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Spider-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-Desert.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Spider-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Spider-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-Golden.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Spider-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Spider-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-Red.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Spider-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-Red.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Spider-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-Shade.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Spider-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Spider-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Spider-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Spider-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-White.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Spider-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-White.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Spider-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Spider-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Spider-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-Base.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TRex-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-Base.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TRex-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TRex-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TRex-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TRex-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TRex-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-Desert.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TRex-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TRex-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-Golden.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TRex-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TRex-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-Red.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TRex-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-Red.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TRex-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-Shade.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TRex-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TRex-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TRex-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TRex-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-White.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TRex-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-White.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TRex-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TRex-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TRex-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Base.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Base.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Desert.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Floral.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Floral.png new file mode 100644 index 0000000000..a355611c95 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Floral.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Golden.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Peppermint.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Peppermint.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Red.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Red.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Shade.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Spooky.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Spooky.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Spooky.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Spooky.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-White.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-White.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Turkey-Base.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Turkey-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Turkey-Base.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Turkey-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Unicorn-Base.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Unicorn-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Unicorn-Base.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Unicorn-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Unicorn-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Unicorn-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Unicorn-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Unicorn-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Unicorn-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Unicorn-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Unicorn-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Unicorn-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Unicorn-Desert.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Unicorn-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Unicorn-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Unicorn-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Unicorn-Golden.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Unicorn-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Unicorn-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Unicorn-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Unicorn-Red.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Unicorn-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Unicorn-Red.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Unicorn-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Unicorn-Shade.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Unicorn-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Unicorn-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Unicorn-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Unicorn-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Unicorn-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Unicorn-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Unicorn-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Unicorn-White.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Unicorn-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Unicorn-White.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Unicorn-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Unicorn-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Unicorn-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Unicorn-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Unicorn-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-Base.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Whale-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-Base.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Whale-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Whale-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Whale-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Whale-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Whale-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-Desert.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Whale-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Whale-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-Golden.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Whale-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Whale-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-Red.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Whale-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-Red.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Whale-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-Shade.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Whale-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Whale-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Whale-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Whale-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-White.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Whale-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-White.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Whale-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Whale-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Whale-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Base.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Base.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-CottonCandyBlue.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-CottonCandyPink.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Desert.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Desert.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Floral.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Floral.png new file mode 100644 index 0000000000..9cf76d4e5f Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Floral.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Golden.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Golden.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Peppermint.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Peppermint.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Red.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Red.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Shade.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Shade.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Skeleton.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Spooky.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Spooky.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Spooky.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Spooky.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-White.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-White.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Zombie.png rename to common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-BearCub-Floral.png b/common/img/sprites/spritesmith/stable/pets/Pet-BearCub-Floral.png new file mode 100644 index 0000000000..e51f85859b Binary files /dev/null and b/common/img/sprites/spritesmith/stable/pets/Pet-BearCub-Floral.png differ diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Cactus-Floral.png b/common/img/sprites/spritesmith/stable/pets/Pet-Cactus-Floral.png new file mode 100644 index 0000000000..d5631a232c Binary files /dev/null and b/common/img/sprites/spritesmith/stable/pets/Pet-Cactus-Floral.png differ diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Dragon-Floral.png b/common/img/sprites/spritesmith/stable/pets/Pet-Dragon-Floral.png new file mode 100644 index 0000000000..f533c51932 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/pets/Pet-Dragon-Floral.png differ diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Falcon-Base.png b/common/img/sprites/spritesmith/stable/pets/Pet-Falcon-Base.png new file mode 100644 index 0000000000..274f231b18 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/pets/Pet-Falcon-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Falcon-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/pets/Pet-Falcon-CottonCandyBlue.png new file mode 100644 index 0000000000..55cdf65b05 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/pets/Pet-Falcon-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Falcon-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/pets/Pet-Falcon-CottonCandyPink.png new file mode 100644 index 0000000000..17dbc897d2 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/pets/Pet-Falcon-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Falcon-Desert.png b/common/img/sprites/spritesmith/stable/pets/Pet-Falcon-Desert.png new file mode 100644 index 0000000000..5e2241cfe4 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/pets/Pet-Falcon-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Falcon-Golden.png b/common/img/sprites/spritesmith/stable/pets/Pet-Falcon-Golden.png new file mode 100644 index 0000000000..640cc69104 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/pets/Pet-Falcon-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Falcon-Red.png b/common/img/sprites/spritesmith/stable/pets/Pet-Falcon-Red.png new file mode 100644 index 0000000000..b2b1ef2093 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/pets/Pet-Falcon-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Falcon-Shade.png b/common/img/sprites/spritesmith/stable/pets/Pet-Falcon-Shade.png new file mode 100644 index 0000000000..eeadb5ae4b Binary files /dev/null and b/common/img/sprites/spritesmith/stable/pets/Pet-Falcon-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Falcon-Skeleton.png b/common/img/sprites/spritesmith/stable/pets/Pet-Falcon-Skeleton.png new file mode 100644 index 0000000000..f6f33ed2c0 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/pets/Pet-Falcon-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Falcon-White.png b/common/img/sprites/spritesmith/stable/pets/Pet-Falcon-White.png new file mode 100644 index 0000000000..26e30f4612 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/pets/Pet-Falcon-White.png differ diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Falcon-Zombie.png b/common/img/sprites/spritesmith/stable/pets/Pet-Falcon-Zombie.png new file mode 100644 index 0000000000..fae1fade8b Binary files /dev/null and b/common/img/sprites/spritesmith/stable/pets/Pet-Falcon-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-FlyingPig-Floral.png b/common/img/sprites/spritesmith/stable/pets/Pet-FlyingPig-Floral.png new file mode 100644 index 0000000000..9356d63f9c Binary files /dev/null and b/common/img/sprites/spritesmith/stable/pets/Pet-FlyingPig-Floral.png differ diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Fox-Floral.png b/common/img/sprites/spritesmith/stable/pets/Pet-Fox-Floral.png new file mode 100644 index 0000000000..e710c36903 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/pets/Pet-Fox-Floral.png differ diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-LionCub-Floral.png b/common/img/sprites/spritesmith/stable/pets/Pet-LionCub-Floral.png new file mode 100644 index 0000000000..77126ab22b Binary files /dev/null and b/common/img/sprites/spritesmith/stable/pets/Pet-LionCub-Floral.png differ diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-MagicalBee-Base.png b/common/img/sprites/spritesmith/stable/pets/Pet-MagicalBee-Base.png new file mode 100644 index 0000000000..17c3a885da Binary files /dev/null and b/common/img/sprites/spritesmith/stable/pets/Pet-MagicalBee-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-PandaCub-Floral.png b/common/img/sprites/spritesmith/stable/pets/Pet-PandaCub-Floral.png new file mode 100644 index 0000000000..9c3d8f2378 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/pets/Pet-PandaCub-Floral.png differ diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Snail-Base.png b/common/img/sprites/spritesmith/stable/pets/Pet-Snail-Base.png new file mode 100644 index 0000000000..d8500a2034 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/pets/Pet-Snail-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Snail-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/pets/Pet-Snail-CottonCandyBlue.png new file mode 100644 index 0000000000..74bf390b08 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/pets/Pet-Snail-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Snail-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/pets/Pet-Snail-CottonCandyPink.png new file mode 100644 index 0000000000..4cdbff51df Binary files /dev/null and b/common/img/sprites/spritesmith/stable/pets/Pet-Snail-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Snail-Desert.png b/common/img/sprites/spritesmith/stable/pets/Pet-Snail-Desert.png new file mode 100644 index 0000000000..6a8748638a Binary files /dev/null and b/common/img/sprites/spritesmith/stable/pets/Pet-Snail-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Snail-Golden.png b/common/img/sprites/spritesmith/stable/pets/Pet-Snail-Golden.png new file mode 100644 index 0000000000..7abbab06d5 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/pets/Pet-Snail-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Snail-Red.png b/common/img/sprites/spritesmith/stable/pets/Pet-Snail-Red.png new file mode 100644 index 0000000000..df9e5e4aa5 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/pets/Pet-Snail-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Snail-Shade.png b/common/img/sprites/spritesmith/stable/pets/Pet-Snail-Shade.png new file mode 100644 index 0000000000..6344d9b15e Binary files /dev/null and b/common/img/sprites/spritesmith/stable/pets/Pet-Snail-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Snail-Skeleton.png b/common/img/sprites/spritesmith/stable/pets/Pet-Snail-Skeleton.png new file mode 100644 index 0000000000..44f2a766ea Binary files /dev/null and b/common/img/sprites/spritesmith/stable/pets/Pet-Snail-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Snail-White.png b/common/img/sprites/spritesmith/stable/pets/Pet-Snail-White.png new file mode 100644 index 0000000000..55dfe8b87e Binary files /dev/null and b/common/img/sprites/spritesmith/stable/pets/Pet-Snail-White.png differ diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Snail-Zombie.png b/common/img/sprites/spritesmith/stable/pets/Pet-Snail-Zombie.png new file mode 100644 index 0000000000..23124605d1 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/pets/Pet-Snail-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-TigerCub-Floral.png b/common/img/sprites/spritesmith/stable/pets/Pet-TigerCub-Floral.png new file mode 100644 index 0000000000..0240b38cb0 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/pets/Pet-TigerCub-Floral.png differ diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Wolf-Floral.png b/common/img/sprites/spritesmith/stable/pets/Pet-Wolf-Floral.png new file mode 100644 index 0000000000..d49e690b7e Binary files /dev/null and b/common/img/sprites/spritesmith/stable/pets/Pet-Wolf-Floral.png differ diff --git a/common/img/sprites/spritesmith/stable/potions/Pet_HatchingPotion_Floral.png b/common/img/sprites/spritesmith/stable/potions/Pet_HatchingPotion_Floral.png new file mode 100644 index 0000000000..b117c60031 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/potions/Pet_HatchingPotion_Floral.png differ diff --git a/common/img/sprites/spritesmith_large/promo/promo_backgrounds_armoire_201603.png b/common/img/sprites/spritesmith_large/promo/promo_backgrounds_armoire_201603.png new file mode 100644 index 0000000000..62fff667c7 Binary files /dev/null and b/common/img/sprites/spritesmith_large/promo/promo_backgrounds_armoire_201603.png differ diff --git a/common/img/sprites/spritesmith_large/promo/promo_backgrounds_armoire_201604.png b/common/img/sprites/spritesmith_large/promo/promo_backgrounds_armoire_201604.png new file mode 100644 index 0000000000..5e5e811cb9 Binary files /dev/null and b/common/img/sprites/spritesmith_large/promo/promo_backgrounds_armoire_201604.png differ diff --git a/common/img/sprites/spritesmith_large/promo/promo_egg_mounts.png b/common/img/sprites/spritesmith_large/promo/promo_egg_mounts.png new file mode 100644 index 0000000000..53dbb74179 Binary files /dev/null and b/common/img/sprites/spritesmith_large/promo/promo_egg_mounts.png differ diff --git a/common/img/sprites/spritesmith_large/promo/promo_floral_potions.png b/common/img/sprites/spritesmith_large/promo/promo_floral_potions.png new file mode 100644 index 0000000000..233d39e24d Binary files /dev/null and b/common/img/sprites/spritesmith_large/promo/promo_floral_potions.png differ diff --git a/common/img/sprites/spritesmith_large/promo/promo_mystery_201602.png b/common/img/sprites/spritesmith_large/promo/promo_mystery_201602.png new file mode 100644 index 0000000000..1d7b7ee8ee Binary files /dev/null and b/common/img/sprites/spritesmith_large/promo/promo_mystery_201602.png differ diff --git a/common/img/sprites/spritesmith_large/promo/promo_mystery_201603.png b/common/img/sprites/spritesmith_large/promo/promo_mystery_201603.png new file mode 100644 index 0000000000..fb38f51933 Binary files /dev/null and b/common/img/sprites/spritesmith_large/promo/promo_mystery_201603.png differ diff --git a/common/img/sprites/spritesmith_large/promo/promo_mystery_201604.png b/common/img/sprites/spritesmith_large/promo/promo_mystery_201604.png new file mode 100644 index 0000000000..207feac62a Binary files /dev/null and b/common/img/sprites/spritesmith_large/promo/promo_mystery_201604.png differ diff --git a/common/img/sprites/spritesmith_large/promo/promo_spring_classes_2016.png b/common/img/sprites/spritesmith_large/promo/promo_spring_classes_2016.png new file mode 100644 index 0000000000..47bc52d56d Binary files /dev/null and b/common/img/sprites/spritesmith_large/promo/promo_spring_classes_2016.png differ diff --git a/common/index.js b/common/index.js index e6a9c9fb98..475d444df3 100644 --- a/common/index.js +++ b/common/index.js @@ -1,9 +1,9 @@ -module.exports = require('./script/index'); -var _ = require('lodash'); -var moment = require('moment'); +var pathToCommon; -if (typeof window !== 'undefined') { - window.habitrpgShared = module.exports; - window._ = _; - window.moment = moment; +if (process.env.NODE_ENV === 'production') { // eslint-disable-line no-process-env + pathToCommon = './transpiled-babel/index'; +} else { + pathToCommon = './script/index'; } + +module.exports = require(pathToCommon); diff --git a/common/locales/cs/backgrounds.json b/common/locales/cs/backgrounds.json index 8873c291d1..b81caed01c 100644 --- a/common/locales/cs/backgrounds.json +++ b/common/locales/cs/backgrounds.json @@ -140,11 +140,25 @@ "backgroundSnowmanArmyNotes": "Veď armádu sněhuláků", "backgroundWinterNightText": "Zimní noc", "backgroundWinterNightNotes": "Dívej se na hvězdy za zimní noci", - "backgrounds022016": "SET 21: Released February 2016", - "backgroundBambooForestText": "Bamboo Forest", - "backgroundBambooForestNotes": "Stroll through the Bamboo Forest.", - "backgroundCozyLibraryText": "Cozy Library", - "backgroundCozyLibraryNotes": "Read in the Cozy Library.", + "backgrounds022016": "SET 21: Vydán v únoru 2016", + "backgroundBambooForestText": "Bambusový les", + "backgroundBambooForestNotes": "Procházej se bambusovým lesem.", + "backgroundCozyLibraryText": "Útulná knihovna", + "backgroundCozyLibraryNotes": "Čti si v útulné knihovně.", "backgroundGrandStaircaseText": "Grand Staircase", - "backgroundGrandStaircaseNotes": "Stride down the Grand Staircase." + "backgroundGrandStaircaseNotes": "Stride down the Grand Staircase.", + "backgrounds032016": "SET 22: Vydán v březnu 2016", + "backgroundDeepMineText": "Hluboký důl", + "backgroundDeepMineNotes": "Najdi drahé kovy v hlubokém dole.", + "backgroundRainforestText": "Deštný prales", + "backgroundRainforestNotes": "Vydej se za dobrodružstvím do deštného pralesa.", + "backgroundStoneCircleText": "Kamenný kruh", + "backgroundStoneCircleNotes": "Sesílej kouzla v kamenném kruhu.", + "backgrounds042016": "SET 23: Released April 2016", + "backgroundArcheryRangeText": "Archery Range", + "backgroundArcheryRangeNotes": "Practice on the Archery Range.", + "backgroundGiantFlowersText": "Giant Flowers", + "backgroundGiantFlowersNotes": "Frolic atop Giant Flowers.", + "backgroundRainbowsEndText": "End of the Rainbow", + "backgroundRainbowsEndNotes": "Discover gold at the End of the Rainbow." } \ No newline at end of file diff --git a/common/locales/cs/character.json b/common/locales/cs/character.json index 40a501c7dd..3917dc5c32 100644 --- a/common/locales/cs/character.json +++ b/common/locales/cs/character.json @@ -1,7 +1,7 @@ { "statsAch": "Statistiky a úspěchy", "profile": "Profil", - "avatar": "Postava", + "avatar": "Customize Avatar", "other": "Další", "fullName": "Celé jméno", "displayName": "Zobrazené jméno", @@ -34,6 +34,7 @@ "beard": "Plnovous", "mustache": "Knír", "flower": "Květina", + "wheelchair": "Wheelchair", "basicSkins": "Základní barvy kůže", "rainbowSkins": "Duhové kůže", "pastelSkins": "Pastelové kůže", @@ -83,7 +84,7 @@ "allocateInt": "Body přiřazené k Inteligenci:", "allocateIntPop": "Přiřadit bod k inteligenci", "noMoreAllocate": "Nyní, když jsi dosáhl úrovně 100, už nebudeš dostávat žádné body atributů. Můžeš pokračovat v dosahování dalších úrovní, nebo můžeš začít nové dobrodružství na úrovni 1, když použiješ Orb Znovuzrození, který nyní najdeš zdarma na Trhu.", - "stats": "Statistiky", + "stats": "Avatar Stats", "strength": "Síla", "strengthText": "Síla zvyšuje šanci náhodných \"kritických zásahů\" a díky tomu i bonus ke zlaťákům, zkušenosti a nalézání předmětů. Také ovlivňuje vážnost zranění příšery.", "constitution": "Obrana", @@ -136,7 +137,7 @@ "respawn": "Oživení!", "youDied": "Zemřel jsi!", "dieText": "Propadl jsi o úroveň níž a přišel jsi o všechny zlaťáky a náhodný kus vybavení. Povstaň, Habiťane, a zkus to znovu! Zbav se zlozvyků, poctivě plň denní úkoly a v případě zaváhání se vyhni smrti pomocí léčivého lektvaru.", - "sureReset": "Jsi si jistý? Toto resetuje povolání tvé postavy a přidělené body vlastností (které budeš mít šanci všechny přiřadit podle potřeby) a přijde tě to na 3 drahokamy", + "sureReset": "Are you sure? This will reset your character's class and allocated points (you'll get them all back to re-allocate), and costs 3 gems.", "purchaseFor": "Koupit za <%= cost %> drahokamů?", "notEnoughMana": "Nedostatek many.", "invalidTarget": "Neplatný cíl", @@ -160,5 +161,8 @@ "str": "SÍL", "con": "OBR", "per": "VNM", - "int": "INT" + "int": "INT", + "showQuickAllocation": "Show stat allocation", + "hideQuickAllocation": "Hide stat allocation", + "quickAllocationLevelPopover": "Each level earns you one point to assign to an attribute of your choice. You can do so manually, or let the game decide for you using one of the Automatic Allocation options found in User -> Stats." } \ No newline at end of file diff --git a/common/locales/cs/communityguidelines.json b/common/locales/cs/communityguidelines.json index e0ce4e9ffd..89c5147c73 100644 --- a/common/locales/cs/communityguidelines.json +++ b/common/locales/cs/communityguidelines.json @@ -1,19 +1,19 @@ { "iAcceptCommunityGuidelines": "Souhlasím s dodržováním Zásad komunity", "tavernCommunityGuidelinesPlaceholder": "Přátelské upozornění: tento chat je přístupný všem věkovým kategoriím, takže prosíme, abyste tomu své chování zde přizpůsobili! Pokud máte dotazy, podívejte se Zásady komunity dole.", - "commGuideHeadingWelcome": "Vítej v Habitice!", - "commGuidePara001": "Buď zdráv dobrodruhu! Vítej v Habitice, zemi produktivity, zdravého životního stylu a sem tam řádících příšer. Jsme veselá komunita plná lidí, kteří si navzájem pomáhají a navzájem se podporují na své cestě ke zlepšení sama sebe.", + "commGuideHeadingWelcome": "Vítej v zemi Habitica!", + "commGuidePara001": "Buď zdráv dobrodruhu! Vítej ve světě Habitica, zemi produktivity, zdravého životního stylu a sem tam řádících příšer. Jsme veselá komunita plná lidí, kteří si navzájem pomáhají a navzájem se podporují na své cestě ke zlepšení sama sebe.", "commGuidePara002": "Aby byli všichni v komunitě šťastní, v bezpečí a produktivní, máme tu nějaké zásady. Připravili jsme je pečlivě tak, aby byly co nejpřátelštější a jednoduché na čtení. Prosím, čtěte je se stejnou pečlivou s jakou jsme je napsali.", "commGuidePara003": "Tato pravidla platí pro všechny naše sociální stránky včetně (ale nejen) Trello, GitHub, Transifex, a Wikia (neboli wiki). Někdy nastanou nečekané situace jako nějaký konflikt nebo zákeřný nekromancr. Když taková situace nastane, moderátoři moou změnit tyto zásady, aby ochránili komunity před novými hrozbami. Avšak neboj se: vždy tě na změny upozorníme prostřednictvím Baileyho.", "commGuidePara004": "Připrav si svitek a brk na poznámky a začněme!", "commGuideHeadingBeing": "Být Habiťanem", - "commGuidePara005": "Habitika je stránka věnována především zlepšování. Díky tomu se na nás usmálo štěstí a přitáhli jsme ty nejmilejší, nejsrdečnější, nejzdvořilejší a podporující komunity na internetu. Je spousta vlastností, kterými Habiťané disponují. Některé nejčastější a nejzajímavější jsou:", + "commGuidePara005": "Program Habitica je stránka věnována především zlepšování. Díky tomu se na nás usmálo štěstí a přitáhli jsme ty nejmilejší, nejsrdečnější, nejzdvořilejší a podporující komunity na internetu. Je spousta vlastností, kterými Habiťané disponují. Některé nejčastější a nejzajímavější jsou:", "commGuideList01A": "Ochotný duch. Spousta lidí obětuje čas a energii na pomoc novým členům komunity a učit je. Například Cech nováčků je cech zaměřený pouze na poskytování odpovědí. Pokud si myslíš, že bys mohl být nápomocen, nestyď se a pomož!", "commGuideList01B": "Svědomitý přístup.. Habiťané tvrdě dřou na zlepšení svých životů, ale také pomáhají stavět tuhle stránku a zlepšovat jí. Jsem open-source projekt a tak neustále pracujeme na vylepšení stránky, aby byla tím nejlepším místem.", "commGuideList01C": "Podporující chování. Habiťané si navzájem fandí, radují se z úspěchů svých i z úspěchů druhých a navzájem si pomáhají v těžkých chvílích. Sdílíme sílu, spoléháme na sebe a učíme se od sebe navzájem. V družinách se podporujeme kouzly, na chatech se podporujeme laskavými slovy a slovy podpory.", "commGuideList01D": "Respekt. Každý pocházíme odjinud, máme jiné schopnosti a jiné názory. A díky tomu je naše komunita ak skvělá! Habiťané respektují tyto rozdíly a oslavují je. Chvilku se zdrž a za brzo budeš mít spoustu přátel z různých koutů světa.", "commGuideHeadingMeet": "Poznejte moderátory!", - "commGuidePara006": "Habitika má několik neúnavných rytířů, kteří spojili své síly se zaměstnanci aby udrželi tuto komunitu v klidu, spokojenou a bez trolů. Každý z nich má specifickou doménu, ale mohou být povoláni do služby v jiných sociálních sférách. Zaměstnanci a Moderátoři obvykle začnou oficiální oznámení slovy \"Mod hovoří\" nebo \"S Mod kloboukem\".", + "commGuidePara006": "Země Habitica má několik neúnavných rytířů, kteří spojili své síly se zaměstnanci aby udrželi tuto komunitu v klidu, spokojenou a bez trollů. Každý z nich má specifickou doménu, ale mohou být povoláni do služby v jiných sociálních sférách. Zaměstnanci a Moderátoři obvykle začnou oficiální oznámení slovy \"Mod hovoří\" nebo \"S Mod kloboukem\".", "commGuidePara007": "Zaměstanci mají fialové štítky s korunami. Jejich titul je \"hrdinný\".", "commGuidePara008": "Moderátoři mají tmavě modré štítky s hvězdičkami. jejich titul je \"Ochránce\". jedinou výjimkou je Bailey, který jako NPC má černý a zelený štítek s hvězdou.", "commGuidePara009": "Současní zaměstnanci jsou (zleva doprava):", @@ -26,12 +26,12 @@ "commGuidePara011c": "na Wikia", "commGuidePara011d": "na GitHub", "commGuidePara012": "Pokud máte problém s nějakým konkrétním moderátorem, prosíme, pošlete email Lemoness(leslie@habitica)", - "commGuidePara013": "V komunitě, jakou je Habitika, uživatelé přicházejí a odcházejí a někdy si i moderátor potřebuje odpočinout. Následující moderátoři jsou již vysloužilí moderátoři, kteří tu již aktivně nepůsobí, přesto bychom ale chtěli uctít jejich práci!", + "commGuidePara013": "V komunitě, jakou je země Habitica, uživatelé přicházejí a odcházejí a někdy si i moderátor potřebuje odpočinout. Následující moderátoři jsou již vysloužilí moderátoři, kteří tu již aktivně nepůsobí, přesto bychom ale chtěli uctít jejich práci!", "commGuidePara014": "Vysloužilí moderátoři:", - "commGuideHeadingPublicSpaces": "Veřejné prostory v Habitice:", - "commGuidePara015": "Habitika má dva druhy sociálního prostoru: veřejný a soukromý. Veřejný prostor zahrnuje Krčmu, veřejné cechy, GitHub, Trello a Wiki. Soukromý prostor jsou soukromé cechy. chat v družině a soukromé zprávy.", - "commGuidePara016": "Při pohybu ve veřejných prostorách v Habitice platí některá obecná pravidla, díky kterým jsou všichni v bezpečí a šťastní. Tato pravidla by měla pro dobrodruhy, jako jsi ty, snadná!", - "commGuidePara017": "Respektujte se navzájem. Buď ohleduplný, laskavý, přátelský a nápomocný. Pamatuj: Habiťané pochází z různých koutů světa a mají velice odlišné zkušenosti. To dělá Habitiku tak skvělou! Budování komunity znamená respektovat a oslavovat rozdíly stejně jako podobnosti. Zde jsou snadné způsoby jak se navzájem respektovat:", + "commGuideHeadingPublicSpaces": "Veřejné prostory v zemi Habitica:", + "commGuidePara015": "Habitica has two kinds of social spaces: public, and private. Public spaces include the Tavern, Public Guilds, GitHub, Trello, and the Wiki. Private spaces are Private Guilds, party chat, and Private Messages. All Display Names must comply with the public space guidelines. To change your Display Name, go on the website to User > Profile and click on the \"Edit\" button.", + "commGuidePara016": "Při pohybu ve veřejných prostorách země Habitica platí některá obecná pravidla, díky kterým jsou všichni v bezpečí a šťastní. Tato pravidla by měla pro dobrodruhy, jako jsi ty, snadná!", + "commGuidePara017": "Respektujte se navzájem. Buď ohleduplný, laskavý, přátelský a nápomocný. Pamatuj: Habiťané pochází z různých koutů světa a mají velice odlišné zkušenosti. To dělá zemi Habitica tak skvělou! Budování komunity znamená respektovat a oslavovat rozdíly stejně jako podobnosti. Zde jsou snadné způsoby jak se navzájem respektovat:", "commGuideList02A": "Řiď se všemi pravidly a podmínkami.", "commGuideList02B": " Neuveřejňuj obrázky či text, který je násilnický, výhružný, sexuálně explicitní/vyzývavý, nebo který podporuje diskriminaci, předsudky, rasismus, sexismus, nenávist, obtěžování nebo nabádá k napadání skupiny či jedince. A to ani jen ze srandy. To znamená žádné urážky a tvrzení. Ne každý má stejný smysl pro humor jako ty, a tak něco, co může být vtipem pro jedny, může být urážlivé pro jiné. Zaútoč na své úkoly, ne na ostatní uživatele.", "commGuideList02C": "Zachovej diskuze přístupné pro všechny věkové kategorie. Máme tu spoustu mladých Habiťanů! Nechceme přeci zkazit žádné nevinné Habiťany a odradit je od dosažení jejich cílů.", @@ -40,27 +40,27 @@ "commGuideList02F": "Okamžitě se podřiď jakémukoliv požadavku moderátorů na přerušení konverzace nebo její přesunutí do Zadního koutku. Poslední slova, rozdílné názory a odpálkování by se měla odehrát (zdvořile) u vašeho \"stolu\" v Zadním koutku, pokud to bude dovoleno.", "commGuideList02G": "Raději si nech chvilku na vychladnutí než odpovídat v afektu pokud ti někdo řekne, že něco, co jsi řekl, či udělal, jim bylo nepříjemné. V umění upřímně se někomu omluvit je velká síla. Pokud si myslíš, že způsob, kterým ti někdo odpověděl, byl nepřiměřený, kontaktuj moderátora než abys toho dotyčného veřejně konfrontoval.", "commGuideList02H": "Rozporuplné či kontroverzní diskuze by měly být hlášeny moderátorům. Pokud si myslíš, že konverzace začíná být napjatá, příliš emocionální, nebo může někomu ublížit, přestaň se v ní angažovat. Místo toho pošli email na leslie@habitica a nahlaš nám to. Je naší prací tě ochránit.", - "commGuideList02I": "Nespamujte. Spam může obsahovat: postování stejného komentáře na několik míst, postování linků bez vysvětlení nebo kontextu, postování nesmyslných zpráv, nebo postování mnoha zpráv za sebou. Opakované žadonění o drahokamy nebo předplatné také bude považováno za spam.", - "commGuidePara019": "V soukromých prostorách, mají uživatelé více svobody povídat si o čem chtějí, ale i tak mohou porušovat Pravidla a podmínky, včetně uveřejňování jakéhokoliv diskriminujícího, násilného nebo urážlivého obsahu.", + "commGuideList02I": "Do not spam. Spamming may include, but is not limited to: posting the same comment or query in multiple places, posting links without explanation or context, posting nonsensical messages, or posting many messages in a row. Asking for gems or a subscription in any of the chat spaces or via Private Message is also considered spamming.", + "commGuidePara019": "In private spaces, users have more freedom to discuss whatever topics they would like, but they still may not violate the Terms and Conditions, including posting any discriminatory, violent, or threatening content. Note that, because Challenge names appear in the winner's public profile, ALL Challenge names must obey the public space guidelines, even if they appear in a private space.", "commGuidePara020": "Soukromé zprávy (SZ) mají další zásady. Pokud tě někdo zablokoval, nekontaktuj je jinak aby tě odblokoval. Dále, neměl bys posílat soukromé zprávy někomu, kdo žádá o pomoc (veřejné odpovědi na žádosti o pomoc mohou pomoc i jiným v komunitě). Nakonec, neposílej nikomu soukromé zprávy, ve kterých žadoníš o drahokamy nebo předplatné, jelikož by to mohlo být považováno za spam.", - "commGuidePara021": "Navíc některé veřejné prostory v Habitice mají další pravidla.", + "commGuidePara021": "Navíc některé veřejné prostory v zemi Habitica mají další pravidla.", "commGuideHeadingTavern": "Krčma", - "commGuidePara022": "Krčma je hlavním bodem v Habitice, kde se lidé socializují. Barman Daniel udržuje tohle místo čisté jako klícka a Lemoness vám ráda namíchá nějakou limču zatímco si vesele povídáte. Musíš si však pamatovat, že...", + "commGuidePara022": "Krčma je hlavním bodem v zemi Habitica, kde se lidé socializují. Barman Daniel udržuje tohle místo čisté jako klícka a Lemoness vám ráda namíchá nějakou limču zatímco si vesele povídáte. Musíš si však pamatovat, že...", "commGuidePara023": "Konverzace se většinou točí kolem tipů na zlepšení a jen tak povídání.", "commGuidePara024": "Protože se v krčme zobrazuje pouze 200 vzkazů, není dobrý místem na zdlouhavé diskuze, převážně na citlivá témata (např. politika, náboženství, deprese, zda-li by měl být hon na gobliny zakázán, atd) Tyto konverzace by měly probíhat v přislušných ceších v Zadním koutku (více informací najdeš níže).", - "commGuidePara027": "Nerozebírej v krčmě nic návykového. Spousta lidí používá Habitiku aby se svých špatných návyků zbavila. Slyšet, jak jsi o tom lidé povídají by pro ně mohlo být těžké. Respektuj své spoluhabiťany v krčmě a vezmi tohle v úvahu. To zahrnuje kouření, alkohol, pornografii, karban, nebo užívání zakázaných látek.", + "commGuidePara027": "Nerozebírej v krčmě nic návykového. V zemi Habitica je spousta lidí proto, aby se svých špatných návyků zbavila. Slyšet, jak jsi o tom lidé povídají by pro ně mohlo být těžké. Respektuj své spoluhabiťany v krčmě a vezmi tohle v úvahu. To zahrnuje kouření, alkohol, pornografii, karban, nebo užívání zakázaných látek.", "commGuideHeadingPublicGuilds": "Veřejné cechy", "commGuidePara029": "Veřejné cechy jsou hodně jako krčma, akorát místo obecných diskuzí se v nich mluví na specifické téma. Chat ve veřejném cechu by se měl soustředit na téma. Například, členové cechu řečníků se asi nebudou bavit o zahradničení, a cech přemožitelů draků asi nebude mít zájem o luštění starých run. Některé cechy jsou laxnější než jiné, ale i tak, drž se tématu!", "commGuidePara031": "Některé veřejné cechy budou obsahovat citlivá témata jako je deprese, náboženství, politika, atd. To je v pořádku pokud konverzace neporušují Pravidla a podmínky nebo Pravidla veřejných prostor a pokud budou k tématu.", - "commGuidePara033": "Veřejné cechy by NEMĚLY obsahovat obsah pro starší 18 let. Pokud mají v úmyslu často diskutovat o citlivých tématech, musí to být uvedeno v názvu cechu. Toto opatření existuje aby byli všichni v Habitice v bezpečí a aby se tu všichni cítili dobře. Pokud by takový cech obsahoval jiné druhy citlivých témat, bylo by slušné ostatní Habiťany varovat (např. \"Varování: diskuze je o sebepoškozování\"). Navíc by mělo být citlivé téma relevantní k cechu - začít mluvit o sebepoškozování v cechu o depresi se může zdát jako dobrý nápad, ale už nemusí být správných rozhodnutí v cechu o muzice. Pokud uvidíš, jak tohle pravidlo někdo neustále poškozuje, prosím, pošli nám email na leslie@habitica i se screenshoty.", + "commGuidePara033": "Veřejné cechy by NEMĚLY obsahovat obsah pro starší 18 let. Pokud mají v úmyslu často diskutovat o citlivých tématech, musí to být uvedeno v názvu cechu. Toto opatření existuje aby byli všichni v zemi Habitica v bezpečí a aby se tu všichni cítili dobře. Pokud by takový cech obsahoval jiné druhy citlivých témat, bylo by slušné ostatní Habiťany varovat (např. \"Varování: diskuze je o sebepoškozování\"). Navíc by mělo být citlivé téma relevantní k cechu - začít mluvit o sebepoškozování v cechu o depresi se může zdát jako dobrý nápad, ale už nemusí být správných rozhodnutí v cechu o muzice. Pokud uvidíš, jak tohle pravidlo někdo neustále poškozuje, prosím, pošli nám email na leslie@habitica i se screenshoty.", "commGuidePara035": "Žádný cech, ať už veřejný nebo soukromý by neměl být založen za účelem útoku na skupinu nebo jednotlivce. Vytvoření takového cechu je důvodem k okamžitému banu. Bojuj proti špatným návykům, nebo proti dalším dobrodruhům!", "commGuidePara037": "Všechny výzvy v krčmě a výzvy veřejných cechů se musí těmito pravidly řídit také.", "commGuideHeadingBackCorner": "Zadní koutek", "commGuidePara038": "Někdy se konverzace může táhnou, může být mimo téma, citlivá natolik, aby se v ní už nemohlo pokračovat ve veřejném prostoru aniž by nebyla někomu nepříjemná. V takovém případě by se měla konverzace přesunout do cechu Zadního koutku. Přemístění do Zadního koutku není v žádném případě trest! Naopak, Habiťané tam rádi chodí vést dlouhé diskuze.", "commGuidePara039": "Cech Zadního koutku je bezplatný veřejný prostor pro diskuzi citlivých témat, či pro dlouhé konverzace, a je pečlivě moderována. Stále tu platí pravidla pro veřejné prostory a Pravidla a podmínky. Jen protože máme dlouhé kabáty a držíme se v koutě neznamená, že pravidla neplatí! A teď mi podej tu doutnající svíčku, prosím.", "commGuideHeadingTrello": "Trello fóra", - "commGuidePara040": "Trello je otevřené fórum pro návrhy a pro diskuze funkcí stránky. Habitice vládnou lidé ve formě udatných přispěvatelů - my všichni budujeme tuto stránku společně. Trello je systém, který nám dává řád v chaosu. Tak tedy prosíme snaž se sepsat všechny své myšlenky do jednoho komentáře místo několik komentářů na jedné kartě. Pokud vymyslíš něco nového, můžeš svůj komentář kdykoliv upravit. Prosím, slituj se nad námi. S každým komentářem dostaneme upozornění a naše inboxy praskají ve švech.", - "commGuidePara041": "Habitika používá pět různých Trello fór:", + "commGuidePara040": "Trello je otevřené fórum pro návrhy a pro diskuze funkcí stránky. Zemi Habitica vládnou lidé ve formě udatných přispěvatelů - my všichni budujeme tuto stránku společně. Trello je systém, který nám dává řád v chaosu. Tak tedy prosíme snaž se sepsat všechny své myšlenky do jednoho komentáře místo několik komentářů na jedné kartě. Pokud vymyslíš něco nového, můžeš svůj komentář kdykoliv upravit. Prosím, slituj se nad námi. S každým komentářem dostaneme upozornění a naše inboxy praskají ve švech.", + "commGuidePara041": "Program Habitica používá pět různých Trello fór:", "commGuideList03A": "Hlavní fórum je místo pro požadavky a kde se hlasuje o nových funkcích.", "commGuideList03B": "Mobilní fórum je místo pro požadavky a kde se hlasuje o nových funkcích pro aplikace pro mobily.", "commGuideList03C": "Pixel Art fórum je místo, kde se diskutuje o pixel obrázcích a kam je můžeš posílat.", @@ -68,12 +68,12 @@ "commGuideList03E": "Wiki fórum je místo pro zlepšení, požadavky a diskuzi o novém obsahu wiki.", "commGuidePara042": "Všechny mají svá vlastní pravidla a platí v nich i pravidla pro veřejné prostory. Uživatelé by se měli vyvarovat konverzací mimo téma ve všech fórech a na všech kartách. Věř nám, že fóra jsou už takhle hodně plná! Zdlouhavé konverzace by měly být přesunuty to cechu Zadního koutku.", "commGuideHeadingGitHub": "GitHub", - "commGuidePara043": "Habitika používá ke sledování chyb a ke zlepšování kódu GitHub. Je to kovárna, kde neúnavní kováři kují vylepšení! Platí zde všechna pravidla pro veřejný prostor. Buď ke kovářům zdvořilý - dá to hodně práce starta se o tuhle stránku! Hurá kovářům!", - "commGuidePara044": "Následující uživatelé jsou členy Habitika repo:", + "commGuidePara043": "Program Habitica používá ke sledování chyb a ke zlepšování kódu GitHub. Je to kovárna, kde neúnavní kováři kují vylepšení! Platí zde všechna pravidla pro veřejný prostor. Buď ke kovářům zdvořilý - dá to hodně práce starta se o tuhle stránku! Hurá kovářům!", + "commGuidePara044": "Následující uživatelé jsou členy Habitica repo:", "commGuideHeadingWiki": "Wiki", - "commGuidePara045": "Wiki Habitiky shromažďuje informace o stránce. Také obsahuje několik fór podobných cechům na Habitica. A proto tam platí pravidla pro veřejné prostory.", - "commGuidePara046": "Wiki Habitiky může být považována za databázi všeho na Habitica. Poskytuje informace o vlastnostech stránky, návody na hru, tipy jak můžeš Habitica přispět a také poskytuje místo pro zviditelnění tvých cechů či družin a pro hlasování o tématech.", - "commGuidePara047": "Protože wiki se nachází na Wikii, platí zde nejen pravidla Habitiky, ale i pravidla Wikie.", + "commGuidePara045": "Wiki země Habitica shromažďuje informace o stránce. Také obsahuje několik fór podobných cechům v zemi Habitica. A proto tam platí pravidla pro veřejné prostory.", + "commGuidePara046": "Wiki země Habitica může být považována za databázi všeho v zemi Habitica. Poskytuje informace o vlastnostech stránky, návody na hru, tipy jak můžeš Habitica přispět a také poskytuje místo pro zviditelnění tvých cechů či družin a pro hlasování o tématech.", + "commGuidePara047": "Protože wiki se nachází na Wikii, platí zde nejen pravidla země Habitica, ale i pravidla Wikie.", "commGuidePara048": "Wiki je výhradně kolaborací mezi všemi editory, tak mohou platit další pravidla:", "commGuideList04A": "Požadavky na nové stránky nebo velké změny na Wiki Trello fóru", "commGuideList04B": "Být otevřený o svém návrhu na změnu", @@ -87,7 +87,7 @@ "commGuidePara018": "Vysloužilí administrátoři wiki jsou", "commGuideHeadingInfractionsEtc": "Porušení, důsledky a náprava", "commGuideHeadingInfractions": "Porušení", - "commGuidePara050": "Habiťané si pomáhají, respektují se a udržují komunitu zábavnou a přátelskou. Avšak, jednou za čas, něco, co některý Habiťan udělá, může porušovat jedno z uvedených pravidel. Když se to stane, moderátoři zakročí jak uznají za vhodné aby Habitiku ochránili.", + "commGuidePara050": "Habiťané si pomáhají, respektují se a udržují komunitu zábavnou a přátelskou. Avšak, jednou za čas, něco, co některý Habiťan udělá, může porušovat jedno z uvedených pravidel. Když se to stane, moderátoři zakročí jak uznají za vhodné aby zemi Habitica ochránili.", "commGuidePara051": "Je několik druhů porušení a je proti nim zakročeno v závislosti na jejich závažnosti. Toto nejsou úplné seznamy a moderátoři mají omezené pravomoci. Moderátoři vezmou v úvahu kontext při zvažování porušení.", "commGuideHeadingSevereInfractions": "Závažná porušení", "commGuidePara052": "Závažná porušení závažně narušují bezpečí komunity Habiťánů a uživatelů a proto mají závažné důsledky.", @@ -111,7 +111,7 @@ "commGuideList07A": "První porušení pravidel veřejného prostoru", "commGuideList07B": "Jakékoliv tvrzení, na které se reaguje slovy \"Prosím, ne\". Pokud moderátor musí uživateli říct \"Prosím, nedělej to\", může se to počítat jako lehčí porušení pro toho uživatele. Příkladem může být \"Moderátor hovoří: Prosím, nepodporujte tenhle nápad na zlepšovák poté, co jsme ti řekli, že to není proveditelné.\" V mnoha případech bude to Prosím, ne tím lehčím důsledkem, ale pokud moderátoři musí říct \"Prosím, ne\" stejnému uživateli několikrát, začne se to počítat jako závažnější porušení.", "commGuideHeadingConsequences": "Důsledky", - "commGuidePara058": "V Habitice - stejně jako v reálném životě - každý čin má svůj důsledek, ať je to lepší forma po cvičení, kazy po jezení hodně cukru, nebo dobrá známka z testu, protože jsi studoval.", + "commGuidePara058": "V zemi Habitica - stejně jako v reálném životě - každý čin má svůj důsledek, ať je to lepší forma po cvičení, kazy po jezení hodně cukru, nebo dobrá známka z testu, protože jsi studoval.", "commGuidePara059": "Stejně tak každé porušení má přímé důsledky. Některé důsledky jsou uvedeny dole.", "commGuidePara060": "Pokud tvé porušení je závažnějšího charakteru, obdržíš email, ve kterém bude vysvětleno:", "commGuideList08A": "jaké bylo tvé porušení", @@ -135,10 +135,10 @@ "commGuideList11D": "Vymazání (moderátoři/zaměstnanci mohou mazat problémový obsah)", "commGuideList11E": "Změny (moderátoři/zaměstnanci mohou měnit problémový obsah)", "commGuideHeadingRestoration": "Obnovení", - "commGuidePara061": "Habitika je země zasvěcená sebezlepšování a věříme ve druhé šance. Pokud spácháš přestupek a bude to pro tebe mít důsledky, dívej se na to jako na šanci zhodnotit své činy a šanci stát se lepším členem komunity.", + "commGuidePara061": "Habitica je země zasvěcená sebezlepšování a věříme ve druhé šance. Pokud spácháš přestupek a bude to pro tebe mít důsledky, dívej se na to jako na šanci zhodnotit své činy a šanci stát se lepším členem komunity.", "commGuidePara062": "Email, který ti byl zaslán, ve kterém vysvětlujeme důsledky tvých činů (nebo, v případě lehčích přestupků, oznámení moderátora/zaměstnance) je dobrým zdrojem informací. Spolupracuj s omezeními, které na tebe byli uvaleny a snaž se dosáhnout podmínek, abys jich byl zbaven.", "commGuidePara063": "Pokud nerozumíš důsledkům nebo svému přestupku, požádej zaměstnance/moderátory o rady, aby ses mohl přestupkům v budoucnosti vyhnout.", - "commGuideHeadingContributing": "Přispět Habitice", + "commGuideHeadingContributing": "Přispět programu Habitica", "commGuidePara064": "Habitica je open-source projekt, což znamená že kterýkoliv z Habiťanů může přispět! Ti, kteří přispějí, budou odměněni následujícími stupni přispěvatelů:", "commGuideList12A": "Odznak přispěvatele Habit RPG, plus 3 drahokamy", "commGuideList12B": "Přispěvatelské brnění, plus 3 drahokamy", diff --git a/common/locales/cs/content.json b/common/locales/cs/content.json index 495fc2c21b..04209aaacf 100644 --- a/common/locales/cs/content.json +++ b/common/locales/cs/content.json @@ -31,7 +31,7 @@ "dropEggCactusAdjective": "pichlavý", "dropEggBearCubText": "medvídek", "dropEggBearCubMountText": "medvěd", - "dropEggBearCubAdjective": "mazlivý", + "dropEggBearCubAdjective": "a brave", "questEggGryphonText": "gryf", "questEggGryphonMountText": "gryf", "questEggGryphonAdjective": "hrdý", @@ -46,7 +46,7 @@ "questEggEggAdjective": "pestrý", "questEggRatText": "myšák", "questEggRatMountText": "myšák", - "questEggRatAdjective": "špinavý", + "questEggRatAdjective": "a sociable", "questEggOctopusText": "chobotničák", "questEggOctopusMountText": "chobotničák", "questEggOctopusAdjective": "kluzký", @@ -110,6 +110,9 @@ "questEggMonkeyText": "Monkey", "questEggMonkeyMountText": "Monkey", "questEggMonkeyAdjective": "a mischievous", + "questEggSnailText": "Snail", + "questEggSnailMountText": "Snail", + "questEggSnailAdjective": "pomalý, ale neochvějný", "eggNotes": "Najdi líhnoucí lektvar, nalij ho na vejce a to se vylíhne v <%= eggAdjective(locale) %> <%= eggText(locale) %>.", "hatchingPotionBase": "Základní", "hatchingPotionWhite": "Bílý", diff --git a/common/locales/cs/contrib.json b/common/locales/cs/contrib.json index 2a2a39056f..ed2b02b020 100644 --- a/common/locales/cs/contrib.json +++ b/common/locales/cs/contrib.json @@ -28,11 +28,11 @@ "helped": "Pomohl Habitu růst", "helpedText1": "Pomohl programu Habitica růst vyplněním", "helpedText2": "tohoto dotazníku.", - "hall": "Síň slávy", + "hall": "Hall of Heroes", "contribTitle": "Přispěvatelský titul (např. \"Kovář\")", "contribLevel": "Úroveň přispěvatele", "contribHallText": "1-7 pro normální přispěvatele, 8 pro moderátory, 9 pro personál. Tato úroveň určuje jaké předměty, mazlíčky, či jaká zkrocená zvířata jsou dostupná. Také určuje barvu štítku se jménem. Úrovním 8 a 9 je automaticky přidělován status admina.", - "hallHeroes": "Síň Hrdinů", + "hallContributors": "Hall of Contributors", "hallPatrons": "Síň Patronů", "rewardUser": "Ocenit uživatele", "UUID": "UUID", @@ -60,5 +60,5 @@ "blurbGuildsPage": "Cechy jsou chatovací skupiny s podobnými zájmy, které jsou tvořené hráči pro hráče. Můžeš si vyhledat témata, která tě zajímají!", "blurbChallenges": "Výzvy jsou tvořeny tvými spoluhráči. Když se účastníš Výzvy, přidají se ti úkoly na tvou stránku s úkoly, a když Výzvu vyhraješ, dostaneš ocenění a často i Drahokamy!", "blurbHallPatrons": "Toto je Síň Patronů, ve které oslavujeme vznešené dobrodruhy, kteří podpořili program Habitica na Kickstarteru. Jsme jim vděční za to, že pomohli zemiHabitica přivést k životu!", - "blurbHallHeroes": "Toto je Síň Hrdinů, kde oslavujeme open-source přispěvatele programu Habitica. Ať už za kód, kresby, hudbu, psaní, nebo jen prostě za pomoc, vysloužili si Drahokamy, exkluzivní vybavení a prestižní tituly. Také můžeš programu Habitica přispět! Více informací najdeš zde." + "blurbHallContributors": "This is the Hall of Contributors, where open-source contributors to Habitica are honored. Whether through code, art, music, writing, or even just helpfulness, they have earned gems, exclusive equipment, and prestigious titles. You can contribute to Habitica, too! Find out more here. " } \ No newline at end of file diff --git a/common/locales/cs/gear.json b/common/locales/cs/gear.json index e5dd110e97..0ed7e7d12a 100644 --- a/common/locales/cs/gear.json +++ b/common/locales/cs/gear.json @@ -1,4 +1,5 @@ { + "set": "Set", "weapon": "zbraň", "weaponBase0Text": "Žádná zbraň", "weaponBase0Notes": "Žádná zbraň", @@ -142,6 +143,14 @@ "weaponSpecialWinter2016MageNotes": "Tvůj styl je tak hustý, že musíš čarovat! Zvyšuje Inteligenci o <%= int %> a Vnímání o <%= per %>. Limitovaná edice zimní výbavy 2015-2016.", "weaponSpecialWinter2016HealerText": "Kanón s konfetami", "weaponSpecialWinter2016HealerNotes": "JÉÉÉÉÉÉÉÉÉÉÉÉÉÉÉÉÉÉJ!!!!!!! VÍTEJ V ZIMNÍ ŘÍŠI DIVŮ!!!!!!!! Zvyšuje Inteligenci o <%= int %>. Limitovaná edice zimní výbavy 2015-2016.", + "weaponSpecialSpring2016RogueText": "Ohnivá bola", + "weaponSpecialSpring2016RogueNotes": "Zvládnul jsi kouli, kyj a nůž. Teď jsi postoupil na žonglování s ohněm. Wohoo! Zvyšuje Sílu o <%= str %>. Limitovaná edice Jarní výbavy 2016", + "weaponSpecialSpring2016WarriorText": "Sýrová palička", + "weaponSpecialSpring2016WarriorNotes": "Nikdo nemá tolik přátel jako myš se sýry. Zvyšuje sílu o <%= str %>. Limitovaná edice Jarní výbavy 2016.", + "weaponSpecialSpring2016MageText": "Hůl zvonků", + "weaponSpecialSpring2016MageNotes": "Abra-cat-abra! Tak oslnivé, že možná fascinuješ i sebe! Oo... ono to zvoní... Zvyšuje inteligenci o <%= int %> a Vnímání o <%= per %>. Limitovaná edice Jarní výbavy 2016.", + "weaponSpecialSpring2016HealerText": "Hůlka jarních květin", + "weaponSpecialSpring2016HealerNotes": "S zamáváním a mrknutím, necháš rozkvést louky a lesy! Nebo trefit nepříjemné myši do hlavy. Přidá <%= int %> bodů k Inteligenci. Limitovaná edice 2016 Jarní výbava.", "weaponMystery201411Text": "Vidle hodů", "weaponMystery201411Notes": "Píchni své nepřátele nebo se pusť do svého oblíbeného jídla - tyhle všestranné vidle zvládnou všechno! Nepřináší žádný benefit.", "weaponMystery201502Text": "Třpytivá okřídlená hůl lásky a také pravdy", @@ -172,10 +181,14 @@ "weaponArmoireBlueLongbowNotes": "Připravit... Zamířit... Pal! Tento luk má velký dostřel. Zvyšuje Vnímání o <%= per %>, Obranu o <%= con %> a Sílu o <%= str %>. Začarovaná almara: Nezávislý předmět.", "weaponArmoireGlowingSpearText": "Zářící kopí", "weaponArmoireGlowingSpearNotes": "Toto kopí hypnotizuje divoké úkoly, takže na ně můžeš zaútočit. Zvyšuje Sílu o <%= str %>. Začarovaná almara: Nezávislý předmět.", - "weaponArmoireBarristerGavelText": "Barrister Gavel", - "weaponArmoireBarristerGavelNotes": "Order! Increases Strength and Constitution by <%= attrs %> each. Enchanted Armoire: Barrister Set (Item 3 of 3).", - "weaponArmoireJesterBatonText": "Jester Baton", + "weaponArmoireBarristerGavelText": "Soudní palička", + "weaponArmoireBarristerGavelNotes": "Pořádek! Zvyšuje Sílu a Obranu o <%= attrs %> každou. Začarovaná almara: Set soudce (předmět 3 ze 3)", + "weaponArmoireJesterBatonText": "Šaškovský obušek", "weaponArmoireJesterBatonNotes": "With a wave of your baton and some witty repartee, even the most complicated situations become clear. Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Jester Set (Item 3 of 3).", + "weaponArmoireMiningPickaxText": "Mining Pickax", + "weaponArmoireMiningPickaxNotes": "Mine the maximum amount of gold from your tasks! Increases Perception by <%= per %>. Enchanted Armoire: Miner Set (Item 3 of 3).", + "weaponArmoireBasicLongbowText": "Basic Longbow", + "weaponArmoireBasicLongbowNotes": "A serviceable hand-me-down bow. Increases Strength by <%= str %>. Enchanted Armoire: Basic Archer Set (Item 1 of 3).", "armor": "zbroj", "armorBase0Text": "Obyčejné oblečení", "armorBase0Notes": "Běžné oblečení. Nenabízí žádný bonus.", @@ -307,6 +320,14 @@ "armorSpecialWinter2016MageNotes": "Ten nejmoudřejší z čarodějů je v zimě pořádně zachumlaný. Zvyšuje Inteligenci o <%= int %>. Limitovaná edice zimní výbavy 2015-2016.", "armorSpecialWinter2016HealerText": "Sváteční vílí plášť", "armorSpecialWinter2016HealerNotes": "Sváteční víly se halí do svých křídel, aby se chránily, zatímco po zemi Habitica létají pomocí křídel na hlavě rychlostí až 160km/h, doručují dárky a házejí na lidi konfety. Jak vtipné. Zvyšuje Obranu o <%= con %>. Limitovaná edice zimní výbavy 2015-2016.", + "armorSpecialSpring2016RogueText": "Canine Camo Suit", + "armorSpecialSpring2016RogueNotes": "A clever pup knows to choose a brighter guise for concealment when everything is green and vibrant. Increases Perception by <%= per %>. Limited Edition 2016 Spring Gear.", + "armorSpecialSpring2016WarriorText": "Mighty Mail", + "armorSpecialSpring2016WarriorNotes": "Though you be but little, you are fierce! Increases Constitution by <%= con %>. Limited Edition 2016 Spring Gear.", + "armorSpecialSpring2016MageText": "Grand Malkin Robes", + "armorSpecialSpring2016MageNotes": "Brightly colored, so you won't be mistaken for a necromouser. Increases Intelligence by <%= int %>. Limited Edition 2016 Spring Gear.", + "armorSpecialSpring2016HealerText": "Fluffy Bunny Breeches", + "armorSpecialSpring2016HealerNotes": "Hippity hop! Bound from hill to hill, healing those in need. Increases Constitution by <%= con %>. Limited Edition 2016 Spring Gear.", "armorMystery201402Text": "Oděv poslíčka", "armorMystery201402Notes": "Třpytivý a silný, tento oděv má spoustu kapes na dopisy. Nepřináší žádný benefit. Výbava pro předplatitele únor 2014", "armorMystery201403Text": "Zbroj lesáka", @@ -341,6 +362,8 @@ "armorMystery201511Notes": "I přes to, že toto brnění bylo vyřezán přímo z kouzelného polene, je překvapivě pohodlné. Nepřináší žádný benefit. Předmět pro předplatitele listopad 2015.", "armorMystery201512Text": "Brnění ze studeného ohně", "armorMystery201512Notes": "Přivolej ledové plameny zimy! Nepřináší žádný benefit. Předmět pro předplatitele prosinec 2015.", + "armorMystery201603Text": "Lucky Suit", + "armorMystery201603Notes": "This suit is sewn from thousands of four-leafed clovers! Confers no benefit. March 2016 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í", @@ -358,7 +381,7 @@ "armorArmoireShepherdRobesText": "Oděv pastýře", "armorArmoireShepherdRobesNotes": "Látka je chladivá a prodyšná, perfektní pro horký den pasení gryfů v poušti. Zvyšuje Sílu a Vnímání o <%= attrs %> každé. Začarovaná almara: Set pastýře (předmět 2 ze 3).", "armorArmoireRoyalRobesText": "Královský oděv", - "armorArmoireRoyalRobesNotes": "Skvělý vládce, vládni celý den! Zvyšuje Obranu, Inteligenci a Vnímání o <%= aatrs %> každé. Začarovaná almara: Královský set (předmět 3 ze 3)", + "armorArmoireRoyalRobesNotes": "Skvělý vládce, vládni celý den! Zvyšuje Obranu, Inteligenci a Vnímání o <%= attrs %> každé. Začarovaná almara: Královský set (předmět 3 ze 3)", "armorArmoireCrystalCrescentRobesText": "Oděv křišťálového půlměsíce", "armorArmoireCrystalCrescentRobesNotes": "Tento magický oděv světélkuje ve tmě. Zvyšuje Obranu a Vnímání o <%= attrs %> každé. Začarovaná almara: Set křišťálového půlměsíce (předmět 2 ze 3).", "armorArmoireDragonTamerArmorText": "Zbroj krotitele draků", @@ -367,6 +390,10 @@ "armorArmoireBarristerRobesNotes": "Very serious and stately. Increases Constitution by <%= con %>. Enchanted Armoire: Barrister Set (Item 2 of 3).", "armorArmoireJesterCostumeText": "Jester Costume", "armorArmoireJesterCostumeNotes": "Tra-la-la! Despite the look of this costume, you are no fool. Increases Intelligence by <%= int %>. Enchanted Armoire: Jester Set (Item 2 of 3).", + "armorArmoireMinerOverallsText": "Miner Overalls", + "armorArmoireMinerOverallsNotes": "They may seem worn, but they are enchanted to repel dirt. Increases Constitution by <%= con %>. Enchanted Armoire: Miner Set (Item 2 of 3).", + "armorArmoireBasicArcherArmorText": "Basic Archer Armor", + "armorArmoireBasicArcherArmorNotes": "This camouflaged vest lets you slip unnoticed through the forests. Increases Perception by <%= per %>. Enchanted Armoire: Basic Archer Set (Item 2 of 3).", "headgear": "Pokrývka hlavy", "headBase0Text": "Žádná přilba", "headBase0Notes": "Žádná pokrývka hlavy", @@ -496,6 +523,14 @@ "headSpecialWinter2016MageNotes": "Přes ní ti nepůjde sníh do očí když sesíláš kouzla. Zvyšuje Vnímání o <%= per %>. Limitovaná edice zimní výbavy 2015-2016.", "headSpecialWinter2016HealerText": "Helma s vílími křídly", "headSpecialWinter2016HealerNotes": "Tatokřídlasemihotajítakrychležesplývají! Zvyšují Inteligenci o <%= int %>. Limitovaná edice zimní výbavy 2015-2016.", + "headSpecialSpring2016RogueText": "Good Doggy Mask", + "headSpecialSpring2016RogueNotes": "Aww, what a cute puppy! Come here and let me pet your head. ...Hey, where did all my Gold go? Increases Perception by <%= per %>. Limited Edition 2016 Spring Gear.", + "headSpecialSpring2016WarriorText": "Mouse Guard Helm", + "headSpecialSpring2016WarriorNotes": "Never again shall you be bopped on the head! Let them try! Increases Strength by <%= str %>. Limited Edition 2016 Spring Gear.", + "headSpecialSpring2016MageText": "Grand Malkin Hat", + "headSpecialSpring2016MageNotes": "Apparel to set you above the mere alley-mages of the world. Increases Perception by <%= per %>. Limited Edition 2016 Spring Gear.", + "headSpecialSpring2016HealerText": "Blossom Diadem", + "headSpecialSpring2016HealerNotes": "It glints with the potential of new life ready to burst forth. Increases Intelligence by <%= int %>. Limited Edition 2016 Spring Gear.", "headSpecialGaymerxText": "Helma duhového bojovníka", "headSpecialGaymerxNotes": "Ku příležitosti oslav GaymerX je tato speciální helma zdobena zářivým, barevným, duhovým vzorem! GaymerX je herní veletrh oslavující LGBTQ a hry a je otevřený všem.", "headMystery201402Text": "Okřídlená přilba", @@ -526,6 +561,10 @@ "headMystery201512Notes": "Tyto plameny žhnout chladným intelektem. Nepřináší žádný benefit. Předmět pro předplatitele prosinec 2015.", "headMystery201601Text": "Helm of True Resolve", "headMystery201601Notes": "Stay resolute, brave champion! Confers no benefit. January 2016 Subscriber Item.", + "headMystery201602Text": "Heartbreaker Hood", + "headMystery201602Notes": "Shield your identity from all your admirers. Confers no benefit. February 2016 Subscriber Item.", + "headMystery201603Text": "Lucky Hat", + "headMystery201603Notes": "This top hat is a magical good-luck charm. Confers no benefit. March 2016 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", @@ -570,6 +609,10 @@ "headArmoireBarristerWigNotes": "This bouncy wig is enough to frighten away even the fiercest foe. Increases Strength by <%= str %>. Enchanted Armoire: Barrister Set (Item 1 of 3).", "headArmoireJesterCapText": "Jester Cap", "headArmoireJesterCapNotes": "The bells on this hat might distract your opponents, but they just help you focus. Increases Perception by <%= per %>. Enchanted Armoire: Jester Set (Item 1 of 3).", + "headArmoireMinerHelmetText": "Miner Helmet", + "headArmoireMinerHelmetNotes": "Protect your head from falling tasks! Increases Intelligence by <%= int %>. Enchanted Armoire: Miner Set (Item 1 of 3).", + "headArmoireBasicArcherCapText": "Basic Archer Cap", + "headArmoireBasicArcherCapNotes": "No archer would be complete without a jaunty cap! Increases Perception by <%= per %>. Enchanted Armoire: Basic Archer Set (Item 3 of 3).", "offhand": "štít v ruce", "shieldBase0Text": "Bez štítu v ruce", "shieldBase0Notes": "Bez štítu nebo druhé zbraně.", @@ -653,6 +696,12 @@ "shieldSpecialWinter2016WarriorNotes": "Použij tento štít k odrážení útoků, nebo se na něj triumfálně projeď do bitvy! Zvyšuje Obranu o <%= con %>. Limitovaná edice zimní výbavy 2015-2016.", "shieldSpecialWinter2016HealerText": "Skřítkův dárek", "shieldSpecialWinter2016HealerNotes": "Otevři ho otevři ho otevři ho otevři ho otevři ho otevři ho!!!!!!!!! Zvyšuje Obranu o <%= con %>. Limitovaná edice zimní výbavy 2015-2016.", + "shieldSpecialSpring2016RogueText": "Fire Bolas", + "shieldSpecialSpring2016RogueNotes": "You've mastered the ball, the club, and the knife. Now you advance to juggling fire! Awoo! Increases Strength <%= str %>. Limited Edition 2016 Spring Gear.", + "shieldSpecialSpring2016WarriorText": "Cheese Wheel", + "shieldSpecialSpring2016WarriorNotes": "You braved fiendish traps to procure this defense-boosting food. Increases Constitution by <%= con %>. Limited Edition 2016 Spring Gear.", + "shieldSpecialSpring2016HealerText": "Floral Buckler", + "shieldSpecialSpring2016HealerNotes": "The April Fool claims this little shield will block Shiny Seeds. Don't believe him. Increases Constitution by <%= con %>. Limited Edition 2016 Spring Gear.", "shieldMystery201601Text": "Resolution Slayer", "shieldMystery201601Notes": "This blade can be used to parry away all distractions. Confers no benefit. January 2016 Subscriber Item.", "shieldMystery301405Text": "Štít z hodin", @@ -665,6 +714,8 @@ "shieldArmoireRoyalCaneNotes": "Sláva vládci, oslavovaného v písních! Zvyšuje Obranu, Inteligenci a Vnímání o <%= attrs %> každé. Začarovaná almara: Královský set (předmět 2 ze 3).", "shieldArmoireDragonTamerShieldText": "Štít krotitele draků", "shieldArmoireDragonTamerShieldNotes": "Znejisti své nepřátele tímto štítem ve tvaru draka. Zvyšuje Vnímání o <%= per %>. Začarovaná almara: Set krotitele draků (předmět 2 ze 3).", + "shieldArmoireMysticLampText": "Mystic Lamp", + "shieldArmoireMysticLampNotes": "Light the darkest caves with this mystic lamp! Increases Perception by <%= per %>. Enchanted Armoire: Independent Item.", "back": "Příslušenství na záda", "backBase0Text": "Bez příslušenství na zádech", "backBase0Notes": "Bez příslušenství na zádech.", @@ -680,6 +731,8 @@ "backMystery201507Notes": "Zasurfuj si od Svědomitých doků a prožeň vlny v Zátoce Nekompletnosti! Nepřináší žádný benefit. Předmět pro předplatitele červenec 2015.", "backMystery201510Text": "Ocas goblina", "backMystery201510Notes": "Chápavý a mocný! Nepřináší žádný bonus. Výbava pro předplatitele říjen 2015.", + "backMystery201602Text": "Heartbreaker Cape", + "backMystery201602Notes": "With a swish of your cape, your enemies fall before you! Confers no benefit. February 2016 Subscriber Item.", "backSpecialWonderconRedText": "Mocná kápě", "backSpecialWonderconRedNotes": "Skví se silou a krásou. Speciální edice běžné zbroje. Nepřináší žádný benefit.", "backSpecialWonderconBlackText": "Záludná kápě", @@ -726,8 +779,16 @@ "headAccessorySpecialSpring2015MageNotes": "Tyto uši poctivě naslouchají, jestli někde kolem není nějaký mág, který odhaluje kouzla. Nepřináší žádný benefit. Limitovaná edice Jarní výbavy 2015.", "headAccessorySpecialSpring2015HealerText": "Zelené kočičí uši", "headAccessorySpecialSpring2015HealerNotes": "Z těchto roztomilých kočičí uší všichni zezelenají závistí. Nepřináší žádný benefit. Limitovaná edice Jarní výbavy 2015.", + "headAccessorySpecialSpring2016RogueText": "Green Dog Ears", + "headAccessorySpecialSpring2016RogueNotes": "With these, you can keep track of tricky Mages even if they turn invisible! Confers no benefit. Limited Edition 2016 Spring Gear.", + "headAccessorySpecialSpring2016WarriorText": "Red Mouse Ears", + "headAccessorySpecialSpring2016WarriorNotes": "To better hear your theme song across clamorous battlefields. Confers no benefit. Limited Edition 2016 Spring Gear.", + "headAccessorySpecialSpring2016MageText": "Yellow Cat Ears", + "headAccessorySpecialSpring2016MageNotes": "These sharp ears can detect the minute hum of ambient Mana, or the muted footfalls of a Rogue. Confers no benefit. Limited Edition 2016 Spring Gear.", + "headAccessorySpecialSpring2016HealerText": "Purple Bunny Ears", + "headAccessorySpecialSpring2016HealerNotes": "They stand like flags above the fray, letting others know where to run for help. Confers no benefit. Limited Edition 2016 Spring Gear.", "headAccessoryBearEarsText": "Medvědí uši", - "headAccessoryBearEarsNotes": "Tyhle uši z tebe udělají chlupatého medvídka! Nepřináší žádný benefit.", + "headAccessoryBearEarsNotes": "These ears make you look like a brave bear! Confers no benefit.", "headAccessoryCactusEarsText": "Kaktusové uši", "headAccessoryCactusEarsNotes": "Tyhle uši z tebe udělají pichlavý kaktus! Nepřináší žádný benefit.", "headAccessoryFoxEarsText": "Liščí uši", @@ -754,6 +815,8 @@ "headAccessoryMystery201510Notes": "Tyto strašlivé rohy jsou trochu od slizu. Nepřináší žádný bonus. Výbava pro předplatitele říjen 2015.", "headAccessoryMystery301405Text": "Brýle na čele", "headAccessoryMystery301405Notes": "\"Brýle jsou na oči,\" říkali. \"Nikdo nechce nosit brýle na čele,\" říkali. Ha! Teď jsi jim to natřel! Nepřináší žádný benefit. Předmět pro předplatitele srpen 3015.", + "headAccessoryArmoireComicalArrowText": "Comical Arrow", + "headAccessoryArmoireComicalArrowNotes": "This whimsical item doesn't provide a stat boost, but it sure is good for a laugh! Confers no benefit. Enchanted Armoire: Independent Item.", "eyewear": "Brýle", "eyewearBase0Text": "Žádné vybavení pro oči", "eyewearBase0Notes": "Žádné vybavení pro oči.", diff --git a/common/locales/cs/generic.json b/common/locales/cs/generic.json index f5ccfd1eef..fd5954bdff 100644 --- a/common/locales/cs/generic.json +++ b/common/locales/cs/generic.json @@ -137,6 +137,8 @@ "achievementStressbeastText": "Pomož přemoci Zavrženíhodnou Strespříšeru při příležitosti Zimní říše divů 2014!", "achievementBurnout": "Vychutnej si kvetoucí pole", "achievementBurnoutText": "Pomož přemoci Vyhoření a obnovit Vyčerpané duchy během Podzimního festivalu 2015!", + "achievementBewilder": "Savior of Mistiflying", + "achievementBewilderText": "Helped defeat the Be-Wilder during the 2016 Spring Fling Event!", "checkOutProgress": "Koukejte, jaký pokrok se mi povedl v zemi Habitica!", "cardReceived": "Obdržel jsi přání!", "cardReceivedFrom": "<%= cardType %> od <%= userName %>", @@ -175,5 +177,6 @@ "hatchPetShare": "Díky plnění úkolů se mi vylíhl nový mazlíček!", "raisePetShare": "Mazlíček mi vyrostl v silné zvíře, protože jsem svědomitě plnil úkoly!", "wonChallengeShare": "V Habitica jsem vyhrál výzvu!", - "achievementShare": "Získal jsem v zemi Habitica nové ocenění!" + "achievementShare": "Získal jsem v zemi Habitica nové ocenění!", + "orderBy": "Order By <%= item %>" } \ No newline at end of file diff --git a/common/locales/cs/groups.json b/common/locales/cs/groups.json index 398b9d926a..1f85d0bfff 100644 --- a/common/locales/cs/groups.json +++ b/common/locales/cs/groups.json @@ -1,5 +1,5 @@ { - "tavern": "Krčma", + "tavern": "Tavern Chat", "innCheckOut": "Odhlásit se z hostince", "innCheckIn": "Odpočívat v hostinci", "innText": "Odpočíváš v Hostinci! Zatímco tu budeš, tvé Denní úkoly ti na konci dne nijak neublíží, ale vždy se resetují. Ale pozor: pokud jsi v boji s příšerou, ublíží ti nesplněné úkoly tvých přátel v družině, pokud také nejsou v Hostinci! Navíc, jakákoliv újma, kterou uštědříš příšeře (nebo nasbírané předměty) se ti nepřipíšou dokud se z Hostince neodhlásíš.", @@ -101,7 +101,7 @@ "inbox": "Příchozí zprávy", "abuseFlag": "Nahlaš porušení Zásad komunity", "abuseFlagModalHeading": "Nahlásit <%= name %> za porušení?", - "abuseFlagModalBody": "Opravdu chceš nahlásit tento příspěvek? Měl bys hlásit POUZE příspěvky, které porušují <%= firstLinkStart %>Zásady komunity<%= linkEnd %> a/nebo <%= secondLinkStart %>Pravidla používání<%= linkEnd %>. Neoprávněné hlášení příspěvku porušuje Zásady komunity a může být trestáno. Oprávněné důvody pro nahlášení příspěvku jsou například:


", + "abuseFlagModalBody": "Are you sure you want to report this post? You should ONLY report a post that violates the <%= firstLinkStart %>Community Guidelines<%= linkEnd %> and/or <%= secondLinkStart %>Terms of Service<%= linkEnd %>. Inappropriately reporting a post is a violation of the Community Guidelines and may give you an infraction. Appropriate reasons to flag a post include but are not limited to:

", "abuseFlagModalButton": "Nahlásit porušení pravidel", "abuseReported": "Děkujeme za nahlášení tohoto příspěvku. Moderátoři byli upozorněni.", "abuseAlreadyReported": "Již jsi tento příspěvek nahlásil.", @@ -147,5 +147,9 @@ "partyChatEmpty": "Chat tvé družiny je prázdný! Napiš zprávu do okna nahoře a začni si povídat.", "guildChatEmpty": "Chat této družiny je prázdný! Napiš zprávu do okna nahoře a začni si povídat.", "possessiveParty": "Družina <%= name %>", - "requestAcceptGuidelines": "Pokud chceš přidávat zprávy v Krčmě nebo v chatu v jakékoliv družině nebo cechu, prosíme, nejprve si přečti <%= linkStart %>Zásady komunity<%= linkEnd %> a poté klikni na tlačítko níže na znamení, že jim rozumíš." + "requestAcceptGuidelines": "Pokud chceš přidávat zprávy v Krčmě nebo v chatu v jakékoliv družině nebo cechu, prosíme, nejprve si přečti <%= linkStart %>Zásady komunity<%= linkEnd %> a poté klikni na tlačítko níže na znamení, že jim rozumíš.", + "partyUpName": "Party Up", + "partyOnName": "Party On", + "partyUpAchievement": "Joined a Party with another person! Have fun battling monsters and supporting each other.", + "partyOnAchievement": "Joined a Party with at least four people! Enjoy your increased accountability as you unite with your friends to vanquish your foes!" } \ No newline at end of file diff --git a/common/locales/cs/limited.json b/common/locales/cs/limited.json index 55aba0ab43..6d8c6317e4 100644 --- a/common/locales/cs/limited.json +++ b/common/locales/cs/limited.json @@ -67,6 +67,10 @@ "witchyWizardSet": "Čarodějný čaroděj (Mág)", "mummyMedicSet": "Mumie medika (Léčitel)", "vampireSmiterSet": "Lovec upírů (Zloděj)", + "bewareDogSet": "Beware Dog (Warrior)", + "magicianBunnySet": "Mágův králíček (Mág)", + "comfortingKittySet": "Utěšující kotě (Léčitel)", + "sneakySqueakerSet": "Sneaky Squeaker (Rogue)", "fallEventAvailability": "Dostupné do 31. října", "winterEventAvailability": "Dostupné do 31. prosince" } \ No newline at end of file diff --git a/common/locales/cs/npc.json b/common/locales/cs/npc.json index 7a83bb2bf0..ee095e17c1 100644 --- a/common/locales/cs/npc.json +++ b/common/locales/cs/npc.json @@ -35,7 +35,7 @@ "amazonInstructions": "Klikni pro zaplacení přes Amazon platby", "paymentMethods": "Purchase using", "classGear": "Vybavení pro tvé povolání", - "classGearText": "Za prvé: Nepanikař! Tvé staré vybavení je v tvém inventáři a nyní nosíš začátečnické vybavení povolání <%= klass %>. Nošení vybavení tvého povolání ti dává 50% bonus k statistikám. Ale neboj se vrátit ke svému starému vybavení.", + "classGearText": "First: don't panic! Your old gear is in your inventory, and you're now wearing the apprentice equipment of your new class. Wearing your class's gear grants you a 50% bonus to stats. However, feel free to switch back to your old gear.", "classStats": "Toto jsou statistiky tvého povolání, ovlivňují hratelnost. Pokaždé, když postoupíš o úroveň výš, dostaneš jeden bod, který můžeš přiřadit k určité statistice. Najeď myší na každou statistiku pro více informací.", "autoAllocate": "Připisovat automaticky", "autoAllocateText": "Pokud je zaškrtnuto 'automatické připisování', získává tvůj avatar body automaticky na základě atributů tvých úkolů, které najdeš v ÚKOL > Editovat > Pokročilé > Attributy. Např. pokud budeš chodit často do posilovny a tvoje denní 'posilovna' je nastavena na 'fyzický', budeš automaticky získávat sílu.", @@ -45,7 +45,7 @@ "moreClass": "Pro více informací o systému povolání, přejdi na", "tourWelcome": "Vítej v zemi Habitica! Tohle tvůj Úkolníček. Odškrtni si úkol abys mohl pokračovat!", "tourExp": "Skvělá práce! Odškrtnutí úkolu ti přidává Zkušenost a Zlaťáky!", - "tourDailies": "Tohle je sloupeček pro Denní úkoly. Abys mohl pokračovat, přidej sem úkol, který bys měl plnit každý den! Příklady Denních úkolů: Ustlat postel, Vypláchnout pusu, Zkontrolovat pracovní email", + "tourDailies": "This column is for Daily tasks. To proceed, enter a task you should do every day! Sample Dailies: Make Bed, Floss, Check Work Email", "tourCron": "Úžasné! Tvé Denní úkoly se budou resetovat každý den.", "tourHP": "Bacha! Když nesplníš Denní úkol do půlnoci, tak ti ublíží!", "tourHabits": "Tenhle sloupeček je pro dobré zvyky a zlozvyky, které děláš několikrát denně! Abys mohl pokračovat, klikni na tužku abys mohl upravit názvy, potom klikni na fajfku, aby se ti změny uložily.", diff --git a/common/locales/cs/pets.json b/common/locales/cs/pets.json index 01f98354be..30de302ec2 100644 --- a/common/locales/cs/pets.json +++ b/common/locales/cs/pets.json @@ -19,6 +19,7 @@ "orca": "Kosatka", "royalPurpleGryphon": "Vznešený fialový gryf", "phoenix": "Fénix", + "bumblebee": "Bumblebee", "rarePetPop1": "Klikni na zlatou packu pro více informací o tom, jak získat toto vzácné zvíře za přispívání programu Habitica!", "rarePetPop2": "Jak získat toto zvíře!", "potion": "<%= potionType %> lektvar", @@ -40,7 +41,7 @@ "stableBeastMasterProgress": "Pokrok Pána šelem: nalezl <%= number %> mazlíčků", "beastAchievement": "Získal jsi ocenění \"Pán šelem\" za získání všech mazlíčků!", "beastMasterName": "Pán šelem", - "beastMasterText": "Has found all 90 pets (incredibly difficult, congratulate this user!)", + "beastMasterText": "Nalezl všech 90 zvířátek ( šíleně obtížné, zaslouží si uznání!)", "beastMasterText2": "a vypustil své mazlíčky celkem <%= count %>krát", "mountMasterProgress": "Pokrok Pána zvířat", "stableMountMasterProgress": "Pokrok krotitele zvířat: zkroceno <%= number %> zvířat", diff --git a/common/locales/cs/quests.json b/common/locales/cs/quests.json index 15988e04cd..283d8db5d6 100644 --- a/common/locales/cs/quests.json +++ b/common/locales/cs/quests.json @@ -38,7 +38,7 @@ "bossDmg2": "Jen ti, kteří přijmou pozvání, budou bojovat proti příšeře a rozdělí si odměnu za výpravu.", "bossDmg1Broken": "Každý splnění Denní úkol, úkol z Úkolníčku a každý pozitivní zvyk zraní příšeru... Zraň jí víc červenějšími úkoly nebo Brutální ranou nebo Vzplanutím ohňů... Příšera zraní každého účastníka výpravy za každý nesplněný Denní úkol (újma je násobena jeho Silou) navíc k normálnímu zranění, takže udržuj skupinu zdravou plněním úkolů. Veškerá zranění příšeře i vám se přičítají na kronu (na konci dne).", "bossDmg2Broken": "Jen ti, kteří přijmou pozvání, budou bojovat proti příšeře a rozdělí si odměnu za výpravu...", - "tavernBossInfo": "Splň denní úkoly a úkoly v Úkolníčku a zraň tak Světovou příšeru! Nesplněné denní úkoly naplní lištu Výpadu. Když se tato lišta naplní, příšera zaútočí na nějakou nehráčskou postavu. Světová příšera nikdy nezraní jednotlivé hráče. Pouze aktivní hráči, kteří neodpočívají v Hostinci se mohou podílet na zranění příšery.", + "tavernBossInfo": "Complete Dailies and To-Dos and score positive Habits to damage the World Boss! Incomplete Dailies fill the Rage Bar. When the Rage 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": "Splň denní úkoly a úkoly v Úkolníčku a zraň tak Světovou příšeru... Nesplněné denní úkoly naplní lištu Výpadu... Když se tato lišta naplní, příšera zaútočí na nějakou nehráčskou postavu... Světová příšera nikdy nezraní jednotlivé hráče... Pouze aktivní hráči, kteří neodpočívají v Hostinci se mohou podílet na zranění příšery...", "bossColl1": "Pro získání předmětů plň své pozitivní úkoly. Předměty z výpravy budeš nacházet stejně jako normální předměty, uvidíš je však až další den, kdy se vše, co jste našli, shromáždí a přidá na hromadu.", "bossColl2": "Jen ti, kteří přijmou pozvání, mohou sbírat předměty a rozdělit si odměnu za výpravu.", diff --git a/common/locales/cs/questscontent.json b/common/locales/cs/questscontent.json index 030f4d0a88..ca671feb9a 100644 --- a/common/locales/cs/questscontent.json +++ b/common/locales/cs/questscontent.json @@ -59,7 +59,7 @@ "questSpiderDropSpiderEgg": "Pavouk (vejce)", "questSpiderUnlockText": "Odemyká vejce pavouka na Trhu", "questVice1Text": "Zlořád, část 1: Osvoboď se od vlivu draka", - "questVice1Notes": "

Říká se, že v jeskyních hory Habitica leží zlo. Stvůra, jejíž přítomnost svádí silné hrdiny země k lenosti a špatným zvykům! Tou stvůrou je obrovský ze stínů zrozený drak nepředstavitelné síly: Zlořád, zrádný stínový drak. Chrabří Habiťané, postavte se mu a zdolejte tuto příšernou stvůru jednou provždy. Ale pouze pokud věříte, že se dokážete postavit jeho nezměrné síle.

Zlořád část 1:

Jak chceš bojovat se stvůrou, když už nad tebou má moc? Nepodlehni lenosti a zlozvykům! Tvrdě pracuj, abys mohl odolat drakovu temnému vlivu a přemohl jeho vliv na tebe!

", + "questVice1Notes": "

They say there lies a terrible evil in the caverns of Mt. Habitica. A monster whose presence twists the wills of the strong heroes of the land, turning them towards bad habits and laziness! The beast is a grand dragon of immense power and comprised of the shadows themselves: Vice, the treacherous Shadow Wyrm. Brave Habiteers, stand up and defeat this foul beast once and for all, but only if you believe you can stand against its immense power.

Vice Part 1:

How can you expect to fight the beast if it already has control over you? Don't fall victim to laziness and vice! Work hard to fight against the dragon's dark influence and dispel his hold on you!

", "questVice1Boss": "Zlořádův stín", "questVice1DropVice2Quest": "Zlořád část 2 (svitek)", "questVice2Text": "Zlořád, část 2: Najdi drakovo doupě", @@ -74,30 +74,30 @@ "questVice3DropDragonEgg": "Drak (vejce)", "questVice3DropShadeHatchingPotion": "Stínový líhnoucí lektvar", "questMoonstone1Text": "Řetěz měsíčních kamenů, část 1.: Řetěz měsíčních kamenů", - "questMoonstone1Notes": "

Strašlivé neštěstí sužuje Habiťany. Špatné návyky, které byly pokládány za již dávno mrtvé, se vrací k životu a mstí se. Neumyté nádobí se povaluje kolem, nikdo se nevěnuje knihám a flákání řádí jak černá ruka!


Sledujete pár svých starých zlozvyků až do Bažiny Stagnace a objevíte, kdo za tím stojí - přízračný Nekromancr, Recidiva. Vpadnete tam zbraně v rukách, ale ty jí jen projedou.


\"Neobtěžuj se,\" zasyčí na vás. \"Bez řetězu měsíčních kamenů se na nic nezmůžete - a hlavní kameník @aurakami rozházel měsíční kameny po zemi Habitica už před mnoha lety!\" S jazyky na vestách se vzdálíte.... ale víte, co musíte udělat.

", + "questMoonstone1Notes": "A terrible affliction has struck Habiticans. Bad Habits thought long-dead are rising back up with a vengeance. Dishes lie unwashed, textbooks linger unread, and procrastination runs rampant!

You track some of your own returning Bad Habits to the Swamps of Stagnation and discover the culprit: the ghostly Necromancer, Recidivate. You rush in, weapons swinging, but they slide through her specter uselessly.

\"Don’t bother,\" she hisses with a dry rasp. \"Without a chain of moonstones, nothing can harm me – and master jeweler @aurakami scattered all the moonstones across Habitica long ago!\" Panting, you retreat... but you know what you must do.", "questMoonstone1CollectMoonstone": "Měsíční kameny", "questMoonstone1DropMoonstone2Quest": "Řetěz měsíčních kamenů, část 2: Nekromancr Recidiva (svitek)", "questMoonstone2Text": "Řetěz měsíčních kamenů, část 2: Nekromancr Recidiva", - "questMoonstone2Notes": "

Chrabrý zbrojíř @Inventrix vám pomůže uspořádat kouzelné měsíční kameny do řetězu. Jste připraven postavit se Recidivě, ale jakmile vstoupíte do Bažin Stagnace, přejede vám po těle mráz.


Hnilobný dech vám do ucha zašeptá. \"Už jste zpátky? Jak úžasné...\" Zatočíte zbraněmi a pod světlem měsíčních kamenů se zabodnou do masa. \"Možná jste mě znovu připoutali znovu ke světu\" zavrčí Recidiva, \"ale nyní je na čase, abyste tento svět opustili!\"

", + "questMoonstone2Notes": "The brave weaponsmith @Inventrix helps you fashion the enchanted moonstones into a chain. You’re ready to confront Recidivate at last, but as you enter the Swamps of Stagnation, a terrible chill sweeps over you.

Rotting breath whispers in your ear. \"Back again? How delightful...\" You spin and lunge, and under the light of the moonstone chain, your weapon strikes solid flesh. \"You may have bound me to the world once more,\" Recidivate snarls, \"but now it is time for you to leave it!\"", "questMoonstone2Boss": "Nekromancr", "questMoonstone2DropMoonstone3Quest": "Řetěz měsíčních kamenů, část 3.: Recidiva transformována (svitek)", "questMoonstone3Text": "Řetěz měsíčních kamenů, část 3.: Recidiva transformována", - "questMoonstone3Notes": "

Recidiva padá k zemi a vy ji zasáhnete řetězem z měsíčních kamenů. K vašemu nemilému překvapení vám Recidiva kameny vezme a v očích ji žhne triumf.


\"Blázni z masa a kostí!\" křičí. \"Tyto měsíční kameny mne učiní smrtelnou, to ano, ale ne tak, jak doufáte. Stejně jako úplněk přibývá z temnoty i má moc roste a ze stínů přivolávám stvoření jehož se nejvíce obáváte!\"


Hnusná zelená mlha se zvedá z bažiny a tělo Recidivy se zmítá a mění se ve tvar, který ve vás vzbuzuje hrůzu - nemrtvé tělo Zlořáda.

", - "questMoonstone3Completion": "

Dech vám ztěžkne a čůrky potu vám zakalí zrak, když se mrtvý drak kácí k zemi. Pozůstatky recidivy se odpaří do šedé mlhy, která se rychle rozplyne v závanu čerstvého vzduchu, a v dáli slyšíte řev Habiťany v boji s jejich zlozvyky.


@Baconsaur, Pán šelem, se k vám snese na gryfu. \"Viděl jsem konec vaší bitvy ze vzduchu a velmi mě to dojalo. Prosím, přijměte tuto kouzelnou tuniku - vaše hrdinství vypovídá o vašich chrabrých srdcích a věřím, že byste ji měli mít.\"

", + "questMoonstone3Notes": "Recidivate crumples to the ground, and you strike at her with the moonstone chain. To your horror, Recidivate seizes the gems, eyes burning with triumph.

\"Foolish creature of flesh!\" she shouts. \"These moonstones will restore me to a physical form, true, but not as you imagined. As the full moon waxes from the dark, so too does my power flourish, and from the shadows I summon the specter of your most feared foe!\"

A sickly green fog rises from the swamp, and Recidivate’s body writhes and contorts into a shape that fills you with dread – the undead body of Vice, horribly reborn.", + "questMoonstone3Completion": "Your breath comes hard and sweat stings your eyes as the undead Wyrm collapses. The remains of Recidivate dissipate into a thin grey mist that clears quickly under the onslaught of a refreshing breeze, and you hear the distant, rallying cries of Habiticans defeating their Bad Habits for once and for all.

@Baconsaur the beast master swoops down on a gryphon. \"I saw the end of your battle from the sky, and I was greatly moved. Please, take this enchanted tunic – your bravery speaks of a noble heart, and I believe you were meant to have it.\"", "questMoonstone3Boss": "Nekro-Zlořád", "questMoonstone3DropRottenMeat": "Zkažené maso (jídlo)", "questMoonstone3DropZombiePotion": "Zombie líhnoucí lektvar", "questGoldenknight1Text": "Zlatá rytířka, část 1: Promluvení do duše", - "questGoldenknight1Notes": "

Zlatá rytířka jde po všech Habiťanech s problémy. Nesplnil jsi všechny své denní úkoly? Odškrtl jsi zvyk mínuskem? Využije to jako důvod aby tě začala otravovat s tím, že máš následovat jejího příkladu. Je zářným příkladem perfektního Habiťana a ty jsi jen zklamáním. No to ale není vůbec pěkné! Každý děláme chyby. Určitě bys za to neměl čelit takové negativitě. Možná je na čase posbírat svědectví od ublížených Habiťanů a pořádné zlaté rytířce promluvit do duše!

", + "questGoldenknight1Notes": "The Golden Knight has been getting on poor Habiticans' cases. Didn't do all of your Dailies? Checked off a negative Habit? She will use this as a reason to harass you about how you should follow her example. She is the shining example of a perfect Habitican, and you are naught but a failure. Well, that is not nice at all! Everyone makes mistakes. They should not have to be met with such negativity for it. Perhaps it is time you gather some testimonies from hurt Habiticans and give the Golden Knight a stern talking-to!", "questGoldenknight1CollectTestimony": "Svědectví", "questGoldenknight1DropGoldenknight2Quest": "Zlatá rytířka, část 2: Železný rytíř (svitek)", "questGoldenknight2Text": "Zlatá rytířka, část 2: Zašlé zlato", - "questGoldenknight2Notes": "

Vyzbrojen stovkami svědectví Habiťanů se konečně postavíš zlaté rytířce. Začneš jí předčítat námitky Habiťanů jednu po druhé. \"A @Pfeffernusse říká, že tvé neustálé vychloubání-\" Rytířka zvedne ruku, aby tě umlčela a vysmívá se \"Prosím, tihle lidé jsou pouze žárliví. Místo stěžování si by prostě měli pilně pracovat jako já! Možná ti ukážu sílu, kterou získáš za píli jako je ta moje!\" Pozvedne svůj řemdih a chce tě napadnout!

", + "questGoldenknight2Notes": "Armed with hundreds of Habitican's testimonies, you finally confront the Golden Knight. You begin to recite the Habitcan's complaints to her, one by one. \"And @Pfeffernusse says that your constant bragging-\" The knight raises her hand to silence you and scoffs, \"Please, these people are merely jealous of my success. Instead of complaining, they should simply work as hard as I! Perhaps I shall show you the power you can attain through diligence such as mine!\" She raises her morningstar and prepares to attack you!", "questGoldenknight2Boss": "Zlatá rytířka", "questGoldenknight2DropGoldenknight3Quest": "Zlatá rytířka, část 3: Železný rytíř (svitek)", "questGoldenknight3Text": "Zlatá rytířka, část 3: Železný rytíř", - "questGoldenknight3Notes": "

@Jon Arinbjorn zakřičí, aby získal tvou pozornost. V dohře bitvy se objevila další postava. Rytíř pokrytý černým železem se k tobě blíží a v ruce drží meč. Zlatá rytířka na postavu zakřičí \"Otče, ne!\" ale rytíř nevypadá, že by chtěl zastavit. Otočí se na tebe a říká \"Omlouvám se. Byla jsem bláznivá, neviděla jsem si do své kruté pusy. Ale můj otec je ještě krutější než bych kdy já mohla být. Pokud nebude zastaven, zničí nás všechny. Tady, použij můj řemdih a zastav Železného rytíře!\"

", - "questGoldenknight3Completion": "

Se zabřinčením padá Železný rytíř na kolena a předklání se. \"Jsi docela silný,\" říká. \"Dnes jsem byl zahanben.\" Zlatá rytířka k tobě přijde a říká, \"Děkuji. Věřím, že jsme se ze setkání s tebou poučili. Promluvím si s otcem a vysvětlím mu ty stížnosti na nás. Možná bychom se měli Habiťanům omluvit.\" Chvíli přemýšlí než se k tobě zase otočí. \"Na - jako dárek chci, aby sis nechal mj řemdih. Je nyní tvůj.\"

", + "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!\"", + "questGoldenknight3Completion": "With a satisfying clang, the Iron Knight falls to his knees and slumps over. \"You are quite strong,\" he pants. \"I have been humbled, today.\" The Golden Knight approaches you and says, \"Thank you. I believe we have gained some humility from our encounter with you. I will speak with my father and explain the complaints against us. Perhaps, we should begin apologizing to the other Habiticans.\" She mulls over in thought before turning back to you. \"Here: as our gift to you, I want you to keep my morningstar. It is yours now.\"", "questGoldenknight3Boss": "Železný rytíř", "questGoldenknight3DropHoney": "Med (jídlo)", "questGoldenknight3DropGoldenPotion": "Zlatý líhnoucí lektvar", @@ -112,7 +112,7 @@ "questEggHuntCollectPlainEgg": "Obyčejná vejce", "questEggHuntDropPlainEgg": "Obyčejné vejce", "questDilatoryText": "Děsivý Drag'on z Liknavosti", - "questDilatoryNotes": "

Měli jsme poslechnout varování.


Temné svítící oči. Starobylé šupiny. Masivní čelisti a zářivé zuby. Probudili jsme cosi hrůzného v trhlině: Děsivého Drag'ona z Liknavosti! Habiťané se s křikem rozprchli do všech stran, když se vynořil z moře. Jeho úděsně dlouhý krk se táhne desítky metrů z moře a svým hrozným řevem rozbil okna v celé vesnici.


\"Tohle muselo táhnout liknavost dolů!\" křičí Lemoness. \"Nebyly to zanedbané úkoly - to ty tmavě rudé Denní úkoly právě přitáhly jeho pozornost!\"


\"Dme se magickou energií!\" křičí @Baconsaur. \"To, že přežil tak dlouho musí znamenat, že se dokáže vyléčit! Jak ho porazíme?\"


No přeci úplně stejně jako všechna stvoření - produktivitou! Rychle, zemi Habitica, stůj při sobě, bojuj svými úkoly a všichni budeme bojovat proti tomuto monstru společně. (Není třeba opouštět výpravy, na kterých zrovna jsi - věříme tvé schopnosti zasadit dvojtou ránu!) Nebude na nás útočit jednotlivě, ale čím více Denních úkolů přeskočíme, tím blíže budeme k uvolnění jeho Výpadu zanedbání - a nelíbí se mi jak se dívá na Krčmu...

", + "questDilatoryNotes": "We should have heeded the warnings.

Dark shining eyes. Ancient scales. Massive jaws, and flashing teeth. We've awoken something horrifying from the crevasse: the Dread Drag'on of Dilatory! Screaming Habiticans fled in all directions when it reared out of the sea, its terrifyingly long neck extending hundreds of feet out of the water as it shattered windows with its searing roar.

\"This must be what dragged Dilatory down!\" yells Lemoness. \"It wasn't the weight of the neglected tasks - the Dark Red Dailies just attracted its attention!\"

\"It's surging with magical energy!\" @Baconsaur cries. \"To have lived this long, it must be able to heal itself! How can we defeat it?\"

Why, the same way we defeat all beasts - with productivity! Quickly, Habitica, band together and strike through your tasks, and all of us will battle this monster together. (There's no need to abandon previous quests - we believe in your ability to double-strike!) It won't attack us individually, but the more Dailies we skip, the closer we get to triggering its Neglect Strike - and I don't like the way it's eyeing the Tavern....", "questDilatoryBoss": "Děsivý Drag'on z Liknavosti", "questDilatoryBossRageTitle": "Výpad zanedbání", "questDilatoryBossRageDescription": "Když se tato lišta naplní, Děsivý Drag'on z Liknavosti vypustí na zemi Habitica svou hrozivou zběsilost", @@ -142,7 +142,7 @@ "questAtom3Boss": "Prádlomancr", "questAtom3DropPotion": "Base Hatching Potion", "questOwlText": "Sýček", - "questOwlNotes": "Světlo v krčmě svítí až do úsvitu
Dokud jednoho večera nezmizí!
Jak uvidíme až pojedeme celou noc?
@Twitching křičí, \"Potřebuju nějaké rváče!
Vidíte toho sýčka?
Bijte se s ním rychle a nezahálejte!
Odrazíme jeho stín od našich dveří,
a noc bude znovu zářit!\"", + "questOwlNotes": "The Tavern light is lit 'til dawn
Until one eve the glow is gone!
How can we see for our all-nighters?
@Twitching cries, \"I need some fighters!
See that Night-Owl, starry foe?
Fight with haste and do not slow!
We'll drive its shadow from our door,
And make the night shine bright once more!\"", "questOwlCompletion": "Sýček před úsvitem mizí,
Ale i tak cití, jak na tebe jde zývnutí.
Možá je čas na odpočinek?
A pak na své posteli uvidíš hnízdo!
Sýček ví, že může být skvělé
Dokončit práci a zůstat vzhůru déle,
Ale tví noví mazlíčky budou jemně pípat
Aby ti řekli, kdy je čas jít spát.", "questOwlBoss": "Sýček", "questOwlDropOwlEgg": "Sýček (vejce)", @@ -291,5 +291,22 @@ "questMonkeyCompletion": "You did it! No bananas for those fiends today. Overwhelmed by your diligence, the monkeys flee in panic. \"Look,\" says @Misceo. \"They left a few eggs behind.\"

@Leephon grins. \"Maybe a well-trained pet monkey can help you as much as the wild ones hinder you!\"", "questMonkeyBoss": "Monstrous Mandrill", "questMonkeyDropMonkeyEgg": "Monkey (Egg)", - "questMonkeyUnlockText": "Unlocks purchasable Monkey eggs in the Market" + "questMonkeyUnlockText": "Unlocks purchasable Monkey eggs in the Market", + "questSnailText": "The Snail of Drudgery Sludge", + "questSnailNotes": "You're excited to begin questing in the abandoned Dungeons of Drudgery, but as soon as you enter, you feel the ground under your feet start to suck at your boots. You look up to the path ahead and see Habiticans mired in slime. @Overomega yells, \"They have too many unimportant tasks and dailies, and they're getting stuck on things that don't matter! Pull them out!\"

\"You need to find the source of the ooze,\" @Pfeffernusse agrees, \"or the tasks that they cannot accomplish will drag them down forever!\"

Pulling out your weapon, you wade through the gooey mud.... and encounter the fearsome Snail of Drudgery Sludge.", + "questSnailCompletion": "You bring your weapon down on the great Snail's shell, cracking it in two, releasing a flood of water. The slime is washed away, and the Habiticans around you rejoice. \"Look!\" says @Misceo. \"There's a small group of snail eggs in the remnants of the muck.\"", + "questSnailBoss": "Snail of Drudgery Sludge", + "questSnailDropSnailEgg": "Snail (Egg)", + "questSnailUnlockText": "Unlocks purchasable Snail eggs in the Market", + "questBewilderText": "The Be-Wilder", + "questBewilderNotes": "The party begins like any other.

The appetizers are excellent, the music is swinging, and even the dancing elephants have become routine. Habiticans laugh and frolic amid the overflowing floral centerpieces, happy to have a distraction from their least-favorite tasks, and the April Fool whirls among them, eagerly providing an amusing trick here and a witty twist there.

As the Mistiflying clock tower strikes midnight, the April Fool leaps onto the stage to give a speech.

“Friends! Enemies! Tolerant acquaintances! Lend me your ears.” The crowd chuckles as animal ears sprout from their heads, and they pose with their new accessories.

“As you know,” the Fool continues, “my confusing illusions usually only last a single day. But I’m pleased to announce that I’ve discovered a shortcut that will guarantee us non-stop fun, without having to deal with the pesky weight of our responsibilities. Charming Habiticans, meet my magical new friend... the Be-Wilder!”

Lemoness pales suddenly, dropping her hors d'oeuvres. “Wait! Don’t trust--”

But suddenly mists are pouring into the room, glittering and thick, and they swirl around the April Fool, coalescing into cloudy feathers and a stretching neck. The crowd is speechless as an monstrous bird unfolds before them, its wings shimmering with illusions. It lets out a horrible screeching laugh.

“Oh, it has been ages since a Habitican has been foolish enough to summon me! How wonderful it feels, to have a tangible form at last.”

Buzzing in terror, the magic bees of Mistiflying flee the floating city, which sags from the sky. One by one, the brilliant spring flowers wither up and wisp away.

“My dearest friends, why so alarmed?” crows the Be-Wilder, beating its wings. “There’s no need to toil for your rewards any more. I’ll just give you all the things that you desire!”

A rain of coins pours from the sky, hammering into the ground with brutal force, and the crowd screams and flees for cover. “Is this a joke?” Baconsaur shouts, as the gold smashes through windows and shatters roof shingles.

PainterProphet ducks as lightning bolts crackle overhead, and fog blots out the sun. “No! This time, I don’t think it is!”

Quickly, Habiticans, don’t let this World Boss distract us from our goals! Stay focused on the tasks that you need to complete so we can rescue Mistiflying -- and hopefully, ourselves.", + "questBewilderCompletion": "The Be-Wilder is DEFEATED!

We've done it! The Be-Wilder lets out a ululating cry as it twists in the air, shedding feathers like falling rain. Slowly, gradually, it coils into a cloud of sparkling mist. As the newly-revealed sun pierces the fog, it burns away, revealing the coughing, mercifully human forms of Bailey, Matt, Alex.... and the April Fool himself.

Mistiflying is saved!

The April Fool has enough shame to look a bit sheepish. “Oh, hm,” he says. “Perhaps I got a little…. carried away.”

The crowd mutters. Sodden flowers wash up on sidewalks. Somewhere in the distance, a roof collapses with a spectacular splash.

“Er, yes,” the April Fool says. “That is. What I meant to say was, I’m dreadfully sorry.” He heaves a sigh. “I suppose it can’t all be fun and games, after all. It might not hurt to focus occasionally. Maybe I’ll get a head start on next year’s pranking.”

Redphoenix coughs meaningfully.

“I mean, get a head start on this year’s spring cleaning!” the April Fool says. “Nothing to fear, I’ll have Habit City in spit-shape soon. Luckily nobody is better than I at dual-wielding mops.”

Encouraged, the marching band starts up.

It isn’t long before all is back to normal in Habit City. Plus, now that the Be-Wilder has evaporated, the magical bees of Mistiflying bustle back to work, and soon the flowers are blooming and the city is floating once more.

As Habiticans cuddle the magical fuzzy bees, the April Fool’s eyes light up. “Oho, I’ve had a thought! Why don’t you all keep some of these fuzzy Bee Pets and Mounts? It’s a gift that perfectly symbolizes the balance between hard work and sweet rewards, if I’m going to get all boring and allegorical on you.” He winks. “Besides, they don’t have stingers! Fool’s honor.”", + "questBewilderCompletionChat": "`The Be-Wilder is DEFEATED!`\n\nWe've done it! The Be-Wilder lets out a ululating cry as it twists in the air, shedding feathers like falling rain. Slowly, gradually, it coils into a cloud of sparkling mist. As the newly-revealed sun pierces the fog, it burns away, revealing the coughing, mercifully human forms of Bailey, Matt, Alex.... and the April Fool himself.\n\n`Mistiflying is saved!`\n\nThe April Fool has enough shame to look a bit sheepish. “Oh, hm,” he says. “Perhaps I got a little…. carried away.”\n\nThe crowd mutters. Sodden flowers wash up on sidewalks. Somewhere in the distance, a roof collapses with a spectacular splash.\n\n“Er, yes,” the April Fool says. “That is. What I meant to say was, I’m dreadfully sorry.” He heaves a sigh. “I suppose it can’t all be fun and games, after all. It might not hurt to focus occasionally. Maybe I’ll get a head start on next year’s pranking.”\n\nRedphoenix coughs meaningfully.\n\n“I mean, get a head start on this year’s spring cleaning!” the April Fool says. “Nothing to fear, I’ll have Habit City in spit-shape soon. Luckily nobody is better than I at dual-wielding mops.”\n\nEncouraged, the marching band starts up.\n\nIt isn’t long before all is back to normal in Habit City. Plus, now that the Be-Wilder has evaporated, the magical bees of Mistiflying bustle back to work, and soon the flowers are blooming and the city is floating once more.\n\nAs Habiticans cuddle the magical fuzzy bees, the April Fool’s eyes light up. “Oho, I’ve had a thought! Why don’t you all keep some of these fuzzy Bee Pets and Mounts? It’s a gift that perfectly symbolizes the balance between hard work and sweet rewards, if I’m going to get all boring and allegorical on you.” He winks. “Besides, they don’t have stingers! Fool’s honor.”", + "questBewilderBossRageTitle": "Beguilement Strike", + "questBewilderBossRageDescription": "When this gauge fills, The Be-Wilder will unleash its Beguilement Strike on Habitica!", + "questBewilderDropBumblebeePet": "Bumblebee (Pet)", + "questBewilderDropBumblebeeMount": "Bumblebee (Mount)", + "questBewilderBossRageMarket": "`The Be-Wilder uses BEGUILEMENT STRIKE!`\n\nOh no! Despite our best efforts, we've gotten distracted by the Be-Wilder’s charming illusions and have forgotten to do some of our Dailies! With a cackling cry, the shining bird beats its wings, raising a swarm of mist around Alex the Merchant. When the fog clears, he has been possessed! “Have some free samples!” he shouts gleefully, and begins to hurl exploding eggs and potions at fleeing Habiticans. Not the most favorable of sales, to be sure.\n\nHurry! Let's stay focused on our Dailies to defeat this monster before it possesses someone else.", + "questBewilderBossRageStables": "`The Be-Wilder uses BEGUILEMENT STRIKE!`\n\nAhh!!! Once again the Be-Wilder has dazzled us into neglecting our Dailies, and now it has attacked Matt the Beast Master! With a swirl of mist, Matt transforms into a terrifying winged creature, and all the pets and mounts howl sadly in their stables. Quickly, stay focused on your tasks to defeat this dastardly distraction!", + "questBewilderBossRageBailey": "`The Be-Wilder uses BEGUILEMENT STRIKE!`\n\nLook out! In the middle of reporting the news, Bailey the Town Crier has been possessed by the Be-Wilder! She lets out an evil, uninformative screech as she rises into the air. Now how will we know what’s going on?\n\nDon't give up... we're so close to defeating this bothersome bird for once and for all!" } \ No newline at end of file diff --git a/common/locales/cs/rebirth.json b/common/locales/cs/rebirth.json index 832e43ec21..855c764d6f 100644 --- a/common/locales/cs/rebirth.json +++ b/common/locales/cs/rebirth.json @@ -12,7 +12,7 @@ "rebirthInList2": "Členství ve výzvách, družině a v ceších zůstávají.", "rebirthInList3": "Drahokamy, úrovně podpory a úrovně pomoci zůstanou.", "rebirthInList4": "Předměty získané za drahokamy nebo za úkoly (jako mazlíčci a zkrocená zvířata) zůstávají, i když se k nim nedostaneš, dokud je znovu neodemkneš.", - "rebirthInList5": "Limited edition equipment you've purchased can be repurchased, even if its event has ended. To repurchase class-specific equipment, you must first change to the correct class.", + "rebirthInList5": "Vybavení z limitovaných edic, které jsi si koupil, mohou být koupeny znovu, dokonce i když akce skončila. Aby jsi si mohl znovu koupit vybavení pro určité povolání, musíš nejprve zvolit správné povolání.", "rebirthEarnAchievement": "Také dostaneš ocenění za začátek nového dobrodružství.", "beReborn": "Buď znovuzrozen", "rebirthAchievement": "Začal jsi nové dobrodružství! Tohle je Znovuzrození číslo <%= number %> a nejvyšší úroveň, které jsi dosáhl je <%= level %>. K dosažení dalšího ocenění začni nové dobrodružství až dosáhneš ještě vyšší úrovně!", diff --git a/common/locales/cs/settings.json b/common/locales/cs/settings.json index 8c62ed8c2f..3b5a335674 100644 --- a/common/locales/cs/settings.json +++ b/common/locales/cs/settings.json @@ -10,7 +10,7 @@ "newTaskEditPop": "Pokud je tato volba nastavena, nový úkol se otevře rozbalený a můžeš ihned přidávat poznámky a štítky.", "dailyDueDefaultView": "Posílat denní úkoly do záložky zbývající", "dailyDueDefaultViewPop": "Pokud je tato možnost zvolena, denní úkoly se budou zobrazovat v záložce Zbývající místo v záložce Vše", - "reverseChatOrder": "Show chat messages in reverse order", + "reverseChatOrder": "Zobrazit zprávy v opačném pořadí", "startCollapsed": "Seznam štítků se v úkolu zobrazí zabalený", "startCollapsedPop": "Pokud je tato volba nastavena, seznam štítků bude skryt, když poprvé otevřeš úkol pro úpravu.", "startAdvCollapsed": "Pokročilé možnosti se v úkolu zobrazí zabalené.", @@ -102,7 +102,7 @@ "invitedParty": "Pozván do Družiny", "invitedGuild": "Pozván do Cechu", "importantAnnouncements": "Tvůj účet není aktivní", - "weeklyRecaps": "Shrnutí aktivity tvého účtu za poslední týden", + "weeklyRecaps": "Summaries of your account activity in the past week (Note: this is currently disabled due to performance issues, but we hope to have this back up and sending e-mails again soon!)", "questStarted": "Tvá výprava započla", "invitedQuest": "Pozván na Výpravu", "kickedGroup": "Vykopnut z družiny", diff --git a/common/locales/cs/subscriber.json b/common/locales/cs/subscriber.json index 1d9518c163..5e4216b827 100644 --- a/common/locales/cs/subscriber.json +++ b/common/locales/cs/subscriber.json @@ -1,14 +1,14 @@ { "subscription": "Předplatné", "subscriptions": "Předplatné", - "subDescription": "Buy Gems with gold, get monthly mystery items, retain progress history, double daily drop-caps, support the devs. Click for more info.", + "subDescription": "Nakupuj drahokamy za zlaťáky, získej každý měsíc tajemné předměty, uchovávej si historii svého pokroku, zdvojnásob možnost získaných věcí za den, podpoř vývojáře. Klikni pro více informací.", "buyGemsGold": "Kup drahokamy za zlato", - "buyGemsGoldText": "Alexander the Merchant will sell you Gems at a cost of <%= gemCost %> gold per gem. His monthly shipments are initially capped at <%= gemLimit %> Gems per month, but this cap increases by 5 Gems for every three months of consecutive subscription, up to a maximum of 50 Gems per month!", - "retainHistory": "Retain additional history entries", - "retainHistoryText": "Makes completed To-Dos and task history available for longer.", + "buyGemsGoldText": "Obchodník Alexander ti prodá drahokamy za cenu <%= gemCost %> zlaťáků za drahokam. Jeho měsíční dodávky jsou zprvu omezeny na <%= gemLimit %> drahokamů za měsíc, ale každé tři měsíce souvislého předplatného se jejich počet navýší o 5 a může dosáhnout maxima až 50 drahokamů za měsíc!", + "retainHistory": "Ponech si další položky historie.", + "retainHistoryText": "Umožňuje vidět dodělané úkoly pro delší dobu.", "doubleDrops": "Denně získáš dvakrát více předmětů", "doubleDropsText": "Najdi všechny mazlíčky rychleji!", - "mysteryItem": "Exclusive monthly items", + "mysteryItem": "Jedinečné měsíční předměty.", "mysteryItemText": "Každý měsíc obdržíš unikátní předmět pro svůj avatar! Navíc za každé tři měsíce nepřerušeného předplatného ti Tajemní cestovatelé časem zaručí přístup k historickým (a futuristickým!) předmětům.", "supportDevs": "Podporuje vývojáře", "supportDevsText": "Tvé předplatné pomáhá udržet program Habitica prosperující a pomáhá financovat vývoj nových funkcí. Děkujeme za tvou štědrost!", @@ -28,9 +28,9 @@ "subscribed": "Předplaceno", "manageSub": "Klikni pro správu předplatného", "cancelSub": "Zrušit předplatné", - "canceledSubscription": "Canceled Subscription", + "canceledSubscription": "Zrušené předplatné.", "adminSub": "Administrátorské předplatné", - "morePlans": "Další plány
Již brzy", + "morePlans": "Více plánů
Již brzy", "organizationSub": "Soukromá organizace", "organizationSubText": "Členové organizace se zapojují mimo program Habitica jako takovou, což jim umožňuje se řádně soustředit.", "hostingType": "Typ hostingu", @@ -97,6 +97,8 @@ "mysterySet201511": "Set dřevěného bojovníka", "mysterySet201512": "Set se zimním plamenem", "mysterySet201601": "Champion of Resolution Set", + "mysterySet201602": "Heartbreaker Set", + "mysterySet201603": "Lucky Clover Set", "mysterySet301404": "Standardní steampunkový set", "mysterySet301405": "Set steampunkových doplňků", "mysterySetwondercon": "Wondercon", diff --git a/common/locales/da/backgrounds.json b/common/locales/da/backgrounds.json index 8e4c565ebf..fd70b6f5f2 100644 --- a/common/locales/da/backgrounds.json +++ b/common/locales/da/backgrounds.json @@ -133,18 +133,32 @@ "backgroundSnowySunriseNotes": "Kig på den Snefyldte Solopgang.", "backgroundWinterTownText": "Vinterby", "backgroundWinterTownNotes": "Vakl gennem en Vinterby.", - "backgrounds012016": "SÆT 8: Udgivet Januar 2016", + "backgrounds012016": "SÆT 20: Udgivet Januar 2016", "backgroundFrozenLakeText": "Frossen Sø", "backgroundFrozenLakeNotes": "Skøjt på en Frossen Sø.", "backgroundSnowmanArmyText": "Snemandshær", "backgroundSnowmanArmyNotes": "Led en Snemandshær.", "backgroundWinterNightText": "Vinternat", "backgroundWinterNightNotes": "Se på Vinternattens stjerne", - "backgrounds022016": "SET 21: Released February 2016", - "backgroundBambooForestText": "Bamboo Forest", - "backgroundBambooForestNotes": "Stroll through the Bamboo Forest.", - "backgroundCozyLibraryText": "Cozy Library", - "backgroundCozyLibraryNotes": "Read in the Cozy Library.", - "backgroundGrandStaircaseText": "Grand Staircase", - "backgroundGrandStaircaseNotes": "Stride down the Grand Staircase." + "backgrounds022016": "SÆT 21: Udgivet Februar2016", + "backgroundBambooForestText": "Bambusskov", + "backgroundBambooForestNotes": "Spadser gennem bambusskoven.", + "backgroundCozyLibraryText": "Hyggeligt Bibliotek", + "backgroundCozyLibraryNotes": "Læs i det hyggelige bibliotek.", + "backgroundGrandStaircaseText": "Hovedtrappen", + "backgroundGrandStaircaseNotes": "Bevæg dig ned af hovedtrappen.", + "backgrounds032016": "SÆT 22: Udgivet marts 2016", + "backgroundDeepMineText": "Dyb mine", + "backgroundDeepMineNotes": "Find dyrebare metaller i en dyb mine", + "backgroundRainforestText": "Regnskov", + "backgroundRainforestNotes": "Vov dig ind i en regnskov.", + "backgroundStoneCircleText": "Cirkel af sten", + "backgroundStoneCircleNotes": "Kast magi i en cirkel af sten.", + "backgrounds042016": "SET 23: Released April 2016", + "backgroundArcheryRangeText": "Archery Range", + "backgroundArcheryRangeNotes": "Practice on the Archery Range.", + "backgroundGiantFlowersText": "Giant Flowers", + "backgroundGiantFlowersNotes": "Frolic atop Giant Flowers.", + "backgroundRainbowsEndText": "End of the Rainbow", + "backgroundRainbowsEndNotes": "Discover gold at the End of the Rainbow." } \ No newline at end of file diff --git a/common/locales/da/character.json b/common/locales/da/character.json index ffae159e98..fa6419b69a 100644 --- a/common/locales/da/character.json +++ b/common/locales/da/character.json @@ -1,7 +1,7 @@ { "statsAch": "Stats og præstationer", "profile": "Profil", - "avatar": "Avatar", + "avatar": "Customize Avatar", "other": "Andet", "fullName": "Fuldt navn", "displayName": "Skærmnavn", @@ -34,6 +34,7 @@ "beard": "Skæg", "mustache": "Overskæg", "flower": "Blomst", + "wheelchair": "Wheelchair", "basicSkins": "Basis-skins", "rainbowSkins": "Regnbue-skins", "pastelSkins": "Pastel-skins", @@ -83,7 +84,7 @@ "allocateInt": "Point tilføjet til Intelligens:", "allocateIntPop": "Tilføj et point til Intelligens", "noMoreAllocate": "Nu hvor du er blevet niveau 100, kan du ikke længere tjene attributpoint. Du kan stadig stige i niveau, eller starte et nyt eventyr fra niveau 1 ved at bruge en Genfødselskugle, der nu er gratis på Markedet.", - "stats": "Stats", + "stats": "Avatar Stats", "strength": "Styrke", "strengthText": "Styrke øger chancen for vilkårlige \"fuldtræffere\" og Guld-, Erfarings- og dropchance-boost fra dem. Det hjælper også med at skade Boss-monstre.", "constitution": "Konstitution", @@ -136,7 +137,7 @@ "respawn": "Genopstå!", "youDied": "Du døde!", "dieText": "Du har tabt et niveau, alt dit Guld, og et vilkårligt stykke Udstyr. Rejs dig, Habitør, og prøv igen! Tøjl dine negative Vaner, vær opmærksom på at fuldføre Daglige, og hold Døden på afstand med en Livseliksir hvis du vakler!", - "sureReset": "Er du sikker? Dette vil nulstille din karakters klasse og de tildelte point (du vil få dem alle tilbage så du kan fordele dem igen), og koster 3 ædelsten.", + "sureReset": "Are you sure? This will reset your character's class and allocated points (you'll get them all back to re-allocate), and costs 3 gems.", "purchaseFor": "Køb for <%= cost %> Ædelsten?", "notEnoughMana": "Ikke nok mana.", "invalidTarget": "Ugyldigt mål", @@ -160,5 +161,8 @@ "str": "STY", "con": "KON", "per": "OPF", - "int": "INT" + "int": "INT", + "showQuickAllocation": "Show stat allocation", + "hideQuickAllocation": "Hide stat allocation", + "quickAllocationLevelPopover": "Each level earns you one point to assign to an attribute of your choice. You can do so manually, or let the game decide for you using one of the Automatic Allocation options found in User -> Stats." } \ No newline at end of file diff --git a/common/locales/da/communityguidelines.json b/common/locales/da/communityguidelines.json index c34f0e2cfc..7c4aae9440 100644 --- a/common/locales/da/communityguidelines.json +++ b/common/locales/da/communityguidelines.json @@ -29,7 +29,7 @@ "commGuidePara013": "Brugere vil komme og gå i et så stort fællesskab som Habitica, og nogen gange har en moderator brug for at lægge deres noble kappe fra sig og slappe af. De følgende er Moderatorer Emeritus. De har ikke længere moderatorrettigheder, men vi vil stadig gerne ære deres arbejde!", "commGuidePara014": "Moderatorer Emeritus:", "commGuideHeadingPublicSpaces": "Offentlige Steder i Habitica", - "commGuidePara015": "Habitica har to slags sociale områder: offentlige og private. Offentlige steder inkluderer Værtshuset, åbne Klaner, GitHub, Trello og Wikien. Private områder er private Klaner, Gruppechatten og Privatbeskeder.", + "commGuidePara015": "Habitica has two kinds of social spaces: public, and private. Public spaces include the Tavern, Public Guilds, GitHub, Trello, and the Wiki. Private spaces are Private Guilds, party chat, and Private Messages. All Display Names must comply with the public space guidelines. To change your Display Name, go on the website to User > Profile and click on the \"Edit\" button.", "commGuidePara016": "Når du navigerer rundt i de offentlige steder af Habitica, er der nogle generelle regler for at sørge for, at alle er sikre og glade. De burde være lette for eventyrere som dig!", "commGuidePara017": "Respektér hinanden. Vær høflig, venlig og hjælpsom. Husk: Habitikanere kommer alle fra forskellige baggrunde og har haft meget forskellige oplevelser. Dette er en del det, der gør Habitica så cool! Et fællesskab bygger på respekt for og fejring af både vores forskelligheder og ligheder. Her er nogle lette måder at vise respekt for andre:", "commGuideList02A": "Overhold alle betingelser og vilkår.", @@ -40,8 +40,8 @@ "commGuideList02F": "Adlyd enhver Moderator-henstilling med det samme - enten at stoppe diskussionen eller flytte den til Det Bagerste Hjørne. Sidste ord, afskedskommentarer o.l. skal alle gives (høfligt) ved jeres \"bord\" i 'The Back Corner', hvis tilladt.", "commGuideList02G": "Brug tid på at reflektere i stedet for at svare i vrede hvis nogen fortæller dig, at noget du sagde eller gjorde, gjorde dem utilpas. Det er stærkere at kunne undskylde oprigtigt. Hvis du føler, at den måde de svarede dig var upassende, så kontakt en Moderator i stedet for selv at pointere det offentligt.", "commGuideList02H": "Kontroversielle/omstridte samtaler skal rapporteres til Moderatorer. Hvis du føler at en samtale bliver ophedet, meget følelsesladet eller sårende, stop med at deltage. I stedet send en email til leslie@habitica.com og fortæl os om det. Det er vores job at sørge for, at Habitica er et sikkert sted.", - "commGuideList02I": "Lad være med at spamme. Spam inkluderer bl.a. at sende den samme kommentar eller spørgsmål flere steder, at poste links uden forklaring eller kontekst, at poste volapyk, eller at poste mange beskeder i træk - men denne liste er ikke endelig! Gentagne gange at tigge om ædelsten eller et abonnement kan også anses som spamming.", - "commGuidePara019": "I private områder har brugere større frihed til at diskutere hvad end man vil, men man må stadig ikke bryde vores Betingelser og Vilkår, hvilket inkluderer diskriminerende, voldeligt eller truende indhold.", + "commGuideList02I": "Do not spam. Spamming may include, but is not limited to: posting the same comment or query in multiple places, posting links without explanation or context, posting nonsensical messages, or posting many messages in a row. Asking for gems or a subscription in any of the chat spaces or via Private Message is also considered spamming.", + "commGuidePara019": "In private spaces, users have more freedom to discuss whatever topics they would like, but they still may not violate the Terms and Conditions, including posting any discriminatory, violent, or threatening content. Note that, because Challenge names appear in the winner's public profile, ALL Challenge names must obey the public space guidelines, even if they appear in a private space.", "commGuidePara020": "Privatbeskeder (PMs) har nogle ekstra retningslinjer. Hvis nogen har blokeret dig må du ikke kontakte dem på andre måder for at bede dem om at fjerne blokeringen. Derudover må du ikke sende PMs til andre for at bede om hjælp (fordi offentlige svar til spørgsmål om hjælp også kan hjælpe resten af fællesskabet). Sidst men ikke mindst må du ikke sende PMs til nogen for at tigge om ædelsten eller et abonnement, da dette kan anses som spamming.", "commGuidePara021": "Herudover har nogen offentlige steder i Habitica ekstra retningslinjer.", "commGuideHeadingTavern": "Værtshuset", diff --git a/common/locales/da/content.json b/common/locales/da/content.json index 0c3d674896..b2442460ac 100644 --- a/common/locales/da/content.json +++ b/common/locales/da/content.json @@ -31,7 +31,7 @@ "dropEggCactusAdjective": "en stikkende", "dropEggBearCubText": "Bjørneunge", "dropEggBearCubMountText": "Bjørn", - "dropEggBearCubAdjective": "en nuttet", + "dropEggBearCubAdjective": "a brave", "questEggGryphonText": "Grif", "questEggGryphonMountText": "Grif", "questEggGryphonAdjective": "en stolt", @@ -46,7 +46,7 @@ "questEggEggAdjective": "et farverigt", "questEggRatText": "Rotte", "questEggRatMountText": "Rotte", - "questEggRatAdjective": "en beskidt", + "questEggRatAdjective": "a sociable", "questEggOctopusText": "Blæksprutte", "questEggOctopusMountText": "Blæksprutte", "questEggOctopusAdjective": "en glat", @@ -107,9 +107,12 @@ "questEggSabretoothText": "Sabeltandstiger", "questEggSabretoothMountText": "Sabeltandstiger", "questEggSabretoothAdjective": "en farlig", - "questEggMonkeyText": "Monkey", - "questEggMonkeyMountText": "Monkey", - "questEggMonkeyAdjective": "a mischievous", + "questEggMonkeyText": "Abe", + "questEggMonkeyMountText": "Abe", + "questEggMonkeyAdjective": "en fræk", + "questEggSnailText": "Snail", + "questEggSnailMountText": "Snail", + "questEggSnailAdjective": "a slow but steady", "eggNotes": "Find en udrugningseliksir til at hælde på dit æg, og det vil udklække <%= eggAdjective(locale) %> <%= eggText(locale) %>.", "hatchingPotionBase": "Almindelig", "hatchingPotionWhite": "Hvid", diff --git a/common/locales/da/contrib.json b/common/locales/da/contrib.json index 04291f6049..e2657d6127 100644 --- a/common/locales/da/contrib.json +++ b/common/locales/da/contrib.json @@ -28,11 +28,11 @@ "helped": "Hjalp Habit med at vokse", "helpedText1": "Hjalp Habitica med at vokse ved at udfylde", "helpedText2": "dette spørgeskema.", - "hall": "Sale", + "hall": "Hall of Heroes", "contribTitle": "Bidragsydertitel (fx, \"Grovsmed\")", "contribLevel": "Bidragstrin", "contribHallText": "1-7 for normale bidragsydere, 8 for moderatorer, 9 for ansatte. Dette har betydning for, hvilke varer, kæledyr og ridedyr, der er tilgængelige. Bestemmer også navne-farve. Trin 8 og 9 får automatisk administratorstatus.", - "hallHeroes": "Heltenes Sal", + "hallContributors": "Hall of Contributors", "hallPatrons": "Protektorernes Sal", "rewardUser": "Beløn bruger", "UUID": "Unikt Bruger-ID", @@ -60,5 +60,5 @@ "blurbGuildsPage": "Klaner er chat-grupper der deler en fælles interesse. Se listen igennem og slut dig til de klaner, der interesserer dig.", "blurbChallenges": "Udfordringer bliver oprettet af dine medspillere. Når du tilmelder dig en udfordring vil dens opgaver blive føjet til dine nuværende opgaver, og når du vinder en udfordring modtager du en præstation og ofte også en ædelstensbelønning.", "blurbHallPatrons": "Dette er Protektorernes Sal, hvor vi ærer de ædle eventyrere, der støttede Habiticas originale Kickstarter. Vi takker dem for at hjælpe os med at vække Habitica til live!", - "blurbHallHeroes": "Dette er Heltenes Sal, hvor dem, der har bidraget med open-source materiale til Habitica, bliver æret. Om det er gennem kode, grafik, musik, tekst eller bare generel hjælpsomhed, har de modtaget ædelsten, eksklusivt udstyr, og prestigefyldte titler. Du kan også bidrage til Habitica! Find ud af mere her. " + "blurbHallContributors": "This is the Hall of Contributors, where open-source contributors to Habitica are honored. Whether through code, art, music, writing, or even just helpfulness, they have earned gems, exclusive equipment, and prestigious titles. You can contribute to Habitica, too! Find out more here. " } \ No newline at end of file diff --git a/common/locales/da/faq.json b/common/locales/da/faq.json index 050da54766..33bd1c4b65 100644 --- a/common/locales/da/faq.json +++ b/common/locales/da/faq.json @@ -1,32 +1,32 @@ { "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, check out a step-by-step overview of the game at [Help -> Overview for New Users](https://habitica.com/static/overview).", + "iosFaqAnswer0": "Først sætter du dig de mål du vil opnå i dit daglige liv. Efterhånden som du udfører opgaverne i virkeligheden og sætter mærke ved dem, tjener du erfaring (EXP) og guld. Guld bruges til at købe udstyr, visse genstande og belønninger du selv opretter. Erfaring får din karakter til at komme til et højere niveau og låser op for indhold som Kæledyr, Evner, og Quests! Du kan ændre på din karakters udseende under Menu > Tilpas Avatar.\n\nNogle basale måder at interagere med app'en: Klik på (+) i det øverste højre hjørne for at tilføje et nyt mål. Tryk let på et allerede eksiterende mål for at ændre det, og skub mod venstre på et mål for at slette det. Du kan også sortere mål ved at bruge Filtrene i det øverste venstre hjørne, og udvide og formindske To-Do lister ved at trykke på 'boblen' længst til højre på en To-Do.", + "webFaqAnswer0": "Først sætter du dig de mål du vil opnå i dit daglige liv. Efterhånden som du udfører opgaverne i virkeligheden og sætter mærke ved dem, tjener du erfaring (EXP) og guld. Guld bruges til at købe udstyr, visse genstande og belønninger du selv opretter. Erfaring får din karakter til at komme til et højere niveau og låser op for indhold som Kæledyr, Evner, og Quests! For mere information, gå til [Help > Overview for New Users] (https://habitica.com/static/overview).\n\nDenne side er endnu ikke oversat til dansk,", "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.", + "iosFaqAnswer1": "Gode vaner (med et +) er opgaver du kan gøre mange gange om dagen, som for eksempel at spise grøntsager. Dårlige vaner (med et -) er opgaver du bør undgå, som for eksempel at bide negle. Vaner med både + og - involverer et godt og et dårligt valg, som for eksemepel at tage trappen vs. at tage en elevator. Gode vaner belønner dig med erfaring og guld. Dårlige vanertrækker fra dit Helbred.\n\nDaglige er opgaver du skal gøre hver dag, som at børste dine tænder eller checke din email. Du kan justere de dage du skal udføre en Daglig opgave ved at trykke let for at ændre på den. Hvis du springer en Daglig opgave over, som du skulle have udført, tager din avatar skade i løbet af natten. Vær forsigtig med ikke at tilføje for mange Daglige opgaver af gangen!\n\nTo-Dos er din To-Do liste. At gennemføre en To-Do indtjener guld og erfaring. Du mister aldrig Helbred ved ikke at udføre en To-Do. Du kan tilføje en dato, hvor du skal have udført din To-Do ved at trykke let for at ændre på den.", "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": "Har I nogle eksempler på opgaver?", - "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": "Wiki'en har fire lister med eksempler på opgaver, der kan bruges som inspiration. Habitica Wiki'en er endnu ikke oversat til dansk.\n\n* [Eksempler på vaner](http://habitica.wikia.com/wiki/Sample_Habits)\n* [Eksempler på daglige opgaver](http://habitica.wikia.com/wiki/Sample_Dailies)\n* [Eksempler på To-Dos](http://habitica.wikia.com/wiki/Sample_To-Dos)\n* [Eksempler på belønninger](http://habitica.wikia.com/wiki/Sample_Custom_Rewards)", + "webFaqAnswer2": "Wiki'en har fire lister med eksempler på opgaver, der kan bruges som inspiration. Habitica Wiki'en er endnu ikke oversat til dansk.\n\n* [Eksempler på vaner](http://habitica.wikia.com/wiki/Sample_Habits)\n* [Eksempler på daglige opgaver](http://habitica.wikia.com/wiki/Sample_Dailies)\n* [Eksempler på To-Dos](http://habitica.wikia.com/wiki/Sample_To-Dos)\n* [Eksempler på belønninger](http://habitica.wikia.com/wiki/Sample_Custom_Rewards)", "faqQuestion3": "Hvorfor skifter mine opgaver farve?", - "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.", + "iosFaqAnswer3": "Dine opgaver ændrer farve baseret på hvor godt du klarer dig i øjeblikket! Hver ny opgave begynder som værende neutral gul. Udfør daglige opgaver eller gode vaner oftere, og de vil begynde at ændre sig til blå. Undlad at udføre en daglig opgave eller buk under for en dårlig vane og opgaven vil ændre sig til rød. Jo rødere en opgave er, jo større er belønningen for at udføre den, men hvis det er en daglig opgave eller en dårlig vane, jo mere vil den skade dit helbred! Dette hjælper med at motivere dig til at udføre de opgaver, der ellers giver dig problemer.", + "webFaqAnswer3": "Dine opgaver ændrer farve baseret på hvor godt du klarer dig i øjeblikket! Hver ny opgave begynder som værende neutral gul. Udfør daglige opgaver eller gode vaner oftere, og de vil begynde at ændre sig til blå. Undlad at udføre en daglig opgave eller buk under for en dårlig vane og opgaven vil ændre sig til rød. Jo rødere en opgave er, jo større er belønningen for at udføre den, men hvis det er en daglig opgave eller en dårlig vane, jo mere vil den skade dit helbred! Dette hjælper med at motivere dig til at udføre de opgaver, der ellers giver dig problemer.", "faqQuestion4": "Hvorfor mistede min avatar liv, og hvordan får jeg det tilbage?", - "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.", + "iosFaqAnswer4": "Der er flere ting der kan forårsage skade på din avatars helbred. Hvis du lader daglige opgaver være uløste, tager du skade i løbet af natten. Hvis du bukker under for en dårlig vane, tager du skade. Og endeligt, hvis du er i en Boss Battle med din gruppe og et af dine gruppemedlemmer ikke udførte alle deres daglige opgaver, vil Bossen angribe jer.\n\nDen primære måde at hele på er ved at stige et niveau, hvilket giver dig alt dit mistede liv tilbage. Du kan også købe en Health Potion med guld fra 'Belønninger'. Desuden kan du fra niveau 10 og opefter vælge at blive en Healer, og du vil da lære evner der kan hele dig. Hvis du er i en gruppe med en Healer, kan de også hele dig.", + "webFaqAnswer4": "Der er flere ting der kan forårsage skade på din avatars helbred. Hvis du lader daglige opgaver være uløste, tager du skade i løbet af natten. Hvis du bukker under for en dårlig vane, tager du skade. Og endeligt, hvis du er i en Boss Battle med din gruppe og et af dine gruppemedlemmer ikke udførte alle deres daglige opgaver, vil Bossen angribe jer.\n

\nDen primære måde at hele på er ved at stige et niveau, hvilket giver dig alt dit mistede liv tilbage. Du kan også købe en Health Potion med guld fra 'Belønninger'. Desuden kan du fra niveau 10 og opefter vælge at blive en Helbreder, og du vil da lære evner der kan hele dig. Hvis du er i en gruppe med en Helbreder, kan de også hele dig.", "faqQuestion5": "Hvordan spiller jeg Habitica med mine venner?", - "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).", + "iosFaqAnswer5": "Den bedste måde at gøre det på er ved at invitere dem til din gruppe! Grupper kan lave quests, kæmpe mod monstre, og kaste evner for at hjælpe hinanden. Gå til [Menu > Party] og vælg \"Create New Party\" hvis du ikke allerede har en gruppe. Vælg da listen over medlemmer, og tryk på \"Inviter\" i de øverste højre hjørne for at invitere dine venner ved enten at skrive deres Bruger ID (en serie af tal og bogstaver, de kan finde under [Indstillinger > Kontodetaljer] på app'en, og [Settings > API] på hjemmesiden. På hjemmesiden kan du også invitere dine venner via email, hvilket vi også vil gøre muligt på app'en i fremtiden.\n\nPå hjemmesiden kan du og dine venner også melde jer ind i klaner, der er offentlige chatrooms. Klaner vil også blive en del af app'en i fremtiden!", + "webFaqAnswer5": "Den bedste måde at gøre det på er at invitere dem til en gruppe under [Social > Gruppe]! Grupper kan lave quests, kæmpe mod monstre, og kaste evner for at hjælpe hinanden. I kan også melde jer ind i klaner sammen under [Social > Guilds] på hjemmesiden. Klaner er chat rooms der fokuserer på en delt interesse eller udførslen af et fælles mål, og kan være offentlige eller private. Du kan være med i lige så mange klaner du har lyst til, men kun én gruppe.\n\nFor mere information, gå til Habitica Wiki'en under [Parties](http://habitrpg.wikia.com/wiki/Party) og [Guilds](http://habitrpg.wikia.com/wiki/Guilds). Wiki'en er endnu ikke oversat til dansk.", "faqQuestion6": "Hvordan får jeg et kæledyr eller ridedyr?", "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": "Hvordan bliver jeg en Kriger, Magiker, Slyngel eller Helbreder?", - "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.", + "iosFaqAnswer7": "Når du når niveau 10 kan du vælge at blive en Kriger, Magiker, Slyngel eller Helbreder. (Alle spillere starter som Krigere.) Hver klasse har forskellige muligheder for udstyr, forskellige Evner du kan kaste efter niveau 11, og forskellige fordele. Krigere kan let gøre skade på bosser, tåle mere skade fra deres u-udførte opgaver, og hjælpe med at gøre deres gruppe sejere. Magikere kan også let gøre skade på bosser, samt stige hurtigt i niveau og genskabe mana for deres gruppe. Slyngler er dem der tjener mest guld og finder de fleste genstande, og de kan hjælpe deres gruppe med at gøre det samme. Endelig kan Helbredere hele sig selv og deres gruppemedlemmer.\n\nHvis du ikke vil vælge en klasse med det samme - hvis du for eksempel stadig er i gang med at købe alt udstyret til din nuværende klasse - kan du vælge \"Decide Later\" og vælge senere under Menu > Choose Class.", + "webFaqAnswer7": "Når du når niveau 10 kan du vælge at blive en Kriger, Magiker, Slyngel eller Helbreder. (Alle spillere starter som Krigere.) Hver klasse har forskellige muligheder for udstyr, forskellige Evner du kan kaste efter niveau 11, og forskellige fordele. Krigere kan let gøre skade på bosser, tåle mere skade fra deres u-udførte opgaver, og hjælpe med at gøre deres gruppe sejere. Magikere kan også let gøre skade på bosser, samt stige hurtigt i niveau og genskabe mana for deres gruppe. Slyngler er dem der tjener mest guld og finder de fleste genstande, og de kan hjælpe deres gruppe med at gøre det samme. Endelig kan Helbredere hele sig selv og deres gruppemedlemmer.\n

\nHvis du ikke vil vælge en klasse med det samme - hvis du for eksempel stadig er i gang med at købe alt udstyret til din nuværende klasse - kan du vælge \"Opt Out\" og vælge senere under User > Stats.", "faqQuestion8": "Hvad er den blå statusbar, der dukker op hos Helbrederen efter niveau 10?", - "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.", + "iosFaqAnswer8": "Den blå bar der blev synlig da du nåede niveau 10 og valgte en klasse er din mana bar. Efterhånden som du fortsætter med at stige i niveau låser du op for specielle evner der koster dig mana, når du bruger dem. Hver klasse har forskellige evner, der bliver tilgængelige efter niveau 11 under Menu > Brug Evner. Ulig din 'liv' bar bliver din mana bar ikke genopfyldt når du stiger et niveau. Istedet tjener du mana når du udfører en god vane, daglige opgaver, og To-Dos, og taber mana når du bukker under for en dårlig vane. Du genoptjener også mana i løbet af natten - jo flere daglige opgaver du fuldførte, jo mere mana får du.", + "webFaqAnswer8": "Den blå bar der blev synlig da du nåede niveau 10 og valgte en klasse er din mana bar. Efterhånden som du fortsætter med at stige i niveau låser du op for specielle evner der koster dig mana, når du bruger dem. Hver klasse har forskellige evner, der bliver tilgængelige efter niveau 11 i en speciel sektion under Belønninger. Ulig din 'liv' bar bliver din mana bar ikke genopfyldt når du stiger et niveau. Istedet tjener du mana når du udfører en god vane, daglige opgaver, og To-Dos, og taber mana når du bukker under for en dårlig vane. Du genoptjener også mana i løbet af natten - jo flere daglige opgaver du fuldførte, jo mere mana får du.", "faqQuestion9": "Hvordan bekæmper jeg monstre og tager på Quests?", "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.", @@ -34,11 +34,11 @@ "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": "Hvordan rapporterer jeg en fejl, eller foreslår en ny funktion?", - "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.", + "iosFaqAnswer11": "Du kan rapportere en fejl eller sende feedback under Menu > Om > Rapportér en fejl eller Menu > Om > Send feedback! Vi vil gøre alt hvad vi kan for at hjælpe dig.", "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": "Hvordan bekæmper jeg en verdensboss?", - "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 or on the [Wiki FAQ](http://habitica.wikia.com/wiki/FAQ), 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 or on the [Wiki FAQ](http://habitica.wikia.com/wiki/FAQ), come ask in the [Newbies Guild](https://habitica.com/#/options/groups/guilds/5481ccf3-5d2d-48a9-a871-70a7380cee5a)! We're happy to help." + "iosFaqAnswer12": "Verdensbosser er specielle monstre der findes i Værtshuset. Alle aktive brugere kæmper automatisk mod bossen, og deres opgaver og evner vil gøre skade på bossen som normalt.\n\nDu kan også være i gang med en normal quest samtidig. Dine opgaver og evner vil tælle både mod verdensbossen og din quest i den gruppe.\n\nEn verdensboss vil aldrig skade dig eller din konto på nogen måde. I stedet har den en raseribar, der fyldes op når bruger ikke udfører deres daglige opgaver. Bliver den fyldt, angriber verdensbossen en af NPC'erne (Non-Player Characters) rundt omkring på hjemmesiden, og deres udseende vil ændres.\n\nDu kan læse mere om [tidligere verdensbosser](http://habitica.wikia.com/wiki/World_Bosses) på wiki'en. Habitica Wiki'en er endnu ikke oversat til dansk.", + "webFaqAnswer12": "Verdensbosser er specielle monstre der findes i Værtshuset. Alle aktive brugere kæmper automatisk mod bossen, og deres opgaver og evner vil gøre skade på bossen som normalt.\n

\nDu kan også være i gang med en normal quest samtidig. Dine opgaver og evner vil tælle både mod verdensbossen og din quest i den gruppe.\n

\nEn verdensboss vil aldrig skade dig eller din konto på nogen måde. I stedet har den en raseribar, der fyldes op når bruger ikke udfører deres daglige opgaver. Bliver den fyldt, angriber verdensbossen en af NPC'erne (Non-Player Characters) rundt omkring på hjemmesiden, og deres udseende vil ændres.\n

\nDu kan læse mere om [tidligere verdensbosser](http://habitica.wikia.com/wiki/World_Bosses) på wiki'en. Habitica Wiki'en er endnu ikke oversat til dansk.", + "iosFaqStillNeedHelp": "Hvis du har et spørgsmål, der ikke er på listen eller i [Wiki FAQ](http://habitica.wikia.com/wiki/FAQ), så kom forbi og spørg i værtshuset under Social > Værtshus! Vi hjælper gerne.", + "webFaqStillNeedHelp": "Hvis du har et spørgsmål, der ikke er på listen eller i [Wiki FAQ](http://habitica.wikia.com/wiki/FAQ), så kom forbi og spørg i [Newbies Guild](https://habitica.com/#/options/groups/guilds/5481ccf3-5d2d-48a9-a871-70a7380cee5a)! Vi hjælper gerne." } \ No newline at end of file diff --git a/common/locales/da/front.json b/common/locales/da/front.json index 59870f2159..d15c12e7e0 100644 --- a/common/locales/da/front.json +++ b/common/locales/da/front.json @@ -124,7 +124,7 @@ "motivate1": "Motiverer dig til at kunne hvad som helst!", "motivate2": "Bliv organiseret. Bliv motiveret. Bliv rig på guld.", "passConfirm": "Bekræft Kodeord", - "passMan": "In case you are using a password manager (like 1Password) and have problems logging in, try typing your username and password manually.", + "passMan": "Hvis du bruger en kodeordshusker (såsom 1Password) og har problemer med at logge ind, så prøv at skrive dit brugernavn og kodeord manuelt.", "password": "Kodeord", "playButton": "Spil", "playButtonFull": "Spil Habitica", @@ -165,7 +165,7 @@ "teams": "Teams", "terms": "Betingelser og Vilkår", "testimonialHeading": "Hvad siger andre...", - "localStorageTryFirst": "If you are experiencing problems with Habitica, click the button below to clear local storage for this website (other websites will not be affected). You will need to log in again after doing this, so first be sure that you know your log-in details, which can be found at Settings -> <%= linkStart %>Site<%= linkEnd %>.", + "localStorageTryFirst": "Hvis du oplever problemer med Habitica, kan du trykker på nedenstående knap for at fjerne cookies og lokalt lager for dette websted (andre websteder vil ikke blive berørt). Du skal logge ind igen efter at have gjort dette, så vær sikker på at du kender dine loginoplysninger. Disse kan findes ved Instillinger -> <%= linkStart %>Side<%= linkEnd %>.", "localStorageTryNext": "Hvis problemet vedbliver, <%= linkStart %>rapporter da fejlen<%= linkEnd %>, hvis du ikke allerede har gjort det.", "localStorageClearing": "Rydder lokalt lager", "localStorageClearingExplanation": "Din browsers lokale lager bliver ryddet. Du vil blive logget ud og omdirigeret til startsiden. Vent venligst.", @@ -195,9 +195,9 @@ "landingCopy3": "Slut dig til <%= userCount %> mennesker, der har det sjovt, mens de forbedrer deres liv!", "alreadyHaveAccount": "Jeg har allerede en bruger!", "getStartedNow": "Kom i gang nu!", - "altAttrNavLogo": "Habitica home", + "altAttrNavLogo": "Habitica hjem", "altAttrLifehacker": "Lifehacker", - "altAttrNewYorkTimes": "The New York Times", + "altAttrNewYorkTimes": "New York Times", "altAttrMakeUseOf": "MakeUseOf", "altAttrForbes": "Forbes", "altAttrCnet": "CNet", diff --git a/common/locales/da/gear.json b/common/locales/da/gear.json index 5886ba7c47..b4708066ce 100644 --- a/common/locales/da/gear.json +++ b/common/locales/da/gear.json @@ -1,4 +1,5 @@ { + "set": "Set", "weapon": "våben", "weaponBase0Text": "Intet våben", "weaponBase0Notes": "Intet våben.", @@ -142,6 +143,14 @@ "weaponSpecialWinter2016MageNotes": "Your moves are so sick, they must be magic! Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2015-2016 Winter Gear.", "weaponSpecialWinter2016HealerText": "Konfettikanon", "weaponSpecialWinter2016HealerNotes": "WHEEEEEEEEEE!!!!!!! HAPPY WINTER WONDERLAND!!!!!!!! Increases Intelligence by <%= int %>. Limited Edition 2015-2016 Winter Gear.", + "weaponSpecialSpring2016RogueText": "Fire Bolas", + "weaponSpecialSpring2016RogueNotes": "You've mastered the ball, the club, and the knife. Now you advance to juggling fire! Awoo! Increases Strength by <%= str %>. Limited Edition 2016 Spring Gear.", + "weaponSpecialSpring2016WarriorText": "Cheese Mallet", + "weaponSpecialSpring2016WarriorNotes": "No one has as many friends as the mouse with tender cheeses. Increases Strength by <%= str %>. Limited Edition 2016 Spring Gear.", + "weaponSpecialSpring2016MageText": "Staff of Bells", + "weaponSpecialSpring2016MageNotes": "Abra-cat-abra! So dazzling, you might mesmerize yourself! Ooh... it jingles... Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2016 Spring Gear.", + "weaponSpecialSpring2016HealerText": "Spring Flower Wand", + "weaponSpecialSpring2016HealerNotes": "With a wave and a wink, you bring the fields and forests into bloom! Or bop troublesome mice on the head. Increases Intelligence by <%= int %>. Limited Edition 2016 Spring Gear.", "weaponMystery201411Text": "Høstfests-Høtyv", "weaponMystery201411Notes": "Stik dine fjender eller grib for dig af dine yndlingsretter - denne høtyv kan det hele! Giver ingen bonusser. November 2014 Abonnentvare.", "weaponMystery201502Text": "Glinsende Bevinget Stav af Kærlighed og Også Sandhed", @@ -176,6 +185,10 @@ "weaponArmoireBarristerGavelNotes": "Order! Increases Strength and Constitution by <%= attrs %> each. Enchanted Armoire: Barrister Set (Item 3 of 3).", "weaponArmoireJesterBatonText": "Jester Baton", "weaponArmoireJesterBatonNotes": "With a wave of your baton and some witty repartee, even the most complicated situations become clear. Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Jester Set (Item 3 of 3).", + "weaponArmoireMiningPickaxText": "Minedrifts hakke", + "weaponArmoireMiningPickaxNotes": "Mine the maximum amount of gold from your tasks! Increases Perception by <%= per %>. Enchanted Armoire: Miner Set (Item 3 of 3).", + "weaponArmoireBasicLongbowText": "Basic Longbow", + "weaponArmoireBasicLongbowNotes": "A serviceable hand-me-down bow. Increases Strength by <%= str %>. Enchanted Armoire: Basic Archer Set (Item 1 of 3).", "armor": "rustning", "armorBase0Text": "Almindeligt tøj", "armorBase0Notes": "Helt normalt tøj. Giver ingen bonusser.", @@ -239,7 +252,7 @@ "armorSpecialBirthdayNotes": "Tillykke med Fødselsdagen, Habitica! Brug dette Absurde Festkostume til at fejre denne skønne dag! Giver ingen bonusser.", "armorSpecialBirthday2015Text": "Fjollet Festkostume", "armorSpecialBirthday2015Notes": "Tillykke med Fødselsdagen, Habitica! Brug dette Fjollede Festkostume til at fejre denne skønne dag! Giver ingen bonusser.", - "armorSpecialBirthday2016Text": "Ridiculous Party Robes", + "armorSpecialBirthday2016Text": "Absurd festkåbe", "armorSpecialBirthday2016Notes": "Happy Birthday, Habitica! Wear these Ridiculous Party Robes to celebrate this wonderful day. Confers no benefit.", "armorSpecialGaymerxText": "Regnbuekrigers Rustning", "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.", @@ -307,6 +320,14 @@ "armorSpecialWinter2016MageNotes": "The wisest wizard keeps well-bundled in the winter wind. Increases Intelligence by <%= int %>. Limited Edition 2015-2016 Winter Gear.", "armorSpecialWinter2016HealerText": "Festlig fekappe", "armorSpecialWinter2016HealerNotes": "Festive Fairies wrap their body wings around themselves for protection as they use their head wings to catch headwinds and fly around Habitica at speeds of up to 100 mph, delivering gifts and spraying everyone with confetti. How droll. Increases Constitution by <%= con %>. Limited Edition 2015-2016 Winter Gear.", + "armorSpecialSpring2016RogueText": "Canine Camo Suit", + "armorSpecialSpring2016RogueNotes": "A clever pup knows to choose a brighter guise for concealment when everything is green and vibrant. Increases Perception by <%= per %>. Limited Edition 2016 Spring Gear.", + "armorSpecialSpring2016WarriorText": "Mighty Mail", + "armorSpecialSpring2016WarriorNotes": "Though you be but little, you are fierce! Increases Constitution by <%= con %>. Limited Edition 2016 Spring Gear.", + "armorSpecialSpring2016MageText": "Grand Malkin Robes", + "armorSpecialSpring2016MageNotes": "Brightly colored, so you won't be mistaken for a necromouser. Increases Intelligence by <%= int %>. Limited Edition 2016 Spring Gear.", + "armorSpecialSpring2016HealerText": "Fluffy Bunny Breeches", + "armorSpecialSpring2016HealerNotes": "Hippity hop! Bound from hill to hill, healing those in need. Increases Constitution by <%= con %>. Limited Edition 2016 Spring Gear.", "armorMystery201402Text": "Sendebudsdragt", "armorMystery201402Notes": "En skinnende og stærk dragt med masser af lommer til at bære breve i. Giver ingen bonusser. Februar 2014 Abonnentting.", "armorMystery201403Text": "Skovvandrer-rustning", @@ -341,6 +362,8 @@ "armorMystery201511Notes": "Considering this armor was carved directly from a magical log, it's surprisingly comfortable. Confers no benefit. November 2015 Subscriber Item.", "armorMystery201512Text": "Kold ilds rustning", "armorMystery201512Notes": "Summon the icy flames of winter! Confers no benefit. December 2015 Subscriber Item.", + "armorMystery201603Text": "Lucky Suit", + "armorMystery201603Notes": "This suit is sewn from thousands of four-leafed clovers! Confers no benefit. March 2016 Subscriber Item.", "armorMystery301404Text": "Steampunk-dragt", "armorMystery301404Notes": "Nydelig og elegant, selvfølgelig! Giver ingen bonusser. Februar 3015 Abonnentting.", "armorArmoireLunarArmorText": "Beroligende Måne-rustning", @@ -367,6 +390,10 @@ "armorArmoireBarristerRobesNotes": "Very serious and stately. Increases Constitution by <%= con %>. Enchanted Armoire: Barrister Set (Item 2 of 3).", "armorArmoireJesterCostumeText": "Jester Costume", "armorArmoireJesterCostumeNotes": "Tra-la-la! Despite the look of this costume, you are no fool. Increases Intelligence by <%= int %>. Enchanted Armoire: Jester Set (Item 2 of 3).", + "armorArmoireMinerOverallsText": "Minedrift overalls", + "armorArmoireMinerOverallsNotes": "They may seem worn, but they are enchanted to repel dirt. Increases Constitution by <%= con %>. Enchanted Armoire: Miner Set (Item 2 of 3).", + "armorArmoireBasicArcherArmorText": "Basic Archer Armor", + "armorArmoireBasicArcherArmorNotes": "This camouflaged vest lets you slip unnoticed through the forests. Increases Perception by <%= per %>. Enchanted Armoire: Basic Archer Set (Item 2 of 3).", "headgear": "hovedbeklædning", "headBase0Text": "Ingen Hjelm", "headBase0Notes": "Ingen hovedbeklædning", @@ -496,6 +523,14 @@ "headSpecialWinter2016MageNotes": "Keeps the snow out of your eyes while you're casting spells. Increases Perception by <%= per %>. Limited Edition 2015-2016 Winter Gear.", "headSpecialWinter2016HealerText": "Fevingehjelm", "headSpecialWinter2016HealerNotes": "Thesewingsfluttersoquicklythattheyblur! Increases Intelligence by <%= int %>. Limited Edition 2015-2016 Winter Gear.", + "headSpecialSpring2016RogueText": "Good Doggy Mask", + "headSpecialSpring2016RogueNotes": "Aww, what a cute puppy! Come here and let me pet your head. ...Hey, where did all my Gold go? Increases Perception by <%= per %>. Limited Edition 2016 Spring Gear.", + "headSpecialSpring2016WarriorText": "Mouse Guard Helm", + "headSpecialSpring2016WarriorNotes": "Never again shall you be bopped on the head! Let them try! Increases Strength by <%= str %>. Limited Edition 2016 Spring Gear.", + "headSpecialSpring2016MageText": "Grand Malkin Hat", + "headSpecialSpring2016MageNotes": "Apparel to set you above the mere alley-mages of the world. Increases Perception by <%= per %>. Limited Edition 2016 Spring Gear.", + "headSpecialSpring2016HealerText": "Blossom Diadem", + "headSpecialSpring2016HealerNotes": "It glints with the potential of new life ready to burst forth. Increases Intelligence by <%= int %>. Limited Edition 2016 Spring Gear.", "headSpecialGaymerxText": "Regnbuekrigerhjelm", "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", @@ -526,6 +561,10 @@ "headMystery201512Notes": "Disse flammer brænder med ren intellekt. Giver ingen bonusser. December 2015 abonnentting.", "headMystery201601Text": "Helm of True Resolve", "headMystery201601Notes": "Stay resolute, brave champion! Confers no benefit. January 2016 Subscriber Item.", + "headMystery201602Text": "Hjerteknuserhætte", + "headMystery201602Notes": "Shield your identity from all your admirers. Confers no benefit. February 2016 Subscriber Item.", + "headMystery201603Text": "Lucky Hat", + "headMystery201603Notes": "This top hat is a magical good-luck charm. Confers no benefit. March 2016 Subscriber Item.", "headMystery301404Text": "Smart Tophat", "headMystery301404Notes": "En smart tophat for de fineste folk! Giver ingen bonusser. Januar 3015 Abonnentting.", "headMystery301405Text": "Simpel Tophat", @@ -570,6 +609,10 @@ "headArmoireBarristerWigNotes": "This bouncy wig is enough to frighten away even the fiercest foe. Increases Strength by <%= str %>. Enchanted Armoire: Barrister Set (Item 1 of 3).", "headArmoireJesterCapText": "Jester Cap", "headArmoireJesterCapNotes": "The bells on this hat might distract your opponents, but they just help you focus. Increases Perception by <%= per %>. Enchanted Armoire: Jester Set (Item 1 of 3).", + "headArmoireMinerHelmetText": "Minedriftshjælm", + "headArmoireMinerHelmetNotes": "Protect your head from falling tasks! Increases Intelligence by <%= int %>. Enchanted Armoire: Miner Set (Item 1 of 3).", + "headArmoireBasicArcherCapText": "Basic Archer Cap", + "headArmoireBasicArcherCapNotes": "No archer would be complete without a jaunty cap! Increases Perception by <%= per %>. Enchanted Armoire: Basic Archer Set (Item 3 of 3).", "offhand": "skjoldhånds-udstyr", "shieldBase0Text": "Intet Skjoldhånds-udstyr", "shieldBase0Notes": "Intet skjold eller andet våben.", @@ -653,6 +696,12 @@ "shieldSpecialWinter2016WarriorNotes": "Use this sled to block attacks, or ride it triumphantly into battle! Increases Constitution by <%= con %>. Limited Edition 2015-2016 Winter Gear.", "shieldSpecialWinter2016HealerText": "Alfegave", "shieldSpecialWinter2016HealerNotes": "Åbn den åbn den åbn den åbn den åbn den åbn den!!!!!!!!! Øger Konstitution med <%= con %>. Specielt 2015-2016 Vinterudstyr.", + "shieldSpecialSpring2016RogueText": "Fire Bolas", + "shieldSpecialSpring2016RogueNotes": "You've mastered the ball, the club, and the knife. Now you advance to juggling fire! Awoo! Increases Strength <%= str %>. Limited Edition 2016 Spring Gear.", + "shieldSpecialSpring2016WarriorText": "Cheese Wheel", + "shieldSpecialSpring2016WarriorNotes": "You braved fiendish traps to procure this defense-boosting food. Increases Constitution by <%= con %>. Limited Edition 2016 Spring Gear.", + "shieldSpecialSpring2016HealerText": "Floral Buckler", + "shieldSpecialSpring2016HealerNotes": "The April Fool claims this little shield will block Shiny Seeds. Don't believe him. Increases Constitution by <%= con %>. Limited Edition 2016 Spring Gear.", "shieldMystery201601Text": "Resolution Slayer", "shieldMystery201601Notes": "This blade can be used to parry away all distractions. Confers no benefit. January 2016 Subscriber Item.", "shieldMystery301405Text": "Urskjold", @@ -665,6 +714,8 @@ "shieldArmoireRoyalCaneNotes": "Hooray for the ruler, worthy of song! Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Royal Set (Item 2 of 3).", "shieldArmoireDragonTamerShieldText": "Dragetæmmerskjold", "shieldArmoireDragonTamerShieldNotes": "Distract enemies with this dragon-shaped shield. Increases Perception by <%= per %>. Enchanted Armoire: Dragon Tamer Set (Item 2 of 3).", + "shieldArmoireMysticLampText": "Mystic Lamp", + "shieldArmoireMysticLampNotes": "Light the darkest caves with this mystic lamp! Increases Perception by <%= per %>. Enchanted Armoire: Independent Item.", "back": "Ryg-udstyr", "backBase0Text": "Intet Ryg-udstyr", "backBase0Notes": "Intet Ryg-udstyr.", @@ -680,6 +731,8 @@ "backMystery201507Notes": "Surf fra Forhalingens Kaj og rid på bølgerne i Ufærdighedsbugten! Giver ingen bonusser. Juli 2015 Abonnentting.", "backMystery201510Text": "Goblinhale", "backMystery201510Notes": "Prehensile and powerful! Confers no benefit. October 2015 Subscriber Item.", + "backMystery201602Text": "Hjerteknuserkappe", + "backMystery201602Notes": "With a swish of your cape, your enemies fall before you! Confers no benefit. February 2016 Subscriber Item.", "backSpecialWonderconRedText": "Mægtig Kappe", "backSpecialWonderconRedNotes": "Rasler af styrke og skønhed. Giver ingen bonusser. Specielt Messeudstyr.", "backSpecialWonderconBlackText": "Lusket Kappe", @@ -726,8 +779,16 @@ "headAccessorySpecialSpring2015MageNotes": "Disse ører lytter intenst, hvis der nu skulle være en magiker i gang med at afsløre hemmeligheder et sted. Giver ingen bonusser. Specielt 2015 Forårsudstyr.", "headAccessorySpecialSpring2015HealerText": "Grønne Katteører", "headAccessorySpecialSpring2015HealerNotes": "Disse nuttede katteører gør andre grønne af misundelse. Giver ingen bonusser. Specielt 2015 Forårsudstyr.", + "headAccessorySpecialSpring2016RogueText": "Green Dog Ears", + "headAccessorySpecialSpring2016RogueNotes": "With these, you can keep track of tricky Mages even if they turn invisible! Confers no benefit. Limited Edition 2016 Spring Gear.", + "headAccessorySpecialSpring2016WarriorText": "Red Mouse Ears", + "headAccessorySpecialSpring2016WarriorNotes": "To better hear your theme song across clamorous battlefields. Confers no benefit. Limited Edition 2016 Spring Gear.", + "headAccessorySpecialSpring2016MageText": "Yellow Cat Ears", + "headAccessorySpecialSpring2016MageNotes": "These sharp ears can detect the minute hum of ambient Mana, or the muted footfalls of a Rogue. Confers no benefit. Limited Edition 2016 Spring Gear.", + "headAccessorySpecialSpring2016HealerText": "Purple Bunny Ears", + "headAccessorySpecialSpring2016HealerNotes": "They stand like flags above the fray, letting others know where to run for help. Confers no benefit. Limited Edition 2016 Spring Gear.", "headAccessoryBearEarsText": "Bjørneører", - "headAccessoryBearEarsNotes": "Disse ører får dig til at ligne en kælen bjørn! Giver ingen bonusser.", + "headAccessoryBearEarsNotes": "These ears make you look like a brave bear! Confers no benefit.", "headAccessoryCactusEarsText": "Kaktusører", "headAccessoryCactusEarsNotes": "Disse ører får dig til at ligne en prikkende kaktus! Giver ingen bonusser.", "headAccessoryFoxEarsText": "Ræveører", @@ -754,6 +815,8 @@ "headAccessoryMystery201510Notes": "These fearsome horns are slightly slimy. Confers no benefit. October 2015 Subscriber Item.", "headAccessoryMystery301405Text": "Hoved-goggles", "headAccessoryMystery301405Notes": "\"Briller er til øjnene,\" sagde de. \"Ingen vil have briller, som du kun kan have på hovedet,\" sagde de. Ha! Dér viste du dem! Giver ingen bonusser. August 3015 Abonnentting.", + "headAccessoryArmoireComicalArrowText": "Comical Arrow", + "headAccessoryArmoireComicalArrowNotes": "This whimsical item doesn't provide a stat boost, but it sure is good for a laugh! Confers no benefit. Enchanted Armoire: Independent Item.", "eyewear": "Øjenbeklædning", "eyewearBase0Text": "Ingen Øjenbeklædning", "eyewearBase0Notes": "Ingen Øjenbeklædning.", diff --git a/common/locales/da/generic.json b/common/locales/da/generic.json index 4256e00f04..e51d3c83b5 100644 --- a/common/locales/da/generic.json +++ b/common/locales/da/generic.json @@ -116,7 +116,7 @@ "audioTheme_luneFoxTheme": "Lunefox' Tema", "askQuestion": "Stil et Spørgsmål", "reportBug": "Rapporter en Fejl", - "HabiticaWiki": "The Habitica Wiki", + "HabiticaWiki": "Habitica Wikien", "HabiticaWikiFrontPage": "http://habitica.wikia.com/wiki/Habitica_Wiki", "contributeToHRPG": "Bidrag til Habitica", "overview": "Oversigt for Nye Brugere", @@ -137,6 +137,8 @@ "achievementStressbeastText": "Var med til at overvinde Det Afskyelige Stressbæst i 2014 Vintereventyr-eventet!", "achievementBurnout": "Trivselsmarkernes Redning", "achievementBurnoutText": "Var med til at overvinde Udbrand og genskabe Udmattelsesånderne i Efterårsfestival-eventet 2015!", + "achievementBewilder": "Savior of Mistiflying", + "achievementBewilderText": "Helped defeat the Be-Wilder during the 2016 Spring Fling Event!", "checkOutProgress": "Tjek mine fremskridt i Habitica!", "cardReceived": "Modtog et kort!", "cardReceivedFrom": "<%= cardType %> fra <%= userName %>", @@ -158,7 +160,7 @@ "thankyou3": "Jeg er virkelig taknemmelig - tak!", "thankyouCardAchievementTitle": "Temmelig Taknemmelig", "thankyouCardAchievementText": "Tak for at være taknemmelig! Har sendt eller modtaget <%= cards %> Takkekort.", - "birthdayCard": "Birthday Card", + "birthdayCard": "Fødselsdagskort", "birthdayCardExplanation": "You both receive the Birthday Bonanza achievement!", "birthdayCardNotes": "Send a birthday card to a party member.", "birthday0": "Happy birthday to you!", @@ -175,5 +177,6 @@ "hatchPetShare": "Jeg har udklækket et nyt kæledyr ved at færdiggøre opgaver i mit virkelige liv!", "raisePetShare": "Jeg opdrættede et kæledyr til et ridedyr ved at færdiggøre opgaver i mit virkelige liv!", "wonChallengeShare": "Jeg har vundet en udfordring i Habitica!", - "achievementShare": "Jeg har opnået en ny præstation i Habitica!" + "achievementShare": "Jeg har opnået en ny præstation i Habitica!", + "orderBy": "Order By <%= item %>" } \ No newline at end of file diff --git a/common/locales/da/groups.json b/common/locales/da/groups.json index de4e22b0c5..19b85aa871 100644 --- a/common/locales/da/groups.json +++ b/common/locales/da/groups.json @@ -1,5 +1,5 @@ { - "tavern": "Værtshus", + "tavern": "Tavern Chat", "innCheckOut": "Forlad Kroen", "innCheckIn": "Slap af på Kroen", "innText": "Du hviler på Kroen. Mens du hviler på Kroen tager du ikke skade fra Daglige, men de bliver stadig nulstillet hver dag. Advarsel: Hvis du deltager i en Boss Quest vil du stadig tage skade fra de Daglige de andre i gruppen ikke får udført, med mindre de også er på Kroen. Derudover kan du ikke skade Bossen eller samle ting før du forlader Kroen.", @@ -101,7 +101,7 @@ "inbox": "Indbakke", "abuseFlag": "Anmeld overtrædelse af Retningslinjer for Fællesskabet", "abuseFlagModalHeading": "Anmeld <%= name %> for overtrædelse?", - "abuseFlagModalBody": "Er du sikker på at du vil anmelde denne besked? Du skal KUN anmelde en besked, der overtræder <%= firstLinkStart %>Retningslinjer for Fællesskabet<%= linkEnd %> og/eller <%= secondLinkStart %>Betingelser og Vilkår<%= linkEnd %>. Hvis du anmelder en besked for andre ting end disse har du selv brudt Retningslinjer for Fællesskabet og kan få en overtrædelse. Passende grunde til at anmelde en besked inkluderer, men er ikke begrænset til:


", + "abuseFlagModalBody": "Are you sure you want to report this post? You should ONLY report a post that violates the <%= firstLinkStart %>Community Guidelines<%= linkEnd %> and/or <%= secondLinkStart %>Terms of Service<%= linkEnd %>. Inappropriately reporting a post is a violation of the Community Guidelines and may give you an infraction. Appropriate reasons to flag a post include but are not limited to:

", "abuseFlagModalButton": "Anmeld Overtrædelse", "abuseReported": "Tak for at anmelde denne overtrædelse. Moderatorerne er blevet informeret.", "abuseAlreadyReported": "Du har allerede anmeldt denne besked.", @@ -147,5 +147,9 @@ "partyChatEmpty": "Din gruppechat er tom! Skriv en besked i boksen ovenover for at begynde at chatte.", "guildChatEmpty": "Denne klanchat er tom! Skriv en besked i boksen ovenover for at begynde at chatte.", "possessiveParty": "<%= name %>s Gruppe", - "requestAcceptGuidelines": "Hvis du gerne vil skrive beskeder i Værtshuset, din gruppe eller en klan, skal du først læse vores <%= linkStart %>Retningslinjer for Fællesskabet<%= linkEnd %> og så klikke på knappen under for at indikere at du accepterer dem." + "requestAcceptGuidelines": "Hvis du gerne vil skrive beskeder i Værtshuset, din gruppe eller en klan, skal du først læse vores <%= linkStart %>Retningslinjer for Fællesskabet<%= linkEnd %> og så klikke på knappen under for at indikere at du accepterer dem.", + "partyUpName": "Party Up", + "partyOnName": "Party On", + "partyUpAchievement": "Joined a Party with another person! Have fun battling monsters and supporting each other.", + "partyOnAchievement": "Joined a Party with at least four people! Enjoy your increased accountability as you unite with your friends to vanquish your foes!" } \ No newline at end of file diff --git a/common/locales/da/limited.json b/common/locales/da/limited.json index 7bb43340de..0721539efe 100644 --- a/common/locales/da/limited.json +++ b/common/locales/da/limited.json @@ -67,6 +67,10 @@ "witchyWizardSet": "Forheksende Heks (Magiker)", "mummyMedicSet": "Mumie-mediciner (Helbreder)", "vampireSmiterSet": "Vampyrjæger (Slyngel)", + "bewareDogSet": "Beware Dog (Warrior)", + "magicianBunnySet": "Magician's Bunny (Mage)", + "comfortingKittySet": "Comforting Kitty (Healer)", + "sneakySqueakerSet": "Sneaky Squeaker (Rogue)", "fallEventAvailability": "Tilgængelig indtil 31. oktober", "winterEventAvailability": "Tilgængelig indtil 31. december" } \ No newline at end of file diff --git a/common/locales/da/npc.json b/common/locales/da/npc.json index 438ab8f177..191b732a0e 100644 --- a/common/locales/da/npc.json +++ b/common/locales/da/npc.json @@ -35,7 +35,7 @@ "amazonInstructions": "Klik på knappen for at betale med Amazon Payments", "paymentMethods": "Køb med", "classGear": "Klasseudstyr", - "classGearText": "Først: Lad være med at panikke! Dit gamle udstyr er nu i dit inventar, og du er nu iført dit <%= klass %>-lærlingeudstyr. At være iført din klasses udstyr giver 50% bonus til stats. Du kan dog stadig skifte tilbage til dit gamle udstyr hvis du vil.", + "classGearText": "First: don't panic! Your old gear is in your inventory, and you're now wearing the apprentice equipment of your new class. Wearing your class's gear grants you a 50% bonus to stats. However, feel free to switch back to your old gear.", "classStats": "Dette er din klasses stats, som påvirker dit spil. Hver gang du går et niveau op får du et point som du kan tildele til en stat. Hold musen over hver stat for mere information.", "autoAllocate": "Tildel automatisk", "autoAllocateText": "Hvis 'tildel automatisk' er markeret vil din avatars attributter stige automatisk baseret på dine opgavers attributter, hvilket du kan finde i Opgave > Ret > Avanceret > Attributter. Hvis du for eksempel dyrker motion ofte, og din Daglige 'Motion' er sat til 'Fysisk' vil du automatisk gå på i Styrke.", @@ -45,7 +45,7 @@ "moreClass": "For mere information om klassesystemet, se", "tourWelcome": "Velkommen til Habitica! Dette er din To-Do-liste. Markér en opgave for at fortsætte!", "tourExp": "Godt klaret! Når du markerer en opgave får du Erfaring og Guld!", - "tourDailies": "Denne kolonne er til Daglige opgaver. Her indtaster du en opgave, som skal løses hver dag! Eksempler: Red sengen, Brug tandtråd, Læs arbejdsemails", + "tourDailies": "This column is for Daily tasks. To proceed, enter a task you should do every day! Sample Dailies: Make Bed, Floss, Check Work Email", "tourCron": "Flot! Dine Daglige vil nulstille hver dag.", "tourHP": "Pas på! Hvis du ikke færdiggør en Daglig før midnat, vil den skade dig!", "tourHabits": "Denne kolonne er til gode og dårlige Vaner som du udfører flere gange om dagen! For at fortsætte skal du trykke på blyanten for at rette navnene, derefter fluebenet for at gemme.", diff --git a/common/locales/da/pets.json b/common/locales/da/pets.json index ad80c030d6..4e8997694c 100644 --- a/common/locales/da/pets.json +++ b/common/locales/da/pets.json @@ -19,6 +19,7 @@ "orca": "Spækhugger", "royalPurpleGryphon": "Royal Lilla Grif", "phoenix": "Føniks", + "bumblebee": "Bumblebee", "rarePetPop1": "Klik på den gyldne pote for at læse om, hvordan du kan opnå dette sjældne kæledyr ved at bidrage til Habitica!", "rarePetPop2": "Sådan får du dette kæledyr!", "potion": "<%= potionType %> Eliksir", @@ -40,7 +41,7 @@ "stableBeastMasterProgress": "Dyretæmmerfremskridt: <%= number %> Kæledyr fundet", "beastAchievement": "Du har opnået \"Dyretæmmer\"-præstationen ved at samle alle kæledyr!", "beastMasterName": "Dyretæmmer", - "beastMasterText": "Has found all 90 pets (incredibly difficult, congratulate this user!)", + "beastMasterText": "Har fundet alle 90 kæledyr (sindsoprivende vanskeligt, lykønsk denne bruger!)", "beastMasterText2": "og har sluppet deres kæledyr fri <%= count %> gang(e)", "mountMasterProgress": "Ridemesterfremskridt", "stableMountMasterProgress": "Ridemesterfremskridt: <%= number %> Ridedyr tæmmet", diff --git a/common/locales/da/quests.json b/common/locales/da/quests.json index c6314d3299..dc956de97f 100644 --- a/common/locales/da/quests.json +++ b/common/locales/da/quests.json @@ -38,7 +38,7 @@ "bossDmg2": "Kun deltagere vil kæmpe mod bossen og få del i quest-byttet.", "bossDmg1Broken": "For at skade en boss skal du færdiggøre dine Daglige og To-Dos. Jo mere skade du gør på opgaver, des mere skade tager Bossen (færdiggørelse af røde opgaver, Magikeres fortryllelser, Krigeres angreb osv.)... Bossen vil give skade til alle quest-deltagere for hver Daglig du springer over (ganget med bossens Styrke) oveni din sædvanlige skade, så hold din gruppe i live ved at færdiggøre dine Daglige... Al skade på og fra bossen bliver opgjort ved cron (når din dag skifter)...", "bossDmg2Broken": "Kun deltagere vil kæmpe mod bossen og få del i quest-byttet...", - "tavernBossInfo": "Færdiggør dine Daglige og To-Dos og scor positive Vaner for at skade Verdensbossen! Ufærdige Daglige vil fylde Udmattelsesangrebsmåleren. Når Udmattelsesangrebsmåleren er fyldt vil Verdensbossen angribe en NPC. En Verdensboss vil aldrig skade individuelle spillere eller konti på nogen måde. Kun aktive konti, der ikke hviler på kroen, tæller med i beregningerne.", + "tavernBossInfo": "Complete Dailies and To-Dos and score positive Habits to damage the World Boss! Incomplete Dailies fill the Rage Bar. When the Rage 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": "Færdiggør dine Daglige og To-Dos og scor positive Vaner for at skade Verdensbossen! Ufærdige Daglige vil fylde Udmattelsesangrebsmåleren. Når Udmattelsesangrebsmåleren er fyldt vil Verdensbossen angribe en NPC. En Verdensboss vil aldrig skade individuelle spillere eller konti på nogen måde. Kun aktive konti, der ikke hviler på kroen, tæller med i beregningerne.", "bossColl1": "Udfør dine positive opgaver for at samle ting. Quest-ting dropper som normale ting, men du vil ikke se drops før næste dag, hvor alt hvad du har fundet vil blive opgjort og lagt i bunken.", "bossColl2": "Kun deltagere kan samle ting og få del i quest-byttet.", diff --git a/common/locales/da/questscontent.json b/common/locales/da/questscontent.json index 5eba132be4..07a7061a87 100644 --- a/common/locales/da/questscontent.json +++ b/common/locales/da/questscontent.json @@ -1,11 +1,11 @@ { "questEvilSantaText": "Pelsjægerjulemand", - "questEvilSantaNotes": "You hear agonized roars deep in the icefields. You follow the growls - punctuated by the sound of cackling - to a clearing in the woods, where you see a fully-grown polar bear. She's caged and shackled, fighting for her life. Dancing atop the cage is a malicious little imp wearing a castaway costume. Vanquish Trapper Santa, and save the beast!", - "questEvilSantaCompletion": "Trapper Santa squeals in anger, and bounces off into the night. The grateful she-bear, through roars and growls, tries to tell you something. You take her back to the stables, where Matt Boch the Beast Master listens to her tale with a gasp of horror. She has a cub! He ran off into the icefields when mama bear was captured.", + "questEvilSantaNotes": "Du hører smertefulde brøl fra issletterne. Du følger lydene - der er afbrudt af en kaglende latter - til en lysning i skoven, hvor du ser en fuldvoksen isbjørn. Hun er buret inde og i kæder, og kæmper for livet. Dansende på toppen af buret kan du se en ondskabsfuld lille skabning iført kasserede julekostumer. Besejr Pelsjægerjulemanden og red bjørnen!", + "questEvilSantaCompletion": "Pelsjægerjulemanden skriger i vrede og løber bort i natten. Den taknemmelige hunbjørn forsøger gennem brøl og knurren at fortælle dig noget. Du tager hende med tilbage til stalden hvor Matt Boch, Hviskeren, lytter til hendes historie med et rædselsslagent gisp. Hun har en unge! Han løb ud på issletterne da bjørnemor blev fanget. Hjælp hende med at redde hendes barn!", "questEvilSantaBoss": "Pelsjægerjulemand", "questEvilSantaDropBearCubPolarMount": "Isbjørn (Ridedyr)", "questEvilSanta2Text": "Find Bjørneungen", - "questEvilSanta2Notes": "When Trapper Santa captured the polar bear mount, her cub ran off into the icefields. You hear twig-snaps and snow crunch through the crystalline sound of the forest. Paw prints! You start racing to follow the trail. Find all the prints and broken twigs, and retrieve the cub!", + "questEvilSanta2Notes": "Da pelsjægeren fangede Isbjørneridedyret løb hendes unge ud på issletterne. Du kan høre grene knække og sne knirke gennem den krystalklare lyd af skoven. Poteaftryk! I begynder begge at løbe for at følge sporet. Find alle sporene og de brækkede grene, og hent ungen!", "questEvilSanta2Completion": "Du har fundet ungen! Den vil holde dig med selskab til evig tid.", "questEvilSanta2CollectTracks": "Spor", "questEvilSanta2CollectBranches": "Brækkede Grene", @@ -36,7 +36,7 @@ "questRatUnlockText": "Åbner for køb at rotteæg på Markedet", "questOctopusText": "Blækthulhu Vågner", "questOctopusNotes": "@Urse, en ung skriver med vide øjne, har bedt om jeres hjælp til at udforske en mystisk hule ved kysten. Mellem de tusmørkefarvede tidevandssøer står en massiv port af stalaktitter og stalagmitter. Da I nærmer jer porten, begynder en mørk malstrøm at dannes ved foden af den. I stirrer i frygt på den blæksprutteagtige drage, der rejser sig fra dybet. \"Den klistrede stjerneyngel er vågnet,\" råber @Urse, fuld af galskab. \"Efter uendeligt mange år er den store Blækthulhu genopstået, og er glubende sulten efter lækkerier!\"", - "questOctopusCompletion": "With a final blow, the creature slips away into the whirlpool from which it came. You cannot tell if @Urse is happy with your victory or saddened to see the beast go. Wordlessly, your companion points to three slimy, gargantuan eggs in a nearby tidepool, set in a nest of gold coins. \"Probably just octopus eggs,\" you say nervously. As you return home, @Urse frantically scribbles in a journal and you suspect this is not the last time you will hear of the great Octothulu.", + "questOctopusCompletion": "Med et sidste stød forsvinder skabningen ned i den malstrøm den kom fra. I kan ikke finde ud af, om @Urse er glad for jeres sejr eller trist over at se monstret forsvinde. Uden ord peger jeres følgesvend på tre gigantiske slimede æg i en nærliggende tidevandssø, liggende på en rede af guldmønter. \"Sikkert bare blæksprutteæg,\" siger du nervøst. Da I vender hjem skriver @Urse desperat i en dagbog, og du mistænker, at det nok ikke er sidste gang du vil se noget til den store Blækthulhu.", "questOctopusBoss": "Blækthulhu", "questOctopusDropOctopusEgg": "Blæksprutte (Æg)", "questOctopusUnlockText": "Åbner for køb at blæksprutteæg på Markedet", @@ -59,7 +59,7 @@ "questSpiderDropSpiderEgg": "Edderkop (Æg)", "questSpiderUnlockText": "Åbner for køb at edderkoppeæg på Markedet", "questVice1Text": "Last, del 1: Befri dig selv fra Dragens indflydelse.", - "questVice1Notes": "

De siger, at der bor en forfærdelig ondskab i grotterne i Habiticabjerget. Et monster, hvis blotte tilstedeværelse skader stærke heltes virkestyrke, og styrer dem mod dårlige vaner og dovenskab! Bæstet er en stor og kraftfuld drage, lavet af skyggerne selv: Last, den upålidelige Skyggedrage. Modige Habitikanere, rejs jer og bekæmp dette farlige bæst én gang for alle, men kun hvis du tror på, at du kan modstå dens store kraft.

Last, del 1:

Hvordan kan du tro, at du kan bekæmpe bæstet når det allerede har magten over dig? Bliv ikke offer for dovenskab og laster! Arbejd hårdt for at bekæmpe dragens mørke indflydelse og fordriv dens magt over dig!

", + "questVice1Notes": "

They say there lies a terrible evil in the caverns of Mt. Habitica. A monster whose presence twists the wills of the strong heroes of the land, turning them towards bad habits and laziness! The beast is a grand dragon of immense power and comprised of the shadows themselves: Vice, the treacherous Shadow Wyrm. Brave Habiteers, stand up and defeat this foul beast once and for all, but only if you believe you can stand against its immense power.

Vice Part 1:

How can you expect to fight the beast if it already has control over you? Don't fall victim to laziness and vice! Work hard to fight against the dragon's dark influence and dispel his hold on you!

", "questVice1Boss": "Lasts Skygge", "questVice1DropVice2Quest": "Last, del 2 (Skriftrulle)", "questVice2Text": "Last, del 2: Find Dragens hule", @@ -74,30 +74,30 @@ "questVice3DropDragonEgg": "Drage (Æg)", "questVice3DropShadeHatchingPotion": "Skygge-udrugningseliksir", "questMoonstone1Text": "Månestenskæden, Del 1: Månestenskæden", - "questMoonstone1Notes": "

En forfærdelig lidelse har ramt Habitikanerne. Dårlige Vaner længe anset som døde vender tilbage for at få hævn. Tallerkner står uvaskede, lærebøger forbliver ulæst, og overpringshandlingerne løber løbsk!


Du opsporer nogle af dine egne tilbagevendte Dårlige Vaner til Stilstandsmosen og opdager den virkelige fjende: den spøgelsesagtige Nekromantiker Recidivit. Du skynder dig ind svingende med dine våben, men de glider nytteløst gennem hendes spøgelsesform.


\"Glem det,\" hvæser hun med hæs stemme. \"Uden en månestenskæde kan intet skade mig - og mesterguldsmeden @aurakami spredte alle månestenene over hele Habitica for længe siden!\" Gispende trækker du dig tilbage... men du ved, hvad du skal gøre nu.

", + "questMoonstone1Notes": "A terrible affliction has struck Habiticans. Bad Habits thought long-dead are rising back up with a vengeance. Dishes lie unwashed, textbooks linger unread, and procrastination runs rampant!

You track some of your own returning Bad Habits to the Swamps of Stagnation and discover the culprit: the ghostly Necromancer, Recidivate. You rush in, weapons swinging, but they slide through her specter uselessly.

\"Don’t bother,\" she hisses with a dry rasp. \"Without a chain of moonstones, nothing can harm me – and master jeweler @aurakami scattered all the moonstones across Habitica long ago!\" Panting, you retreat... but you know what you must do.", "questMoonstone1CollectMoonstone": "Månesten", "questMoonstone1DropMoonstone2Quest": "Månestenskæden, del 2: Nekromantikeren Recidivit (Skriftrulle)", "questMoonstone2Text": "Månestenskæden Del 2: Nekromantikeren Recidivit", - "questMoonstone2Notes": "

Den modige våbenmager @Inventrix hjælper dig med at lave en kæde af fortryllede månesten. Du er nu endelig klar til at konfrontere Recidivit, men da du når til Stilstandsmosen får du kuldegysninger.


En rådden ånde hvisker dig i øret. \"Allerede tilbage? Hvor heldigt...\" Du vender dig og angriber, og i månestenskædens lys rammer dit våben endelig noget solidt. \"Du har måske hevet mig tilbage til denne verden igen,\" hvæser Recidivit, \"men nu er det tid til, at du forlader den!\"

", + "questMoonstone2Notes": "The brave weaponsmith @Inventrix helps you fashion the enchanted moonstones into a chain. You’re ready to confront Recidivate at last, but as you enter the Swamps of Stagnation, a terrible chill sweeps over you.

Rotting breath whispers in your ear. \"Back again? How delightful...\" You spin and lunge, and under the light of the moonstone chain, your weapon strikes solid flesh. \"You may have bound me to the world once more,\" Recidivate snarls, \"but now it is time for you to leave it!\"", "questMoonstone2Boss": "Nekromantikeren", "questMoonstone2DropMoonstone3Quest": "Månestenskæden, del 3: Recidivit Transformeret (Skriftrulle)", "questMoonstone3Text": "Månestenskæden Del 3: Recidivit Transformeret", - "questMoonstone3Notes": "

Recidivit falder om, og du slår hende med månestenskæden. Men til din store skræk tager Recidivit kæden fra dig, og hendes øjne lyser af triumf.


\"Fjollede kød-skabninger!\" råber hun. \"Disse månesten vil give mig min fysiske form tilbage, ja, men ikke som du regnede med. Som månen går fra ny til fuld, på samme måde vender min magt tilbage, og jeg kan nu fremmane din værste fjende fra skyggerne!\"


En sygeligt grøn tåge rejser sig fra mosen, og Recidivits krop vrider og drejer sig til en form, der fylder dig med ren frygt - den udøde krop af Last, genfødt på forfærdelig vis.

", - "questMoonstone3Completion": "

Dit åndedræt kommer i stød, og sveden stikker i dine øjne da den uddøde Drage kollapser. Resterne af Recidivit fordamper til en tynd grå tåge, der hurtigt forsvinder da en forfriskende brise pludselig blæser ind, og i det fjerne kan du høre kampråbene fra Habitikanere, der besejrer deres Dårlige Vaner én gang for alle.


Dyretæmmeren @Baconsaur kommer flyvende på en grif. \"Jeg så slutningen af kampen fra luften, og jeg blev helt rørt. Tag denne fortryllede tunika - dit mod viser, at du har et nobelt hjerte, og jeg tror, at det er meningen, at du skal have den.\"

", + "questMoonstone3Notes": "Recidivate crumples to the ground, and you strike at her with the moonstone chain. To your horror, Recidivate seizes the gems, eyes burning with triumph.

\"Foolish creature of flesh!\" she shouts. \"These moonstones will restore me to a physical form, true, but not as you imagined. As the full moon waxes from the dark, so too does my power flourish, and from the shadows I summon the specter of your most feared foe!\"

A sickly green fog rises from the swamp, and Recidivate’s body writhes and contorts into a shape that fills you with dread – the undead body of Vice, horribly reborn.", + "questMoonstone3Completion": "Your breath comes hard and sweat stings your eyes as the undead Wyrm collapses. The remains of Recidivate dissipate into a thin grey mist that clears quickly under the onslaught of a refreshing breeze, and you hear the distant, rallying cries of Habiticans defeating their Bad Habits for once and for all.

@Baconsaur the beast master swoops down on a gryphon. \"I saw the end of your battle from the sky, and I was greatly moved. Please, take this enchanted tunic – your bravery speaks of a noble heart, and I believe you were meant to have it.\"", "questMoonstone3Boss": "Nekro-Last", "questMoonstone3DropRottenMeat": "Råddent Kød (Mad)", "questMoonstone3DropZombiePotion": "Zombie Udrugningseliksir", "questGoldenknight1Text": "Den Gyldne Ridder, Del 1: Et Alvorsord", - "questGoldenknight1Notes": "

Den Gyldne Ridder har været efter de stakkels Habitikanere. Har du ikke fuldført alle dine Daglige? Har du udført en minus-vane? Hun vil finde enhver grund til at fortælle dig hvordan du bør følge hendes eksempel. Hun er et skinnende eksempel på en perfekt Habitikaner, og du er ikke andet end en fiasko. Det er faktisk ikke særlig sødt gjort! Alle laver fejl. De skal ikke møde sådan en negativ attitude på grund af det. Måske er det på tide, at du samler nogle vidneudsagn fra sårede Habitikanere og tager et alvorsord med Den Gyldne Ridder!

", + "questGoldenknight1Notes": "The Golden Knight has been getting on poor Habiticans' cases. Didn't do all of your Dailies? Checked off a negative Habit? She will use this as a reason to harass you about how you should follow her example. She is the shining example of a perfect Habitican, and you are naught but a failure. Well, that is not nice at all! Everyone makes mistakes. They should not have to be met with such negativity for it. Perhaps it is time you gather some testimonies from hurt Habiticans and give the Golden Knight a stern talking-to!", "questGoldenknight1CollectTestimony": "Vidneudsagn", - "questGoldenknight1DropGoldenknight2Quest": "The Golden Knight Chain Part 2: Gold Knight (Scroll)", + "questGoldenknight1DropGoldenknight2Quest": "Den Gyldne Ridders Kæde, del 2: Gylden Ridder (Skriftrulle)", "questGoldenknight2Text": "Den Gyldne Ridder, Del 2: Gylden Ridder", - "questGoldenknight2Notes": "

Bevæbnet med hundredevis af udtalelser fra Habitikanere konfronterer du endelig Den Gyldne Ridder. En efter en begynder du at læse Habitikanernes klager op for hende. \"Og @Pfeffernusse siger, at din konstante pralen-\" Ridderen løfter hånden for at få dig til at tie stille og fnyser, \"Disse folk er bare misundelige over min succes. I stedet for at klage skulle de tage at arbejde ligeså hårdt som mig! Måske skal jeg vise jer den magt, man kan opnå gennem at være som mig!\" Hun løfter sin morgenstjerne og gør klar til at angribe dig!

", + "questGoldenknight2Notes": "Armed with hundreds of Habitican's testimonies, you finally confront the Golden Knight. You begin to recite the Habitcan's complaints to her, one by one. \"And @Pfeffernusse says that your constant bragging-\" The knight raises her hand to silence you and scoffs, \"Please, these people are merely jealous of my success. Instead of complaining, they should simply work as hard as I! Perhaps I shall show you the power you can attain through diligence such as mine!\" She raises her morningstar and prepares to attack you!", "questGoldenknight2Boss": "Gylden Ridder", "questGoldenknight2DropGoldenknight3Quest": "Den Gyldne Ridders Kæde, del 3: Jernridderen (Skriftrulle)", "questGoldenknight3Text": "Den Gyldne Ridder, Del 3: Jernridderen", - "questGoldenknight3Notes": "

@Jon Arinbjorn råber for at få din opmærksomhed. Efter kampen er en ny skikkelse dukket op. En ridder, dækket af sortplettet jern med et sværd i hånden, går dig langsomt i møde. Den Gyldne Ridder råber til skikkelsen, \"Fader! Nej!\" men ridderen viser ikke tegn til at stoppe. Hun vender sig mod dig og siger, \"Undskyld! Jeg har været et fjols, og alt for selvoptaget til at se hvor ond jeg har været. Men min far er ondere end jeg nogen sinde kunne være. Hvis han ikke bliver stoppet vil han ødelægge os alle. Her, brug min morgenstjerne, og stop Jernridderen!\"

", - "questGoldenknight3Completion": "

Med et tilfredsstillende klang falder Jernridderen på knæ og tilter over. \"Du er ret stærk,\" gisper han. \"Jeg er blevet ydmyget idag.\" Den Gyldne Ridder kommer hen til dig og siger, \"Tusind tak. Jeg tror på, at vi er blevet mere ydmyge efter vores møde med dig. Jeg vil tale med min far og forklare klagerne over os. Vi skal nok også sige undskyld til de andre Habitikanere.\" Hun overvejer lidt, før hun vender sig mod dig igen. \"Her, som vores gave til dig må du beholde min morgenstjerne. Den tilhører nu dig.\"

", + "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!\"", + "questGoldenknight3Completion": "With a satisfying clang, the Iron Knight falls to his knees and slumps over. \"You are quite strong,\" he pants. \"I have been humbled, today.\" The Golden Knight approaches you and says, \"Thank you. I believe we have gained some humility from our encounter with you. I will speak with my father and explain the complaints against us. Perhaps, we should begin apologizing to the other Habiticans.\" She mulls over in thought before turning back to you. \"Here: as our gift to you, I want you to keep my morningstar. It is yours now.\"", "questGoldenknight3Boss": "Jernridderen", "questGoldenknight3DropHoney": "Honning (Mad)", "questGoldenknight3DropGoldenPotion": "Gylden Udrugningseliksir", @@ -112,7 +112,7 @@ "questEggHuntCollectPlainEgg": "Almindelige Æg", "questEggHuntDropPlainEgg": "Almindeligt Æg", "questDilatoryText": "Den Frygtelige Drag'e af Forhaling", - "questDilatoryNotes": "

Vi skulle have lyttet til advarslerne.


Mørke skinnende øjne. Ældgamle skæl. Massive kæber og glinsende tænder. Vi har vækket noget frygteligt fra sprækken på bunden: Den Frygtelige Drag'e af Forhaling! Skrigende Habitikanere flygtede i alle retninger da den fløj op af havet, dens skræmmende lange nakke ragende hundrede meter over vandet, og dens brøl smadrede alle vinduer i nærheden.


\"Det må være den, der trak Forhaling ned!\" råber Lemoness. \"Det var ikke vægten af ignorerede opgaver - de Mørkerøde Daglige tiltrak bare dens opmærksomhed!\"


\"Den er fyldt med magisk energi!\" råber @Baconsaur. \"For at leve så længe må den kunne hele sig selv! Hvordan kan vi besejre den?\"


På samme måde som alle andre bæster - med produktivitet, selvfølgelig! Hurtigt, Habitica, arbejd sammen og kæmp jer gennem jeres opgaver, og vi vil alle bekæmpe dette monster sammen! (Der er ingen grund til at stoppe igangværende quests - vi tror på dine evner til at kæmpe dobbelt!) Det vil ikke angribe os hver især, men jo flere Daglige vi springer over, jo tættere kommer vi på dens Forsømmelsesslag - og jeg kan ikke lide den måde, den ser på Værtshuset...

", + "questDilatoryNotes": "We should have heeded the warnings.

Dark shining eyes. Ancient scales. Massive jaws, and flashing teeth. We've awoken something horrifying from the crevasse: the Dread Drag'on of Dilatory! Screaming Habiticans fled in all directions when it reared out of the sea, its terrifyingly long neck extending hundreds of feet out of the water as it shattered windows with its searing roar.

\"This must be what dragged Dilatory down!\" yells Lemoness. \"It wasn't the weight of the neglected tasks - the Dark Red Dailies just attracted its attention!\"

\"It's surging with magical energy!\" @Baconsaur cries. \"To have lived this long, it must be able to heal itself! How can we defeat it?\"

Why, the same way we defeat all beasts - with productivity! Quickly, Habitica, band together and strike through your tasks, and all of us will battle this monster together. (There's no need to abandon previous quests - we believe in your ability to double-strike!) It won't attack us individually, but the more Dailies we skip, the closer we get to triggering its Neglect Strike - and I don't like the way it's eyeing the Tavern....", "questDilatoryBoss": "Den Frygtelige Drag'e af Forhaling", "questDilatoryBossRageTitle": "Forsømmelsesslag", "questDilatoryBossRageDescription": "Når denne måler er fyldt op vil Den Frygtelige Drag'e af Forhaling gøre stor skade på Habiticas omgivelser", @@ -140,9 +140,9 @@ "questAtom3Notes": "Med et øredøvende skrig og fem lækre oste springende fra dets mund falder Det Snackløse Monster fra hinanden. \"HVORDAN KUNNE DU GØRE DET?\" lyder en dyb stemme fra under vandoverfladen. En kutteklædt blå skikkelse rejser sig fra vandet med en magisk toiletbørste i hånden. Beskidt vasketøj begynder at flyde op til overfladen af søen. \"Jeg er Vaskemagikeren!\" siger han vredt. \"Du er ikke så lidt fræk - du vasker mine lækre beskidte tallerkner, ødelægger mit kæledyr og invaderer mit domæne med så rent tøj på. Gør klar til at møde min slatne magiske anti-vask-vrede!\"", "questAtom3Completion": "Den ondskabsfulde Vaskemagiker er besejret! Rent vasketøj falder i bunker omkring dig. Tingene ser meget bedre ud heromkring. Som du begynder at vade gennem nypressede rustninger spotter du et glimt af metal, og dine øjne falder på en glinsende hjelm. Den originale ejer af denne skinnende ting er måske ukendt, men da du tager den på kan du mærke den varme tilstedeværelse af en gavmild ånd. Ærgerligt at de ikke syede et navneskilt i den.", "questAtom3Boss": "Vaskemagikeren", - "questAtom3DropPotion": "Base Hatching Potion", + "questAtom3DropPotion": "Basis Udrugningseliksir", "questOwlText": "Natuglen", - "questOwlNotes": "Værtshusets lys er tændt til morgengry,
indtil en aften hvor lyset er væk!
Hvordan kan vi nu se hele natten?
@Twitching råber, \"Jeg har brug for kæmpere!
Kan du se Natuglen, stjernefjenden?
Kæmp hurtigt, og sløv ikke ned!
Vi vil fjerne dens skygge fra vores dør,
og lade lyset skinne i natten igen!\"", + "questOwlNotes": "The Tavern light is lit 'til dawn
Until one eve the glow is gone!
How can we see for our all-nighters?
@Twitching cries, \"I need some fighters!
See that Night-Owl, starry foe?
Fight with haste and do not slow!
We'll drive its shadow from our door,
And make the night shine bright once more!\"", "questOwlCompletion": "Natuglen falmer før daggry,
Men selv da føler du et gab.
Måske er det på tide at gå i seng?
Men på din seng er en rede!
En Natugle ved, at det kan være rart
At færdiggøre sit arbejde og blive oppe sent,
Men dine nye kæledyr vil pippe stille
For at fortælle, at det er tid til søvn.", "questOwlBoss": "Natuglen", "questOwlDropOwlEgg": "Ugle (Æg)", @@ -286,10 +286,27 @@ "questSabretoothBoss": "Zombie Sabletandskat", "questSabretoothDropSabretoothEgg": "Sabeltand (Æg)", "questSabretoothUnlockText": "Åbner for køb af sabeltandsæg på Markedet", - "questMonkeyText": "Monstrous Mandrill and the Mischief Monkeys", + "questMonkeyText": "Uhyrlig mandrill and ballademager aberne", "questMonkeyNotes": "The Sloensteadi Savannah is being torn apart by the Monstrous Mandrill and his Mischief Monkeys! They shriek loudly enough to drown out the sound of approaching deadlines, encouraging everyone to avoid their duties and keep monkeying around. Alas, plenty of people ape this bad behavior. If no one stops these primates, soon everyone's tasks will be as red as the Monstrous Mandrill's face!

\"It will take a dedicated adventurer to resist them,\" says @yamato.

\"Quick, let's get this monkey off everyone's backs!\" @Oneironaut yells, and you charge into battle.", "questMonkeyCompletion": "You did it! No bananas for those fiends today. Overwhelmed by your diligence, the monkeys flee in panic. \"Look,\" says @Misceo. \"They left a few eggs behind.\"

@Leephon grins. \"Maybe a well-trained pet monkey can help you as much as the wild ones hinder you!\"", - "questMonkeyBoss": "Monstrous Mandrill", - "questMonkeyDropMonkeyEgg": "Monkey (Egg)", - "questMonkeyUnlockText": "Unlocks purchasable Monkey eggs in the Market" + "questMonkeyBoss": "Monstermandril", + "questMonkeyDropMonkeyEgg": "Abe (Æg)", + "questMonkeyUnlockText": "Åbner for køb af abeæg på Markedet", + "questSnailText": "The Snail of Drudgery Sludge", + "questSnailNotes": "You're excited to begin questing in the abandoned Dungeons of Drudgery, but as soon as you enter, you feel the ground under your feet start to suck at your boots. You look up to the path ahead and see Habiticans mired in slime. @Overomega yells, \"They have too many unimportant tasks and dailies, and they're getting stuck on things that don't matter! Pull them out!\"

\"You need to find the source of the ooze,\" @Pfeffernusse agrees, \"or the tasks that they cannot accomplish will drag them down forever!\"

Pulling out your weapon, you wade through the gooey mud.... and encounter the fearsome Snail of Drudgery Sludge.", + "questSnailCompletion": "You bring your weapon down on the great Snail's shell, cracking it in two, releasing a flood of water. The slime is washed away, and the Habiticans around you rejoice. \"Look!\" says @Misceo. \"There's a small group of snail eggs in the remnants of the muck.\"", + "questSnailBoss": "Snail of Drudgery Sludge", + "questSnailDropSnailEgg": "Snail (Egg)", + "questSnailUnlockText": "Unlocks purchasable Snail eggs in the Market", + "questBewilderText": "The Be-Wilder", + "questBewilderNotes": "The party begins like any other.

The appetizers are excellent, the music is swinging, and even the dancing elephants have become routine. Habiticans laugh and frolic amid the overflowing floral centerpieces, happy to have a distraction from their least-favorite tasks, and the April Fool whirls among them, eagerly providing an amusing trick here and a witty twist there.

As the Mistiflying clock tower strikes midnight, the April Fool leaps onto the stage to give a speech.

“Friends! Enemies! Tolerant acquaintances! Lend me your ears.” The crowd chuckles as animal ears sprout from their heads, and they pose with their new accessories.

“As you know,” the Fool continues, “my confusing illusions usually only last a single day. But I’m pleased to announce that I’ve discovered a shortcut that will guarantee us non-stop fun, without having to deal with the pesky weight of our responsibilities. Charming Habiticans, meet my magical new friend... the Be-Wilder!”

Lemoness pales suddenly, dropping her hors d'oeuvres. “Wait! Don’t trust--”

But suddenly mists are pouring into the room, glittering and thick, and they swirl around the April Fool, coalescing into cloudy feathers and a stretching neck. The crowd is speechless as an monstrous bird unfolds before them, its wings shimmering with illusions. It lets out a horrible screeching laugh.

“Oh, it has been ages since a Habitican has been foolish enough to summon me! How wonderful it feels, to have a tangible form at last.”

Buzzing in terror, the magic bees of Mistiflying flee the floating city, which sags from the sky. One by one, the brilliant spring flowers wither up and wisp away.

“My dearest friends, why so alarmed?” crows the Be-Wilder, beating its wings. “There’s no need to toil for your rewards any more. I’ll just give you all the things that you desire!”

A rain of coins pours from the sky, hammering into the ground with brutal force, and the crowd screams and flees for cover. “Is this a joke?” Baconsaur shouts, as the gold smashes through windows and shatters roof shingles.

PainterProphet ducks as lightning bolts crackle overhead, and fog blots out the sun. “No! This time, I don’t think it is!”

Quickly, Habiticans, don’t let this World Boss distract us from our goals! Stay focused on the tasks that you need to complete so we can rescue Mistiflying -- and hopefully, ourselves.", + "questBewilderCompletion": "The Be-Wilder is DEFEATED!

We've done it! The Be-Wilder lets out a ululating cry as it twists in the air, shedding feathers like falling rain. Slowly, gradually, it coils into a cloud of sparkling mist. As the newly-revealed sun pierces the fog, it burns away, revealing the coughing, mercifully human forms of Bailey, Matt, Alex.... and the April Fool himself.

Mistiflying is saved!

The April Fool has enough shame to look a bit sheepish. “Oh, hm,” he says. “Perhaps I got a little…. carried away.”

The crowd mutters. Sodden flowers wash up on sidewalks. Somewhere in the distance, a roof collapses with a spectacular splash.

“Er, yes,” the April Fool says. “That is. What I meant to say was, I’m dreadfully sorry.” He heaves a sigh. “I suppose it can’t all be fun and games, after all. It might not hurt to focus occasionally. Maybe I’ll get a head start on next year’s pranking.”

Redphoenix coughs meaningfully.

“I mean, get a head start on this year’s spring cleaning!” the April Fool says. “Nothing to fear, I’ll have Habit City in spit-shape soon. Luckily nobody is better than I at dual-wielding mops.”

Encouraged, the marching band starts up.

It isn’t long before all is back to normal in Habit City. Plus, now that the Be-Wilder has evaporated, the magical bees of Mistiflying bustle back to work, and soon the flowers are blooming and the city is floating once more.

As Habiticans cuddle the magical fuzzy bees, the April Fool’s eyes light up. “Oho, I’ve had a thought! Why don’t you all keep some of these fuzzy Bee Pets and Mounts? It’s a gift that perfectly symbolizes the balance between hard work and sweet rewards, if I’m going to get all boring and allegorical on you.” He winks. “Besides, they don’t have stingers! Fool’s honor.”", + "questBewilderCompletionChat": "`The Be-Wilder is DEFEATED!`\n\nWe've done it! The Be-Wilder lets out a ululating cry as it twists in the air, shedding feathers like falling rain. Slowly, gradually, it coils into a cloud of sparkling mist. As the newly-revealed sun pierces the fog, it burns away, revealing the coughing, mercifully human forms of Bailey, Matt, Alex.... and the April Fool himself.\n\n`Mistiflying is saved!`\n\nThe April Fool has enough shame to look a bit sheepish. “Oh, hm,” he says. “Perhaps I got a little…. carried away.”\n\nThe crowd mutters. Sodden flowers wash up on sidewalks. Somewhere in the distance, a roof collapses with a spectacular splash.\n\n“Er, yes,” the April Fool says. “That is. What I meant to say was, I’m dreadfully sorry.” He heaves a sigh. “I suppose it can’t all be fun and games, after all. It might not hurt to focus occasionally. Maybe I’ll get a head start on next year’s pranking.”\n\nRedphoenix coughs meaningfully.\n\n“I mean, get a head start on this year’s spring cleaning!” the April Fool says. “Nothing to fear, I’ll have Habit City in spit-shape soon. Luckily nobody is better than I at dual-wielding mops.”\n\nEncouraged, the marching band starts up.\n\nIt isn’t long before all is back to normal in Habit City. Plus, now that the Be-Wilder has evaporated, the magical bees of Mistiflying bustle back to work, and soon the flowers are blooming and the city is floating once more.\n\nAs Habiticans cuddle the magical fuzzy bees, the April Fool’s eyes light up. “Oho, I’ve had a thought! Why don’t you all keep some of these fuzzy Bee Pets and Mounts? It’s a gift that perfectly symbolizes the balance between hard work and sweet rewards, if I’m going to get all boring and allegorical on you.” He winks. “Besides, they don’t have stingers! Fool’s honor.”", + "questBewilderBossRageTitle": "Beguilement Strike", + "questBewilderBossRageDescription": "When this gauge fills, The Be-Wilder will unleash its Beguilement Strike on Habitica!", + "questBewilderDropBumblebeePet": "Bumblebee (Pet)", + "questBewilderDropBumblebeeMount": "Bumblebee (Mount)", + "questBewilderBossRageMarket": "`The Be-Wilder uses BEGUILEMENT STRIKE!`\n\nOh no! Despite our best efforts, we've gotten distracted by the Be-Wilder’s charming illusions and have forgotten to do some of our Dailies! With a cackling cry, the shining bird beats its wings, raising a swarm of mist around Alex the Merchant. When the fog clears, he has been possessed! “Have some free samples!” he shouts gleefully, and begins to hurl exploding eggs and potions at fleeing Habiticans. Not the most favorable of sales, to be sure.\n\nHurry! Let's stay focused on our Dailies to defeat this monster before it possesses someone else.", + "questBewilderBossRageStables": "`The Be-Wilder uses BEGUILEMENT STRIKE!`\n\nAhh!!! Once again the Be-Wilder has dazzled us into neglecting our Dailies, and now it has attacked Matt the Beast Master! With a swirl of mist, Matt transforms into a terrifying winged creature, and all the pets and mounts howl sadly in their stables. Quickly, stay focused on your tasks to defeat this dastardly distraction!", + "questBewilderBossRageBailey": "`The Be-Wilder uses BEGUILEMENT STRIKE!`\n\nLook out! In the middle of reporting the news, Bailey the Town Crier has been possessed by the Be-Wilder! She lets out an evil, uninformative screech as she rises into the air. Now how will we know what’s going on?\n\nDon't give up... we're so close to defeating this bothersome bird for once and for all!" } \ No newline at end of file diff --git a/common/locales/da/rebirth.json b/common/locales/da/rebirth.json index d5029ed6ca..ca786a86f5 100644 --- a/common/locales/da/rebirth.json +++ b/common/locales/da/rebirth.json @@ -12,7 +12,7 @@ "rebirthInList2": "Udfordringer, Selskabs- og Klanmedlemskaber forbliver.", "rebirthInList3": "Ædelsten, støttetrin og bidragyder-niveauer forbliver.", "rebirthInList4": "Objekter opnået med ædelsten eller drops (såsom kæledyr og ridedyr) forbliver, omend du ikke kan bruge dem før du låser op for dem igen.", - "rebirthInList5": "Limited edition equipment you've purchased can be repurchased, even if its event has ended. To repurchase class-specific equipment, you must first change to the correct class.", + "rebirthInList5": "Særudgaver af udstyr du har købt, kan du købe igen, også selvom deres tilgængelighedsperiode er udløbet. For at genkøbe klassespecifikt udstyr skal du først skifte til den korrekte klasse.", "rebirthEarnAchievement": "Du får også en Præstation for at begynde et nyt eventyr!", "beReborn": "Bliv Genfødt", "rebirthAchievement": "Du har begyndt et nyt eventyr! Dette er Genfødsel nummer <%= number %> for dig, og det højeste Niveau du har opnået er <%= level %>. Hvis du vil slå denne Præstation skal du først begynde et nyt eventyr, når du har opnået et endnu højere Niveau!", diff --git a/common/locales/da/settings.json b/common/locales/da/settings.json index e4dd88d8c8..fb75d23833 100644 --- a/common/locales/da/settings.json +++ b/common/locales/da/settings.json @@ -102,7 +102,7 @@ "invitedParty": "Gruppeinvitation", "invitedGuild": "Klaninvitation", "importantAnnouncements": "Din konto er inaktiv", - "weeklyRecaps": "Oversigt over aktiviteter på din konto den sidste uge", + "weeklyRecaps": "Summaries of your account activity in the past week (Note: this is currently disabled due to performance issues, but we hope to have this back up and sending e-mails again soon!)", "questStarted": "Jeres Quest er Begyndt", "invitedQuest": "Inviteret til Quest", "kickedGroup": "Fjernet fra gruppe", diff --git a/common/locales/da/subscriber.json b/common/locales/da/subscriber.json index 23e1bc8223..ac8418e1ec 100644 --- a/common/locales/da/subscriber.json +++ b/common/locales/da/subscriber.json @@ -4,8 +4,8 @@ "subDescription": "Køb ædelsten for guld, få månedlige mystiske ting, behold din fremskridtshistorik, daglig drop-grænse fordoblet, støt udviklerne. Klik for mere info.", "buyGemsGold": "Køb Ædelsten med Guld", "buyGemsGoldText": "Købmanden Alexander vil sælge dig Ædelsten til en pris på <%= gemCost %> guld pr. ædelsten. Hans månedlige levering er til at starte med begrænset til <%= gemLimit %> Ædelsten pr. måned, men begrænsningen stiger med 5 Ædelsten hver tredje måned med fortsat abonnement, op til et maksimum på 50 Ædelsten pr. måned!", - "retainHistory": "Retain additional history entries", - "retainHistoryText": "Makes completed To-Dos and task history available for longer.", + "retainHistory": "Behold yderligere historik", + "retainHistoryText": "Gør dine færdiggjorte To-Dos og opgavehistorik tilgængelige i længere tid.", "doubleDrops": "Daglig drop-grænse fordoblet", "doubleDropsText": "Fyld din stald hurtigere!", "mysteryItem": "Eksklusive Månedlige Abonnent-varer", @@ -30,7 +30,7 @@ "cancelSub": "Annullér Abonnement", "canceledSubscription": "Abonnement annulleret", "adminSub": "Administratorabonnementer", - "morePlans": "Flere Abonnementer
Kommer Snart", + "morePlans": "More Plans
Coming Soon", "organizationSub": "Privat Organisation", "organizationSubText": "Organisationens medlemmer deltager udenfor resten af Habitica, hvilket gør det mere fokuseret for deltagerne.", "hostingType": "Hostingtype", @@ -97,6 +97,8 @@ "mysterySet201511": "Trækrigersæt", "mysterySet201512": "Vinterflammesæt", "mysterySet201601": "Champion of Resolution Set", + "mysterySet201602": "Heartbreaker Set", + "mysterySet201603": "Lucky Clover Set", "mysterySet301404": "Steampunk Standardsæt", "mysterySet301405": "Steampunk Tilbehørssæt", "mysterySetwondercon": "Wondercon", diff --git a/common/locales/de/backgrounds.json b/common/locales/de/backgrounds.json index f9e6bf8174..78916b57e5 100644 --- a/common/locales/de/backgrounds.json +++ b/common/locales/de/backgrounds.json @@ -2,7 +2,7 @@ "backgrounds": "Ambiente", "backgrounds062014": "Set 1: Veröffentlicht im Juni 2014", "backgroundBeachText": "Strand", - "backgroundBeachNotes": "Sonne dich an einem warmen Strand.", + "backgroundBeachNotes": "Sonne Dich an einem warmen Strand.", "backgroundFairyRingText": "Hexenkreis", "backgroundFairyRingNotes": "Tanze in einem Hexenkreis.", "backgroundForestText": "Wald", @@ -20,22 +20,22 @@ "backgroundDustyCanyonsText": "Staubiger Canyon", "backgroundDustyCanyonsNotes": "Wandere durch einen staubigen Canyon.", "backgroundVolcanoText": "Vulkan", - "backgroundVolcanoNotes": "Wärm dich in einem Vulkan auf.", + "backgroundVolcanoNotes": "Wärm Dich in einem Vulkan auf.", "backgrounds092014": "Set 4: Veröffentlicht im September 2014", "backgroundThunderstormText": "Gewitter", "backgroundThunderstormNotes": "Erzeuge Blitze in einem Gewitter.", "backgroundAutumnForestText": "Herbstwald", "backgroundAutumnForestNotes": "Spaziere durch einen Herbstwald.", "backgroundHarvestFieldsText": "Erntefelder", - "backgroundHarvestFieldsNotes": "Bewirtschafte deine Erntefelder.", + "backgroundHarvestFieldsNotes": "Bewirtschafte Deine Erntefelder.", "backgrounds102014": "Set 5: Veröffentlicht im Oktober 2014", "backgroundGraveyardText": "Friedhof", "backgroundGraveyardNotes": "Besuche einen unheimlichen Friedhof.", "backgroundHauntedHouseText": "Spukhaus", - "backgroundHauntedHouseNotes": "Schleiche dich durch ein Spukhaus.", + "backgroundHauntedHouseNotes": "Schleiche Dich durch ein Spukhaus.", "backgroundPumpkinPatchText": "Kürbisfeld", "backgroundPumpkinPatchNotes": "Schnitze Halloweenkürbisse auf einem Kürbisfeld.", - "backgrounds112014": "SET 6: Veröffentlicht im November 2014", + "backgrounds112014": "Set 6: Veröffentlicht im November 2014", "backgroundHarvestFeastText": "Erntedankfest", "backgroundHarvestFeastNotes": "Feiere Erntedankfest", "backgroundStarrySkiesText": "Sternenhimmel", @@ -49,14 +49,14 @@ "backgroundTwinklyLightsNotes": "Spaziere unter festlich geschmückten Bäumen herum", "backgroundSouthPoleText": "Südpol", "backgroundSouthPoleNotes": "Besuche den eisigen Südpol", - "backgrounds012015": "SET 8: Veröffentlicht im Januar 2015", + "backgrounds012015": "Set 8: Veröffentlicht im Januar 2015", "backgroundIceCaveText": "Eishöhle", "backgroundIceCaveNotes": "Steig in eine Eishöhle hinab.", "backgroundFrigidPeakText": "Eisiger Gipfel", "backgroundFrigidPeakNotes": "Besteige einen eisigen Gipfel.", "backgroundSnowyPinesText": "Verschneite Fichten", "backgroundSnowyPinesNotes": "Suche Zuflucht unter verschneiten Fichten.", - "backgrounds022015": "SET 9: Veröffentlicht im Februar 2015", + "backgrounds022015": "Set 9: Veröffentlicht im Februar 2015", "backgroundBlacksmithyText": "Schmiede", "backgroundBlacksmithyNotes": "Schufte in der Schmiede.", "backgroundCrystalCaveText": "Kristallhöhle", @@ -70,16 +70,16 @@ "backgroundStainedGlassNotes": "Bewundere das Bleiglas.", "backgroundRollingHillsText": "Hügellandschaft", "backgroundRollingHillsNotes": "Tolle durch die Hügellandschaft.", - "backgrounds042015": "SET 11: Erschienen April 2015", + "backgrounds042015": "Set 11: Veröffentlicht im April 2015", "backgroundCherryTreesText": "Kirschbäume", "backgroundCherryTreesNotes": "Bewundere die blühenden Kirschbäume", "backgroundFloralMeadowText": "Blumenwiese", "backgroundFloralMeadowNotes": "Picknicke auf der Blumenwiese", "backgroundGumdropLandText": "Weingummiland", "backgroundGumdropLandNotes": "Nasche ein wenig vom Weingummiland", - "backgrounds052015": "SET 12: Veröffentlicht Mai 2015", - "backgroundMarbleTempleText": "Marmor Tempel", - "backgroundMarbleTempleNotes": "Posiere vor einem Marmor Tempel.", + "backgrounds052015": "Set 12: Veröffentlicht Mai 2015", + "backgroundMarbleTempleText": "Marmortempel", + "backgroundMarbleTempleNotes": "Posiere vor einem Marmortempel.", "backgroundMountainLakeText": "Bergsee", "backgroundMountainLakeNotes": "Tauche Deine Füße in einen Bergsee.", "backgroundPagodasText": "Pagoden", @@ -106,22 +106,22 @@ "backgroundTwinklyPartyLightsText": "Glitzernde Partylichter", "backgroundTwinklyPartyLightsNotes": "Tanze unter glitzernden Partylichtern!", "backgrounds092015": "Set 16: Veröffentlicht im September 2015", - "backgroundMarketText": "Habitica Marktplatz", - "backgroundMarketNotes": "Kaufe im Habitica Marktplatz ein.", - "backgroundStableText": "Habitica Stall", - "backgroundStableNotes": "Pflege Reittiere im Habitica Stall.", - "backgroundTavernText": "Habitica Gasthaus", - "backgroundTavernNotes": "Besuche das Habitica Gasthaus", + "backgroundMarketText": "Habitica-Marktplatz", + "backgroundMarketNotes": "Kaufe im Habitica-Marktplatz ein.", + "backgroundStableText": "Habitica-Stall", + "backgroundStableNotes": "Pflege Reittiere im Habitica-Stall.", + "backgroundTavernText": "Habitica-Gasthaus", + "backgroundTavernNotes": "Besuche das Habitica-Gasthaus", "backgrounds102015": "Set 17: Veröffentlich im Oktober 2015", "backgroundHarvestMoonText": "Erntemond", "backgroundHarvestMoonNotes": "Kichern unter dem Erntemond.", "backgroundSlimySwampText": "Schleimiger Sumpf", - "backgroundSlimySwampNotes": "Wate durch einen Schleimigen Sumpf. ", + "backgroundSlimySwampNotes": "Wate durch einen schleimigen Sumpf.", "backgroundSwarmingDarknessText": "Wimmelnde Dunkelheit", - "backgroundSwarmingDarknessNotes": "Zittre in der Wimmelnden Dunkelheit.", + "backgroundSwarmingDarknessNotes": "Zittre in der wimmelnden Dunkelheit.", "backgrounds112015": "Set 18: Veröffentlicht im November 2015", "backgroundFloatingIslandsText": "Schwebende Inseln", - "backgroundFloatingIslandsNotes": "Hüpfe über die Schwebenden Inseln.", + "backgroundFloatingIslandsNotes": "Hüpfe über die schwebenden Inseln.", "backgroundNightDunesText": "Nachtdünen", "backgroundNightDunesNotes": "Spaziere friedlich durch die Nachtdünen.", "backgroundSunsetOasisText": "Oase im Abendrot", @@ -133,18 +133,32 @@ "backgroundSnowySunriseNotes": "Betrachte den verschneiten Sonnenaufgang.", "backgroundWinterTownText": "Winterliche Stadt", "backgroundWinterTownNotes": "Wusel durch eine winterliche Stadt.", - "backgrounds012016": "SET 20: Veröffentlicht im Januar 2016", + "backgrounds012016": "Set 20: Veröffentlicht im Januar 2016", "backgroundFrozenLakeText": "Gefrorener See", "backgroundFrozenLakeNotes": "Fahre Schlittschuh auf dem gefrorenen See.", "backgroundSnowmanArmyText": "Schneemannarmee", "backgroundSnowmanArmyNotes": "Führe eine Schneemannarmee an.", "backgroundWinterNightText": "Winternacht", "backgroundWinterNightNotes": "Betrachte die Sterne einer Winternacht.", - "backgrounds022016": "SET 21: Released February 2016", - "backgroundBambooForestText": "Bamboo Forest", - "backgroundBambooForestNotes": "Stroll through the Bamboo Forest.", - "backgroundCozyLibraryText": "Cozy Library", - "backgroundCozyLibraryNotes": "Read in the Cozy Library.", - "backgroundGrandStaircaseText": "Grand Staircase", - "backgroundGrandStaircaseNotes": "Stride down the Grand Staircase." + "backgrounds022016": "Set 21: Veröffentlicht im Februar 2016", + "backgroundBambooForestText": "Bambuswald", + "backgroundBambooForestNotes": "Spaziere durch einen Bambuswald.", + "backgroundCozyLibraryText": "Gemütliche Bibliothek", + "backgroundCozyLibraryNotes": "Lies in der gemütlichen Bibliothek.", + "backgroundGrandStaircaseText": "Stattliche Treppe", + "backgroundGrandStaircaseNotes": "Schreite die stattliche Treppe hinab.", + "backgrounds032016": "Set 22: Veröffentlicht im März 2016", + "backgroundDeepMineText": "Tiefe Mine", + "backgroundDeepMineNotes": "Finde wertvolle Metalle in einer tiefen Mine.", + "backgroundRainforestText": "Regenwald", + "backgroundRainforestNotes": "Wage Dich in einen Regenwald.", + "backgroundStoneCircleText": "Steinkreis", + "backgroundStoneCircleNotes": "Wirke Zauber in einem Steinkreis.", + "backgrounds042016": "SET 23: Released April 2016", + "backgroundArcheryRangeText": "Archery Range", + "backgroundArcheryRangeNotes": "Practice on the Archery Range.", + "backgroundGiantFlowersText": "Giant Flowers", + "backgroundGiantFlowersNotes": "Frolic atop Giant Flowers.", + "backgroundRainbowsEndText": "End of the Rainbow", + "backgroundRainbowsEndNotes": "Discover gold at the End of the Rainbow." } \ No newline at end of file diff --git a/common/locales/de/challenge.json b/common/locales/de/challenge.json index ad853d61bf..3204e43d72 100644 --- a/common/locales/de/challenge.json +++ b/common/locales/de/challenge.json @@ -8,7 +8,7 @@ "keepThem": "Behalten", "removeThem": "Entfernen", "challengeCompleted": "Dieser Wettbewerb ist beendet, und gewonnen hat <%= user %>! Was soll mit den verwaisten Aufgaben geschehen?", - "unsubChallenge": "Toter Wettbewerb-Link: Diese Aufgabe war Teil eines Wettbewerbs, aber du hast aufgehört an diesem Wettbewerb teilzunehmen. Was soll mit den verwaisten Aufgaben geschehen?", + "unsubChallenge": "Toter Wettbewerb-Link: Diese Aufgabe war Teil eines Wettbewerbs, aber Du hast aufgehört an diesem Wettbewerb teilzunehmen. Was soll mit den verwaisten Aufgaben geschehen?", "challengeWinner": "Hat die folgenden Wettbewerbe gewonnen", "challenges": "Wettbewerbe", "noChallenges": "Keine Wettbewerbe gefunden, besuche", @@ -16,7 +16,7 @@ "selectWinner": "Wähle einen Gewinner und beende den Wettbewerb.", "deleteOrSelect": "Löschen oder Gewinner wählen", "endChallenge": "Wettbewerb beenden", - "challengeDiscription": "Dies sind die Aufgaben des Wettbewerbs, die deiner Aufgabenseite hinzugefügt werden, wenn du dem Wettbewerb beitrittst. Die untenstehenden Beispielaufgaben ändern ihre Farben und erhalten Graphen, die dir den Gesamtfortschritt der Gruppe zeigen.", + "challengeDiscription": "Dies sind die Aufgaben des Wettbewerbs, die Deiner Aufgabenseite hinzugefügt werden, wenn Du dem Wettbewerb beitrittst. Die untenstehenden Beispielaufgaben ändern ihre Farben und erhalten Graphen, die dir den Gesamtfortschritt der Gruppe zeigen.", "hows": "Wie läuft es bei Euch allen?", "filter": "Filter", "groups": "Gruppen", @@ -34,7 +34,7 @@ "challengeDescr": "Beschreibung", "prize": "Preis", "prizePop": "Wenn jemand Deinen Wettbewerb 'gewinnen' kann, dann kannst Du, wenn Du willst, für den Gewinner einen Edelstein-Preis ausschreiben. Maximal kannst Du alle Edelsteine, die Du hast, ausschreiben (und zusätzlich alle Edelsteine der Gilde, wenn Du die Gilde dieses Wettbewerbes gegründet hast). Achtung: Diese Preise können später nicht mehr geändert werden.", - "prizePopTavern": "Wenn jemand deinen Wettbewerb 'gewinnen' kann, dann kannst du, wenn du willst, für den Gewinner einen Edelstein-Preis ausschreiben. Maximal kannst du alle Edelsteine, die du hast, ausschreiben. Achtung: Diese Preise können später nicht mehr geändert werden und bei Gasthaus-Wettbewerben werden sie nicht ersetzt, wenn der Wettbewerb abgebrochen wird.", + "prizePopTavern": "Wenn jemand Deinen Wettbewerb 'gewinnen' kann, dann kannst Du, wenn Du willst, für den Gewinner einen Edelstein-Preis ausschreiben. Maximal kannst Du alle Edelsteine, die Du hast, ausschreiben. Achtung: Diese Preise können später nicht mehr geändert werden und bei Gasthaus-Wettbewerben werden sie nicht ersetzt, wenn der Wettbewerb abgebrochen wird.", "publicChallenges": "Mindestens 1 Edelstein für öffentliche Wettbewerbe (Das verhindert Spam. Wirklich).", "officialChallenge": "Offizieller Habitica-Wettbewerb", "by": "von", @@ -47,11 +47,11 @@ "sureDelChaTavern": "Willst Du diesen Wetbewerb wirklich löschen? Deine Edelsteine werden nicht erstattet.", "removeTasks": "Aufgabe entfernen", "keepTasks": "Aufgabe behalten", - "closeCha": "Wettbewerb auswählen und...", - "leaveCha": "Wettbewerb verlassen und...", + "closeCha": "Wettbewerb auswählen und ...", + "leaveCha": "Wettbewerb verlassen und ...", "challengedOwnedFilterHeader": "Besitz", - "challengedOwnedFilter": "In deinem Besitz", - "challengedNotOwnedFilter": "Nicht in deinem Besitz", + "challengedOwnedFilter": "In Deinem Besitz", + "challengedNotOwnedFilter": "Nicht in Deinem Besitz", "challengedEitherOwnedFilter": "Beides", "backToChallenges": "Zurück zu allen Wettbewerben", "prizeValue": "<%= gemcount %> <%= gemicon %> Preis", diff --git a/common/locales/de/character.json b/common/locales/de/character.json index 8a81058c0e..8f7f4373e1 100644 --- a/common/locales/de/character.json +++ b/common/locales/de/character.json @@ -1,13 +1,13 @@ { "statsAch": "Werte & Erfolge", "profile": "Profil", - "avatar": "Avatar", + "avatar": "Avatar anpassen", "other": "Anderes", "fullName": "Name", "displayName": "Angezeigter Name", "displayPhoto": "Foto", - "displayBlurb": "Über mich...", - "displayBlurbPlaceholder": "Stelle dich bitte vor", + "displayBlurb": "Über mich ...", + "displayBlurbPlaceholder": "Stelle Dich bitte vor", "photoUrl": "Foto Url", "imageUrl": "Bild Url", "inventory": "Inventar", @@ -34,6 +34,7 @@ "beard": "Bart", "mustache": "Schnurrbart", "flower": "Blume", + "wheelchair": "Wheelchair", "basicSkins": "Normale Hautfarben", "rainbowSkins": "Regenbogen Hautfarben", "pastelSkins": "Pastell Farben", @@ -51,16 +52,16 @@ "classBonusText": "Deine Klasse (Krieger, wenn Du keine andere Klasse freigeschaltet oder gewählt hast) kann ihre eigene Ausrüstung besser nutzen, als die Ausrüstung anderer Klassen. Ausrüstung Deiner aktuellen Klasse verleiht einen 50% größeren Attributbonus als klassenfremde Ausrüstung.", "classEquipBonus": "Klassenbonus", "battleGear": "Kampfausrüstung", - "battleGearText": "Das ist deine Kampfausrüstung; sie beeinflusst Zahlen, wenn du mit deinen Aufgaben interagierst.", + "battleGearText": "Das ist Deine Kampfausrüstung; sie beeinflusst Zahlen, wenn Du mit Deinen Aufgaben interagierst.", "autoEquipBattleGear": "Neue Ausrüstung automatisch verwenden", "costume": "Verkleidung", "costumeText": "Wenn Du das Aussehen einer anderen Ausrüstung Deiner Kampfausrüstung vorziehst, dann klicke auf die \"Verkleidung tragen\" Box um über Deiner Kampfausrüstung andere Ausrüstungsgegenstände zu tragen.", "useCostume": "Verkleidung tragen", - "useCostumeInfo1": "Klicke \"Verkleidung tragen\" an, um deinem Avatar Gegenstände aus deinem Inventar anzuziehen, ohne dass sich das auf die Statuswerte deiner Kampfausrüstung auswirkt! Das bedeutet dass du dich links für die besten Statuswerte ausrüsten kannst, und dich rechts mit deiner Ausrüstung richtig in Schale werfen kannst.", - "useCostumeInfo2": "Wenn du \"Verkleidung tragen\" anklickst, wird dein Avatar erst mal ziemlich einfach aussehen... aber keine Sorge! Wenn du nach linkst guckst, kannst du sehen dass du immer noch mit deine Kampfausrüstung ausgerüstet bist. Jetzt kannst du dich herausputzen! Alles was du rechts anziehst wird deine Statuswerte nicht beeinflussen, aber dir dabei helfen, den perfekten Look zu finden. Probier verschiedene Kombinationen aus, mische verschiedene Sets, und passe dein Kostüm an deine Haustiere, Reittiere und Hintergründe an.

Noch Fragen? Lies auf der Kostümseite in der Wiki nach. Du hast das perfekte Ensemble gefunden? Führe es in der Costume Carnival Gilde oder im Gasthaus vor!", - "gearAchievement": "Du hast den \"Ultimative Ausrüstung\" Erfolg erlangt, indem du die beste Ausrüstung erworben hast! Du hast die folgenden Sets vollständig:", - "moreGearAchievements": "Um mehr Abzeichen „Ultimative Ausrüstung“ zu erhalten, ändere deine Klasse auf deiner Statuswerteseite und kaufe die gesamte Ausrüstung deiner neuen Klasse!", - "armoireUnlocked": "Du hast außerdem den Verzauberten Schrank freigeschaltet! Klicke auf den Verzauberten Schrank um eine zufällige Ausrüstung zu erhalten. Er kann dir auch zufällige Erfahrungspunkte oder Nahrung geben.", + "useCostumeInfo1": "Klicke \"Verkleidung tragen\" an, um Deinem Avatar Gegenstände aus Deinem Inventar anzuziehen, ohne dass sich das auf die Statuswerte Deiner Kampfausrüstung auswirkt! Das bedeutet dass Du Dich links für die besten Statuswerte ausrüsten kannst, und Dich rechts mit Deiner Ausrüstung richtig in Schale werfen kannst.", + "useCostumeInfo2": "Wenn Du \"Verkleidung tragen\" anklickst, wird Dein Avatar erst mal ziemlich einfach aussehen ... aber keine Sorge! Wenn Du nach linkst guckst, kannst Du sehen dass Du immer noch mit Deine Kampfausrüstung ausgerüstet bist. Jetzt kannst Du Dich herausputzen! Alles was Du rechts anziehst wird Deine Statuswerte nicht beeinflussen, aber dir dabei helfen, den perfekten Look zu finden. Probier verschiedene Kombinationen aus, mische verschiedene Sets, und passe Dein Kostüm an Deine Haustiere, Reittiere und Hintergründe an.

Noch Fragen? Lies auf der Kostümseite in der Wiki nach. Du hast das perfekte Ensemble gefunden? Führe es in der Costume Carnival Gilde oder im Gasthaus vor!", + "gearAchievement": "Du hast den Erfolg \"Ultimative Ausrüstung\" erhalten, da Du die beste Ausrüstung erworben hast! Du hast die folgenden Sets vollständig:", + "moreGearAchievements": "Um mehr Abzeichen „Ultimative Ausrüstung“ zu erhalten, ändere Deine Klasse auf Deiner Statuswerteseite und kaufe die gesamte Ausrüstung Deiner neuen Klasse!", + "armoireUnlocked": "Du hast außerdem den Verzauberten Schrank freigeschaltet! Klicke auf den Verzauberten Schrank um eine zufällige Ausrüstung zu erhalten. Er kann Dir auch zufällige Erfahrungspunkte oder Nahrung geben.", "ultimGearName": "Ultimative Ausrüstung", "ultimGearText": "Hat auf die besten Waffen und Rüstung der folgenden Klassen aufgerüstet:", "level": "Level", @@ -82,8 +83,8 @@ "allocatePerPop": "Füge einen Punkt zu Warnehmung hinzu", "allocateInt": "Intelligenzpunkte:", "allocateIntPop": "Füge einen Punkt zu Intelligenz hinzu", - "noMoreAllocate": "Jetzt, da Du Level 100 erreicht hast, wirst Du keine weiteren Attributpunkte erhalten. Du kannst weiterspielen, oder ein neues Abenteuer auf Level 1 anfangen, indem du die Sphäre der Wiedergeburt benutzt. Sie ist jetzt kostenlos auf dem Marktplatz erhältich.", - "stats": "Werte", + "noMoreAllocate": "Jetzt, da Du Level 100 erreicht hast, wirst Du keine weiteren Attributpunkte erhalten. Du kannst weiterspielen, oder ein neues Abenteuer auf Level 1 anfangen, indem Du die Sphäre der Wiedergeburt benutzt. Sie ist jetzt kostenlos auf dem Marktplatz erhältlich.", + "stats": "Statuswerte", "strength": "Stärke", "strengthText": "Stärke erhöht die Wahrscheinlichkeit zufälliger kritischer Treffer und die Rate mit der durch sie Gold, Beute und Erfahrung gewonnen wird. Weiterhin erhöht sich der Schaden an Bossen.", "constitution": "Ausdauer", @@ -124,10 +125,10 @@ "warriorText": "Krieger verursachen mehr und stärkere \"kritische Treffer\", die zufällige Boni auf Gold, Erfahrung und Beute beim Erfüllen einer Aufgabe geben. Sie sind auch sehr stark gegen Bossmonster. Spiele einen Krieger, wenn Dich die Chance auf Belohnungen im Lottogewinn-Stil besonders reizt und Du besonders effektiv gegen Bossmonster sein willst.", "mageText": "Magier lernen geschwind und erhalten Erfahrung und Level schneller als andere Klassen. Sie haben zudem eine große Menge Mana für ihre Fähigkeiten zur Verfügung. Spiele einen Magier, wenn Dich die taktischen Aspekte von Habitica ansprechen, oder wenn Dich schnelles Aufsteigen im Level und Freischalten neuer Features besonders reizt!", "rogueText": "Schurken lieben es Reichtümer anzuhäufen, indem sie mehr Gold als Andere verdienen und geschickt darin sind neue Gegenstände zu finden. Ihre typische Fähigkeit sich im verborgenen zu bewegen erlaubt Dir gelegentlich die Folgen verpasster täglicher Aufgaben zu vermeiden. Spiele einen Schurken, wenn Dich Spielbelohnungen und Erfolge besonders reizen und Du nach Beute und Ehrenabzeichen trachtest!", - "healerText": "Heiler stehen Schaden unbeeindruckt gegenüber und erweitern diesen Schutz auf Andere. Verpasste tägliche Aufgaben und schlechte Angewohnheiten schaden ihnen nicht viel und sie haben Mittel und Wege Lebenspunkte wieder herzustellen. Spiele einen Heiler, wenn Du gerne Anderen in einer Gruppe hilfst, oder wenn es dich besonders reizt, dem Tod durch harte Arbeit zu entkommen!", + "healerText": "Heiler stehen Schaden unbeeindruckt gegenüber und erweitern diesen Schutz auf Andere. Verpasste tägliche Aufgaben und schlechte Angewohnheiten schaden ihnen nicht viel und sie haben Mittel und Wege Lebenspunkte wieder herzustellen. Spiele einen Heiler, wenn Du gerne Anderen in einer Gruppe hilfst, oder wenn es Dich besonders reizt, dem Tod durch harte Arbeit zu entkommen!", "optOutOfClasses": "Noch nicht entscheiden", "optOutOfPMs": "Noch nicht entscheiden", - "optOutOfClassesText": "Du willst keine Klasse oder möchtest dich später entscheiden? Brich jetzt ab und du wirst ein Krieger ohne Spezialfähigkeiten. Du kannst später im Wiki etwas über das Klassensystem lesen und deine Klasse jederzeit unter Benutzer -> Werte aktivieren.", + "optOutOfClassesText": "Du willst keine Klasse oder möchtest Dich später entscheiden? Brich jetzt ab und Du wirst ein Krieger ohne Spezialfähigkeiten. Du kannst später im Wiki etwas über das Klassensystem lesen und Deine Klasse jederzeit unter Benutzer -> Statuswerte aktivieren.", "select": "Auswählen", "stealth": "Schleichen", "stealthNewDay": "Wenn ein neuer Tag beginnt kannst Du dem Schaden von einigen verpassten täglichen Aufgaben entgehen.", @@ -136,7 +137,7 @@ "respawn": "Auferstehen!", "youDied": "Du bist gestorben!", "dieText": "Du hast ein Level, Dein gesamtes Gold und einen zufälliges Teil Deiner Ausrüstung verloren. Erhebe Dich, Habiteer, und versuche es erneut! Gebiete diesen schlechten Gewohnheiten Einhalt, sei gewissenhaft bei der Erfüllung Deiner täglichen Aufgaben und halte Dir den Tod mit Heiltränken vom Leib, wenn Du einmal straucheln solltest!", - "sureReset": "Bist Du sicher? Das wird Deine Klasse zurücksetzen und Du erhältst alle Attributpunkte als freie Punkte zurück. Es kostet 3 Edelsteine", + "sureReset": "Bist Du sicher? Dies wird Deine Klasse und Attributpunkte zurücksetzen (Du erhältst alle Punkte zurück, um sie neu zuzuweisen). Es kostet 3 Edelsteine.", "purchaseFor": "Für <%= cost %> Edelsteine erwerben?", "notEnoughMana": "Nicht genug Mana.", "invalidTarget": "Ungültiges Ziel", @@ -144,14 +145,14 @@ "youCastTarget": "Du wendest <%= spell %> auf <%= target %> an.", "youCastParty": "Du wendest <%= spell %> auf Deine Gruppe an.", "critBonus": "Kritischer Treffer! Bonus:", - "displayNameDescription1": "Dies hier erscheint bei Nachrichten, die Du im Gasthaus, in Gilden und im Gruppen Chat postest, sowie bei deinem Avatar. Gehe zu", + "displayNameDescription1": "Dies hier erscheint bei Nachrichten, die Du im Gasthaus, in Gilden und im Gruppen Chat postest, sowie bei Deinem Avatar. Gehe zu", "displayNameDescription2": "Einstellungen->Seite", - "displayNameDescription3": "und scrolle nach unten zum Registrations-Abschnitt, um deinen Login Namen zu ändern.", + "displayNameDescription3": "und scrolle nach unten zum Registrations-Abschnitt, um Deinen Login Namen zu ändern.", "unequipBattleGear": "Kampfausrüstung ablegen", "unequipCostume": "Kostüm ablegen", "unequipPetMountBackground": "Haustier, Reittier & Hintergrund zurücksetzen", "animalSkins": "Tierhäute", - "chooseClassHeading": "Wähle deine Klasse oder brich ab und entscheide dich später.", + "chooseClassHeading": "Wähle Deine Klasse oder brich ab und entscheide Dich später.", "warriorWiki": "Krieger", "mageWiki": "Magier", "rogueWiki": "Schurke", @@ -160,5 +161,8 @@ "str": "Stärke", "con": "Ausdauer", "per": "Wahrnehmung", - "int": "Intelligenz" + "int": "Intelligenz", + "showQuickAllocation": "Zeige Statuswertverteilung", + "hideQuickAllocation": "Verstecke Statuswertverteilung", + "quickAllocationLevelPopover": "Jedes Level erhältst Du einen Punkt, den Du in ein Attribut Deiner Wahl setzen kannst. Du kannst Deine Punkte manuell verteilen, oder das Spiel entscheiden lassen indem Du eines der vorgegebenen Verteilungsmuster unter Benutzer-> Werte&Erfolge auswählst." } \ No newline at end of file diff --git a/common/locales/de/communityguidelines.json b/common/locales/de/communityguidelines.json index 391f2131e7..2f1ad75af8 100644 --- a/common/locales/de/communityguidelines.json +++ b/common/locales/de/communityguidelines.json @@ -2,16 +2,16 @@ "iAcceptCommunityGuidelines": "Ich willige ein, mich an die Community-Richtlinien zu halten", "tavernCommunityGuidelinesPlaceholder": "Freundliche Erinnerung: Dieser Chat ist für alle Altersgruppen, also bitte benutze eine angemessene Sprache und poste nur angemessenen Inhalt! Falls Du Fragen hast, sieh bitte in den Community-Richtlinien weiter unten nach.", "commGuideHeadingWelcome": "Willkommen in Habitica!", - "commGuidePara001": "Willkommen, Abenteurer! Willkommen in Habitica, dem Land der Produktivität, des gesunden Lebens und dem gelegentlich randalierenden Greif. Wir sind eine fröhliche Gemeinschaft voller hilfreicher Menschen, die sich auf ihrem Weg der persönlichen Entwicklung gegenseitig unterstützen.", + "commGuidePara001": "Sei gegrüßt, Abenteurer! Willkommen in Habitica, dem Land der Produktivität, des gesunden Lebens und dem gelegentlich randalierenden Greif. Wir sind eine fröhliche Gemeinschaft voller hilfreicher Menschen, die sich auf ihrem Weg der persönlichen Entwicklung gegenseitig unterstützen.", "commGuidePara002": "Damit hier jeder sicher, glücklich und produktiv sein kann, gibt es ein paar Richtlinien. Wir haben uns große Mühe gegeben, sie möglichst nett und leicht verständlich zu formulieren. Bitte nimm dir die Zeit, sie durchzulesen.", "commGuidePara003": "Diese Regeln gelten an allen sozialen Orten die wir verwenden, unter anderem (aber nicht nur) bei Trello, GitHub, Transifex und dem Wiki. Manchmal werden unvorhergesehende Situationen auftreten, wie ein neuer Krisenherd oder ein bösartiger Totenbeschwörer. Wenn das passiert, werden die Moderatoren reagieren, indem sie diese Richtlinien überarbeiten, um die Gemeinschaft vor neuen Gefahren zu schützen. Hab keine Angst: Du wirst von Bailey informiert werden, wenn sich die Richtlinien ändern.", - "commGuidePara004": "Zum Mitschreiben, halte deinen Federkiel und deine Schriftrolle bereit. Los geht's!", + "commGuidePara004": "Zum Mitschreiben, halte Deinen Federkiel und Deine Schriftrolle bereit. Los geht's!", "commGuideHeadingBeing": "Ein Habiticaner sein", "commGuidePara005": "Habitica ist vor allem eine Webseite die sich der persönlichen Weiterentwicklung verschrieben hat. Deshalb haben wir das Glück, dass sich hier eine der wärmsten, freundlichsten, höflichsten und unterstützenden Gemeinschaften im Internet versammelt hat. Es gibt viele Eigenschaften, die Habiticaner auszeichnen. Einige der häufigsten und bemerkenswertesten sind:", - "commGuideList01A": "Ein hilfsbereiter Geist. Viele Menschen verwenden viel Zeit und Energie darauf, neuen Mitgliedern der Gemeinschaft zu helfen und sie anzuleiten. Zum Beispiel gibt es ein Newbies Gilde, die sehr gern Fragen von neuen Mitgliedern beantwortet. Sei kein Frosch und hilf mit!", + "commGuideList01A": "Ein hilfsbereiter Geist. Viele Menschen verwenden viel Zeit und Energie darauf, neuen Mitgliedern der Gemeinschaft zu helfen und sie anzuleiten. Zum Beispiel gibt es eine Newbies-Gilde, die sehr gern Fragen von neuen Mitgliedern beantwortet. Sei kein Frosch und hilf mit!", "commGuideList01B": "Das Verhalten des Fleißigen. Alle Habiticaner arbeiten hart, um ihr Leben zu verbessern und helfen darüber hinaus, die Seite weiter zu verbessern. Da wir ein Open-Source-Projekt sind arbeiten wir alle ständig daran, die Seite bestmöglich zu verbessern.", "commGuideList01C": "Unterstützendes Verhalten Habiticaner spenden einander Beifall in siegreichen Zeiten und ermutigen einander in schwierigen Zeiten. Wir leihen uns gegenseitig Stärke, sind füreinander da an und lernen voneinander. In Gruppen unterstützen wir uns mit Zaubersprüchen; in Chaträumen ermuntern wir uns mit freundlichen und unterstützenden Worten.", - "commGuideList01D": "Respektvoller Umgang. Wir haben alle unterschiedliche Hintergründe, Fähigkeiten und Meinungen. Das macht unsere Gemeinschaft aus! Habiticaner respektieren diese Unterschiede und feiern sie. Schau öfter vorbei und schon bald wirst du Freunde mit den unterschiedlichsten Hintergründen kennen lernen.", + "commGuideList01D": "Respektvoller Umgang. Wir haben alle unterschiedliche Hintergründe, Fähigkeiten und Meinungen. Das macht unsere Gemeinschaft aus! Habiticaner respektieren diese Unterschiede und feiern sie. Schau öfter vorbei und schon bald wirst Du Freunde mit den unterschiedlichsten Hintergründen kennen lernen.", "commGuideHeadingMeet": "Triff die Mods!", "commGuidePara006": "In Habitica haben sich einige unermüdliche Ritter mit den Mitarbeitern zusammengetan, um die Gemeinschaft ruhig, zufrieden und frei von Trollen zu halten. Jeder von ihnen hat einen Spezialbereich und kann manchmal in andere Bereiche berufen werden. Mitarbeiter und Mods werden offizielle Statements oft mit den Worten \"Mod Talk\" oder \"Mod Hat On\" kennzeichnen.", "commGuidePara007": "Mitarbeiter haben violette Namensschilder, die mit einer Krone markiert sind. Ihr Titel ist \"Heroisch\".", @@ -25,41 +25,41 @@ "commGuidePara011b": "auf GitHub/im Wiki", "commGuidePara011c": "im Wiki", "commGuidePara011d": "auf GitHub", - "commGuidePara012": "Falls es bei deinem Kontakt mit einem Moderator zu Problemen gekommen oder du Bedenken bei einem bestimmten Moderator hegst, sende bitte eine E-Mail an Lemoness (leslie@habitica.com).", + "commGuidePara012": "Falls es bei Deinem Kontakt mit einem Moderator zu Problemen gekommen oder Du Bedenken bei einem bestimmten Moderator hegst, sende bitte eine E-Mail an Lemoness (leslie@habitica.com).", "commGuidePara013": "In einer so großen Gemeinschaft wie Habitica ist es so, dass die Menschen kommen und gehen. So kommt es vor, dass ein Moderator seinen noblen Umhang ablegt, um sich zu entspannen. Diese Nutzer sind emeritierte Moderatoren. Sie handeln nicht mehr mit der Befugnis eines Moderators, aber wir würdigen ihre Arbeit weiterhin!", "commGuidePara014": "Eremetierte Moderatoren:", "commGuideHeadingPublicSpaces": "Öffentliche Orte in Habitica", - "commGuidePara015": "Habitica hat zwei Arten von sozialen Bereichen: öffentlich und privat. Öffentliche Bereiche umfassen das Gasthaus, öffentliche Gilden, GitHub, Trello und das Wiki. Private Bereiche sind private Gilden, der Chat von Gruppen und private Nachrichten.", - "commGuidePara016": "Wenn du dich durch die öffentlichen Orte in Habitica bewegst, gibt es ein paar allgemeine Regeln, damit jeder sicher und glücklich ist. Diese sollten für einen Abenteurer wie dich einfach sein!", + "commGuidePara015": "Habitica hat zwei Sorten sozialer Orte: Öffentliche und private. Öffentliche Orte umfassen das Gasthaus, öffentliche Gilden, GitHub, Trello und die Wiki. Private Orte sind private Gilden, der Gruppenchat und private Nachrichten. Alle Anzeigenamen müssen den Community-Richtlinien für öffentliche Orte entsprechen. Um Deinen Anzeigenamen zu ändern, gehe auf der Webseite zu Benutzer > Profil und klicke auf den \"Bearbeiten\"-Button.", + "commGuidePara016": "Wenn Du Dich durch die öffentlichen Orte in Habitica bewegst, gibt es ein paar allgemeine Regeln, damit jeder sicher und glücklich ist. Diese sollten für einen Abenteurer wie Dich einfach sein!", "commGuidePara017": "Respektiert einander. Seit höflich, nett und hilfsbereit. Vergesst nicht: Habiticaner haben die verschiedensten Hintergründe und haben sehr unterschiedliche Erfahrungen gemacht. Das macht Habitica so besonders! Eine Gemeinschaft aufzubauen bedeutet, sich gegenseitig zu respektieren und unsere Unterschiede genauso zu feiern wie unsere Gemeinsamkeiten. Hier sind ein paar einfache Möglichkeiten, Respekt zu zeigen:", "commGuideList02A": "Befolge alle allgemeinen Geschäftsbedingungen.", "commGuideList02B": "Poste bitte keine Bilder und keine Texte, die Gewalt darstellen, andere einschüchtern, oder eindeutige/andeutend sexuell sind, nichts diskriminierendes, fanatisches, rassistisches, sexistisches, keinen Hass und keine Belästigung, sowie nichts was Individuen oder Gruppen schadet. Auch nicht als Scherz. Das bezieht sowohl Sprüche als auch Stellungnahmen mit ein. Nicht jeder hat den gleichen Humor, so könnte etwas, dass Du als Witz wahrnimmst für jemand anderen verletzend sein. Attackiert eure täglichen Aufgaben, nicht einander.", "commGuideList02C": "Haltet Gespräche für alle Altersgruppen angemessen. Wir haben viele junge Habiticaner, die diese Seite benutzen! Wir wollen sie nicht ihrer Unschuld berauben oder Habiticaner an der Erreichung ihrer Ziele hindern.", "commGuideList02D": " Vermeide vulgäre Ausdrücke. Dazu gehören auch mildere, religiöse Verwünschungen, die anderweitig akzeptabel gewesen wären. Wir haben Menschen aus allen religiösen und kulturellen Hintergründen und wünschen uns, dass sich alle im öffentlichen Raum wohl fühlen. Verbale Angriffe jeder Art werden strenge Konsequenzen haben, insbesondere auch, da sie unsere Nutzungsbedingungen verletzen.", "commGuideList02E": " Meidet heftig umstrittene Diskussionen außerhalb der Back Corner. Wenn jemand eurer Meinung nach etwas unhöfliches oder schmerzliches gesagt hat, geht nicht auf ihn ein. Ein einziges, höfliches Kommentar wie \"Dieser Witz war unangebracht\" ist in Ordnung, aber unfreundlich auf Kommentare zu reagieren steigert nur die Anspannung und macht Habitica zu einem negativem Ort. Nettigkeit und Höflichkeit helfen anderen zu verstehen von wo ihr kommt.", - "commGuideList02F": "Befolge unmittelbar jegliche Anliegen der Moderatoren um eine Diskussion zu beenden oder um es zur Back Corner zu verschieben. Letzte Bemerkungen, Abschiedsworte und endgültige Fazite sollten dann abschließend an eurem \"Tisch\" in der Back Corner (höflich) abgegeben werden, falls erlaubt.", - "commGuideList02G": "Denk erst mal gründlich nach bevor du wütend reagierst wenn dir jemand sagt, dass etwas was du getan oder gesagt hast ihm/ihr nicht gefallen hat. Es zeigt große Stärke, sich ehrlich bei jemandem zu entschuldigen. Wenn du findest, dass die Art, wie er/sie dir geantwortet hat unangemessen war, kontaktiere einen Mod statt ihn/sie öffentlich damit zu konfrontieren.", + "commGuideList02F": "Befolge unmittelbar jegliche Anliegen der Moderatoren um eine Diskussion zu beenden oder um es zur Back Corner zu verschieben. Letzte Bemerkungen, Abschiedsworte und endgültige Fazite sollten dann abschließend an eurem \"Tisch\" in der Back Corner (höflich) abgegeben werden, falls erlaubt.", + "commGuideList02G": "Denk erst mal gründlich nach bevor Du wütend reagierst wenn dir jemand sagt, dass etwas was Du getan oder gesagt hast ihm/ihr nicht gefallen hat. Es zeigt große Stärke, sich ehrlich bei jemandem zu entschuldigen. Wenn Du findest, dass die Art, wie er/sie dir geantwortet hat unangemessen war, kontaktiere einen Mod statt ihn/sie öffentlich damit zu konfrontieren.", "commGuideList02H": "Heftig umstrittene Konversationen sollten den Moderatoren gemeldet werden. Wenn ihr der Meinung seit, dass eine Diskussion anfängt auszuarten und überaus emotional, oder sogar verletzend wird, verwickelt euch nicht noch weiter in das Gespräch. Schreibt stattdessen eine E-Mail an leslie@habitica.com, um es uns wissen zu lassen. Es ist unsere Aufgabe euch sicher zu halten.", - "commGuideList02I": "Poste keinen Spam. Spamming ist unter anderem, aber nicht ausschließlich: das gleiche Kommentar/die gleiche Anfrage mehrmals an verschiedenen Orten posten, Links ohne Erklärung oder Kontext posten, Nachrichten ohne Sinn posten, die gleiche Nachricht mehrmals hintereinander posten. Wiederholt nach Edelsteinen oder einem Abonnement zu betteln, kann ebenfalls als Spamming betrachtet werden.", - "commGuidePara019": "In privaten Orten haben Nutzer mehr Freiheiten, über alle Themen zu sprechen, die sie interessieren, aber sie dürfen trotzdem nicht die allgemeinen Geschäftsbedingungen verletzen und unter anderem auch dort keine diskriminierenden, gewalttätigen oder bedrohlichen Inhalte posten.", - "commGuidePara020": "Für private Nachrichten (PNs/PMs) gibt es einige zusätzliche Richtlinien. Falls Dich jemand geblockt hat, kontaktiere ihn nicht über andere Wege, um ihn oder sie zu bitten dich nicht mehr zu blocken. Außerdem solltest Du keine PNs schicken, wenn Du Hilfe mit der Seite, also \"Support\" brauchst (allgemein zugängliche Antworten auf diese Fragen im Gasthaus oder Forum kommen der Gemeinschaft zu gute). Schließlich schicke bitte keine PNs in denen Du um Edelsteine oder ein Abonnement bettelst, dies kann als Spamming betrachtet werden.", + "commGuideList02I": "Poste keinen Spam. Spamming umfasst unter anderem: Den gleichen Kommentar oder die gleiche Frage an unterschiedlichen Orten posten, Links ohne Erklärung oder Kontext posten, sinnlose Nachrichten posten, oder viele Nachrichten hintereinander posten. Das Betteln nach Edelsteinen oder einem Abonnement wird ebenfalls als Spamming betrachtet.", + "commGuidePara019": "An privaten Orten haben Benutzer die Freiheit, alle möglichen Themen zu besprechen, solange diese nicht den AGB widersprechen. Dies umfasst das Posten von diskriminierenden, gewalttätigen oder einschüchternden Inhalten. Beachte dass Wettbewerbsnamen im öffentlichen Profil des Gewinners anzeigt werden, daher müssen ALLE Wettbewerbsnamen den Community-Richtlinien für öffentliche Orte entsprechen, auch wenn sie an privaten Orten genutzt werden.", + "commGuidePara020": "Für private Nachrichten (PNs/PMs) gibt es einige zusätzliche Richtlinien. Falls Dich jemand geblockt hat, kontaktiere ihn nicht über andere Wege, um ihn oder sie zu bitten Dich nicht mehr zu blocken. Außerdem solltest Du keine PNs schicken, wenn Du Hilfe mit der Seite, also \"Support\" brauchst (allgemein zugängliche Antworten auf diese Fragen im Gasthaus oder Forum kommen der Gemeinschaft zu gute). Schließlich schicke bitte keine PNs in denen Du um Edelsteine oder ein Abonnement bettelst, dies kann als Spamming betrachtet werden.", "commGuidePara021": "Manche öffentliche Orte in Habitica haben außerdem noch weitere Regeln.", "commGuideHeadingTavern": "Das Gasthaus", - "commGuidePara022": "Das Gasthaus ist der Treffpunkt für Habiticaner, um sich unter die Leute zu mischen. Daniel der Barkeeper hält diesen Ort sauber und Lemoness zaubert dir gerne ein Glas Limonade während du dich entspannst und chattest. Und denk dran...", + "commGuidePara022": "Das Gasthaus ist der Treffpunkt für Habiticaner, um sich unter die Leute zu mischen. Daniel der Barkeeper hält diesen Ort sauber und Lemoness zaubert dir gerne ein Glas Limonade während Du Dich entspannst und chattest. Und denk dran ...", "commGuidePara023": "Die Gespräche sind meist lockere Unterhaltungen oder drehen sich um Produktivität und Life Improvement.", "commGuidePara024": "Da der Gasthaus-Chat nur 200 Nachrichten halten kann ist er kein guter Ort für lange Gespräche über bestimmte Themen, besonders sensible Themen (z.B. Politik, Religion, Depression, ob Koboldjagen verboten werden sollte, usw.). Diese Gespräche sollten woanders geführt werden, z.B. in einer passenden Gilde oder in der Back Corner (mehr Information unten).", "commGuidePara027": "Sprecht im Gasthaus nicht über irgendwelche suchterzeugenden Dinge. Viele Menschen benutzen Habitica, um zu versuchen, ihre schlechten Gewohnheiten zu beenden. Zu hören, wie andere über suchterzeugende/illegale Substanzen sprechen, kann das für sie viel schwerer machen! Respektiert die anderen Gasthaus-Gäste und berücksichtige das. Dies gilt u.a. für Rauchen, Alkohol, Pornografie, Glücksspiel und Drogen.", "commGuideHeadingPublicGuilds": "Öffentliche Gilden", "commGuidePara029": "Öffentliche Gilden sind ziemlich ähnlich wie das Gasthaus, außer dass die Gespräche dort nicht so allgemein sind, sondern sich um ein bestimmtes Thema drehen. Der öffentliche Gildenchat sollte sich auf dieses Thema konzentrieren. Zum Beispiel könnte es sein, dass Mitglieder der Wordsmith-Gilde genervt sind, wenn sich das Gespräch plötzlich um Gärtnern statt um Schreiben dreht, und eine Drachenliebhaber-Gilde interessiert sich wahrscheinlich nicht dafür, antike Runen zu entziffern. Manche Gilden sind dabei lockerer als andere, aber versuch generell beim Thema zu bleiben!", "commGuidePara031": "Manche öffentlichen Gilden werden sensible Themen enthalten, z.B. Depression, Religion, Politik, usw. Das ist ok solang die Gespräche darüber keine der AGB oder der Regeln für öffentliche Orte brechen und solange sie beim Thema bleiben.", - "commGuidePara033": "Öffentlice Gilden dürfen keinen 18+ Inhalt enthalten. Wenn eine Gilde plant, regelmäßig sensible Themen zu diskutieren, sollte sie dies in ihrem Gildentitel erwähnen. Dies hat das Ziel, Habitica sicher und angenehm für jeden zu gestalten. Wenn besagte Gilde verschiedene sensible Themen bespricht, ist es den anderen Habitianern gegenüber respektvoll, eine Warnung vor den Kommentar zu schreiben (z.B. \"Achtung: Spricht das Thema Selbstverletzung an\"). Außerdem sollte besagte sensible Sache dem Thema entsprechend sein -- Selbstverletzung in einer Gilde, die sich auf den Kampf gegen Depressionen fokussiert hat, zu erwähnen, mag Sinn machen, aber scheint weniger geeignet für eine Musikgilde. Wenn du jemanden siehst, der sogar nach mehreren Hinweisen wiederholt gegen die Richtlinien verstößt, schicke eine Mail mit Screenshots an leslie@habitica.com.", - "commGuidePara035": "Es sollte niemals eine Gilde, egal ob öffentlich oder privat, gegründet werden, die als Ziel hat, ein Individuum oder eine Gruppe anzugreifen. So eine Gilde zu erstellen führt zu einer sofortigen Accountsperre. Bekämpfe schlechte Angewohnheiten, nicht deine Mitabenteurer!", + "commGuidePara033": "Öffentlice Gilden dürfen keinen 18+ Inhalt enthalten. Wenn eine Gilde plant, regelmäßig sensible Themen zu diskutieren, sollte sie dies in ihrem Gildentitel erwähnen. Dies hat das Ziel, Habitica sicher und angenehm für jeden zu gestalten. Wenn besagte Gilde verschiedene sensible Themen bespricht, ist es den anderen Habiticanern gegenüber respektvoll, eine Warnung vor den Kommentar zu schreiben (z.B. \"Achtung: Spricht das Thema Selbstverletzung an\"). Außerdem sollte besagte sensible Sache dem Thema entsprechend sein -- Selbstverletzung in einer Gilde, die sich auf den Kampf gegen Depressionen fokussiert hat, zu erwähnen, mag Sinn machen, aber scheint weniger geeignet für eine Musikgilde. Wenn Du jemanden siehst, der sogar nach mehreren Hinweisen wiederholt gegen die Richtlinien verstößt, schicke eine Mail mit Screenshots an leslie@habitica.com.", + "commGuidePara035": "Es sollte niemals eine Gilde, egal ob öffentlich oder privat, gegründet werden, die als Ziel hat, ein Individuum oder eine Gruppe anzugreifen. So eine Gilde zu erstellen führt zu einer sofortigen Accountsperre. Bekämpfe schlechte Angewohnheiten, nicht Deine Mitabenteurer!", "commGuidePara037": "Alle Gasthaus-Wettbewerbe und Wettbewerbe öffentlicher Gilden müssen sich ebenfalls an diese Regeln halten.", "commGuideHeadingBackCorner": "Die Back Corner", "commGuidePara038": "Manchmal werden Gespräche zu lang, off-topic, oder sensibel, um in einem öffentlichen Ort fortgeführt zu werden, ohne dass sich Nutzer unwohl fühlen. In diesem Fall wird das Gespräch in die Back Corner Gilde geschickt. Es ist wichtig, zu wissen, dass es überhaupt keine Strafe ist, in die Back Corner Gilde geschickt zu werden!. Viele Habiticaner hängen dort gerne herum und besprechen Themen in aller Ausführlichkeit.", - "commGuidePara039": "Die Back Corner Gilde ist ein freier öffentlicher Ort, in dem man sensible Themen oder lange Gespräche führen kann und der sorgfältig moderiert wird. Die Regeln für öffentliche Orte gelten auch hier, genau wie die AGB. Nur weil wir lange Mäntel tragen und uns in einer Ecke treffen heißt das nicht, dass alles erlaubt ist! Könntest du mir mal diese glimmende Kerze herüberreichen?", + "commGuidePara039": "Die Back Corner Gilde ist ein freier öffentlicher Ort, in dem man sensible Themen oder lange Gespräche führen kann und der sorgfältig moderiert wird. Die Regeln für öffentliche Orte gelten auch hier, genau wie die AGB. Nur weil wir lange Mäntel tragen und uns in einer Ecke treffen heißt das nicht, dass alles erlaubt ist! Könntest Du mir mal diese glimmende Kerze herüberreichen?", "commGuideHeadingTrello": "Trello Boards", - "commGuidePara040": "Trello dient als offenes Forum für Vorschläge und Diskussionen von Seiten-Features. Habitica wird durch Leuten in Form von tapferen Mitwirkenden regiert -- wir alle bauen die Seite zusammen. Trello ist das System, das die Techniken für unseren Wahnsinn anbietet. In Rücksicht darauf, versuche dein Bestes, um alle deine Gedanken in ein Kommentar einzugrenzen, anstelle mehrmals in Folge auf die gleiche Karte zu kommentieren. Wenn dir etwas neues einfällt, kannst du gerne deinen ursprünglichen Kommentar umändern. Bitte habt Erbarmen für diejenigen von uns, die eine Benachrichtigung nach jedem neuen Kommentar bekommen. Unser Posteingang kann nur soviel aushalten.", + "commGuidePara040": "Trello dient als offenes Forum für Vorschläge und Diskussionen von Seiten-Features. Habitica wird durch Leuten in Form von tapferen Mitwirkenden regiert -- wir alle bauen die Seite zusammen. Trello ist das System, das die Techniken für unseren Wahnsinn anbietet. In Rücksicht darauf, versuche Dein Bestes, um alle Deine Gedanken in ein Kommentar einzugrenzen, anstelle mehrmals in Folge auf die gleiche Karte zu kommentieren. Wenn dir etwas neues einfällt, kannst Du gerne Deinen ursprünglichen Kommentar umändern. Bitte habt Erbarmen für diejenigen von uns, die eine Benachrichtigung nach jedem neuen Kommentar bekommen. Unser Posteingang kann nur soviel aushalten.", "commGuidePara041": "Habitica verwendet fünf verschiedene Trello boards:", "commGuideList03A": "Das Main Board ist ein Ort, um neue Features vorzuschlagen und darüber abzustimmen.", "commGuideList03B": "Das Mobile Board ist ein Ort, um neue Features für die Handy-App vorzuschlagen und darüber abzustimmen.", @@ -76,11 +76,11 @@ "commGuidePara047": "Da das Wiki von Wikia gehostet wird, gelten zusätzlich zu den Regeln von Habitica und der Habitica Wikiseite die Allgemeinen Geschäftsbedingungen von Wikia", "commGuidePara048": "Das Wiki ist ausschließlich eine Kollaboration aller Verfasser und dazu gelten einige zusätzliche Regeln. Diese umfassen:", "commGuideList04A": "Neue Seiten oder größere Änderungen auf dem Wiki Trello Board vorschlagen", - "commGuideList04B": "Offen gegenüber Vorschlägen anderer über deine Veränderung sein", + "commGuideList04B": "Offen gegenüber Vorschlägen anderer über Deine Veränderung sein", "commGuideList04C": "Jegliche Veränderungskonflikte innerhalb der Gesprächsseite der Seite diskutieren", "commGuideList04D": "Bei ungelösten Konflikten den Wiki Admins Bescheid sagen", "commGuideList04E": "Kein Spammen oder Seiten für den eigenen Nutzen sabotieren", - "commGuideList04F": "Lies die Wiki-Mitwirker-Seite bevor du größere Änderungen machst", + "commGuideList04F": "Lies die Wiki-Mitwirker-Seite bevor Du größere Änderungen machst", "commGuideList04G": "Sachlicher Ton in Wiki-Seiten", "commGuideList04H": "Sicherstellen, dass der Inhalt des Wiki für die ganze Habitica-Seite relevant ist und nicht nur für eine bestimmte Gilde oder Gruppe (solche Informationen können in die Foren verschoben werden)", "commGuidePara049": "Die folgenden Leute sind die derzeitigen Wiki-Administratoren:", @@ -102,7 +102,7 @@ "commGuidePara054": "Mäßige Verstöße machen unsere Community nicht unsicher, aber sie machen sie unangenehm. Diese Verstöße haben mäßige Konsequenzen. Mehrere mäßige Verstöße können jedoch zu ernsteren Konsequenzen führen.", "commGuidePara055": "Die folgende Liste sind Beispiele für mittlere Regelverletzungen. Die Liste ist nicht vollständig.", "commGuideList06A": "Ignorieren oder Nichtrespektieren eines Moderators. Dies umfasst öffentliches Beklagen über Moderatoren oder andere Nutzer / öffentliche Glorifizierung oder Verteidigung gesperrter Nutzer. Falls Bedenken bei einer oder mehrerer Regeln oder Moderatoren bestehen, sende bitte eine E-Mail an Lemoness (leslie@habitica.com).", - "commGuideList06B": "\"Besserwisser-Moderieren\" von Nicht-Moderatoren. Um vorher etwas klarzustellen: ein freundliches Erwähnen der Regeln ist völlig in Ordnung. \"Besserwisser-Moderieren\" ist es, wenn man sagt, verlangt oder deutlich andeutet dass jemand eine bestimmte Handlung durchführen muss, um einen Fehler zu korrigieren. Du kannst jemandem Bescheid sagen, dass die Person eine Regel verletzt hat, aber bitte verlange keine bestimmte Konsequenz - z.B. wäre es besser zu sagen \"Nur dass du es weißt, Fluchen ist im Gasthaus nicht erlaubt, deshalb solltest du das vielleicht besser löschen\" als \"Lösch jetzt dieses Kommentar\".", + "commGuideList06B": "\"Besserwisser-Moderieren\" von Nicht-Moderatoren. Um vorher etwas klarzustellen: ein freundliches Erwähnen der Regeln ist völlig in Ordnung. \"Besserwisser-Moderieren\" ist es, wenn man sagt, verlangt oder deutlich andeutet dass jemand eine bestimmte Handlung durchführen muss, um einen Fehler zu korrigieren. Du kannst jemandem Bescheid sagen, dass die Person eine Regel verletzt hat, aber bitte verlange keine bestimmte Konsequenz - z.B. wäre es besser zu sagen \"Nur dass Du es weißt, Fluchen ist im Gasthaus nicht erlaubt, deshalb solltest Du das vielleicht besser löschen\" als \"Lösch jetzt dieses Kommentar\".", "commGuideList06C": "Wiederholte Verletzungen der Richtlinien für öffentliche Orte", "commGuideList06D": "Wiederholte leichte Regelverletzungen", "commGuideHeadingMinorInfractions": "Leichte Regelverletzungen", @@ -116,7 +116,7 @@ "commGuidePara060": "Wenn Deine Regelverletzung eine mittlere oder schwere Konsequenz hat, wirst Du eine E-Mail erhalten, die erklärt:", "commGuideList08A": "was Deine Regelverletzung war", "commGuideList08B": "was die Konsequenz ist", - "commGuideList08C": "was Du tun kannst, um es wieder gut zu machen und deinen Status wiederherzustellen, falls möglich.", + "commGuideList08C": "was Du tun kannst, um es wieder gut zu machen und Deinen Status wiederherzustellen, falls möglich.", "commGuideHeadingSevereConsequences": "Beispiele für schwere Konsequenzen", "commGuideList09A": "Accountsperren", "commGuideList09B": "Accountlöschungen", @@ -125,7 +125,7 @@ "commGuideList10A": "Beschränkte Berechtigung zum öffentlichen Chatten", "commGuideList10B": "Beschränkte Bereichtigung zum privaten Chatten", "commGuideList10C": "Beschränkte Berechtigung, Gilden/Wettbewerbe zu gründen", - "commGuideList10D": "Der Aufstieg in höhere Mitwirkendenstufen kann temporär verwehrt (\"eingefrohren\") werden", + "commGuideList10D": "Der Aufstieg in höhere Mitwirkendenstufen kann temporär verwehrt (\"eingefroren\") werden", "commGuideList10E": "Herabstufung von Mitwirkenden", "commGuideList10F": "Nutzer auf \"Bewährung\" setzen", "commGuideHeadingMinorConsequences": "Beispiele für leichte Konsequenzen", @@ -135,9 +135,9 @@ "commGuideList11D": "Löschungen (Mods/Mitarbeiter können problematische Inhalte löschen)", "commGuideList11E": "Edits (Mods/Mitarbeiter können problematische Inhalte bearbeiten)", "commGuideHeadingRestoration": "Wiederherstellung", - "commGuidePara061": "Habitica ist ein Land, dass sich dem persönlichen Fortschritt verschrieben hat, und wir glauben hier an zweite Chancen. Wenn Du eine Regelverletzung begehst und eine Konsequenz erhältst, sieh es als eine Chance, deine Handlungen zu überdenken und danach zu streben, ein besseres Mitglied der Gemeinschaft zu werden.", - "commGuidePara062": "Die E-Mail, die du bekommst, in der die Konsequenzen deiner Handlungen erklärt werden (oder bei geringfügigen Konsequenzen, die Ansage des Mods/Mitarbeiters), ist eine gute Informationsquelle. Kooperiere mit allen verhängten Einschränkungen und versuche die Voraussetzungen zu erfüllen, um mögliche Strafen wieder aufzuheben.", - "commGuidePara063": "Wenn Du Deine Konsequenzen oder die Art deiner Regelverletzung nicht verstehst, frage die Mitarbeiter/Moderatoren um Hilfe, sodass du in Zukunft vermeiden kannst, Regelverletzungen zu begehen.", + "commGuidePara061": "Habitica ist ein Land, dass sich dem persönlichen Fortschritt verschrieben hat, und wir glauben hier an zweite Chancen. Wenn Du eine Regelverletzung begehst und eine Konsequenz erhältst, sieh es als eine Chance, Deine Handlungen zu überdenken und danach zu streben, ein besseres Mitglied der Gemeinschaft zu werden.", + "commGuidePara062": "Die E-Mail, die Du bekommst, in der die Konsequenzen Deiner Handlungen erklärt werden (oder bei geringfügigen Konsequenzen, die Ansage des Mods/Mitarbeiters), ist eine gute Informationsquelle. Kooperiere mit allen verhängten Einschränkungen und versuche die Voraussetzungen zu erfüllen, um mögliche Strafen wieder aufzuheben.", + "commGuidePara063": "Wenn Du Deine Konsequenzen oder die Art Deiner Regelverletzung nicht verstehst, frage die Mitarbeiter/Moderatoren um Hilfe, sodass Du in Zukunft vermeiden kannst, Regelverletzungen zu begehen.", "commGuideHeadingContributing": "In Habitica mitwirken", "commGuidePara064": "Habitica ist ein quell-offenes Projekt. Das heißt, dass alle Habiticaner gerne mit einsteigen können. Diejenigen, die das tun werden entsprechend den folgenden Rängen für Mithelfende belohnt werden:", "commGuideList12A": "Habitica-Mitwirkende(r)-Abzeichen, plus 3 Edelsteine.", @@ -149,9 +149,9 @@ "commGuideList12G": "Mitwirkende(r)-Gildeneinladung, plus 4 Edelsteine.", "commGuidePara065": "Moderatoren werden, von Mitarbeitern und schon existierenden Moderatoren aus den Mitwirkenden mit siebtem Rang ausgewählt. Auch wenn Mitwirkende mit siebtem Rang hart im Interesse der Seite gearbeitet haben, haben nicht alle die Autorität eines Moderators.", "commGuidePara066": "Es gibt ein paar wichtige Hinweise zu den Stufen für Mitwirkende:", - "commGuideList13A": "Ränge sind Ermessenssache. Sie werden nach ermessen der Moderatoren, auf Grund verschiedener Faktoren, wie zum Beispiel unserer Wahrnehmung der Arbeit die du für die tust und den Wert dieser für die Gemeinschaft. Wir behalten uns das Recht vor sie Speziallevel, Titel und Belohnungen nach unserem Ermessen zu ändern.", - "commGuideList13B": "Levels werden schwieriger je weiter du voranschreitest. Wenn du ein Monster geschaffen hast, oder einen kleinen Bug behoben hast, hast du zwar genug um dir den ersten Mitwirkenden-Level zu verdienen, aber noch nicht genug um dir den Nächsten zu holen. So wie in jedem RPG, kommen mit steigendem Level auch steigende Herausforderungen!", - "commGuideList13C": " Levels fangen nicht einfach \"von Neu an\". Beim Festlegen der Schwierigkeit, schauen wir auf alle deine Beiträge, sodass Leute, die ein bisschen Pixel Art machen, dann einen kleinen Bug beheben, dann noch mit der Wiki plätschern nicht weiter voranschreiten wie Leute, die hart an einer Aufgabe arbeiten. Damit bleibt alles fair!", + "commGuideList13A": "Ränge sind Ermessenssache. Sie werden nach ermessen der Moderatoren, auf Grund verschiedener Faktoren, wie zum Beispiel unserer Wahrnehmung der Arbeit die Du für die tust und den Wert dieser für die Gemeinschaft. Wir behalten uns das Recht vor sie Speziallevel, Titel und Belohnungen nach unserem Ermessen zu ändern.", + "commGuideList13B": "Levels werden schwieriger je weiter Du voranschreitest. Wenn Du ein Monster geschaffen hast, oder einen kleinen Bug behoben hast, hast Du zwar genug um dir den ersten Mitwirkenden-Level zu verdienen, aber noch nicht genug um dir den Nächsten zu holen. So wie in jedem RPG, kommen mit steigendem Level auch steigende Herausforderungen!", + "commGuideList13C": " Levels fangen nicht einfach \"von Neu an\". Beim Festlegen der Schwierigkeit, schauen wir auf alle Deine Beiträge, sodass Leute, die ein bisschen Pixel Art machen, dann einen kleinen Bug beheben, dann noch mit der Wiki plätschern nicht weiter voranschreiten wie Leute, die hart an einer Aufgabe arbeiten. Damit bleibt alles fair!", "commGuideList13D": "Nutzer, die auf Bewährung sind können nicht zum nächsten Rang aufsteigen. Sofern Verstöße vorliegen, haben Moderatoren das Recht das Aufsteigen eines Nutzers einzuschränken. Sollte dieser Fall eintreten, wird der Benutzer immer über diese Entscheidung informiert werden und auch darüber, mit welchen Schritten er sich bewähren kann. Durch Verstöße und Bewährung können Ränge auch entzogen werden.", "commGuideHeadingFinal": "Der Letzte Absatz", "commGuidePara067": "Hier habt Ihr sie, tapfere Habiticaner -- die Community-Richtlinien! Wischt euch den Schweiß aus dem Gesicht und gebt euch einige Erfahrungspunkte fürs Durchlesen. Wenn ihr irgendwelche Fragen oder Anliegen bezüglich der Community-Richtlinien hast, schreibt Lemoness (leslie@habitica.com) eine Email. Sie hilft euch gerne euer Anliegen zu klären.", diff --git a/common/locales/de/content.json b/common/locales/de/content.json index b99e7c95a1..54611e45f9 100644 --- a/common/locales/de/content.json +++ b/common/locales/de/content.json @@ -4,7 +4,7 @@ "armoireText": "Verzauberter Schrank", "armoireNotesFull": "Öffne den Schrank um zufällig spezielle Gegenstände, Erfahrung oder Nahrung zu erhalten! Verbleibende Ausrüstungsgegenstände:", "armoireLastItem": "Du hast das letzte Stück der seltenen Ausrüstung im verzauberten Schrank gefunden.", - "armoireNotesEmpty": "Im Rüstungsschrank gibt es jeweils in der ersten Woche eines Monats neue Ausrüstung. Bis dahin, klicke weiter für Erfahrung und Essen.", + "armoireNotesEmpty": "Im verzauberten Schrank gibt es jeweils in der ersten Woche eines Monats neue Ausrüstung. Bis dahin, klicke weiter für Erfahrung und Essen.", "dropEggWolfText": "Wolf", "dropEggWolfMountText": "Wolf", "dropEggWolfAdjective": "ein treuer", @@ -31,7 +31,7 @@ "dropEggCactusAdjective": "ein stacheliger", "dropEggBearCubText": "Jungbär", "dropEggBearCubMountText": "Bär", - "dropEggBearCubAdjective": "ein knuddeliger", + "dropEggBearCubAdjective": "ein tapferer", "questEggGryphonText": "Greif", "questEggGryphonMountText": "Greif", "questEggGryphonAdjective": "ein stolzer", @@ -46,7 +46,7 @@ "questEggEggAdjective": "ein farbiger", "questEggRatText": "Ratterich", "questEggRatMountText": "Ratterich", - "questEggRatAdjective": "ein dreckiger", + "questEggRatAdjective": "ein geselliger", "questEggOctopusText": "Tintenfisch", "questEggOctopusMountText": "Krake", "questEggOctopusAdjective": "ein glitschiger", @@ -101,15 +101,18 @@ "questEggSnakeText": "Taipan", "questEggSnakeMountText": "Taipan", "questEggSnakeAdjective": "ein schlängelnder", - "questEggUnicornText": "Einhorn", - "questEggUnicornMountText": "Geflügeltes Einhorn", + "questEggUnicornText": "Einhorn-Hengst", + "questEggUnicornMountText": "Geflügelter Einhorn-Hengst", "questEggUnicornAdjective": "ein magischer", "questEggSabretoothText": "Säbelzahntiger", "questEggSabretoothMountText": "Säbelzahntiger", "questEggSabretoothAdjective": "ein grimmiger", - "questEggMonkeyText": "Monkey", - "questEggMonkeyMountText": "Monkey", - "questEggMonkeyAdjective": "a mischievous", + "questEggMonkeyText": "Affe", + "questEggMonkeyMountText": "Affe", + "questEggMonkeyAdjective": "ein schelmischer", + "questEggSnailText": "Schneckerich", + "questEggSnailMountText": "Schneckerich", + "questEggSnailAdjective": "ein langsamer, aber beständiger", "eggNotes": "Finde einen Schlüpftrank, den Du über dieses Ei gießen kannst, damit <%= eggAdjective(locale) %> <%= eggText(locale) %> schlüpfen kann.", "hatchingPotionBase": "Normaler", "hatchingPotionWhite": "Weißer", @@ -124,7 +127,7 @@ "hatchingPotionSpooky": "unheimlicher", "hatchingPotionPeppermint": "Pfefferminz", "hatchingPotionNotes": "Gieße das über ein Ei und es wird ein <%= potText(locale) %> Haustier daraus schlüpfen.", - "premiumPotionAddlNotes": "Nicht auf Eier von Quest Haustieren anwendbar.", + "premiumPotionAddlNotes": "Nicht auf Eier von Quest-Haustieren anwendbar.", "foodMeat": "Fleisch", "foodMilk": "Milch", "foodPotatoe": "Kartoffel", diff --git a/common/locales/de/contrib.json b/common/locales/de/contrib.json index 06f9413da5..066c00a1d7 100644 --- a/common/locales/de/contrib.json +++ b/common/locales/de/contrib.json @@ -1,15 +1,15 @@ { "friend": "Freund", - "friendFirst": "Wenn \nDein erster Beitrag angenommen wird, erhältst Du ein Habitica Mitwirkende(r) Abzeichen. Im Gasthaus wird Dein Name, dafür dass Du ein Mitwirkender bist, stolz angezeigt. Als Belohnung für Deine Bemühungen erhältst du außerdem 3 Edelsteine.", - "friendSecond": "Wenn das zweite Bündel deiner Beiträge angenommen wurde, kannst du die Kristallrüstung im Belohnungs-Shop kaufen. Als Belohnung deiner fortwährenden Arbeit erhältst du außerdem 3 Edelsteine.", + "friendFirst": "Wenn \nDein erster Beitrag angenommen wird, erhältst Du ein Habitica Mitwirkende(r) Abzeichen. Im Gasthaus wird Dein Name, dafür dass Du ein Mitwirkender bist, stolz angezeigt. Als Belohnung für Deine Bemühungen erhältst Du außerdem 3 Edelsteine.", + "friendSecond": "Wenn das zweite Bündel Deiner Beiträge angenommen wurde, kannst Du die Kristallrüstung im Belohnungs-Shop kaufen. Als Belohnung Deiner fortwährenden Arbeit erhältst Du außerdem 3 Edelsteine.", "elite": "Elite", - "eliteThird": "Wenn das dritte Bündel deiner Beiträge angenommen wurde, kannst du den Kristallhelm im Belohnungs-Shop kaufen. Als Belohnung deiner fortwährenden Arbeit erhältst du außerdem 3 Edelsteine.", - "eliteFourth": "Wenn das vierte Bündel deiner Beiträge angenommen wurde, kannst du das Kristallschwert im Belohnungs-Shop kaufen. Als Belohnung deiner fortwährenden Arbeit erhältst du außerdem 4 Edelsteine.", + "eliteThird": "Wenn das dritte Bündel Deiner Beiträge angenommen wurde, kannst Du den Kristallhelm im Belohnungs-Shop kaufen. Als Belohnung Deiner fortwährenden Arbeit erhältst Du außerdem 3 Edelsteine.", + "eliteFourth": "Wenn das vierte Bündel Deiner Beiträge angenommen wurde, kannst Du das Kristallschwert im Belohnungs-Shop kaufen. Als Belohnung Deiner fortwährenden Arbeit erhältst Du außerdem 4 Edelsteine.", "champion": "Champion", - "championFifth": "Wenn das fünfte Bündel deiner Beiträge angenommen wurde, kannst du den Kristallschild im Belohnungs-Shop kaufen. Als Belohnung deiner fortwährenden Arbeit erhältst du außerdem 4 Edelsteine.", - "championSixth": "Wenn das sechste Bündel deiner Beiträge angenommen wurde, erhältst du ein Hydra Haustier. Außerdem erhältst du 4 Edelsteine.", + "championFifth": "Wenn das fünfte Bündel Deiner Beiträge angenommen wurde, kannst Du den Kristallschild im Belohnungs-Shop kaufen. Als Belohnung Deiner fortwährenden Arbeit erhältst Du außerdem 4 Edelsteine.", + "championSixth": "Wenn das sechste Bündel Deiner Beiträge angenommen wurde, erhältst Du ein Hydra Haustier. Außerdem erhältst Du 4 Edelsteine.", "legendary": "Legendär", - "legSeventh": "Wenn Dein siebtes Set an Ehrerbietigkeit angekommen ist, wirst du 4 Edelsteine erhalten und ein Mitglied der ehrenhaften Mitwirkenden Gilde werden. Du wirst eingeweiht werden in geheime \"Behind-the-Scenes Details\" von Habitica! Weitere Beiträge werden Deinen Rang nicht erhöhen, allerdings wirst Du vielleicht Edelstein Belohnungen und Ehrentitel erringen.", + "legSeventh": "Wenn Dein siebtes Bündel Deiner Beiträge angenommen wurde, erhältst Du 4 Edelsteine und wirst ein Mitglied der ehrenhaften Mitwirkenden-Gilde. Du wirst in geheime \"Behind-the-Scenes-Details\" von Habitica eingeweiht! Weitere Beiträge werden Deinen Rang nicht erhöhen, allerdings wirst Du vielleicht Edelstein-Belohnungen und Ehrentitel erringen.", "moderator": "Moderator", "guardian": "Wächter", "guardianText": "Moderatoren werden sorgfältig aus den höheren Mitwirkenden Rängen ausgesucht, also bitte zeige ihnen gegenüber Respekt und höre auf ihre Vorschläge.", @@ -18,7 +18,7 @@ "heroicText": "Den Helden Rang tragen Habitica-Mitarbeiter und Mitwirkende auf Mitarbeiter-Level. Hast Du diesen Titel errungen, dann wurdest Du dazu berufen (oder von uns angestellt!).", "npcText": "NPCs haben Habitica über Kickstarter mitfinanziert. Du kannst ihre Avatare sehen, wie sie über die Features des Spiels wachen.", "modalContribAchievement": "Erfolg als Mitwirkender!", - "contribModal": "<%= name %>, Du bist fantastisch! Du hast den Rang <%= level %> als Mitwirkender errungen, weil Du bei Habitica mithilfst. Sieh", + "contribModal": "<%= name %>, Du bist fantastisch! Du hast den Rang <%= level %> als Mitwirkender errungen, weil Du bei Habitica mithilfst. Sieh", "contribLink": "welche Preise hast Du für Deinen Beitrag verdient!", "contribName": "Mitwirkender", "contribText": "Hat zu Habitica beigetragen (Code, Design, Pixelkunst, Rechtsrat, Dokumentationen, etc.). Willst Du dieses Abzeichen auch haben?", @@ -28,11 +28,11 @@ "helped": "Hat Habitica geholfen zu wachsen", "helpedText1": "Hat Habitica geholfen zu wachsen durch Teilnahme an", "helpedText2": "dieser Befragung.", - "hall": "Halle", + "hall": "Halle der Helden", "contribTitle": "Mitwirkender Titel (z.B., \"Schmied\")", "contribLevel": "Mitwirkender Level", "contribHallText": "1-7 für normale Mitwirkende, 8 für Moderatoren, 9 für Mitarbeiter. Diese Stufe entscheidet, welche Gegenstände, Haustiere und Reittiere verfügbar sind und welche Farbe das Namensschild hat. Stufe 8 und 9 erhalten automatisch den Administratorstatus.", - "hallHeroes": "Halle der Helden", + "hallContributors": "Halle der Mitwirkenden", "hallPatrons": "Halle der Schirmherren", "rewardUser": "Spieler belohnen", "UUID": "UUID", @@ -56,9 +56,9 @@ "surveysMultiple": "Hat Habitica durch Teilnahme an <%= surveys %> Umfragen geholfen zu wachsen. Es gibt keine aktiven Umfragen.", "currentSurvey": "Aktuelle Umfrage", "surveyWhen": "Das Abzeichen wird gegen Ende März verliehen, wenn alle Umfragen bearbeitet wurden.", - "blurbInbox": "Hier werden deine privaten Nachrichten (PN) gespeichert! Du kannst jemandem eine Nachricht schreiben, indem du auf den Umschlag neben seinem Namen im Gasthaus-, Gruppen- oder Gildenchat klickst. Falls du eine unangemessene PN erhältst, schicke eine E-Mail mit einem Screenshot davon an Lemoness\n(leslie@habitica.com)", - "blurbGuildsPage": "Gilden sind Chatgruppen mit einem gemeinsamen Interesse. Sie sind von Spielern für Spieler erstellt worden. Durchblättere die Liste und tritt den Gilden bei, die dich interessieren.", - "blurbChallenges": "Wettbewerbe werden von anderen Spielern erstellt. Wenn Du einem Wettbewerb beitrittst, werden seine Aufgaben deinem Aufgabenmenü hinzugefügt, und wenn Du einen Wettbewerb gewinnst erhälst Du einen Erfolg und oft auch einen Edelstein-Preis!", + "blurbInbox": "Hier werden Deine privaten Nachrichten (PN) gespeichert! Du kannst jemandem eine Nachricht schreiben, indem Du auf den Umschlag neben seinem Namen im Gasthaus-, Gruppen- oder Gildenchat klickst. Falls Du eine unangemessene PN erhältst, schicke eine E-Mail mit einem Screenshot davon an Lemoness\n(leslie@habitica.com)", + "blurbGuildsPage": "Gilden sind Chatgruppen mit einem gemeinsamen Interesse. Sie sind von Spielern für Spieler erstellt worden. Durchblättere die Liste und tritt den Gilden bei, die Dich interessieren.", + "blurbChallenges": "Wettbewerbe werden von anderen Spielern erstellt. Wenn Du einem Wettbewerb beitrittst, werden seine Aufgaben Deinem Aufgabenmenü hinzugefügt, und wenn Du einen Wettbewerb gewinnst erhältst Du einen Erfolg und oft auch einen Edelstein-Preis!", "blurbHallPatrons": "Dies ist die Halle der Unterstützer, in der wir die edlen Abenteurer ehren, die Habitica's ursprüngliche Kickstarter-Kampagne unterstützt haben. Wir danken ihnen für die Hilfe Habitica zum Leben zu erwecken!", - "blurbHallHeroes": "Dies ist die Halle der Helden, in der Open-Source Unterstützter von Habitica geehrt werden. Durch Code, Kunst, Musik, schreiben, oder auch nur Hilfsbereitschaft haben sie Edelsteine, exklusive Ausstattung verdient und angesehene Titel erlangt. Auch du kannst Habitica unterstützen! Hier erfährst Du mehr dazu." + "blurbHallContributors": "Dies ist die Halle der Helden, in der Open-Source Unterstützter von Habitica geehrt werden. Durch Code, Kunst, Musik, schreiben, oder auch nur Hilfsbereitschaft haben sie Edelsteine, exklusive Ausstattung verdient und angesehene Titel erlangt. Auch Du kannst Habitica unterstützen! Hier erfährst Du mehr dazu." } \ No newline at end of file diff --git a/common/locales/de/faq.json b/common/locales/de/faq.json index db1820f323..b8e34051cc 100644 --- a/common/locales/de/faq.json +++ b/common/locales/de/faq.json @@ -1,44 +1,44 @@ { "frequentlyAskedQuestions": "Häufig gestellte Fragen", "faqQuestion0": "Ich bin verwirrt. Wo bekomme ich einen Überblick?", - "iosFaqAnswer0": "Als erstes erstellt Du Aufgaben, die Du im täglichen Leben erledigen möchtest. Sobald Du die Aufgaben im Alltag erledigt hast, hakst Du sie ab und verdienst erhältst Erfahrung und Gold. Gold wird benutzt um Ausrüstungen und Gegenstände zu kaufen, sowie selbst erstellte Belohnungen. Erfahrung lässt deinen Character im Level aufsteigen und schaltet Inhalte wie Haustiere, Fähigkeiten und Quests frei! Du kannst deinen Charakter im Menü > Customize Avatar gestalten. \n\nEinige grundsätzliche Wege zu kommunizieren: klicke das (+) in der oberen rechten Ecke um eine neue Aufgabe hinzuzufügen. Klicke auf eine existierende Aufgabe um sie zu bearbeiten und streiche 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 erstellt Du Aufgaben, die Du im täglichen Leben erledigen möchtest. Sobald Du die Aufgaben im Alltag erledigt hast, hakst Du sie ab und verdienst erhältst Erfahrung und Gold. Gold wird benutzt um Ausrüstungen und Gegenstände zu kaufen, sowie selbst erstellte Belohnungen. Erfahrung lässt deinen Character im Level aufsteigen und schaltet Inhalte wie Haustiere, Fähigkeiten und Quests frei! Schau dir die Schritt-für-Schritt Übersicht des Spiels für mehr Infos an [Hilfe -> Übersicht für neue Nutzer](https://habitica.com/static/overview).", + "iosFaqAnswer0": "Als erstes erstellt Du Aufgaben, die Du im täglichen Leben erledigen möchtest. Sobald Du die Aufgaben im Alltag erledigt hast, hakst Du sie ab und erhältst Erfahrung und Gold. Gold wird benutzt um Ausrüstungen und Gegenstände zu kaufen, sowie selbst erstellte Belohnungen. Erfahrung lässt Deinen Charakter im Level aufsteigen und schaltet Inhalte wie Haustiere, Fähigkeiten und Quests frei! Du kannst Deinen Charakter im Menü > Avatar anpassen gestalten. \n\nEinige grundsätzliche Wege zu kommunizieren: klicke das (+) in der oberen rechten Ecke um eine neue Aufgabe hinzuzufügen. Klicke auf eine existierende Aufgabe um sie zu bearbeiten und streiche 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 Checklisten-Sprechblase klickst.", + "webFaqAnswer0": "Als erstes erstellst Du Aufgaben, die Du im täglichen Leben erledigen möchtest. Sobald Du die Aufgaben im Alltag erledigt hast, hakst Du sie ab und erhältst Erfahrung und Gold. Gold wird benutzt um Ausrüstungen und Gegenstände zu kaufen, sowie selbst erstellte Belohnungen. Erfahrung lässt Deinen Charakter im Level aufsteigen und schaltet Inhalte wie Haustiere, Fähigkeiten und Quests frei! Schau dir die Schritt-für-Schritt Übersicht des Spiels für mehr Infos an [Hilfe -> Übersicht für neue Nutzer](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.", + "iosFaqAnswer1": "Gute Gewohnheiten (die mit einem +) sind Aufgaben, die Du mehrmals am Tag wiederholen kannst, zum Beispiel Gemüse essen. Schlechte Angewohnheiten (die mit einem -) sind Aufgaben, die Du vermeiden solltest, zum Beispiel 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 bringen Erfahrung und Gold. Schlechte Gewohnheiten ziehen Gesundheit ab.\n\nTägliche Aufgaben sind Aufgaben, die Du jeden Tag machen musst, zum Beispiel Zähne zu putzen oder Deine E-Mails abrufen. Du kannst die Tage, an denen eine tägliche Aufgabe fällig ist, anpassen, indem Du bearbeiten klickst. Wenn Du eine tägliche Aufgabe, die fällig ist, auslässt, wird Deinem Charakter über Nacht Schaden zugefügt. Sei vorsichtig und füge nicht zu viele tägliche Aufgaben 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

\nTägliche Aufgaben müssen jeden Tag erledigt werden, wie Zähne putzen oder E-Mails abrufen. Du kannst die Tage an denen eine tögliche Aufgabe fällig ist, anpassen, indem Du \"Bearbeiten\" klickst. Wenn Du eine tägliche Aufgabe auslässt, die fällig ist, wird Deinem Charakter über Nacht Schaden zugefügt. Sei also vorsichtig und füge nicht zu viele tägliche Aufgaben 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.", "faqQuestion2": "Wo finde ich Beispielaufgaben?", - "iosFaqAnswer2": "Das Wiki hat vier Listen mit Beispielaufgaben, die du als Inspiration nutzen kannst:\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": "Das Wiki hat vier Listen mit Beispielaufgaben, die du als Inspiration nutzen kannst:\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": "Das Wiki hat vier Listen mit Beispielaufgaben, die Du als Inspiration nutzen kannst:\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": "Das Wiki hat vier Listen mit Beispielaufgaben, die Du als Inspiration nutzen kannst:\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": "Warum ändern meine Aufgaben die Farbe?", - "iosFaqAnswer3": "Deine Aufgaben verändern die Farbe je nachdem wie gut du diese zur Zeit erfüllst! Jede neue Aufgabe besitzt anfangs die neutrale Farbe Gelb. Erledigst du tägliche Aufgaben oder gute Gewohnheiten regelmäßig, werden diese blau. Verfehlst du eine tägliche Aufgabe oder gibst du einer schlechten Gewohnheit nach, werden die Aufgaben rot. Je röter die Aufgabe ist, desto mehr Belohnung bekommst du für sie, allerdings verletzen dich tägliche Aufgaben und schlechte Gewohnheiten umso mehr! Das hilft dir dich zu motivieren diese Aufgaben zu erledigen.", - "webFaqAnswer3": "Deine Aufgaben verändern die Farbe je nachdem wie gut du diese zur Zeit erfüllst! Jede neue Aufgabe besitzt anfangs die neutrale Farbe Gelb. Erledigst du tägliche Aufgaben oder gute Gewohnheiten regelmäßig, werden diese blau. Verfehlst du eine tägliche Aufgabe oder gibst du einer schlechten Gewohnheit nach, werden die Aufgaben rot. Je röter die Aufgabe ist, desto mehr Belohnung bekommst du für sie, allerdings verletzen dich tägliche Aufgaben und schlechte Gewohnheiten umso mehr! Das hilft dir dich zu motivieren diese Aufgaben zu erledigen.", - "faqQuestion4": "Warum hat mein Avatar Lebenspunkte verloren und wie kann ich es wieder auffüllen?", - "iosFaqAnswer4": "Es gibt verschiedene Dinge, die verursachen, dass du Schaden erleidest. Als erstes, wenn du tägliche Aufgaben über Nacht unerledigt, sie werden dir Schaden zufügen. Zweitens, wenn du eine schlechte Gewohnheit anklickst, fügt es dir auch Schaden zu. Zuletzt, wenn du in einem Bosskampf mit deiner Gruppe bist und einer deiner Gruppenmitglieder hat seine täglichen Aufgaben nicht erledigt, dann wird dich der Boss angreifen.\n\nDer gewöhnliche Weg, um Leben zu gewinnen, ist im Level aufzusteigen, was deine komplette Gesundheit wieder herstellt. Du kannst auch Heiltränke mit Gold in Shop kaufen. Dazu kommt, ab Level 10 oder höher, kannst du wählen, ob du ein Heiler werden möchtest, dann lernst du Heilfähigkeiten. Wenn du in einer Gruppe mit einem Heiler bist, kann dieser dich genauso heilen. ", - "webFaqAnswer4": "Es gibt verschiedene Dinge, die verursachen, dass du Schaden erleidest. Als erstes fügen dir tägliche Aufgaben, die über Nacht unerledigt bleiben, Schaden zu. Zweitens fügt es dir auch Schaden zu, wenn du eine schlechte Gewohnheit anklickst. Drittens wird dich in einem Bosskampf mit deiner Gruppe der Boss angreifen, wenn eines deiner Gruppenmitglieder seine täglichen Aufgaben nicht erledigt hat.\n

\nDer gewöhnliche Weg um Leben zu gewinnen ist im Level aufzusteigen, was deine komplette Gesundheit wiederherstellt. Du kannst auch Heiltränke mit Gold in Shop kaufen. Dazu kommt, dass du ab Level 10 oder höher wählen kannst, ob du ein Heiler werden möchtest, dann lernst du Heilfähigkeiten. Wenn du in einer Gruppe (under Social > Party) mit einem Heiler bist, kann dieser dich genauso heilen. ", + "iosFaqAnswer3": "Deine Aufgaben verändern die Farbe je nachdem wie gut Du diese zur Zeit erfüllst! Jede neue Aufgabe besitzt anfangs die neutrale Farbe Gelb. Erledigst Du tägliche Aufgaben oder gute Gewohnheiten regelmäßig, werden diese blau. Verfehlst Du eine tägliche Aufgabe oder gibst Du einer schlechten Gewohnheit nach, werden die Aufgaben rot. Je röter die Aufgabe ist, desto mehr Belohnung bekommst Du für sie, allerdings verletzen Dich tägliche Aufgaben und schlechte Gewohnheiten umso mehr! Das hilft dir Dich zu motivieren diese Aufgaben zu erledigen.", + "webFaqAnswer3": "Deine Aufgaben verändern die Farbe je nachdem wie gut Du diese zur Zeit erfüllst! Jede neue Aufgabe besitzt anfangs die neutrale Farbe Gelb. Erledigst Du tägliche Aufgaben oder gute Gewohnheiten regelmäßig, werden diese blau. Verfehlst Du eine tägliche Aufgabe oder gibst Du einer schlechten Gewohnheit nach, werden die Aufgaben rot. Je röter die Aufgabe ist, desto mehr Belohnung bekommst Du für sie, allerdings verletzen Dich tägliche Aufgaben und schlechte Gewohnheiten umso mehr! Das hilft dir Dich zu motivieren diese Aufgaben zu erledigen.", + "faqQuestion4": "Warum hat mein Avatar Lebenspunkte verloren und wie kann ich sie wieder auffüllen?", + "iosFaqAnswer4": "Es gibt verschiedene Dinge, die verursachen, dass Du Schaden erleidest. Erstens, wenn Du tägliche Aufgaben über Nacht unerledigt lässt, werden sie dir Schaden zufügen. Zweitens, wenn Du eine schlechte Gewohnheit anklickst, fügt sie dir ebenfalls Schaden zu. Zuletzt, wenn Du in einem Bosskampf mit Deiner Gruppe bist und einer Deiner Gruppenmitglieder hat seine täglichen Aufgaben nicht erledigt, dann wird Dich der Boss angreifen.\n\nDer gewöhnliche Weg, um Leben zu gewinnen, ist im Level aufzusteigen, was Deine komplette Gesundheit wiederherstellt. Du kannst auch Heiltränke mit Gold in Laden kaufen. Dazu kommt, ab Level 10 oder höher, kannst Du wählen, ob Du ein Heiler werden möchtest, dann lernst Du Heilfähigkeiten. Wenn Du in einer Gruppe mit einem Heiler bist, kann dieser Dich genauso heilen.", + "webFaqAnswer4": "Es gibt verschiedene Dinge, die verursachen, dass Du Schaden erleidest. Als erstes fügen dir tägliche Aufgaben, die über Nacht unerledigt bleiben, Schaden zu. Zweitens fügt es dir auch Schaden zu, wenn Du eine schlechte Gewohnheit anklickst. Drittens wird Dich in einem Bosskampf mit Deiner Gruppe der Boss angreifen, wenn eines Deiner Gruppenmitglieder seine täglichen Aufgaben nicht erledigt hat.\n

\nDer gewöhnliche Weg um Leben zu gewinnen ist im Level aufzusteigen, was Deine komplette Gesundheit wiederherstellt. Du kannst auch Heiltränke mit Gold in Shop kaufen. Dazu kommt, dass Du ab Level 10 oder höher wählen kannst, ob Du ein Heiler werden möchtest, dann lernst Du Heilfähigkeiten. Wenn Du in einer Gruppe (under Social > Party) mit einem Heiler bist, kann dieser Dich genauso heilen.", "faqQuestion5": "Wie spiele ich Habitica mit meinen Freunden?", - "iosFaqAnswer5": "Am Besten lädst du sie in eine Party mit dir ein! Parties können zusammen Quest beschreiten, Monster bekämpfen und einender mit zaubern unterstützen. Geh ins Menü < Party und klicke \"Neue Party erstellen\" wenn du noch keine Party hast. Dann tippst du auf die Mitglieder liste und tippst du oben rechts auf einladen. Um deine Freunde einzuladen brauchst du ihre User ID(welche aus einer langen zahlen, Buchstaben Kombination besteht).", - "webFaqAnswer5": "Am besten lädst du sie ein eine Gruppe mit dir ein (unter Social > Party)! Gruppen können zusammen Quests antreten, Monster bekämpfen und Fähigkeiten benutzen um einander zu helfen. Ihr könnt außerdem gemeinsam einer Gilde beitreten (unter Social > Guilds). Gilden sind Chat-Räume, deren Mitglieder gemeinsame Ziele verfolgen, und können privat oder öffentlich sein. Du kannst in sovielen Gilden sein, wie du möchtest, aber nur in einer Gruppe.\n

\nGenauere Informationen findest du auf den Wiki Seiten für [Parties](http://habitrpg.wikia.com/wiki/Party) und [Guilds](http://habitrpg.wikia.com/wiki/Guilds).", + "iosFaqAnswer5": "Am Besten lädst Du sie in eine Gruppe mit dir ein! Gruppen können zusammen Quests bestreiten, Monster bekämpfen und sich gegenseitig mit Zaubern unterstützen. Geh auf Menü > Gruppe und klicke auf \"Neue Gruppe erstellen\" wenn Du noch keine Gruppe hast. Dann klicke auf die Mitgliederliste und lade sie ein indem Du oben rechts auf einladen klickst und ihre Benutzer ID (die aus einer langen Zahlen-, Buchstabenkombination besteht, welche sie unter Einstellungen > Konto Details bei der App und unter Einstellungen > API auf der Webseite finden können) eingibst. Außerdem kannst Du auf der Webseite Freunde auch per E-Mail einladen, was für die App auch noch folgen wird.\n\nAuf der Webseite können Du und Deine Freunde auch Gilden beitreten, welche öffentliche Chat-Räume sind. Gilden werden der App auch noch hinzugefügt werden.", + "webFaqAnswer5": "Am besten lädst Du sie in eine Gruppe mit dir ein (unter Soziales > Gruppe)! Gruppen können zusammen Quests antreten, Monster bekämpfen und Fähigkeiten benutzen um einander zu helfen. Ihr könnt außerdem gemeinsam einer Gilde beitreten (unter Soziales > Gilden). Gilden sind Chat-Räume, deren Mitglieder gemeinsame Ziele verfolgen, und können privat oder öffentlich sein. Du kannst in sovielen Gilden sein, wie Du möchtest, aber nur in einer Gruppe.\n

\nGenauere Informationen findest Du auf den Wiki-Seiten für [Parties](http://habitrpg.wikia.com/wiki/Party) und [Guilds](http://habitrpg.wikia.com/wiki/Guilds).", "faqQuestion6": "Woher bekomme ich Haustiere oder Reittiere?", - "iosFaqAnswer6": "Wenn du Level 3 erreichst, wirst du das Beutesystem freischalten. Jedes Mal wenn du eine Aufgabe erledigst, hast du eine zufällige Chance ein Ei, einen Schlüpftrank oder Futter zu erhalten. Diese werden unter Inventar > Marktplatz gespeichert. \n\nUm ein Haustier auszubrüten benötigst du ein Ei und einen Schlüpftrank. Klicke auf das Ei, um die Spezies auszuwählen, welche du schlüpfen lassen möchtest, und klicke anschließend auf den Schlüpftrank, um die Farbe zu bestimmen! Um es deinem Avatar hinzuzufügen, gehe zu Inventar > Haustiere und klicke auf das gewünschte Tier.\n\nDu kannst deine Haustiere unter Inventar > Haustiere auch füttern, sodass sie zu Reittieren heranwachsen. Klicke auf ein Haustier und dann auf das Futter aus dem Menü auf der rechten Seite, um es zu füttern! Damit es zu einem Reittier heranwächst, musst du dein Haustier mehrmals füttern, wenn du jedoch sein bevorzugtes Futter herausfindest, wächst es schneller. Dies kannst du entweder durch ausprobieren selbst herausfinden oder [im Wiki nachschauen - Vorsicht: Spoiler!](http://de.habitica.wikia.com/wiki/Futter#Bevorzugtes_Futter). Wenn du ein Reittier erhalten hast, gehe zu Inventar > Reittiere und klicke das Tier an, um es deinem Avatar hinzuzufügen.\n\nDu kannst auch Eier für Quest-Haustiere erhalten, indem du bestimmte Quests abschließt. (Siehe weiter unten, um mehr über Quests zu erfahren.)", - "webFaqAnswer6": "Wenn du Level 3 erreichst, wirst du das Beutesystem freischalten. Jedes Mal wenn du eine Aufgabe erledigst, hast du eine zufällige Chance ein Ei, einen Schlüpftrank oder Futter zu erhalten. Diese werden unter Inventar > Marktplatz gespeichert.\n

\nUm ein Haustier auszubrüten benötigst du ein Ei und einen Schlüpftrank. Klicke auf das Ei, um die Spezies auszuwählen, welche zu schlüpfen lassen möchtest, und clicke anschließend auf den Schlüpftrank, um die Farbe zu bestimmen! Um es deinem Avatar hinzuzufügen, gehe zu Inventar > Haustiere und klicke auf das gewünschte Tier.\n

\nDu kannst deine Haustiere unter Inventar > Haustiere auch füttern, sodass sie zu Reittieren heranwachsen. Klicke auf ein Haustier und dann auf das Futter aus dem Menü auf der rechten Seite, um es zu füttern! Damit es zu einem Reittier heranwächst, musst du dein Haustier mehrmals füttern, wenn du jedoch sein bevorzugtes Futter herausfindest, wächst es schneller. Dies kannst du entweder durch ausprobieren selbst herausfinden oder [im Wiki nachschauen Vorsicht: Spoiler!](http://de.habitica.wikia.com/wiki/Futter#Bevorzugtes_Futter). Wenn du ein Reittier erhalten hast, gehe zu Inventar > Mounts und clicke das Tier an, um es deinem Avatar hinzuzufügen.\n

\nDu kannst auch Eier für Quest-Haustiere erhalten, indem du bestimmte Quests abschließt. (Siehe weiter unten, um mehr über Quests zu erfahren.)", + "iosFaqAnswer6": "Wenn Du Level 3 erreichst, wirst Du das Beutesystem freischalten. Jedes Mal wenn Du eine Aufgabe erledigst, hast Du eine zufällige Chance ein Ei, einen Schlüpftrank oder Futter zu erhalten. Diese werden unter Inventar > Marktplatz gespeichert. \n\nUm ein Haustier auszubrüten benötigst Du ein Ei und einen Schlüpftrank. Klicke auf das Ei, um die Spezies auszuwählen, welche Du schlüpfen lassen möchtest, und klicke anschließend auf den Schlüpftrank, um die Farbe zu bestimmen! Um es Deinem Avatar hinzuzufügen, gehe zu Inventar > Haustiere und klicke auf das gewünschte Tier.\n\nDu kannst Deine Haustiere unter Inventar > Haustiere auch füttern, sodass sie zu Reittieren heranwachsen. Klicke auf ein Haustier und dann auf das Futter aus dem Menü auf der rechten Seite, um es zu füttern! Damit es zu einem Reittier heranwächst, musst Du Dein Haustier mehrmals füttern, wenn Du jedoch sein bevorzugtes Futter herausfindest, wächst es schneller. Dies kannst Du entweder durch ausprobieren selbst herausfinden oder [im Wiki nachschauen - Vorsicht: Spoiler!](http://de.habitica.wikia.com/wiki/Futter#Bevorzugtes_Futter). Wenn Du ein Reittier erhalten hast, gehe zu Inventar > Reittiere und klicke das Tier an, um es Deinem Avatar hinzuzufügen.\n\nDu kannst auch Eier für Quest-Haustiere erhalten, indem Du bestimmte Quests abschließt. (Siehe weiter unten, um mehr über Quests zu erfahren.)", + "webFaqAnswer6": "Wenn Du Level 3 erreichst, wirst Du das Beutesystem freischalten. Jedes Mal wenn Du eine Aufgabe erledigst, hast Du eine zufällige Chance ein Ei, einen Schlüpftrank oder Futter zu erhalten. Diese werden unter Inventar > Marktplatz gespeichert.\n

\nUm ein Haustier auszubrüten benötigst Du ein Ei und einen Schlüpftrank. Klicke auf das Ei, um die Spezies auszuwählen, welche zu schlüpfen lassen möchtest, und clicke anschließend auf den Schlüpftrank, um die Farbe zu bestimmen! Um es Deinem Avatar hinzuzufügen, gehe zu Inventar > Haustiere und klicke auf das gewünschte Tier.\n

\nDu kannst Deine Haustiere unter Inventar > Haustiere auch füttern, sodass sie zu Reittieren heranwachsen. Klicke auf ein Haustier und dann auf das Futter aus dem Menü auf der rechten Seite, um es zu füttern! Damit es zu einem Reittier heranwächst, musst Du Dein Haustier mehrmals füttern, wenn Du jedoch sein bevorzugtes Futter herausfindest, wächst es schneller. Dies kannst Du entweder durch ausprobieren selbst herausfinden oder [im Wiki nachschauen Vorsicht: Spoiler!](http://de.habitica.wikia.com/wiki/Futter#Bevorzugtes_Futter). Wenn Du ein Reittier erhalten hast, gehe zu Inventar > Mounts und clicke das Tier an, um es Deinem Avatar hinzuzufügen.\n

\nDu kannst auch Eier für Quest-Haustiere erhalten, indem Du bestimmte Quests abschließt. (Siehe weiter unten, um mehr über Quests zu erfahren.)", "faqQuestion7": "Wie werde ich ein Krieger, Magier, Schurke oder Heiler?", - "iosFaqAnswer7": "Wenn du Level 10 erreichst, kannst du wählen, ob du Krieger, Magier, Schurke oder Heiler werden möchtest. (Alle Spieler beginnen standardmäßig als Krieger.) Jede Klasse hat unterschiedliche Ausrüstungsoptionen, unterschiedliche Fähigkeiten, die sie ab Level 11 verwenden können, und unterschiedliche Vorteile. Krieger fügen Bossen leicht Schaden zu, halten mehr Schaden von ihren Aufgaben aus und helfen ihrer Gruppe widerstandsfähiger zu werden. Magier schaden Bossen ebenfalls leicht, steigen schnell Level auf und können Mana für sich und ihre Gruppe wiederherstellen. Schurken erhalten das meiste Geld, finden die meiste Beute und können ihrer Gruppe helfen, dies ebenfalls zu tun. Zum Schluss können Heiler sich selbst und ihre Gruppe heilen. \n\nWenn du nicht direkt eine Klasse auswählen möchtest -- zum Beispiel, wenn du gerade dabei bist die gesamte Ausrüstung für deine aktuelle Klasse zu kaufen -- kannst du \"Später auswählen\" klicken und die Klasse unter Benutzer > Werte später auswählen.", - "webFaqAnswer7": "Wenn du Level 10 erreichst, kannst du wählen, ob du Krieger, Magier, Schurke oder Heiler werden möchtest. (Alle Spieler beginnen standardmäßig als Krieger.) Jede Klasse hat unterschiedliche Ausrüstungsoptionen, unterschiedliche Fähigkeiten, die sie ab Level 11 verwenden können, und unterschiedliche Vorteile. Krieger fügen Bossen leicht Schaden zu, halten mehr Schaden von ihren Aufgaben aus und helfen ihrer Gruppe widerstandsfähiger zu werden. Magier schaden Bossen ebenfalls leicht, steigen schnell Level auf und können Mana für sich und ihre Gruppe wiederherstellen. Schurken erhalten das meiste Geld, finden die meiste Beute und können ihrer Gruppe helfen, dies ebenfalls zu tun. Heiler können sich selbst und ihre Gruppe heilen.\n

\nWenn du nicht direkt eine Klasse auswählen möchtest -- zum Beispiel, wenn du gerade dabei bist die gesamte Ausrüstung für deine aktuelle Klasse zu kaufen -- kannst du \"Opt Out\" klicken und die Klasse unter Benutzer > Werte später aktivieren.", + "iosFaqAnswer7": "Wenn Du Level 10 erreichst, kannst Du wählen, ob Du Krieger, Magier, Schurke oder Heiler werden möchtest. (Alle Spieler beginnen standardmäßig als Krieger.) Jede Klasse hat unterschiedliche Ausrüstungsoptionen, unterschiedliche Fähigkeiten, die sie ab Level 11 verwenden können, und unterschiedliche Vorteile. Krieger fügen Bossen leicht Schaden zu, halten mehr Schaden von ihren Aufgaben aus und helfen ihrer Gruppe widerstandsfähiger zu werden. Magier schaden Bossen ebenfalls leicht, steigen schnell Level auf und können Mana für sich und ihre Gruppe wiederherstellen. Schurken erhalten das meiste Geld, finden die meiste Beute und können ihrer Gruppe helfen, dies ebenfalls zu tun. Zum Schluss können Heiler sich selbst und ihre Gruppe heilen. \n\nWenn Du nicht direkt eine Klasse auswählen möchtest -- zum Beispiel, wenn Du gerade dabei bist die gesamte Ausrüstung für Deine aktuelle Klasse zu kaufen -- kannst Du \"Später auswählen\" klicken und die Klasse unter Benutzer > Werte später auswählen.", + "webFaqAnswer7": "Wenn Du Level 10 erreichst, kannst Du wählen, ob Du Krieger, Magier, Schurke oder Heiler werden möchtest. (Alle Spieler beginnen standardmäßig als Krieger.) Jede Klasse hat unterschiedliche Ausrüstungsoptionen, unterschiedliche Fähigkeiten, die sie ab Level 11 verwenden können, und unterschiedliche Vorteile. Krieger fügen Bossen leicht Schaden zu, halten mehr Schaden von ihren Aufgaben aus und helfen ihrer Gruppe widerstandsfähiger zu werden. Magier schaden Bossen ebenfalls leicht, steigen schnell Level auf und können Mana für sich und ihre Gruppe wiederherstellen. Schurken erhalten das meiste Geld, finden die meiste Beute und können ihrer Gruppe helfen, dies ebenfalls zu tun. Heiler können sich selbst und ihre Gruppe heilen.\n

\nWenn Du nicht direkt eine Klasse auswählen möchtest -- zum Beispiel, wenn Du gerade dabei bist die gesamte Ausrüstung für Deine aktuelle Klasse zu kaufen -- kannst Du \"Opt Out\" klicken und die Klasse unter Benutzer > Werte später aktivieren.", "faqQuestion8": "Was ist die blaue Statistik-Leiste, die in der Kopfzeile nach Level 10 erscheint?", - "iosFaqAnswer8": "Der blaue Balken, der erschienen ist, als du Level 10 erreicht hast und eine Klasse gewählt hast, ist dein Manabalken. Mit dem Erreichen weiterer Level wirst du spezielle Fähigkeiten freischalten, die dich Mana kosten. Jede Klasse hat verschiedene Fähigkeiten, die du nach Level 11 unter Menu > Use Skills erscheinen. Im Gegensatz zu deinem Lebensbalken füllt sich dein Mana nicht automatisch beim Stufenanstieg wieder auf. Stattdessen füllt sich dein Mana durch das Erfüllen von täglichen und einmaligen Aufgaben und Gewohnheiten wieder auf. Gehst du schlechten Gewohnheiten nach, verlierst du dafür Mana. Außerdem regenerierst du etwas Mana über Nacht -- abhängig von der Anzahl der täglichen Aufgaben, die du erfüllt hast. Je mehr Aufgaben, desto mehr Mana regenerierst du. ", - "webFaqAnswer8": "Die blaue Leiste, die erschien als du Level 10 erreicht hast und eine Klasse gewählt hast, ist deine Manaleiste. Während du weiter im Level aufsteigst, wirst du spezielle Fähigkeiten freischalten, die dich beim Benutzen Mana kosten. Jede Klasse hat verschiedene Fähigkeiten, die nach dem 11. Levelaufstieg unter einen speziellen Absatz unter der Belohnungsspalte erscheint. Im Gegensatz zu deiner Lebensleiste füllt sich dein Mana nicht automatisch beim Stufenanstieg wieder auf. Stattdessen füllt sich Mana durch das Erfüllen von deinen täglichen und einmaligen Aufgaben und Gewohnheiten und sie geht verloren, wenn du schlechten Gewohnheiten nachgehst. Außerdem regenerierst du etwas Mana über Nacht -- abhängig von der Anzahl der täglichen Aufgaben, die du erfüllt hast. Je mehr Aufgaben, desto mehr Mana regenerierst du.", + "iosFaqAnswer8": "Der blaue Balken, der erschienen ist, als Du Level 10 erreicht hast und eine Klasse gewählt hast, ist Dein Manabalken. Mit dem Erreichen weiterer Level wirst Du spezielle Fähigkeiten freischalten, die Dich Mana kosten. Jede Klasse hat verschiedene Fähigkeiten, die Du nach Level 11 unter Menu > Use Skills erscheinen. Im Gegensatz zu Deinem Lebensbalken füllt sich Dein Mana nicht automatisch beim Stufenanstieg wieder auf. Stattdessen füllt sich Dein Mana durch das Erfüllen von täglichen und einmaligen Aufgaben und Gewohnheiten wieder auf. Gehst Du schlechten Gewohnheiten nach, verlierst Du dafür Mana. Außerdem regenerierst Du etwas Mana über Nacht -- abhängig von der Anzahl der täglichen Aufgaben, die Du erfüllt hast. Je mehr Aufgaben, desto mehr Mana regenerierst Du.", + "webFaqAnswer8": "Die blaue Leiste, die erschien als Du Level 10 erreicht hast und eine Klasse gewählt hast, ist Deine Manaleiste. Während Du weiter im Level aufsteigst, wirst Du spezielle Fähigkeiten freischalten, die Dich beim Benutzen Mana kosten. Jede Klasse hat verschiedene Fähigkeiten, die nach dem 11. Levelaufstieg unter einen speziellen Absatz unter der Belohnungsspalte erscheint. Im Gegensatz zu Deiner Lebensleiste füllt sich Dein Mana nicht automatisch beim Stufenanstieg wieder auf. Stattdessen füllt sich Mana durch das Erfüllen von Deinen täglichen und einmaligen Aufgaben und Gewohnheiten und sie geht verloren, wenn Du schlechten Gewohnheiten nachgehst. Außerdem regenerierst Du etwas Mana über Nacht -- abhängig von der Anzahl der täglichen Aufgaben, die Du erfüllt hast. Je mehr Aufgaben, desto mehr Mana regenerierst Du.", "faqQuestion9": "Wie bekämpfe ich Monster und gehe auf Quests?", - "iosFaqAnswer9": "Zuerst musst du eine Gruppe gründen oder einer Gruppe beitreten (unter Soziales > Gruppe). Obwohl du Monster auch alleine bekämpfen kannst, empfehlen wir in einer Gruppe mit anderen Mitspielern zu spielen, da dies die Quests viel einfacher macht. Zusätzlich ist es sehr motivierend einen Freund zu haben, der einen anspornt seine Aufgaben zu erledigen.\n\nAls nächstes benötigst du eine Questrolle, welche unter Inventar > Quests gelagert werden. Es gibt drei Möglichkeiten an Rollen zu kommen: \n\n- Bei Erreichen von Level 15 erhälst du eine Questreihe, d.h. drei zusammenhängende Quests. Weitere Questreihen werden bei den Leveln 30, 40 und 60 freigeschaltet. \n- Wenn du Leute in deine Party einläfst, bekommst du als Belohnung die Basi-List Rolle!\n- Du kannst Quests auf der Quest-Seite auf der [Website](https://habitica.com/#/options/inventory/quests)für Gold und Edelsteine kaufen. (wir werden diese Funktion in einen späteren Update in der App hinzufügen.)\n\nUm den Boss zu bekämpfen oder Gegenstände bei einer Sammelquest zu sammeln, musst du einfach deine Aufgaben normal erledigen und sie werden über Nacht in Schaden umgerechnet. (Möglicherweise ist es erforderlich die Seite neu zu laden, um den Effekt auf den Lebensbalken des Bosses zu sehen.) Wenn du einen Boss bekämpfst und tägliche Aufgaben nicht erledigst, wird der Boss eurer Gruppe zur gleichen Zeit Schaden zufügen wie ihr dem Boss.\n\nAb Level 11 erhalten Magier und Krieger Fähigkeiten, welche dem Boss zusätzlichen Schaden zufügen, also sind dies auf Level 10 ausgezeichnete Klassen zu wählen, wenn ihr großen Schaden anrichten wollt.", - "webFaqAnswer9": "Zuerst musst du eine Gruppe gründen oder einer Gruppe beitreten (unter Soziales > Gruppe). Obwohl du Monster auch alleine bekämpfen kannst, empfehlen wir in einer Gruppe mit anderen Mitspielern zu spielen, da dies die Quests viel einfacher macht. Zusätzlich ist es sehr motivierend einen Freund zu haben, der einen anspornt seine Aufgaben zu erledigen.\n

\nAls nächstes benötigst du eine Questrolle, welche unter Inventar > Quests gespeichert sind. Es gibt drei Möglichkeiten an Rollen zu kommen:\n

\n* Wenn du Mitspieler zu deiner Gruppe einlädst, erhälst du die Basi-List-Rolle.\n* Bei Erreichen von Level 15 erhälst du eine Questreihe, d.h. drei zusammenhängende Quests. Weitere Questreihen werden bei den Leveln 30, 40 und 60 freigeschaltet.\n* Du kanst Quests auf der Quest-Seite (Inventar > Quests) für Gold und Edelsteine kaufen.\n

\nUm den Boss zu bekämpfen oder Gegenstände bei einer Sammelquest zu sammeln, musst du einfach deine Aufgaben normal erledigen und sie werden über Nacht in Schaden umgerechnet. (Möglicherweise ist es erforderlich die Seite neu zu laden, um den Effekt auf den Lebensbalken des Bosses zu sehen.) Wenn du einen Boss bekämpfst und tägliche Aufgaben nicht erledigst, wird der Boss eurer Gruppe zur gleichen Zeit Schaden zufügen wie ihr dem Boss.\n

\nAb Level 11 erhalten Magier und Krieger Fäghigkeiten, welche dem Boss zusätzlichen Schaden zufügen, also sind dies ausgezeichnete Klassen, welche du ab Level 10 wählen sollte, wenn du viel Bossen viel Schaden zufügen möchtest.", + "iosFaqAnswer9": "Zuerst musst Du eine Gruppe gründen oder einer Gruppe beitreten (unter Soziales > Gruppe). Obwohl Du Monster auch alleine bekämpfen kannst, empfehlen wir in einer Gruppe mit anderen Mitspielern zu spielen, da dies die Quests viel einfacher macht. Zusätzlich ist es sehr motivierend einen Freund zu haben, der einen anspornt seine Aufgaben zu erledigen.\n\nAls nächstes benötigst Du eine Questrolle, welche unter Inventar > Quests gelagert werden. Es gibt drei Möglichkeiten an Schriftrollen zu kommen: \n\n- Bei Erreichen von Level 15 erhältst Du eine Questreihe, d.h. drei zusammenhängende Quests. Weitere Questreihen werden bei den Leveln 30, 40 und 60 freigeschaltet. \n- Wenn Du Leute in Deine Gruppe einlädst, bekommst Du als Belohnung die Basi-List-Schriftrolle!\n- Du kannst Quests auf der Quest-Seite der [Website](https://habitica.com/#/options/inventory/quests) für Gold und Edelsteine kaufen. (Wir werden diese Funktion in einem späteren Update der App hinzufügen.)\n\nUm den Boss zu bekämpfen oder Gegenstände bei einer Sammelquest zu sammeln, musst Du einfach Deine Aufgaben normal erledigen und sie werden über Nacht in Schaden umgerechnet. (Möglicherweise ist es erforderlich die Seite neu zu laden, um den Effekt auf den Lebensbalken des Bosses zu sehen.) Wenn Du einen Boss bekämpfst und tägliche Aufgaben nicht erledigst, wird der Boss eurer Gruppe zur gleichen Zeit Schaden zufügen wie ihr dem Boss.\n\nAb Level 11 erhalten Magier und Krieger Fähigkeiten, welche dem Boss zusätzlichen Schaden zufügen, also sind dies auf Level 10 ausgezeichnete Klassen zu wählen, wenn ihr großen Schaden anrichten wollt.", + "webFaqAnswer9": "Zuerst musst Du eine Gruppe gründen oder einer Gruppe beitreten (unter Soziales > Gruppe). Obwohl Du Monster auch alleine bekämpfen kannst, empfehlen wir in einer Gruppe mit anderen Mitspielern zu spielen, da dies die Quests viel einfacher macht. Zusätzlich ist es sehr motivierend einen Freund zu haben, der einen anspornt seine Aufgaben zu erledigen.\n

\nAls nächstes benötigst Du eine Questrolle, welche unter Inventar > Quests gespeichert sind. Es gibt drei Möglichkeiten an Rollen zu kommen:\n

\n* Wenn Du Mitspieler zu Deiner Gruppe einlädst, erhälst Du die Basi-List-Rolle.\n* Bei Erreichen von Level 15 erhälst Du eine Questreihe, d.h. drei zusammenhängende Quests. Weitere Questreihen werden bei den Leveln 30, 40 und 60 freigeschaltet.\n* Du kanst Quests auf der Quest-Seite (Inventar > Quests) für Gold und Edelsteine kaufen.\n

\nUm den Boss zu bekämpfen oder Gegenstände bei einer Sammelquest zu sammeln, musst Du einfach Deine Aufgaben normal erledigen und sie werden über Nacht in Schaden umgerechnet. (Möglicherweise ist es erforderlich die Seite neu zu laden, um den Effekt auf den Lebensbalken des Bosses zu sehen.) Wenn Du einen Boss bekämpfst und tägliche Aufgaben nicht erledigst, wird der Boss eurer Gruppe zur gleichen Zeit Schaden zufügen wie ihr dem Boss.\n

\nAb Level 11 erhalten Magier und Krieger Fäghigkeiten, welche dem Boss zusätzlichen Schaden zufügen, also sind dies ausgezeichnete Klassen, welche Du ab Level 10 wählen sollte, wenn Du viel Bossen viel Schaden zufügen möchtest.", "faqQuestion10": "Was sind Edelsteine und wie bekomme ich welche?", - "iosFaqAnswer10": "Edelsteine können mit echtem Geld gekauft werden, indem man auf das Edelstein-Symbol oben in der Kopfzeile klickt. Wenn Menschen Edelsteine kaufen, helfen sie uns, die Webseite zu betreiben. Wir sind sehr dankbar für ihre Unterstützung!\n\nAlternativ zum direkten Kauf von Edelsteinen gibt es drei andere Möglichkeiten, Edelsteine zu erhalten:\n\n* Gewinne einen Wettbewerb auf der [Webseite](https://habitica.com) eines anderen Spielers unter Soziales > Wettbewerbe. (Wir werden Wettbewerbe in einem zukünftigen Update in die App integrieren!)\n* Abboniere diese [Webseite](https://habitica.com/#/options/settings/subscription) und schalte die Fähigkeit frei, eine bestimmte Anzahl von Edelsteinen pro Monat zu kaufen.\n* Trage mit deinen Fähigkeiten zum Habitica Projekt bei. Für mehr Informationen siehe im Wiki nach: [An Habitica mitarbeiten](http://habitica.wikia.com/wiki/Contributing_to_Habitica).\n\nBeachte, dass Gegenstände, die mit Edelsteinen gekauft werden keine statistischen Vorteile bringen, sodass Spieler die Seite auch ohne sie benutzen können!", - "webFaqAnswer10": "Edelsteine werden [mit realem Geld gekauft](https://habitica.com/#/options/settings/subscription), jedoch können [Abonnenten](https://habitica.com/#/options/settings/subscription) sie mit Gold kaufen. Wenn Menschen abonnieren oder Edelsteine kaufen, helfen sie uns die Seite zu betreiben. Wir sind sehr dankbar für ihre Unterstützung!\n

\nZusätzlich zum Kaufen von Edelsteinen oder Abonnieren gibt es zwei andere Möglichkeiten für einen Spieler an Edelsteine zu kommen.\n

\n* Gewinne einen Wettbewerb eines anderen Spielers unter Soziales > Wettbewerbe.\n* Trage mit deinen Fähigkeiten zum Habitica Projekt bei. Für mehr Details, sieh im Wiki nach: [An Habitica mitarbeiten](http://habitica.wikia.com/wiki/Contributing_to_Habitica)\n

\nBeachte, dass Gegenstände, die mit Edelsteinen gekauft werden keine statistischen Vorteile bringen, sodass Spieler die Seite auch ohne sie benutzen können!", + "iosFaqAnswer10": "Edelsteine können mit echtem Geld gekauft werden, indem man auf das Edelstein-Symbol oben in der Kopfzeile klickt. Wenn Menschen Edelsteine kaufen, helfen sie uns, die Webseite zu betreiben. Wir sind sehr dankbar für ihre Unterstützung!\n\nAlternativ zum direkten Kauf von Edelsteinen gibt es drei andere Möglichkeiten, Edelsteine zu erhalten:\n\n* Gewinne einen Wettbewerb auf der [Webseite](https://habitica.com) eines anderen Spielers unter Soziales > Wettbewerbe. (Wir werden Wettbewerbe in einem zukünftigen Update in die App integrieren!)\n* Abonniere diese [Webseite](https://habitica.com/#/options/settings/subscription) und schalte die Fähigkeit frei, eine bestimmte Anzahl von Edelsteinen pro Monat zu kaufen.\n* Trage mit Deinen Fähigkeiten zum Habitica Projekt bei. Für mehr Informationen siehe im Wiki nach: [An Habitica mitarbeiten](http://habitica.wikia.com/wiki/Contributing_to_Habitica).\n\nBeachte, dass Gegenstände, die mit Edelsteinen gekauft werden keine statistischen Vorteile bringen, sodass Spieler die Seite auch ohne sie benutzen können!", + "webFaqAnswer10": "Edelsteine werden [mit realem Geld gekauft](https://habitica.com/#/options/settings/subscription), jedoch können [Abonnenten](https://habitica.com/#/options/settings/subscription) sie mit Gold kaufen. Wenn Menschen abonnieren oder Edelsteine kaufen, helfen sie uns die Seite zu betreiben. Wir sind sehr dankbar für ihre Unterstützung!\n

\nZusätzlich zum Kaufen von Edelsteinen oder Abonnieren gibt es zwei andere Möglichkeiten für einen Spieler an Edelsteine zu kommen.\n

\n* Gewinne einen Wettbewerb eines anderen Spielers unter Soziales > Wettbewerbe.\n* Trage mit Deinen Fähigkeiten zum Habitica Projekt bei. Für mehr Details, sieh im Wiki nach: [An Habitica mitarbeiten](http://habitica.wikia.com/wiki/Contributing_to_Habitica)\n

\nBeachte, dass Gegenstände, die mit Edelsteinen gekauft werden keine statistischen Vorteile bringen, sodass Spieler die Seite auch ohne sie benutzen können!", "faqQuestion11": "Wie melde ich einen Fehler oder schlage ein Feature vor?", "iosFaqAnswer11": "Um einen Fehler zu melden, ein Feature vorzuschlagen oder Feedback zu senden, gehe im Menü unter Hilfe > Melde einen Fehler und Hilfe > Feature vorschlagen! Wir werden alles tun, um dir zu helfen.", "webFaqAnswer11": "Gemeldete Fehler werden in GitHub gesammelt. Gehe zu [Hilfe > Melde einen Fehler](https://github.com/HabitRPG/habitrpg/issues/2760) und folge den Anweisungen. Keine Sorge, wir werden ihn so bald wie möglich beheben!\n

\nVorgeschlagene Features werden in Trello gesammelt. Gehe zu [Hilfe > Feature vorschlagen](https://trello.com/c/odmhIqyW/440-read-first-table-of-contents) und folge den Anweisungen. Tadaa!", "faqQuestion12": "Wie bekämpfe ich einen Weltboss?", - "iosFaqAnswer12": "Welt-Bosse sind spezielle Monster, welche im Gasthaus erscheinen. Alle aktiven Benutzer kämpfen automatisch gegen den Boss und ihre Aufgaben und Fähigkeiten werden dem Boss wie üblich schaden.\n\nDu kannst dich gleichzeitig in einer normalen Quest befinden. Deine Aufgaben und Fähigkeiten werden sowohl dem Welt-Boss wie auch dem Boss/der Sammelquest schaden.\n\nEin Welt-Boss wird niemals Dich oder deinen Account verletzten. Stattdessen hat es einen Wutbalken, welcher sich füllt, wenn Benutzer ihre täglichen Aufgaben überspringen. Falls der Wutbalken gefüllt ist, wird der Welt-Boss einen der Nicht-Spieler-Charakter der Seite angreifen und ihr Aussehen wird sich verändern.\n\n Du kannst mehr über [past World Bosses](http://habitica.wikia.com/wiki/World_Bosses) in der Wiki erfahren", - "webFaqAnswer12": "Welt-Bosse sind spezielle Monster, welche im Gasthaus erscheinen. Alle aktiven Benutzer kämpfen automatisch gegen den Boss und ihre Aufgaben und Fähigkeiten werden dem Boss wie üblich schaden. \n

\nDu kannst dich gleichzeitig in einer normalen Quest befinden. Deine Aufgaben und Fähigkeiten werden sowohl bei dem Welt-Boss, sowie auch bei dem Boss/der Sammelquest von deiner Gruppe dazugezählt. \n

\nEin Welt-Boss wird niemals Dich oder deinen Account verletzten. Stattdessen hat es einen Wutbalken, welcher sich füllt, wenn Benutzer ihre täglichen Aufgaben überspringen. Falls der Wutbalken gefüllt ist, wird der Welt-Boss einen der Nicht-Spieler-Charakter der Seite angreifen und ihr Aussehen wird sich verändern.\n

\nDu kannst mehr über [frühere Welt-Bösse](http://habitica.wikia.com/wiki/World_Bosses) in der Wiki erfahren", - "iosFaqStillNeedHelp": "If you have a question that isn't on this list or on the [Wiki FAQ](http://habitica.wikia.com/wiki/FAQ), 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 or on the [Wiki FAQ](http://habitica.wikia.com/wiki/FAQ), come ask in the [Newbies Guild](https://habitica.com/#/options/groups/guilds/5481ccf3-5d2d-48a9-a871-70a7380cee5a)! We're happy to help." + "iosFaqAnswer12": "Welt-Bosse sind spezielle Monster, welche im Gasthaus erscheinen. Alle aktiven Benutzer kämpfen automatisch gegen den Boss und ihre Aufgaben und Fähigkeiten werden dem Boss wie üblich schaden.\n\nDu kannst Dich gleichzeitig in einer normalen Quest befinden. Deine Aufgaben und Fähigkeiten werden sowohl dem Welt-Boss wie auch dem Boss/der Sammelquest schaden.\n\nEin Welt-Boss wird niemals Dich oder Deinen Account verletzten. Stattdessen hat es einen Wutbalken, welcher sich füllt, wenn Benutzer ihre täglichen Aufgaben überspringen. Falls der Wutbalken gefüllt ist, wird der Welt-Boss einen der Nicht-Spieler-Charakter der Seite angreifen und ihr Aussehen wird sich verändern.\n\n Du kannst mehr über [past World Bosses](http://habitica.wikia.com/wiki/World_Bosses) in der Wiki erfahren", + "webFaqAnswer12": "Welt-Bosse sind spezielle Monster, welche im Gasthaus erscheinen. Alle aktiven Benutzer kämpfen automatisch gegen den Boss und ihre Aufgaben und Fähigkeiten werden dem Boss wie üblich schaden. \n

\nDu kannst Dich gleichzeitig in einer normalen Quest befinden. Deine Aufgaben und Fähigkeiten werden sowohl bei dem Welt-Boss, sowie auch bei dem Boss/der Sammelquest von Deiner Gruppe dazugezählt. \n

\nEin Welt-Boss wird niemals Dich oder Deinen Account verletzten. Stattdessen hat es einen Wutbalken, welcher sich füllt, wenn Benutzer ihre täglichen Aufgaben überspringen. Falls der Wutbalken gefüllt ist, wird der Welt-Boss einen der Nicht-Spieler-Charakter der Seite angreifen und ihr Aussehen wird sich verändern.\n

\nDu kannst mehr über [frühere Welt-Bösse](http://habitica.wikia.com/wiki/World_Bosses) in der Wiki erfahren", + "iosFaqStillNeedHelp": "Wenn Du eine Frage hast, die hier oder im [Wiki FAQ](http://habitica.wikia.com/wiki/FAQ) nicht beantwortet wurde, stelle sie im Gasthaus unter Soziales > Gasthaus-Chat! Wir helfen dir gerne.", + "webFaqStillNeedHelp": "Wenn Du eine Frage hast, die hier oder im [Wiki FAQ](http://habitica.wikia.com/wiki/FAQ) nicht beantwortet wurde, stelle sie in der [Newbies Gilde](https://habitica.com/#/options/groups/guilds/5481ccf3-5d2d-48a9-a871-70a7380cee5a)! Wir helfen dir gerne." } \ No newline at end of file diff --git a/common/locales/de/front.json b/common/locales/de/front.json index c021787066..c78605c28b 100644 --- a/common/locales/de/front.json +++ b/common/locales/de/front.json @@ -2,16 +2,16 @@ "FAQ": "FAQ", "accept1Terms": "Durch Klicken auf diesen Knopf, stimme ich den", "accept2Terms": "zu, sowie der", - "alexandraQuote": "Ich konnte während meiner Rede in Madrid nicht NICHT über [Habitica] reden. Ein absolutes Must-have Hilfsmittel für Freiberufler, die trotzdem einen Chef brauchen.", + "alexandraQuote": "Ich konnte während meiner Rede in Madrid nicht NICHT über [Habitica] reden. Ein absolutes Muss für Freiberufler, die trotzdem einen Chef brauchen.", "althaireQuote": "Kontinuierlich eine Quest zu haben, motiviert mich dazu alle meine täglichen und einmaligen Aufgaben zu erledigen. Meine größte Motivation ist, meine Gruppe nicht im Stich zu lassen.", "andeeliaoQuote": "Großartiges Produkt, ich habe gerade erst vor einigen Tagen angefangen und gehe jetzt schon bewusster und produktiver mit meiner Zeit um!", - "autumnesquirrelQuote": "Ich schiebe bei der Arbeit und im Haushalt weniger auf und zahle meine Rechnungen rechtzeitig. ", + "autumnesquirrelQuote": "Ich schiebe bei der Arbeit und im Haushalt weniger auf und zahle meine Rechnungen rechtzeitig.", "businessSample1": "1 Seite des Inventars überprüfen", "businessSample2": "20 min Ablagen erledigen", "businessSample3": "Sortieren und abarbeiten des Posteingangs", "businessSample4": "Bereite 1 Dokument für den Kunden vor", "businessSample5": "Kunden anrufen/Anrufe aufschieben", - "businessText": "Habitica im Unternehmen nutzen", + "businessText": "Nutze Habitica in Deinem Unternehmen", "choreSample1": "Dreckige Klamotten in Wäschekorb stecken", "choreSample2": "20 Minuten Hausarbeit", "choreSample3": "Geschirr abspülen", @@ -33,19 +33,19 @@ "companyPrivacy": "Datenschutz", "companyTerms": "AGB", "companyVideos": "Videos", - "contribUse": "Habitica Mitwirkende nutze", - "dragonsilverQuote": "Ich habe unzählige Zeit- und Aufgabenerfassungssysteme ausprobiert… [Habitica] ist das Einzige, das mir wirklich hilft Dinge zu erledigen, anstatt sie nur aufzuschreiben.", - "dreimQuote": "Bevor ich [Habitica] letzten Sommer entdeckt habe, war ich bereits durch die Hälfte meiner Prüfungen gefallen. Dank den täglichen Aufgaben war ich fähig, mich zu organisieren und zu disziplinieren und ich habe letzten Monat wirklich alle meine Prüfungen mit sehr guten Noten bestanden.", + "contribUse": "Habitica-Mitwirkende nutzen", + "dragonsilverQuote": "Ich habe unzählige Zeit- und Aufgabenerfassungssysteme ausprobiert… [Habitica] ist das Einzige, das mir wirklich hilft, Dinge zu erledigen, anstatt sie nur aufzuschreiben.", + "dreimQuote": "Bevor ich [Habitica] letzten Sommer entdeckt habe, war ich bereits durch die Hälfte meiner Prüfungen gefallen. Dank der täglichen Aufgaben war ich dazu in der Lage, mich zu organisieren und zu disziplinieren und ich habe letzten Monat wirklich alle meine Prüfungen mit sehr guten Noten bestanden.", "elmiQuote": "Jeden Morgen freue ich mich aufzustehen und etwas Gold zu verdienen!", "email": "E-Mail", "emailNewPass": "E-Mail neues Passwort", "evagantzQuote": "Mein erster Zahnarztbesuch, bei dem die Assistentin tatsächlich begeistert über meine Zahnseide-Gewohnheiten war. Danke [Habitica]!", - "examplesHeading": "Spieler benutzen Habitica, um folgendes zu organisieren...", + "examplesHeading": "Spieler benutzen Habitica, um Folgendes zu organisieren ...", "featureAchievementByline": "Etwas total großartiges gemacht? Erhalte ein Abzeichen und prahle damit!", "featureAchievementHeading": "Erfolgsabzeichen", "featureEquipByline": "Kaufe Gegenstände in limitierter Auflage, Zaubertränke und andere virtuelle Leckerbissen auf unserem Marktplatz mit den Belohnungen für abgeschlossene Aufgaben!", "featureEquipHeading": "Ausrüstung und Extras", - "featurePetByline": "Eier und Gegenstände erscheinen wenn du deine Aufgaben erfüllst. Sei so produktiv wie möglich, um Haus- und Reittiere zu sammeln!", + "featurePetByline": "Eier und Gegenstände erscheinen wenn Du Deine Aufgaben erfüllst. Sei so produktiv wie möglich, um Haus- und Reittiere zu sammeln!", "featurePetHeading": "Haus- und Reittiere", "featureSocialByline": "Tritt Interessensgemeinschaften bei und finde Gleichgesinnte. Erstelle Herausforderungen und tritt gegen andere an.", "featureSocialHeading": "Gemeinsames Spielen", @@ -56,9 +56,9 @@ "footerMobile": "Mobil", "footerSocial": "Soziales", "forgotPass": "Passwort vergessen", - "frabjabulousQuote": "[Habitica] ist der Grund, warum ich einen tollen, gut bezahlten Job gefunden habe... und noch erstaunlicher ist, dass ich jetzt täglich Zahnseide benutze!", + "frabjabulousQuote": "[Habitica] ist der Grund, warum ich einen tollen, gut bezahlten Job gefunden habe ... und noch erstaunlicher ist, dass ich jetzt täglich Zahnseide benutze!", "free": "Kostenlos spielen", - "gamifyButton": "Gestalte dein Leben spielerisch!", + "gamifyButton": "Gestalte Dein Leben spielerisch!", "goalSample1": "1 Stunde Klavier üben", "goalSample2": "An einem zu veröffentlichen Artikel arbeiten", "goalSample3": "Einen Blogpost schreiben", @@ -72,10 +72,10 @@ "healthSample4": "Esse gesund/Junkfood", "healthSample5": "Für 1 Stunde ins Schwitzen kommen", "history": "Verlauf", - "infhQuote": "[Habitica] hat mir geholfen Struktur in mein Leben an der Universität zu bringen.", + "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": "Schließe dich <%= userCount %> Leuten an, die Spaß dabei haben, ihre Ziele zu erreichen!", + "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?", @@ -83,66 +83,66 @@ "landingend3": ". Sucht Ihr eine nichtöffentliche Variante? Versucht unsere", "landingend4": "die ideal sind für Familien, Lehrer, Selbsthilfegruppen und Gewerbe.", "landingfeatureslink": "unserer Features", - "landingp1": "Das Problem der meisten Produktivitätsapps auf dem Markt ist, dass sie keinen Anreiz bieten, sie dauerhaft zu benutzen. Habitica löst dieses Problem, indem es das Aufbauen von Gewohnheiten zum Spiel macht. Indem es Erfolge belohnt und Misserfolge bestarft, bietet Habitica eine Motivation für Ihre täglichen Aktivitäten.", - "landingp2": "Jedes Mal wenn Ihr eine gute Angewohnheit trainiert, eine tägliche Aufgabe erfüllt oder eine andere Aufgabe erfüllt, belohnt Euch Habitica sofort mit Erfahrungspunkten und Gold. Durch Erfahrungspunkte steigt Ihr im Level auf, verbessert Eure Charakterwerte und schaltet weitere Features frei wie Klassen und Haustiere. Gold kann für Spielgegenstände, die Eurem Charakter nützen ausgegeben werden, oder für persönliche Belohnungen, die Ihr zur Motivation erstellen könnt. Wenn auch der kleinste Erfolg Euch eine sofortige Belohnung verspricht, werdet Ihr Eure Aufgaben immer weniger aufschieben.", + "landingp1": "Das Problem der meisten Produktivitätsapps auf dem Markt ist, dass sie keinen Anreiz bieten, sie dauerhaft zu benutzen. Habitica löst dieses Problem, indem es das Aufbauen von Gewohnheiten zum Spiel macht. Indem es Erfolge belohnt und Misserfolge bestraft, bietet Habitica eine Motivation für Ihre täglichen Aktivitäten.", + "landingp2": "Jedes Mal, wenn Du eine gute Angewohnheit trainierst, eine tägliche Aufgabe erfüllst oder Dich um eine alte Aufgabe kümmerst, belohnt Dich Habitica sofort mit Erfahrungspunkten und Gold. Durch Erfahrungspunkte steigst Du im Level auf, verbesserst Deine Charakterwerte und schaltest weitere Features wie Klassen und Haustiere frei. Gold kann für Spielgegenstände, die Deinem Charakter nützen, ausgegeben werden oder für persönliche Belohnungen, die Du zur Motivation erstellen kannst. Wenn dir sogar der kleinste Erfolg eine sofortige Belohnung verspricht, wirst Du Deine Aufgaben immer weniger aufschieben.", "landingp2header": "Sofortige Belohnung", - "landingp3": "Jedes Mal, wenn ihr einer schlechten Angewohnheit nachgebt oder eure täglichen Aufgaben vernachlässigt, verliert Ihr Lebenspunkte. Wenn Eure Lebenspunkte zu weit sinken, sterbt Ihr und verliert einen Teil Eures Fortschritts. Indem es Konsequenzen setzt, kann Habitica dabei helfen, schlechte Angewohnheiten und ständiges Hinausschieben zu beenden, bevor sie zu Problemen in eurem Leben werden.", + "landingp3": "Jedes Mal, wenn Du einer schlechten Angewohnheit nachgibst oder Deine täglichen Aufgaben vernachlässigst, verlierst Du Lebenspunkte. Wenn Deine Lebenspunkte zu weit sinken, stirbst Du und verlierst einen Teil Deine Fortschritts. Indem es Konsequenzen setzt, kann Habitica dabei helfen, schlechte Angewohnheiten und ständiges Hinausschieben zu beenden, bevor sie zu Problemen in Deinem Leben werden.", "landingp3header": "Konsequenzen", - "landingp4": "Mit einer lebendigen Community bietet Habitica die Verbindlichkeit, die ihr braucht, um auf eure Aufgaben konzentriert zu bleiben. Mit dem Gruppensystem könnt ihr eine Gruppe eurer besten Freunde zur Unterstützung rufen. Das Gildensystem erlaubt euch Spieler mit ähnlichen Interessen oder Hindernissen zu finden, damit ihr eure Ziele gemeinsam erreichen könnt, und Tipps, um eure Probleme anzugehen, austauschen könnt. Auf Habitica steht die Community für die Unterstützung und die Verbindlichkeit die ihr braucht um Erfolg zu haben.", + "landingp4": "Mit einer lebendigen Community bietet Habitica die Verbindlichkeit, die Du brauchst, um auf Deine Aufgaben konzentriert zu bleiben. Mit dem Gruppensystem kannst Du eine Gruppe Deiner besten Freunde zur Unterstützung rufen. Das Gildensystem erlaubt es dir, Spieler mit ähnlichen Interessen oder Hindernissen zu finden, damit ihr eure Ziele gemeinsam erreichen und Tipps, um eure Probleme anzugehen, austauschen könnt. Auf Habitica steht die Community für die Unterstützung und die Verbindlichkeit, die Du brauchst, um Erfolg zu haben.", "landingp4header": "Verantwortung", - "leadText": "Habitica ist eine kostenlose Anwendung zur Gewohnheitsbildung und Steigerung der Produktivität, die dein Leben wie ein Spiel betrachtet. Mit Belohnungen und Bestafungen als Motivation und einem starken sozialen Netzwerk als Inspiration kann Habitica dir helfen deine Ziele zu erreichen und gesund, fleißig und glücklich zu werden.", + "leadText": "Habitica ist eine kostenlose Anwendung zur Gewohnheitsbildung und Steigerung der Produktivität, die Dein Leben wie ein Spiel behandelt. Mit Belohnungen und Bestrafungen als Motivation und einem starken sozialen Netzwerk als Inspiration kann Habitica dir helfen, Deine Ziele zu erreichen und gesund, fleißig und glücklich zu werden.", "login": "Einloggen", "loginAndReg": "Einloggen / Registrieren", "loginFacebookAlt": "Einloggen / Registrieren mit Facebook", "logout": "Ausloggen", "marketing1Header": "Verbessern Sie Ihre Lebensführung Durch Ein Spiel", - "marketing1Lead1": "Habitica ist ein Videospiel, welches Dir dabei hilft Deine Gewohnheiten im realen Leben zu verbessern. Es \"gamifiziert\" Dein Leben indem es all Deine Aufgaben (Gewohnheiten, tägliche Aufgaben und einmalige Aufgaben) in kleine Monster verwandelt, die Du besiegen musst. Je besser Du Dich dabei anstellst, umso weiter kommst Du im Spiel. Wenn Du in Deinem realen Leben nachlässt, beginnt Dein Charakter im Spiel zurückzufallen.", - "marketing1Lead2": "Bekomme coole Ausrüstung. Verbessere deine Gewohnheiten um Deinen Avatar auszustatten. Zeige Deine coole Ausrüstung die Du verdient hast.", + "marketing1Lead1": "Habitica ist ein Videospiel, welches dir dabei hilft. Deine Gewohnheiten im realen Leben zu verbessern. Es \"gamifiziert\" Dein Leben, indem es all Deine Aufgaben (Gewohnheiten, tägliche Aufgaben und einmalige Aufgaben) in kleine Monster verwandelt, die Du besiegen musst. Je besser Du Dich dabei anstellst, umso weiter kommst Du im Spiel. Wenn Du in Deinem realen Leben nachlässt, beginnt Dein Charakter im Spiel zurückzufallen.", + "marketing1Lead2": "Bekomme coole Ausrüstung. Verbessere Deine Gewohnheiten um Deinen Avatar auszustatten. Zeige Deine coole Ausrüstung die Du verdient hast.", "marketing1Lead2Title": "Bekomme coole Ausrüstung", "marketing1Lead3": "Finde zufällige Preise. Für einige ist es das Glücksspiel bzw. das System der \"zufälligen Belohnung\", welches sie motiviert. Habitica beinhaltet alle Verstärkungstypen: positive, negative, vorhersehbare und zufällige.", "marketing1Lead3Title": "Finde zufällige Preise", "marketing2Header": "Messe Dich mit Freunden, schließe Dich Interessensgruppen an", - "marketing2Lead1": "Obwohl Du Habitica im Alleingang spielen kannst, wird es erst richtig spaßig, wenn Du anfängst mit anderen zusammenzuarbeiten, zu wetteifern und sich gegenseitig zur Verantwortung zu ziehen. Der effektivste Teil von allen Persönlichkeitsentwicklungsprogrammen ist die soziale Verantwortlichkeit - und wo gibt es eine bessere Umgebung für Verantwortung und Wettkampf als in einem Videospiel?", + "marketing2Lead1": "Obwohl Du Habitica im Alleingang spielen kannst, wird es erst richtig spaßig, wenn Du anfängst, mit anderen zusammenzuarbeiten, zu wetteifern und sich gegenseitig zur Verantwortung zu ziehen. Der effektivste Teil von allen Persönlichkeitsentwicklungsprogrammen ist die soziale Verantwortlichkeit - und wo gibt es eine bessere Umgebung für Verantwortung und Wettkampf, als in einem Videospiel?", "marketing2Lead2": "Bekämpfe Bosse. Was ist ein Rollenspiel ohne Kämpfe? Bekämpfe Bosse mit Deiner Gruppe. Bosse sind \"super Verantwortlichkeitsmodi\": ein Tag ohne Fitnessstudio ist ein Tag, an dem der Boss alle verletzt.", "marketing2Lead2Title": "Bosse", "marketing2Lead3": "In Wettbewerben kannst Du gegen Freunde und Unbekannte antreten. Wer am besten ist, gewinnt am Ende eines Wettbewerbs spezielle Preise.", "marketing3Header": "Apps", "marketing3Lead1": "Die iPhone & Android Apps erlauben Dir Aufgaben unterwegs abzuhaken. Es ist uns klar, dass es lästig sein kann, sich immer auf der Seite einloggen zu müssen.", - "marketing3Lead2": "Andere Werkzeuge von Drittanbietern binden Habitica an verschiedene Aspekte deines Lebens. Unsere API stellt eine einfache Integrierung mit Sachen wie der Chrome Erweiterung zur Verfügung, die dir Punkte abzieht, wenn du auf unproduktiven Websites surfst und dir welche einbringt, wenn du auf produktiven Seiten unterwegs bist. Mehr dazu hier", + "marketing3Lead2": "Andere Werkzeuge von Drittanbietern binden Habitica an verschiedene Aspekte Deines Lebens an. Unsere API stellt eine einfache Integration mit Sachen wie der Chrome-Erweiterung zur Verfügung, die dir Punkte abzieht, wenn Du auf unproduktiven Websites surfst und dir welche einbringt, wenn Du auf produktiven Seiten unterwegs bist. Mehr dazu hier", "marketing4Header": "Verwendung zur Organisation", - "marketing4Lead1": "Bildung ist einer der besten Bereiche der in Spiele verwandelt werden kann. Wir wissen alle wie sehr Schuehler heutzutage an ihre Handys und Spiele haengen. Nutze diese Macht! Lass deine Schuehler in freundlichen Wettbewerben gegeneinander antreten und belohne gutes Verhalten mit seltenen Preisen. Beobachte wie sich ihre Noten und ihr Verhalten verbessen", + "marketing4Lead1": "Bildung ist einer der besten Bereiche für Gamifizierung. Wir wissen alle, wie sehr Schüler heutzutage an ihren Handys und Spielen hängen. Nutze diese Macht! Lass Deine Schüler in freundlichen Wettbewerben gegeneinander antreten und belohne gutes Verhalten mit seltenen Preisen. Beobachte, wie sich ihre Noten und ihr Verhalten verbessern.", "marketing4Lead1Title": "Betrachtungwinkel Ausbildung", - "marketing4Lead2": "Die Kosten für medizinische Versorgung steigen und irgendjemand muss sie tragen. Zahlreiche Pläne wurden entwickelt um Kosten zu reduzieren und das Wohlbefinden zu verbessern. Wir glauben, dass Habitica einen wesentlichen Beitrag zu gesünderen Lebensstilen leisten kann.", + "marketing4Lead2": "Die Kosten für medizinische Versorgung steigen und irgendjemand muss sie tragen. Zahlreiche Pläne wurden entwickelt, um Kosten zu reduzieren und das Wohlbefinden zu verbessern. Wir glauben, dass Habitica einen wesentlichen Beitrag zu gesünderen Lebensstilen leisten kann.", "marketing4Lead2Title": "Betrachtungswinkel Gesundheit und Erholung", "marketing4Lead3-1": "Wollen Sie ihr Leben einmal als Spiel betrachten?", - "marketing4Lead3-2": "Wollen Sie eine Gruppe für Ausbildung, Erholung etc. leiten?", + "marketing4Lead3-2": "Wollen Sie eine Gruppe für Ausbildung, Wohlbefinden etc. leiten?", "marketing4Lead3-3": "Wollen Sie mehr wissen?", "marketing4Lead3Title": "Mache Alles zum Spiel", "mobileAndroid": "Android", "mobileIOS": "iOS", - "motivate": "Motiviere dich und dein Team!", - "motivate1": "Motiviere dich, alles Mögliche zu tun.", - "motivate2": "Werde organisiert. Motiviere dich. Verdiene Gold.", + "motivate": "Motiviere Dich und Dein Team!", + "motivate1": "Motiviere Dich, alles Mögliche zu tun.", + "motivate2": "Werde organisiert. Motiviere Dich. Verdiene Gold.", "passConfirm": "Passwort bestätigen", - "passMan": "In case you are using a password manager (like 1Password) and have problems logging in, try typing your username and password manually.", + "passMan": "Falls Du einen Passwortmanager (wie 1Password) verwendest und Probleme beim Einloggen hast, versuche, Deinen Benutzername und Dein Passwort manuell einzugeben.", "password": "Passwort", "playButton": "Spielen", - "playButtonFull": "Spiele HabitPRG", + "playButtonFull": "Spiele Habitica", "presskit": "Pressemappe", "presskitDownload": "Alle Bilder herunterladen:", - "presskitText": "Danke für Ihr Interesse an Habitica! Die folgenden Bilder dürfen für Artikel und Videos über Habitica benutzt werden. Für weitere Informationen, wenden Sie sich bitte an Siena Leslie via leslie@habitica.com.", + "presskitText": "Danke für Ihr Interesse an Habitica! Die folgenden Bilder dürfen für Artikel und Videos über Habitica benutzt werden. Für weitere Informationen wenden Sie sich bitte an Siena Leslie via leslie@habitica.com.", "privacy": "Datenschutzrichtlinie", "psst": "Psst", "punishByline": "Überwinde schlechte Gewohnheiten und das Aufschieben von Aufgaben durch direkte Konsequenzen.", "punishHeading1": "Eine tägliche Aufgabe verfehlt?", "punishHeading2": "Gesundheit verloren!", - "questByline1": "Durch das gemeinsame Spielen trägst du die Verantwortung für deine Aufgaben.", + "questByline1": "Durch das gemeinsame Spielen trägst Du die Verantwortung für Deine Aufgaben.", "questByline2": "Stellt euch gegenseitig Herausforderungen und meistert das Ziel gemeinsam!", - "questHeading1": "Besiege Monster mit deinen Freunden!", - "questHeading2": "Falls du faulenzt, schadet das allen!", + "questHeading1": "Besiege Monster mit Deinen Freunden!", + "questHeading2": "Falls Du faulenzt, schadet das allen!", "register": "Registrieren", "rewardByline1": "Kaufe mit dem Gold virtuelle und reale Belohnungen.", - "rewardByline2": "Sofortige Belohnungen halten dich bei Laune!", + "rewardByline2": "Sofortige Belohnungen halten Dich bei Laune!", "rewardHeading": "Erfülle eine Aufgabe, um Gold zu verdienen!", "sampleDailies": "Musteraufgaben", "sampleHabits": "Beispielgewohnheiten", @@ -153,9 +153,9 @@ "schoolSample3": "Treffen mit der Lerngruppe", "schoolSample4": "Notizen für 1 Kapitel machen", "schoolSample5": "1 Kapitel lesen", - "sixteenBitFilQuote": "Dank [Habitica] erledige ich meine Aufgaben in Rekordzeit. Ich bin einfach so begierig mein nächstes Level zu erreichen!", + "sixteenBitFilQuote": "Dank [Habitica] erledige ich meine Aufgaben in Rekordzeit. Ich bin einfach so begierig, mein nächstes Level zu erreichen!", "skysailorQuote": "Meine Gruppe und unsere Quests halten mich im Spiel, was mich motiviert Dinge zu erledigen und mein Leben auf eine positive Art zu verändern.", - "socialTitle": "Habitica - Spiele dein Leben", + "socialTitle": "Habitica - Mach Dein Leben zum Spiel", "supermouse35Quote": "Ich trainiere mehr und habe meine Medikamente seit Monaten nicht vergessen. Danke Habit. :D", "sync": "Synchronisieren", "tasks": "Aufgaben", @@ -165,22 +165,22 @@ "teams": "Teams", "terms": "AGB", "testimonialHeading": "Was andere sagen…", - "localStorageTryFirst": "If you are experiencing problems with Habitica, click the button below to clear local storage for this website (other websites will not be affected). You will need to log in again after doing this, so first be sure that you know your log-in details, which can be found at Settings -> <%= linkStart %>Site<%= linkEnd %>.", - "localStorageTryNext": "Falls das Problem weiterhin besteht, bitte <%= linkStart %>Melde einen Fehler<%= linkEnd %> , falls du das noch nicht getan hast.", + "localStorageTryFirst": "Wenn Du Probleme mit Habitica hast, drücke den Knopf unter \"Lokale Daten löschen\" (andere Internetseiten sind davon nicht betroffen). Du wirst Dich einmal neu einloggen müssen, damit das funktioniert, also halte Deine Logindaten bereit. Du kannst sie unter Einstellungen -> <%= linkStart %>Seite<%= linkEnd %> einsehen.", + "localStorageTryNext": "Falls das Problem weiterhin besteht, <%= linkStart %>melde bitte einen Fehler<%= linkEnd %>, falls Du das noch nicht getan hast.", "localStorageClearing": "Lokale Daten werden gelöscht", - "localStorageClearingExplanation": "Die lokalen Daten deines Browsers wurden gelöscht. Du wirst nun ausgeloggt und zur Startseite weitergeleitet. Bitte warten.", + "localStorageClearingExplanation": "Die lokalen Daten Deines Browsers wurden gelöscht. Du wirst nun ausgeloggt und zur Startseite weitergeleitet. Bitte warten.", "localStorageClear": "Lokale Daten löschen", - "localStorageClearExplanation": "Diese Schaltfläche löscht deine lokalen Daten und loggt dich aus.", + "localStorageClearExplanation": "Diese Schaltfläche löscht Deine lokalen Daten und loggt Dich aus.", "tutorials": "Anleitungen", - "unlockByline1": "Erreiche deine Ziele und steige Level auf.", + "unlockByline1": "Erreiche Deine Ziele und steige Level auf.", "unlockByline2": "Schalte neue, motivierende Werkzeuge frei, wie zum Beispiel Haustiere, zufällige Belohnungen, Zaubersprüche und mehr!", - "unlockHeadline": "Je mehr du tust, desto mehr neue Inhalte kannst du freigeschalten!", + "unlockHeadline": "Je mehr Du tust, desto mehr neue Inhalte kannst Du freigeschalten!", "useUUID": "Benutze UUID / API Token (Für Facebook Benutzer)", "username": "Benutzername", "watchVideos": "Sehen Sie sich die Videos an", "work": "Arbeit", - "zelahQuote": "Mit [Habitica] kann ich mich überzeugen, rechtzeitig ins Bett zu gehen, dank dem Gedanken daran, Punkte zu verdienen, wenn ich früh ins Bett gehe und Leben zu verlieren, wenn ich lange aufbleibe.", - "reportAccountProblems": "Melde Probleme mit deinem Konto", + "zelahQuote": "Mit [Habitica] kann ich mich davon überzeugen, rechtzeitig ins Bett zu gehen, denn wenn ich früh ins Bett gehe, verdiene ich Punkte und wenn ich zu lange aufbleibe, verliere ich Leben.", + "reportAccountProblems": "Melde Probleme mit Deinem Konto", "reportCommunityIssues": "Melde Community-Probleme", "generalQuestionsSite": "Generelle Fragen über die Webseite.", "businessInquiries": "Geschäftsanfragen.", @@ -189,13 +189,13 @@ "tweet": "Tweet", "apps": "Apps", "checkOutMobileApps": "Schau dir unsere Apps an!", - "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.", + "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!", - "altAttrNavLogo": "Habitica home", + "altAttrNavLogo": "Habitica-Startseite", "altAttrLifehacker": "Lifehacker", "altAttrNewYorkTimes": "The New York Times", "altAttrMakeUseOf": "MakeUseOf", diff --git a/common/locales/de/gear.json b/common/locales/de/gear.json index 12fd1d6041..dc5e743c72 100644 --- a/common/locales/de/gear.json +++ b/common/locales/de/gear.json @@ -1,9 +1,10 @@ { + "set": "Set", "weapon": "Waffe", "weaponBase0Text": "Keine Waffe", "weaponBase0Notes": "Keine Waffe.", "weaponWarrior0Text": "Übungsschwert", - "weaponWarrior0Notes": "Eine Übungswaffe. Gewährt keinen Bonus zu Attributen.", + "weaponWarrior0Notes": "Eine Übungswaffe. Gewährt keinen Attributbonus.", "weaponWarrior1Text": "Schwert", "weaponWarrior1Notes": "Bei gewöhnlichen Soldaten verbreitetes Schwert. Erhöht Stärke um <%= str %>.", "weaponWarrior2Text": "Axt", @@ -13,11 +14,11 @@ "weaponWarrior4Text": "Saphirklinge", "weaponWarrior4Notes": "Die Schneiden dieses Schwerts sind kalt wie der Nordwind. Erhöht Stärke um <%= str %>.", "weaponWarrior5Text": "Rubinschwert", - "weaponWarrior5Notes": "Waffe, deren Schmiedeschimmer niemals verblasst. Erhöht STR um <%= str %>.", + "weaponWarrior5Notes": "Waffe, deren Schmiedeschimmer niemals verblasst. Erhöht Stärke um <%= str %>.", "weaponWarrior6Text": "Güldenes Schwert", "weaponWarrior6Notes": "Wird oft als der Fluch aller Finsterlinge bezeichnet. Erhöht Stärke um <%= str %>.", "weaponRogue0Text": "Dolch", - "weaponRogue0Notes": "Die Grundausstattung eines jeden Schurken. Gewährt keinen Bonus zu Attributen.", + "weaponRogue0Notes": "Die Grundausstattung eines jeden Schurken. Gewährt keinen Attributbonus.", "weaponRogue1Text": "Kurzschwert", "weaponRogue1Notes": "Eine leichte Waffe, die schwer aufzuspüren ist. Erhöht Stärke um <%= str %>.", "weaponRogue2Text": "Krummsäbel", @@ -31,7 +32,7 @@ "weaponRogue6Text": "Hakenschwert", "weaponRogue6Notes": "Diese Waffe ist schwer zu meistern aber ideal um Gegner zu entwaffnen und zu behindern. Erhöht Stärke um <%= str %>.", "weaponWizard0Text": "Lehrlingsstab", - "weaponWizard0Notes": "Übungsstab. Gewährt keinen Bonus zu Attributen.", + "weaponWizard0Notes": "Übungsstab. Gewährt keinen Attributbonus.", "weaponWizard1Text": "Holzstab", "weaponWizard1Notes": "Einfaches Werkzeug aus geschnitztem Holz. Erhöht Intelligenz um <%= int %> und Wahrnehmung um <%= per %>.", "weaponWizard2Text": "Juwelenstab", @@ -45,11 +46,11 @@ "weaponWizard6Text": "Güldener Stab", "weaponWizard6Notes": "Gearbeitet aus Oreichalkos, das alchemistische Gold, mächtig und selten. Erhöht Intelligenz um <%= int %> und Wahrnehmung um <%= per %>.", "weaponHealer0Text": "Anfängerzauberstab", - "weaponHealer0Notes": "Von Heilern zum Training genutzt. Gewährt keinen Bonus zu Attributen.", + "weaponHealer0Notes": "Von Heilern zum Training genutzt. Gewährt keinen Attributbonus.", "weaponHealer1Text": "Zauberstab des Pflegers", "weaponHealer1Notes": "Hergestellt während dem Initiationsritus eines Heilers. Erhöht Intelligenz um <%= int %>.", "weaponHealer2Text": "Quarzzauberstab", - "weaponHealer2Notes": "In ihm ist ein Edelstein eingefasst, dem heilende Wirkung nachgesagt wird. Erhöht Intelligenz um <%= int %>.", + "weaponHealer2Notes": "In ihm ist ein Edelstein eingefasst, dem heilende Wirkung nachgesagt wird. Erhöht Intelligenz um <%= int %>.", "weaponHealer3Text": "Amethystenzauberstab", "weaponHealer3Notes": "Reinigt Gift durch bloße Berührung. Erhöht Intelligenz um <%= int %>.", "weaponHealer4Text": "Arztzauberstab", @@ -69,122 +70,134 @@ "weaponSpecialCriticalText": "Bedrohlicher Hammer der Bug-Vernichtung", "weaponSpecialCriticalNotes": "Dieser Meisterkämpfer schlachtete ein bösartiges Github-Monster, dem bereits viele Krieger erlagen. Dieser Hammer, der aus den Knochen von Bug gefertigt ist, teilt mächtige, todbringende Hiebe aus. Erhöht Stärke und Wahrnehmung um jeweils <%= attrs %>.", "weaponSpecialTridentOfCrashingTidesText": "Dreizack der Brechenden Gezeiten", - "weaponSpecialTridentOfCrashingTidesNotes": "Gibt dir die Fähigkeit Fische zu befehligen und deine Aufgaben mit kraftvollen Stichen zu attackieren. Erhöht Intelligenz um <%= int %>.", + "weaponSpecialTridentOfCrashingTidesNotes": "Gibt dir die Fähigkeit Fische zu befehligen und Deine Aufgaben mit kraftvollen Stichen zu attackieren. Erhöht Intelligenz um <%= int %>.", "weaponSpecialYetiText": "Speer des Yeti-Zähmers", - "weaponSpecialYetiNotes": "Dieser Speer erlaubt dem Träger, jeden Yeti zu bändigen. Erhöht Stärke um <%= str %>. Limited Edition 2013-2014 Winter Ausrüstung.", + "weaponSpecialYetiNotes": "Dieser Speer erlaubt dem Träger, jeden Yeti zu bändigen. Erhöht Stärke um <%= str %>. Limited Edition 2013-2014 Winterausrüstung.", "weaponSpecialSkiText": "Schaft des Ski-ssassinen", - "weaponSpecialSkiNotes": "Zermalmt ganze Horden von Gegnern! Außerdem hilft es den Träger dabei, schöne Parallelschwünge zu fahren. Erhöht Stärke um <%= str %>. Limited Edition 2013-2014 Winter Ausrüstung.", + "weaponSpecialSkiNotes": "Zermalmt ganze Horden von Gegnern! Außerdem hilft es den Träger dabei, schöne Parallelschwünge zu fahren. Erhöht Stärke um <%= str %>. Limited Edition 2013-2014 Winterausrüstung.", "weaponSpecialCandycaneText": "Zuckerstangenstab", - "weaponSpecialCandycaneNotes": "Ein mächtiger Zauberstab. Mächtig LECKER, wollten wir sagen! Zweihändige Waffe. Erhöht Intelligenz um <%= int %> und Wahrnehmung um <%= per %>. Limited Edition 2013-2014 Winter Ausrüstung.", + "weaponSpecialCandycaneNotes": "Ein mächtiger Zauberstab. Mächtig LECKER, wollten wir sagen! Zweihändige Waffe. Erhöht Intelligenz um <%= int %> und Wahrnehmung um <%= per %>. Limited Edition 2013-2014 Winterausrüstung.", "weaponSpecialSnowflakeText": "Zauberstab der Schneeflocke", "weaponSpecialSnowflakeNotes": "Dieser Zauberstab funkelt vor unerschöpflicher Heilkraft. Erhöht Intelligenz um <%= int %>. Limited Edition 2013-2014 Winter-Set.", "weaponSpecialSpringRogueText": "Hakenkrallen", - "weaponSpecialSpringRogueNotes": "Sehr nützlich um hohe Gebäude zu erklimmen und ebenso um Teppiche zu zerfetzen. Erhöht STR um <%= str %>. Limited Edition 2014 Frühlings-Set.", + "weaponSpecialSpringRogueNotes": "Sehr nützlich um hohe Gebäude zu erklimmen und ebenso um Teppiche zu zerfetzen. Erhöht Stärke um <%= str %>. Limited Edition 2014 Frühlings-Set.", "weaponSpecialSpringWarriorText": "Karottenschwert", - "weaponSpecialSpringWarriorNotes": "Mit diesem mächtigen Schwert werden Gegner mit Leichtigkeit zerstückelt, oder der Hunger für zwischendurch gestillt. Erhöht STR um <%= str %>. Limited Edition 2014 Frühlings-Set.", + "weaponSpecialSpringWarriorNotes": "Mit diesem mächtigen Schwert werden Gegner mit Leichtigkeit zerstückelt, oder der Hunger für zwischendurch gestillt. Erhöht Stärke um <%= str %>. Limited Edition 2014 Frühlings-Set.", "weaponSpecialSpringMageText": "Schweizer Käsestab", - "weaponSpecialSpringMageNotes": "Nur die tapfersten aller Nagetiere können ihren Hunger bezwingen um diesen mächtigen Zauberstab zu verwenden. Erhöht Intelligenz um <%= int %> und Wahrnehmung um <%= per %>. Limited Edition 2014 Frühlings-Set.", + "weaponSpecialSpringMageNotes": "Nur die tapfersten aller Nagetiere können ihren Hunger bezwingen um diesen mächtigen Zauberstab zu verwenden. Erhöht Intelligenz um <%= int %> und Wahrnehmung um <%= per %>. Limited Edition 2014 Frühlings-Set.", "weaponSpecialSpringHealerText": "Wurfknochen", - "weaponSpecialSpringHealerNotes": "Hol' Stöckchen! Fügt <%= int %> Punkte zu Intelligenz hinzu. Limited Edition 2014 Frühlingsausrüstung.", + "weaponSpecialSpringHealerNotes": "Hol' Stöckchen! Erhöht Intelligenz um <%= int %>. Limited Edition 2014 Frühlingsausrüstung.", "weaponSpecialSummerRogueText": "Piratensäbel", - "weaponSpecialSummerRogueNotes": "Genug! Du wirst diese täglichen Aufgaben über die Planke gehen lassen! Erhöht Stärke um <%= str %>. Limited Edition 2014 Sommer-Ausrüstung.", + "weaponSpecialSummerRogueNotes": "Genug! Du wirst diese täglichen Aufgaben über die Planke gehen lassen! Erhöht Stärke um <%= str %>. Limited Edition 2014 Sommerausrüstung.", "weaponSpecialSummerWarriorText": "Seefahrermesser", - "weaponSpecialSummerWarriorNotes": "Es gibt keine Aufgabe auf irgendeiner To-Do-Liste die es wagen würde, sich mit diesem rauen Messer anzulegen! Fügt Stärke <%= str %> Punkte hinzu. Limited Edition 2014 Sommer-Ausrüstung.", + "weaponSpecialSummerWarriorNotes": "Es gibt keine Aufgabe auf irgendeiner To-Do-Liste die es wagen würde, sich mit diesem rauen Messer anzulegen! Erhöht Stärke um <%= str %>. Limited Edition 2014 Sommerausrüstung.", "weaponSpecialSummerMageText": "Algenfänger", - "weaponSpecialSummerMageNotes": "Dieser Dreizack wird benutzt, um Algen effektiv aufzuspießen, für besonders ergiebiges Algenernten! Fügt Intelligenz <%= int %> und Wahrnehmung <%= per %> Punkte hinzu. Limited Edition 2014 Sommer-Ausrüstung.", + "weaponSpecialSummerMageNotes": "Dieser Dreizack wird benutzt, um Algen effektiv aufzuspießen, für besonders ergiebiges Algenernten! Erhöht Intelligenz um <%= int %> und Wahrnehmung um <%= per %>. Limited Edition 2014 Sommerausrüstung.", "weaponSpecialSummerHealerText": "Zauberstab der Untiefen", - "weaponSpecialSummerHealerNotes": "Dieser Zauberstab, gefertigt aus Aquamarin und lebendigen Korallen, ist sehr anziehend für Fischschwärme. Fügt Intelligenz <%= int %> Punkte hinzu. Limited Edition 2014 Sommer-Ausrüstung.", + "weaponSpecialSummerHealerNotes": "Dieser Zauberstab, gefertigt aus Aquamarin und lebendigen Korallen, ist sehr anziehend für Fischschwärme. Erhöht Intelligenz um <%= int %>. Limited Edition 2014 Sommerausrüstung.", "weaponSpecialFallRogueText": "Silberner Pflock", - "weaponSpecialFallRogueNotes": "Befördert Untote dauerhaft ins Jenseits. Notfalls auch gegen Werwölfe einsetzbar - Vielseitigkeit kann nie schaden. Erhöht Stärke um <%= str %> Punkte. Limited Edition 2014 Herbst-Ausrüstung.", + "weaponSpecialFallRogueNotes": "Befördert Untote dauerhaft ins Jenseits. Notfalls auch gegen Werwölfe einsetzbar - Vielseitigkeit kann nie schaden. Erhöht Stärke um <%= str %>. Limited Edition 2014 Herbstausrüstung.", "weaponSpecialFallWarriorText": "Greifarm der Wissenschaft", - "weaponSpecialFallWarriorNotes": "Es gibt keine Aufgabe auf irgendeiner To-Do-Liste die es wagen würde, sich mit diesem rauen Messer anzulegen! Fügt Stärke <%= str %> Punkte hinzu. Limited Edition 2014 Sommer-Ausrüstung.", + "weaponSpecialFallWarriorNotes": "Es gibt keine Aufgabe auf irgendeiner To-Do-Liste die es wagen würde, sich mit diesem rauen Messer anzulegen! Erhöht Stärke um <%= str %>. Limited Edition 2014 Sommerausrüstung.", "weaponSpecialFallMageText": "Fliegender Besen", - "weaponSpecialFallMageNotes": "Dieser fliegende Besen ist schneller als ein Drache! Erhöht Intelligenz um <%= int %> und Wahrnehmung um <%= per %> Punkte. Limited Edition 2014 Herbst-Ausrüstung.", + "weaponSpecialFallMageNotes": "Dieser fliegende Besen ist schneller als ein Drache! Erhöht Intelligenz um <%= int %> und Wahrnehmung um <%= per %>. Limited Edition 2014 Herbstausrüstung.", "weaponSpecialFallHealerText": "Skarabäus Zauberstab", - "weaponSpecialFallHealerNotes": "Der Skarabäus auf diesem Stab schützt und heilt den Besitzer. Erhöht Intelligenz um <%= int %>. Limited Edition 2014 Herbst-Ausrüstung.", + "weaponSpecialFallHealerNotes": "Der Skarabäus auf diesem Stab schützt und heilt den Besitzer. Erhöht Intelligenz um <%= int %>. Limited Edition 2014 Herbstausrüstung.", "weaponSpecialWinter2015RogueText": "Eiszapfen", - "weaponSpecialWinter2015RogueNotes": "Du hast Sie wirklich, wahrhaftig und ungelogen gerade vom Boden aufgelesen. Erhöhen Stärke um <%= str %>. Limited Edition 2014-2015 Winter Ausrüstung.", + "weaponSpecialWinter2015RogueNotes": "Du hast Sie wirklich, wahrhaftig und ungelogen gerade vom Boden aufgelesen. Erhöht Stärke um <%= str %>. Limited Edition 2014-2015 Winterausrüstung.", "weaponSpecialWinter2015WarriorText": "Gummibonbonschwert", - "weaponSpecialWinter2015WarriorNotes": "Dieses leckere Schwert lockt wahrscheinlich Monster an... aber du bist der Herausforderung gewachsen! Erhöht Stärke um <%= str %>. Limited Edition 2014-2015 Winter-Ausrüstung.", + "weaponSpecialWinter2015WarriorNotes": "Dieses leckere Schwert lockt wahrscheinlich Monster an ... aber Du bist der Herausforderung gewachsen! Erhöht Stärke um <%= str %>. Limited Edition 2014-2015 Winterausrüstung.", "weaponSpecialWinter2015MageText": "Stab des Winterleuchtens", - "weaponSpecialWinter2015MageNotes": "Das Licht dieses Kristallstabs füllt die Herzen mit Freude. Erhöht Intelligenz um <%= int %> und Wahrnehmung um <%= per %>. Limited Edition 2014-2015 Winter-Ausrüstung.", + "weaponSpecialWinter2015MageNotes": "Das Licht dieses Kristallstabs füllt die Herzen mit Freude. Erhöht Intelligenz um <%= int %> und Wahrnehmung um <%= per %>. Limited Edition 2014-2015 Winterausrüstung.", "weaponSpecialWinter2015HealerText": "Beruhigendes Zepter", - "weaponSpecialWinter2015HealerNotes": "Dieses Zepter wärmt schmerzende Muskeln und lindert Stress. Erhöht Intelligenz um <%= int %>. Limited Edition 2014-2015 Winter Ausrüstung.", + "weaponSpecialWinter2015HealerNotes": "Dieses Zepter wärmt schmerzende Muskeln und lindert Stress. Erhöht Intelligenz um <%= int %>. Limited Edition 2014-2015 Winterausrüstung.", "weaponSpecialSpring2015RogueText": "Explodierender Kreischer", - "weaponSpecialSpring2015RogueNotes": "Lass dich nicht vom Geräusch täuschen - dieser Sprengstoff hat wirklich Wumms. Erhöht Stärke um <%= str %>. Limited Edition 2015 Frühlingsausrüstung.", + "weaponSpecialSpring2015RogueNotes": "Lass Dich nicht vom Geräusch täuschen - dieser Sprengstoff hat wirklich Wumms. Erhöht Stärke um <%= str %>. Limited Edition 2015 Frühlingsausrüstung.", "weaponSpecialSpring2015WarriorText": "Knochenkeule", "weaponSpecialSpring2015WarriorNotes": "Es ist eine echte, richtige Knochenkeule für echt kämpferische Hundis und es ist definitiv kein Kauspielzeug, das Du von der Jahreszeitenzauberin erhalten hast, denn wer ist ein guter Hund? Weeeeer ist ein guter Hund? Genau!!! Du bist ein guter Hund!!! Erhöht Stärke um <%= str %>. Limited Edition 2015 Frühlingsausrüstung.", "weaponSpecialSpring2015MageText": "Zauberstab eines Magiers", - "weaponSpecialSpring2015MageNotes": "Beschwöre Dir eine Karotte mit diesem schicken Zauberstab. Erhöht Intelligenz um <%= int %> und Wahrnehmung um <%= per %>. Limited Edition 2015 Frühlings-Ausrüstung.", + "weaponSpecialSpring2015MageNotes": "Beschwöre Dir eine Karotte mit diesem schicken Zauberstab. Erhöht Intelligenz um <%= int %> und Wahrnehmung um <%= per %>. Limited Edition 2015 Frühlingsausrüstung.", "weaponSpecialSpring2015HealerText": "Katzenrassel", "weaponSpecialSpring2015HealerNotes": "Wenn Du sie schüttelst macht sie ein faszinierendes Klimpergeräusch, was JEDEN über Stunden hinweg unterhalten würde. Erhöht Intelligenz um <%= int %>. Limited Edition 2015 Frühlingsausrüstung.", "weaponSpecialSummer2015RogueText": "Feuernde Koralle", - "weaponSpecialSummer2015RogueNotes": "Diese zur Art der Feuerkorallen gehörende Waffe hat die Fähigkeit ihr Gift durch Wasser hindurch wirken zu lassen. Erhöht Stärke um <%= str %>. Limited Edition 2015 Sommer-Ausrüstung.", + "weaponSpecialSummer2015RogueNotes": "Diese zur Art der Feuerkorallen gehörende Waffe hat die Fähigkeit ihr Gift durch Wasser hindurch wirken zu lassen. Erhöht Stärke um <%= str %>. Limited Edition 2015 Sommerausrüstung.", "weaponSpecialSummer2015WarriorText": "Sonnenschwertfisch", - "weaponSpecialSummer2015WarriorNotes": "Der Sonnenschwertfisch ist eine gefürchtete Waffe, vorausgesetzt sie kann dazu gebracht werden nicht mehr herumzuzappeln. Erhöht Stärke um <%= str %>. Limited Edition 2015 Sommer-Ausrüstung.", + "weaponSpecialSummer2015WarriorNotes": "Der Sonnenschwertfisch ist eine gefürchtete Waffe, vorausgesetzt sie kann dazu gebracht werden nicht mehr herumzuzappeln. Erhöht Stärke um <%= str %>. Limited Edition 2015 Sommerausrüstung.", "weaponSpecialSummer2015MageText": "Wahrsagerstab", - "weaponSpecialSummer2015MageNotes": "Versteckte Kräfte schimmern in den Juwelen dieses Stabs. Erhöht Intelligenz um <%= int %> und Wahrnehmung um <%= per %>. Limited Edition 2015 Sommer-Ausrüstung.", + "weaponSpecialSummer2015MageNotes": "Versteckte Kräfte schimmern in den Juwelen dieses Stabs. Erhöht Intelligenz um <%= int %> und Wahrnehmung um <%= per %>. Limited Edition 2015 Sommerausrüstung.", "weaponSpecialSummer2015HealerText": "Zauberstab der Wellen", - "weaponSpecialSummer2015HealerNotes": "Heilt Seekrankheit und Reiseübelkeit! Erhöht Intelligenz um <%= int %>. Limited Edition 2015 Sommer-Ausrüstung.", + "weaponSpecialSummer2015HealerNotes": "Heilt Seekrankheit und Reiseübelkeit! Erhöht Intelligenz um <%= int %>. Limited Edition 2015 Sommerausrüstung.", "weaponSpecialFall2015RogueText": "Kampfaxt", - "weaponSpecialFall2015RogueNotes": "Furchterregende tägliche Aufgaben ducken sich unter den Schlägen dieser Axt. Erhöht Stärke um <%= str %>. Limited Edition 2015 Herbst-Ausrüstung. ", + "weaponSpecialFall2015RogueNotes": "Furchterregende tägliche Aufgaben ducken sich unter den Schlägen dieser Axt. Erhöht Stärke um <%= str %>. Limited Edition 2015 Herbstausrüstung.", "weaponSpecialFall2015WarriorText": "Holzplanke", - "weaponSpecialFall2015WarriorNotes": "Super um Dinge in Kornfeldern hochzuheben und/oder Aufgaben zu verprügeln. Erhöht die Stärke um <%=str%>. Begrenzte Auflage 2015 Herbst Ausrüstung", + "weaponSpecialFall2015WarriorNotes": "Super um Dinge in Kornfeldern hochzuheben und/oder Aufgaben zu verprügeln. Erhöht die Stärke um <%=str%>. Begrenzte Auflage 2015 Herbstausrüstung", "weaponSpecialFall2015MageText": "Verzauberter Faden", - "weaponSpecialFall2015MageNotes": "Eine starke Stichhexe kann dieses verzauberte Gewinde kontrollieren, ohne es zu berühren. Es erhöht die Intelligenz von <%= int %> und die Wahrnehmung von <%= per %>. Limited Edition 2015 Herbst Ausrüstung.", + "weaponSpecialFall2015MageNotes": "Eine starke Stichhexe kann dieses verzauberte Garn kontrollieren, ohne es zu berühren. Erhöht Intelligenz um <%= int %> und Wahrnehmung um <%= per %>. Limited Edition 2015 Herbstausrüstung.", "weaponSpecialFall2015HealerText": "Sumpfschleimtrank", - "weaponSpecialFall2015HealerNotes": "Perfekt gebraut! Jetzt musst du nur noch dich selbst überzeugen ihn zu trinken. Erhöht Intelligenz um <%= int %>, Limited Edition 2015 Herbst-Ausrüstung.", + "weaponSpecialFall2015HealerNotes": "Perfekt gebraut! Jetzt musst Du nur noch Dich selbst überzeugen ihn zu trinken. Erhöht Intelligenz um <%= int %>, Limited Edition 2015 Herbstausrüstung.", "weaponSpecialWinter2016RogueText": "Kakaobecher", - "weaponSpecialWinter2016RogueNotes": "Wärmendes Getränk oder kochendes Wurfgeschoss? Du entscheidest… Erhöht Stärke um <%= str %>. Limited Edition 2015-2016 Winter Ausrüstung.", + "weaponSpecialWinter2016RogueNotes": "Wärmendes Getränk oder kochendes Wurfgeschoss? Du entscheidest… Erhöht Stärke um <%= str %>. Limited Edition 2015-2016 Winterausrüstung.", "weaponSpecialWinter2016WarriorText": "Stabile Schaufel", - "weaponSpecialWinter2016WarriorNotes": "Schaufle überfällige Aufgaben aus dem Weg! Erhöht Stärke um <%= str %>. Limited Edition 2015-2016 Winter Ausrüstung.", + "weaponSpecialWinter2016WarriorNotes": "Schaufle überfällige Aufgaben aus dem Weg! Erhöht Stärke um <%= str %>. Limited Edition 2015-2016 Winterausrüstung.", "weaponSpecialWinter2016MageText": "Magisches Snowboard", "weaponSpecialWinter2016MageNotes": "Deine Tricks sind so abgefahren, das muss Zauberei sein! Erhöht Intelligenz um <%= int %> und Wahrnehmung um <%= per %>. Limited Edition 2015-2016 Winterausrüstung", "weaponSpecialWinter2016HealerText": "Konfettikanone", "weaponSpecialWinter2016HealerNotes": "JUHUUUUU!!! FRÖHLICHES WINTER-WUNDERLAND!!!! Erhöht Intelligenz um <%= int %>. Limited Edition 2015-2016 Winterausrüstung.", + "weaponSpecialSpring2016RogueText": "Feuer Bolas", + "weaponSpecialSpring2016RogueNotes": "Du hast sowohl den Ball, die Keule, als auch das Messer gemeistert. Jetzt bist Du bereit mit Feuer zu jonglieren! Awoo! Erhöht Stärke um <%= str %>. Limitierte Edition 2016 Frühlingsausrüstung.", + "weaponSpecialSpring2016WarriorText": "Käsehammer", + "weaponSpecialSpring2016WarriorNotes": "Keiner hat so viele Freunde wie die Maus mit ihrem herzhaften Käse. Erhöht Stärke um <%= str %>. Limitierte Edition 2016 Frühlingsausrüstung.", + "weaponSpecialSpring2016MageText": "Stab der Glocken", + "weaponSpecialSpring2016MageNotes": "Abra-ka-dabra! So umwerfend, Du könntest Dich selbst Hypnotisieren! Ooh ... es klingelt ... Erhöht Intelligenz um <%= int %> und Wahrnehmung um <%= per %>. Limitierte Edition 2016 Frühlingsausrüstung.", + "weaponSpecialSpring2016HealerText": "Frühlingsblumen-Stab", + "weaponSpecialSpring2016HealerNotes": "Mit einen winken und ein zwinkern, bringst Du die Felder und Wälder zum erblühen! Oder gib ärgerlichen Mäusen eins auf den Schädel. Erhöht Intelligenz um <%= int %>. Limitierte Edition 2016 Frühlingsausrüstung.", "weaponMystery201411Text": "Forke des Feierns", - "weaponMystery201411Notes": "Ersteche deine Feinde oder verschling dein Lieblingsessen - diese flexible Forke ist universell einsetzbar! Gewährt keinen Bonus. November 2014 Abonnenten-Gegenstand.", + "weaponMystery201411Notes": "Ersteche Deine Feinde oder verschling Dein Lieblingsessen - diese flexible Forke ist universell einsetzbar! Gewährt keinen Attributbonus. November 2014 Abonnentengegenstand.", "weaponMystery201502Text": "Schimmernder Flügelstab der Liebe und auch der Wahrheit", - "weaponMystery201502Notes": "Für FLÜGEL! Für die LIEBE! Und AUCH für die WAHRHEIT! Gewährt keinen Bonus. Februar 2015 Abonnentengegenstand.", + "weaponMystery201502Notes": "Für FLÜGEL! Für die LIEBE! Und AUCH für die WAHRHEIT! Gewährt keinen Attributbonus. Februar 2015 Abonnentengegenstand.", "weaponMystery201505Text": "Grüne Ritterlanze", "weaponMystery201505Notes": "Diese grün-silberne Lanze hat viele Gegner aus ihren Sätteln gehoben. Gewährt keinen Attributbonus. Mai 2015 Abonnentengegenstand.", "weaponMystery301404Text": "Steampunk Spazierstock", - "weaponMystery301404Notes": "Perfekt, um gemütlich durch die Stadt zu spazieren. März 3015 Abonnenten-Gegenstand. Gewährt keinen Bonus.", + "weaponMystery301404Notes": "Perfekt, um gemütlich durch die Stadt zu spazieren. März 3015 Abonnentengegenstand. Gewährt keinen Attributbonus.", "weaponArmoireBasicCrossbowText": "Einfache Armbrust", "weaponArmoireBasicCrossbowNotes": "Diese Armbrust kann die gegnerische Rüstung von großer Entfernung durchbohren! Erhöht Stärke um <%= str %>, Wahrnehmung um <%= per %> und Ausdauer um <%= con %>. Verzauberter Schrank: Unabhängiger Gegenstand.", "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 Stärke um <%= str %>, Wahrnehmung um <%= per %> und Intelligenz um <%= int %>. Verzauberter Schrank: Viehzüchter Set (Gegenstand 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 mystische Helden hervorgebracht. Erhöht Wahrnehmung und Stärke jeweils um <%= attrs %>. Verzaubertes Rüstungsset: Goldene Toga-Set (Gegenstand 3 von 3).", + "weaponArmoireMythmakerSwordNotes": "Obwohl es möglicherweise unbedeutend aussieht, hat dieses Schwert viele mystische Helden hervorgebracht. Erhöht Wahrnehmung und Stärke jeweils um <%= attrs %>. Verzauberter Schrank: Goldene-Toga-Set (Gegenstand 3 von 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 %>. Verzaubertes Rüstungsset: Gehörntes Eisen-Set (Gegenstand 3 von 3)", + "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 Eisen-Set (Gegenstand 3 von 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. ", + "weaponArmoireBatWandNotes": "Dieser Zauberstab kann jede Aufgabe in eine Fledermaus verwandeln. Schwinge ihn und schau zu wie sie davonfliegen. 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": "Kristallener Mondsichelstab", - "weaponArmoireCrystalCrescentStaffNotes": "Beschwöre die Macht des Sichelmondes herbei mit diesem glänzenden Stab! Erhöht Intelligenz und Stärke um je <%= attrs %>. Verzauberter Schrank: Kristallines Mondsichelset (Gegenstand 3 von 3)", + "weaponArmoireCrystalCrescentStaffNotes": "Beschwöre die Macht des Sichelmondes herbei mit diesem glänzenden Stab! Erhöht Intelligenz und Stärke jeweils um <%= attrs %>. Verzauberter Schrank: Kristallines Mondsichelset (Gegenstand 3 von 3)", "weaponArmoireBlueLongbowText": "Blauer Langbogen", - "weaponArmoireBlueLongbowNotes": "Fertig....Zielen....Feuern! Dieser Bogen hat eine große Reichweite. Erhöht Wahrnehmung um <%= per %>, Ausdauer um <%= con %> und Stärke um <%= str %>. Verzauberter Schrank: Unabhäniger Gegenstand.", + "weaponArmoireBlueLongbowNotes": "Fertig ... Zielen ... Feuer! Dieser Bogen hat eine große Reichweite. Erhöht Wahrnehmung um <%= per %>, Ausdauer um <%= con %> und Stärke um <%= str %>. Verzauberter Schrank: Unabhängiger Gegenstand.", "weaponArmoireGlowingSpearText": "Lechtender Speer", "weaponArmoireGlowingSpearNotes": "Dieser Speer hypnotisiert freilebende Aufgaben, sodass Du diese angreifen kannst. Erhöht Stärke um <%= str %>. Verzauberter Schrank: Unabhängiger Gegenstand.", - "weaponArmoireBarristerGavelText": "Barrister Gavel", - "weaponArmoireBarristerGavelNotes": "Order! Increases Strength and Constitution by <%= attrs %> each. Enchanted Armoire: Barrister Set (Item 3 of 3).", - "weaponArmoireJesterBatonText": "Jester Baton", - "weaponArmoireJesterBatonNotes": "With a wave of your baton and some witty repartee, even the most complicated situations become clear. Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Jester Set (Item 3 of 3).", + "weaponArmoireBarristerGavelText": "Richterhammer", + "weaponArmoireBarristerGavelNotes": "Beschlossen! Erhöht Stärke und Ausdauer jeweils um <%= attrs %>. Verzauberter Schrank: Richterset (Gegenstand 3 von 3).", + "weaponArmoireJesterBatonText": "Narrenstab", + "weaponArmoireJesterBatonNotes": "Durch ein Fuchteln mit Deinem Stab und einigen schlagfertigen Antworten, klären sich sogar die kompliziertesten Situationen. Erhöht Intelligenz und Wahrnehmung jeweils um <%= attrs %>. Verzauberter Schrank: Narrenset (Gegenstand 3 von 3).", + "weaponArmoireMiningPickaxText": "Spitzhacke", + "weaponArmoireMiningPickaxNotes": "Grabe das Maximum an Gold aus Deinen Aufgaben heraus! Erhöht Wahrnehmung um <%= per %>. Verzauberter Schrank: Bergmannsset (Gegenstand 3 von 3)", + "weaponArmoireBasicLongbowText": "Basic Longbow", + "weaponArmoireBasicLongbowNotes": "A serviceable hand-me-down bow. Increases Strength by <%= str %>. Enchanted Armoire: Basic Archer Set (Item 1 of 3).", "armor": "Rüstung", "armorBase0Text": "Schlichte Kleidung", - "armorBase0Notes": "Gewöhnliches Kleidungsstück. Gewährt keinen Bonus zu Attributen.", + "armorBase0Notes": "Gewöhnliches Kleidungsstück. Gewährt keinen Attributbonus.", "armorWarrior1Text": "Lederrüstung", "armorWarrior1Notes": "Wams aus robust gekochtem Leder. Erhöht Ausdauer um <%= con %>.", "armorWarrior2Text": "Kettenhemd", "armorWarrior2Notes": "Rüstung aus verflochtenen Metallringen. Erhöht Ausdauer um <%= con %>.", "armorWarrior3Text": "Plattenpanzer", - "armorWarrior3Notes": "Ein alles in Stahl einschließender Anzug, der Stolz eines jeden Ritters. Erhöht Ausdauer um <%= con %>.", + "armorWarrior3Notes": "Ein alles in Stahl einschließender Anzug, der Stolz eines jeden Ritters. Erhöht Ausdauer um <%= con %>.", "armorWarrior4Text": "Glutrüstung", "armorWarrior4Notes": "Schwere Plattenrüstung, die durch Verteidigungszaubern glüht. Erhöht Ausdauer um <%= con %>.", "armorWarrior5Text": "Güldene Rüstung", @@ -212,161 +225,175 @@ "armorHealer1Text": "Pflegergewand", "armorHealer1Notes": "Gewand, das Demut und Zielstrebigkeit zeigt. Erhöht Ausdauer um <%= con %>.", "armorHealer2Text": "Erste-Hilfe-Gewand", - "armorHealer2Notes": "Wird von jenen getragen, die sich um die in Schlachten verwundeten kümmern. Erhöht Ausdauer um <%= con %>.", + "armorHealer2Notes": "Wird von jenen getragen, die sich um die in Schlachten verwundeten kümmern. Erhöht Ausdauer um <%= con %>.", "armorHealer3Text": "Schützergewand", "armorHealer3Notes": "Kehrt die eigene Magie des Heilers nach innen, um Schaden abzuwehren. Erhöht Ausdauer um <%= con %>.", "armorHealer4Text": "Arztgewand", "armorHealer4Notes": "Strahlt Autorität aus und wehrt Flüche ab. Erhöht Ausdauer um <%= con %>.", "armorHealer5Text": "Königsgewand", - "armorHealer5Notes": "Gewand von denen, die Königen das Leben gerettet haben. Erhöht Ausdauer um <%= con %>.", + "armorHealer5Notes": "Gewand von denen, die Königen das Leben gerettet haben. Erhöht Ausdauer um <%= con %>.", "armorSpecial0Text": "Schattenrüstung", - "armorSpecial0Notes": "Diese Rüstung schreit, wenn sie getroffen wird, weil sie den Schmerz des Trägers statt ihm fühlt. Erhöht Ausdauert um <%= con %>.", + "armorSpecial0Notes": "Diese Rüstung schreit, wenn sie getroffen wird, weil sie den Schmerz des Trägers statt ihm fühlt. Erhöht Ausdauert um <%= con %>.", "armorSpecial1Text": "Kristallrüstung", - "armorSpecial1Notes": "Ihre unermüdliche Macht bewahrt den Träger vor weltlichem Unbehagen. Erhöht alle Attribute um jeweils <%= attrs %>.", + "armorSpecial1Notes": "Ihre unermüdliche Macht bewahrt den Träger vor weltlichem Unbehagen. Erhöht alle Attribute um jeweils <%= attrs %>.", "armorSpecial2Text": "Jean Chalard's edle Tunika", - "armorSpecial2Notes": "Macht dich besonders flauschig! Erhöht Ausdauer und Intelligenz um jeweils <%= attrs %>.", + "armorSpecial2Notes": "Macht Dich besonders flauschig! Erhöht Ausdauer und Intelligenz um jeweils <%= attrs %>.", "armorSpecialFinnedOceanicArmorText": "Geschuppte Meeresrüstung", "armorSpecialFinnedOceanicArmorNotes": "Obwohl empfindlich, macht diese Rüstung Deine Haut bei Berührung so gefährlich wie Feuerkorallen. Erhöht die Stärke um <%= str %>.", "armorSpecialYetiText": "Robe des Yeti-Zähmers", - "armorSpecialYetiNotes": "Flauschig und wild. Erhöht Ausdauer um <%= con %>. Limited Edition 2013-2014 Winter-Ausrüstung.", + "armorSpecialYetiNotes": "Flauschig und wild. Erhöht Ausdauer um <%= con %>. Limited Edition 2013-2014 Winterausrüstung.", "armorSpecialSkiText": "Parka des Ski-ssassinen", - "armorSpecialSkiNotes": "Voller versteckter Dolche und Skipistenkarten. Erhöht Wahrnehmung um <%= per %>. Limited Edition 2013-2014 Winter-Ausrüstung.", + "armorSpecialSkiNotes": "Voller versteckter Dolche und Skipistenkarten. Erhöht Wahrnehmung um <%= per %>. Limited Edition 2013-2014 Winterausrüstung.", "armorSpecialCandycaneText": "Zuckerstangenrobe", - "armorSpecialCandycaneNotes": "Gesponnen aus Zucker und Seide. Erhöht Intelligenz um <%= int %>. Limited Edition 2013-2014 Winter-Ausrüstung.", + "armorSpecialCandycaneNotes": "Gesponnen aus Zucker und Seide. Erhöht Intelligenz um <%= int %>. Limited Edition 2013-2014 Winterausrüstung.", "armorSpecialSnowflakeText": "Schneeflockengewand", - "armorSpecialSnowflakeNotes": "Ein Gewand, das dich selbst im kältesten Schneesturm warm hält. Erhöht Ausdauer um <%= con %>. Limited Edition 2013-2014 Winter-Ausrüstung.", + "armorSpecialSnowflakeNotes": "Ein Gewand, das Dich selbst im kältesten Schneesturm warm hält. Erhöht Ausdauer um <%= con %>. Limited Edition 2013-2014 Winterausrüstung.", "armorSpecialBirthdayText": "Ulkiges Festgewand", - "armorSpecialBirthdayNotes": "Alles Gute zum Geburtstag, Habitica! Trage diese absurden Party Roben um diesen wundervollen Tag zu feiern. Sie geben keinen Attributbonus.", + "armorSpecialBirthdayNotes": "Alles Gute zum Geburtstag, Habitica! Trage diese absurden Party Roben um diesen wundervollen Tag zu feiern. Gewährt keinen Attributbonus.", "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.", - "armorSpecialBirthday2016Text": "Ridiculous Party Robes", - "armorSpecialBirthday2016Notes": "Happy Birthday, Habitica! Wear these Ridiculous Party Robes to celebrate this wonderful day. Confers no benefit.", + "armorSpecialBirthday2015Notes": "Alles Gute zum Geburtstag, Habitica! Trage diese albernen Party Roben um diesen wundervollen Tag zu feiern. Gewährt keinen Attributbonus.", + "armorSpecialBirthday2016Text": "Lächerliches Festgewand", + "armorSpecialBirthday2016Notes": "Alles Gute zum Geburtstag, Habitica! Trage dieses Lächerliche Festgewand, um diesen wundervollen Tag zu feiern. Gewährt keinen Attributbonus.", "armorSpecialGaymerxText": "Regenbogenkriegerrüstung", "armorSpecialGaymerxNotes": "Zur Feier der GaymerX-Konferenz, ist diese besondere Rüstung mit einem strahlenden, bunten Regenbogen verziert! GaymerX ist eine Spiele-Konvention, die LGBTQ und das Spielen an sich feiert und die offen für alle ist. Sie findet statt im InterContinental in der Stadtmitte von SanFrancisco vom 11. bis 13. Juli.", "armorSpecialSpringRogueText": "Geschmeidiger Katzenanzug", - "armorSpecialSpringRogueNotes": "Perfekt gepflegt. Erhöht Wahrnehmung um <%= per %>. Limited Edition 2014 Frühlings-Ausrüstung.", + "armorSpecialSpringRogueNotes": "Perfekt gepflegt. Erhöht Wahrnehmung um <%= per %>. Limited Edition 2014 Frühlingsausrüstung.", "armorSpecialSpringWarriorText": "Hartkleerüstung", - "armorSpecialSpringWarriorNotes": "Weich wie Klee, hart wie Stahl. Erhöht Ausdauer um <%= con %>. Limited Edition 2014 Frühlings-Ausrüstung.", + "armorSpecialSpringWarriorNotes": "Weich wie Klee, hart wie Stahl. Erhöht Ausdauer um <%= con %>. Limited Edition 2014 Frühlingsausrüstung.", "armorSpecialSpringMageText": "Nagetierrobe", - "armorSpecialSpringMageNotes": "Mäuse sind putzig! Erhöht INT um <%= int %>. Limited Edition 2014 Frühlings-Ausrüstung.", + "armorSpecialSpringMageNotes": "Mäuse sind putzig! Erhöht Intelligenz um <%= int %>. Limited Edition 2014 Frühlingsausrüstung.", "armorSpecialSpringHealerText": "Flauschige Welpenrobe", - "armorSpecialSpringHealerNotes": "Warum und kuschelig, aber schützt den Träger dennoch vor Schaden. Erhöht AUS um <%= con %>. Limited Edition 2014 Frühlings-Ausrüstung.", + "armorSpecialSpringHealerNotes": "Warum und kuschelig, aber schützt den Träger dennoch vor Schaden. Erhöht Ausdauer um <%= con %>. Limited Edition 2014 Frühlingsausrüstung.", "armorSpecialSummerRogueText": "Piratenrobe", - "armorSpecialSummerRogueNotes": "Dies Gewand sein sehr gemütlich, yarrrrrr! Fügt Wahrnehmung <%= per %> Punkte hinzu. Limited Edition 2014 Sommer-Ausrüstung.", + "armorSpecialSummerRogueNotes": "Dies Gewand sein sehr gemütlich, yarrrrrr! Erhöht Wahrnehmung um <%= per %>. Limited Edition 2014 Sommerausrüstung.", "armorSpecialSummerWarriorText": "Abenteurergewand", - "armorSpecialSummerWarriorNotes": "Vollständig mit Schnalle und Zierbuchstaben. Fügt Ausdauer <%= con %> Punkte hinzu. Limited Edition 2014 Sommer-Ausrüstung.", + "armorSpecialSummerWarriorNotes": "Vollständig mit Schnalle und Zierbuchstaben. Erhöht Ausdauer um <%= con %> Punkte. Limited Edition 2014 Sommerausrüstung.", "armorSpecialSummerMageText": "Smaragdschwanz", - "armorSpecialSummerMageNotes": "Dieses Gewand aus schimmernden Schuppen verwandelt den Träger in einen echten Mermagier! Fügt Intelligenz <%= int %> Punkte hinzu. Limited Edition 2014 Sommer-Ausrüstung.", + "armorSpecialSummerMageNotes": "Dieses Gewand aus schimmernden Schuppen verwandelt den Träger in einen echten Meermagier! Erhöht Intelligenz um <%= int %> Punkte. Limited Edition 2014 Sommerausrüstung.", "armorSpecialSummerHealerText": "Schwanz des Meerheilers", - "armorSpecialSummerHealerNotes": "Dieses Gewand aus schimmernden Schuppen verwandelt seinen Träger in einen echten Meerheiler! Fügt Ausdauer <%= con %> Punkte hinzu. Limited Edition 2014 Sommer-Ausrüstung.", + "armorSpecialSummerHealerNotes": "Dieses Gewand aus schimmernden Schuppen verwandelt seinen Träger in einen echten Meerheiler! Erhöht Ausdauer um <%= con %>. Limited Edition 2014 Sommerausrüstung.", "armorSpecialFallRogueText": "Blutrote Roben", - "armorSpecialFallRogueNotes": "Bunt. Brandneu. Blutdurstig. Erhöht Wahrnehmung um <%= per %>. Limited Edition 2014 Herbst-Ausrüstung.", + "armorSpecialFallRogueNotes": "Bunt. Brandneu. Blutdurstig. Erhöht Wahrnehmung um <%= per %>. Limited Edition 2014 Herbstausrüstung.", "armorSpecialFallWarriorText": "Labormantel der Wissenschaft", - "armorSpecialFallWarriorNotes": "Schützt vor Zaubertrankflecken und Schlimmeren. Erhöht Ausdauer um <%= con %> Punkte. Limited Edition 2014 Herbst-Ausrüstung.", + "armorSpecialFallWarriorNotes": "Schützt vor Zaubertrankflecken und Schlimmeren. Erhöht Ausdauer um <%= con %>. Limited Edition 2014 Herbstausrüstung.", "armorSpecialFallMageText": "Zauberhafte Zaubererrobe", - "armorSpecialFallMageNotes": "Diese Robe hat zahlreiche Taschen für einen Extravorrat von Lurchaugen und Froschzungen. Erhöht Intelligenz um <%= int %> Punkte. Limited Edition 2014 Herbst-Ausrüstung.", + "armorSpecialFallMageNotes": "Diese Robe hat zahlreiche Taschen für einen Extravorrat von Lurchaugen und Froschzungen. Erhöht Intelligenz um <%= int %>. Limited Edition 2014 Herbstausrüstung.", "armorSpecialFallHealerText": "Bandagenrüstung", - "armorSpecialFallHealerNotes": "Wirf dich vor-verarztet in die Schlacht! Erhöht Ausdauer um <%= con %> Punkte. Limited Edition 2014 Herbst-Ausrüstung.", + "armorSpecialFallHealerNotes": "Wirf Dich vor-verarztet in die Schlacht! Erhöht Ausdauer um <%= con %>. Limited Edition 2014 Herbstausrüstung.", "armorSpecialWinter2015RogueText": "Eiszapfen-Drachenrüstung", - "armorSpecialWinter2015RogueNotes": "Diese Rüstung ist eiskalt, aber das ist es definitiv wert, wenn du erst du die unermesslichen Reichtümer im Zentrum des Eiszapfen-Drachennestes abräumst. Nicht, dass du irgendwie nach solchen unermesslichen Reichtümern suchen würdest. Du bist nämlich wirklich, wahrhaftig und ungelogen ein total echter Eiszapfen-Drache, okay?! Hör auf zu fragen! Erhöht Wahrnehmung um <%= per %>. Limited Edition 2014-2015 Winter Ausrüstung", + "armorSpecialWinter2015RogueNotes": "Diese Rüstung ist eiskalt, aber das ist es definitiv wert, wenn Du erst die unermesslichen Reichtümer im Zentrum des Eiszapfen-Drachennestes abräumst. Nicht, dass Du irgendwie nach solchen unermesslichen Reichtümern suchen würdest. Du bist nämlich wirklich, wahrhaftig und ungelogen ein total echter Eiszapfen-Drache, okay?! Hör auf zu fragen! Erhöht Wahrnehmung um <%= per %>. Limited Edition 2014-2015 Winterausrüstung", "armorSpecialWinter2015WarriorText": "Lebkuchenrüstung", - "armorSpecialWinter2015WarriorNotes": "Gemütlich und warm, frisch aus dem Ofen! Erhöht Ausdauer um <%= con %>. Limited Edition 2014-2015 Winter-Ausrüstung.", + "armorSpecialWinter2015WarriorNotes": "Gemütlich und warm, frisch aus dem Ofen! Erhöht Ausdauer um <%= con %>. Limited Edition 2014-2015 Winterausrüstung.", "armorSpecialWinter2015MageText": "Boreale Robe", - "armorSpecialWinter2015MageNotes": "In dieser Robe sind die schimmernden Lichter des Nordens sichtbar. Erhöht Intelligenz um <%= int %>. Limited Edition 2014-2015 Winter-Ausrüstung.", + "armorSpecialWinter2015MageNotes": "In dieser Robe sind die schimmernden Lichter des Nordens sichtbar. Erhöht Intelligenz um <%= int %>. Limited Edition 2014-2015 Winterausrüstung.", "armorSpecialWinter2015HealerText": "Schlittschuhoutfit", - "armorSpecialWinter2015HealerNotes": "Eislaufen ist sehr entspannend. Für den Fall, dass Dich die Eiszapfen-Drachen angreifen, solltest du es allerdings nicht ohne diese Schutzausrüstung probieren. Erhöht Konstitution um <%= con %>. Limited Edition 2014-2015 Winter Ausrüstung", + "armorSpecialWinter2015HealerNotes": "Eislaufen ist sehr entspannend. Für den Fall, dass Dich die Eiszapfen-Drachen angreifen, solltest Du es allerdings nicht ohne diese Schutzausrüstung probieren. Erhöht Ausdauer um <%= con %>. Limited Edition 2014-2015 Winterausrüstung", "armorSpecialSpring2015RogueText": "Quietschige Robe", "armorSpecialSpring2015RogueNotes": "Pelzig, weich und ganz sicher nicht brennbar. Erhöht Wahrnehmung um <%= per %>. Limited Edition 2015 Frühlingsausrüstung.", "armorSpecialSpring2015WarriorText": "Hüterrüstung", "armorSpecialSpring2015WarriorNotes": "Nur der wildeste Hund darf so fluffig sein. Erhöht Ausdauer um <%= con %>. Limited Edition 2015 Frühlingsausrüstung.", "armorSpecialSpring2015MageText": "Häschenanzug des Magiers", - "armorSpecialSpring2015MageNotes": "Dein Baumwollmantel passt zu deinem Baumwollschwanz! Erhöht Intelligenz um <%= int %>. Limited Edition 2015 Frühlingsausrüstung.", + "armorSpecialSpring2015MageNotes": "Dein Baumwollmantel passt zu Deinem Baumwollschwanz! Erhöht Intelligenz um <%= int %>. Limited Edition 2015 Frühlingsausrüstung.", "armorSpecialSpring2015HealerText": "Trostspendender Katzenanzug", - "armorSpecialSpring2015HealerNotes": "Dieser weiche Katzenanzug ist bequem und so beruhigend wie Pfefferminztee. Erhöht die Ausdauer um <%= con %>. Limited Edition 2015 Frühlingsausrüstung.", + "armorSpecialSpring2015HealerNotes": "Dieser weiche Katzenanzug ist bequem und so beruhigend wie Pfefferminztee. Erhöht Ausdauer um <%= con %>. Limited Edition 2015 Frühlingsausrüstung.", "armorSpecialSummer2015RogueText": "Rubinfarbener Schwanz", - "armorSpecialSummer2015RogueNotes": "Dieses Kleidungsstück aus schimmernden Schuppen verwandelt seinen Träger in einen echten Abtrünnigen des Riffs! Erhöht Wahrnehmung um <%= per %>. Limited Edition 2015 Sommer-Ausrüstung.", + "armorSpecialSummer2015RogueNotes": "Dieses Kleidungsstück aus schimmernden Schuppen verwandelt seinen Träger in einen echten Abtrünnigen des Riffs! Erhöht Wahrnehmung um <%= per %>. Limited Edition 2015 Sommerausrüstung.", "armorSpecialSummer2015WarriorText": "Goldener Schwanz", - "armorSpecialSummer2015WarriorNotes": "Dieses Gewand aus schimmernden Schuppen verwandelt seinen Träger in einen echten Sonnenbarsch-Krieger! Erhöht Ausdauer um <%= con %>. Limited Edition 2015 Sommer-Ausrüstung.", + "armorSpecialSummer2015WarriorNotes": "Dieses Gewand aus schimmernden Schuppen verwandelt seinen Träger in einen echten Sonnenbarsch-Krieger! Erhöht Ausdauer um <%= con %>. Limited Edition 2015 Sommerausrüstung.", "armorSpecialSummer2015MageText": "Wahrsagerrobe", - "armorSpecialSummer2015MageNotes": "Versteckte Macht liegt in diesen Puffärmeln. Erhöht Intelligenz um <%= int %>. Limited Edition 2015 Sommer-Ausrüstung.", + "armorSpecialSummer2015MageNotes": "Versteckte Macht liegt in diesen Puffärmeln. Erhöht Intelligenz um <%= int %>. Limited Edition 2015 Sommerausrüstung.", "armorSpecialSummer2015HealerText": "Matrosenrüstung", - "armorSpecialSummer2015HealerNotes": "Mit dieser Rüstung weiß jeder, dass du ein ehrlicher Handelsseemann bist, der niemals davon träumen würde sich wie ein Taugenichts zu benehmen. Erhöht Ausdauer um <%= con %>. Limited Edition 2015 Sommer-Ausrüstung.", + "armorSpecialSummer2015HealerNotes": "Mit dieser Rüstung weiß jeder, dass Du ein ehrlicher Handelsseemann bist, der niemals davon träumen würde sich wie ein Taugenichts zu benehmen. Erhöht Ausdauer um <%= con %>. Limited Edition 2015 Sommerausrüstung.", "armorSpecialFall2015RogueText": "Kampfrüstung", - "armorSpecialFall2015RogueNotes": "Flieg in den Kampf! Erhöht Wahrnehmung um <%= per %>. Limited Edition 2015 Herbst-Ausrüstung.", + "armorSpecialFall2015RogueNotes": "Flieg in den Kampf! Erhöht Wahrnehmung um <%= per %>. Limited Edition 2015 Herbstausrüstung.", "armorSpecialFall2015WarriorText": "Vogelscheuchenrüstung", - "armorSpecialFall2015WarriorNotes": "Obwohl sie nur mit Stroh ausgestopft ist, ist diese Rüstung extrem mächtig! Erhöht Ausdauer um <%= con %>. Limited Edition 2015 Herbst-Ausrüstung.", + "armorSpecialFall2015WarriorNotes": "Obwohl sie nur mit Stroh ausgestopft ist, ist diese Rüstung extrem mächtig! Erhöht Ausdauer um <%= con %>. Limited Edition 2015 Herbstausrüstung.", "armorSpecialFall2015MageText": "Genähte Roben", - "armorSpecialFall2015MageNotes": "Jede Masche dieser Rüstung schimmert mit Zauberei. Erhöht Intelligenz um <%= int %>. Limited Edition 2015 Herbst Ausrüstung.", + "armorSpecialFall2015MageNotes": "Jede Masche dieser Rüstung schimmert mit Zauberei. Erhöht Intelligenz um <%= int %>. Limited Edition 2015 Herbstausrüstung.", "armorSpecialFall2015HealerText": "Roben des Tränkebrauers", - "armorSpecialFall2015HealerNotes": "Wie bitte? Natürlich war das ein Trank der Ausdauer. Nein, du verwandelst dich definitiv nicht in einen Frosch! Sei nicht albern. Erhöht Ausdauer um <%= con %>. Limited Edition 2015 Herbst-Ausrüstung.", + "armorSpecialFall2015HealerNotes": "Wie bitte? Natürlich war das ein Trank der Ausdauer. Nein, Du verwandelst Dich definitiv nicht in einen Frosch! Sei nicht albern. Erhöht Ausdauer um <%= con %>. Limited Edition 2015 Herbstausrüstung.", "armorSpecialWinter2016RogueText": "Kakaorüstung", - "armorSpecialWinter2016RogueNotes": "Diese Lederrüstung hält Dich schön warm. Ist sie tatsächlich aus Kakao? Das wirst Du nie verraten. Erhöht Wahrnehmung um <%= per %>. Limited Edition 2015-2016 Winter Ausrüstung.", + "armorSpecialWinter2016RogueNotes": "Diese Lederrüstung hält Dich schön warm. Ist sie tatsächlich aus Kakao? Das wirst Du nie herausfinden. Erhöht Wahrnehmung um <%= per %>. Limited Edition 2015-2016 Winterausrüstung.", "armorSpecialWinter2016WarriorText": "Schneemannanzug", - "armorSpecialWinter2016WarriorNotes": "Brr! Diese gepolsterte Rüstung ist wirklich leistungsfähig… bis sie schmilzt. Erhöht Ausdauer um <%= con %>. Limited Edition 2015-2016 Winter Ausrüstung.", - "armorSpecialWinter2016MageText": "Snowboarder Anorak", - "armorSpecialWinter2016MageNotes": "Der weiseste Zauberer packt sich im Winter warm ein. Erhöht Intelligence um <%= int %>. Limited Edition 2015-2016 Winterausrüstung. ", - "armorSpecialWinter2016HealerText": "Festlicher Feen Umhang", - "armorSpecialWinter2016HealerNotes": "Festliche Feen hüllen sich zum Schutz in ihre großen Körperflügel, während sie mit ihren kleinen Kopfflügeln über Habitica sausen, Geschenke verteilen und überall Konfetti streuen. Wie süß! Erhöht Ausdauer um <%= con %>. Limited Edition 2015-2016 Winterausrüstung. ", + "armorSpecialWinter2016WarriorNotes": "Brr! Diese gepolsterte Rüstung ist wirklich leistungsfähig… bis sie schmilzt. Erhöht Ausdauer um <%= con %>. Limited Edition 2015-2016 Winterausrüstung.", + "armorSpecialWinter2016MageText": "Snowboarder-Anorak", + "armorSpecialWinter2016MageNotes": "Der weiseste Zauberer packt sich im Winter warm ein. Erhöht Intelligenz um <%= int %>. Limited Edition 2015-2016 Winterausrüstung.", + "armorSpecialWinter2016HealerText": "Festlicher Feenumhang", + "armorSpecialWinter2016HealerNotes": "Festliche Feen hüllen sich zum Schutz in ihre großen Körperflügel, während sie mit ihren kleinen Kopfflügeln über Habitica sausen, Geschenke verteilen und überall Konfetti streuen. Wie süß! Erhöht Ausdauer um <%= con %>. Limited Edition 2015-2016 Winterausrüstung.", + "armorSpecialSpring2016RogueText": "Hunde Tarnanzug", + "armorSpecialSpring2016RogueNotes": "Ein weiser Welpe weiß, dass man eine schillernde Tarnung wählt, wenn alles um einen herum grün ist und lebendig erstrahlt. Erhöht Wahrnehmung um <%= per %>. Limitierte Edition 2016 Frühlingsausrüstung.", + "armorSpecialSpring2016WarriorText": "Mächtiges Kettenhemd", + "armorSpecialSpring2016WarriorNotes": "Magst Du auch klein sein, Du bist nicht klein zu kriegen! Erhöht Ausdauer um <%= con %>. Limited Edition 2016 Frühlingsausrüstung.", + "armorSpecialSpring2016MageText": "Prachtvolle Lumpen Roben", + "armorSpecialSpring2016MageNotes": "Strahlende Farben, damit Du nicht mit einer Nekromaus verwechselt wirst. Erhöht Intelligenz um <%= int %>. Limitierte Edition 2016 Frühlingsausrüstung.", + "armorSpecialSpring2016HealerText": "Fluffige Häschen Kniehose", + "armorSpecialSpring2016HealerNotes": "Hü-Hüpf! Hüpfe von Hügel zu Hügel und heile alle Hilfsbedürftigen! Erhöht Ausdauer um <%= con %>. Limited Edition 2016 Frühlingsausrüstung.", "armorMystery201402Text": "Robe des Nachrichtenbringers", - "armorMystery201402Notes": "Schimmernd, stabil und mit vielen Taschen für Briefe. Gewährt keinen Bonus zu Attributen. Februar 2014 Abonnenten-Gegenstand.", - "armorMystery201403Text": "Waldwanderer Rüstung", - "armorMystery201403Notes": "Diese moosige Rüstung aus verwobenem Holz folgt jeder Bewegung ihres Trägers. Gewährt keinen Bonus zu Attributen. März 2014 Abonnenten-Gegenstand.", + "armorMystery201402Notes": "Schimmernd, stabil und mit vielen Taschen für Briefe. Gewährt keinen Attributbonus. Februar 2014 Abonnentengegenstand.", + "armorMystery201403Text": "Waldwanderer-Rüstung", + "armorMystery201403Notes": "Diese moosige Rüstung aus verwobenem Holz folgt jeder Bewegung ihres Trägers. Gewährt keinen Attributbonus. März 2014 Abonnentengegenstand.", "armorMystery201405Text": "Flamme des Herzen", - "armorMystery201405Notes": "Nichts kann Dich verletzen, wenn Du in Flammen eingehüllt bist! Gewährt keinen Bonus zu Attributen. Mai 2014 Abonnenten-Gegenstand.", + "armorMystery201405Notes": "Nichts kann Dich verletzen, wenn Du in Flammen eingehüllt bist! Gewährt keinen Attributbonus. Mai 2014 Abonnentengegenstand.", "armorMystery201406Text": "Krakenrobe", - "armorMystery201406Notes": "Diese flexible Robe ermöglicht dem Träger, selbst durch die kleinsten Ritzen zu schlüpfen. Gewährt keinen Bonus zu Attributen. Mai 2014 Abonnenten-Gegenstand.", + "armorMystery201406Notes": "Diese flexible Robe ermöglicht dem Träger, selbst durch die kleinsten Ritzen zu schlüpfen. Gewährt keinen Attributbonus. Mai 2014 Abonnentengegenstand.", "armorMystery201407Text": "Tiefseeforscher-Tauchanzug", - "armorMystery201407Notes": "Dieser Anzug, der entweder als \"plantschig\", \"zu dick\" oder \"ehrlich gesagt - etwas sperrig\" beschrieben wird, ist der beste Freund jedes unerschrockenen Unterwasser-Entdeckers. Gewährt keinen Bonus zu Attributen. Juli 2014 Abonnenten-Gegenstand.", + "armorMystery201407Notes": "Dieser Anzug, der entweder als \"plantschig\", \"zu dick\" oder \"ehrlich gesagt - etwas sperrig\" beschrieben wird, ist der beste Freund jedes unerschrockenen Unterwasser-Entdeckers. Gewährt keinen Attributbonus. Juli 2014 Abonnentengegenstand.", "armorMystery201408Text": "Sonnengewand", - "armorMystery201408Notes": "Dieses Gewand wurde aus Sonnenlicht und Gold gewoben. Kein Attributbonus. August 2014 Abonnenten-Gegenstand.", + "armorMystery201408Notes": "Dieses Gewand wurde aus Sonnenlicht und Gold gewoben. Gewährt keinen Attributbonus. August 2014 Abonnentengegenstand.", "armorMystery201409Text": "Waldläuferweste", - "armorMystery201409Notes": "Eine mit Laub bedeckte Weste, die den Träger tarnt. Kein Attributbonus. September 2014 Abonnenten-Gegenstand.", - "armorMystery201410Text": "Kobold Ausrüstung", - "armorMystery201410Notes": "Schuppig, schleimig und stark! Kein Attributbonus. Oktober 2014 Abonennten-Gegenstand.", + "armorMystery201409Notes": "Eine mit Laub bedeckte Weste, die den Träger tarnt. Gewährt keinen Attributbonus. September 2014 Abonnentengegenstand.", + "armorMystery201410Text": "Koboldausrüstung", + "armorMystery201410Notes": "Schuppig, schleimig und stark! Gewährt keinen Attributbonus. Oktober 2014 Abonnentengegenstand.", "armorMystery201412Text": "Pinguinanzug", - "armorMystery201412Notes": "Du bist ein Pinguin! Kein Attributbonus. Dezember 2014 Abonnenten-Gegenstand.", + "armorMystery201412Notes": "Du bist ein Pinguin! Gewährt keinen Attributbonus. Dezember 2014 Abonnentengegenstand.", "armorMystery201501Text": "Sternenrüstung", - "armorMystery201501Notes": "Du siehst Galaxien im Metall dieser Rüstung schimmern, die dem Träger der Rüstung eine unerschütterliche Entschlossenheit schenken.\nDiese Rüstung gibt keinen Attributbonus. Januar 2015 Abonnenten Gegenstand.", + "armorMystery201501Notes": "Du siehst Galaxien im Metall dieser Rüstung schimmern, die ihrem Träger eine unerschütterliche Entschlossenheit schenken. Gewährt keinen Attributbonus. Januar 2015 Abonnentengegenstand.", "armorMystery201503Text": "Aquamarinblaue Rüstung", "armorMystery201503Notes": "Dieses blaue Mineral symbolisiert Glück, Fröhlichkeit und endlose Produktivität. Gewährt keinen Attributbonus. März 2015 Abonnentengegenstand.", - "armorMystery201504Text": "Bienen Robe", - "armorMystery201504Notes": "In dieser Robe wirst Du fleißig sein wie eine Biene! Verleiht keine Attributboni. April 2015 Abonnentengegenstand.", + "armorMystery201504Text": "Bienenrobe", + "armorMystery201504Notes": "In dieser Robe wirst Du fleißig sein wie eine Biene! Gewährt keinen Attributbonus. April 2015 Abonnentengegenstand.", "armorMystery201506Text": "Taucheranzug", - "armorMystery201506Notes": "Schnorchel durch ein Korallenriff mit diesem knallbunten Taucheranzug! Gewährt keinen Attributsbonus. Limited Edition 2015 Sommer-Ausrüstung.", - "armorMystery201508Text": "Geparden Kostüm", - "armorMystery201508Notes": "Sei schnell wie der Blitz im flauschigen Geparden Kostüm! Gewährt keinen Attributbonus. Abonnentengegenstand August 2015", + "armorMystery201506Notes": "Schnorchel durch ein Korallenriff mit diesem knallbunten Taucheranzug! Gewährt keinen Attributsbonus. Limited Edition 2015 Sommerausrüstung.", + "armorMystery201508Text": "Gepardenkostüm", + "armorMystery201508Notes": "Sei schnell wie der Blitz im flauschigen Gepardenkostü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.", + "armorMystery201509Notes": "Das IST doch ein Kostüm, nicht wahr? Gewährt keinen Attributbonus. Abonnentengegenstand, September 2015.", "armorMystery201511Text": "Holzrüstung", - "armorMystery201511Notes": "In Betracht gezogen, dass diese Rüstung direkt von einen magischen Holzlog geschnitzt wurde, ist es erstaunlicherweise angenehm. Gewährt keinen Attributbonus. November 2015 Abonnentenggenstand.", + "armorMystery201511Notes": "Wenn man bedenkt, dass diese Rüstung direkt aus einem magischen Baumstamm geschnitzt wurde, ist sie erstaunlich bequem. Gewährt keinen Attributbonus. Abonnentengegenstand, November 2015.", "armorMystery201512Text": "Rüstung des Kalten Feuers", "armorMystery201512Notes": "Beschwöre die eisigen Flammen des Winters herbei! Gewährt keinen Attributbonus. Dezember 2015 Abonnentengegenstand.", + "armorMystery201603Text": "Glück-Anzug", + "armorMystery201603Notes": "Dieser Anzug wurde aus tausenden vierblättrigen Kleeblättern zusammengenäht! Gewährt keinen Attributbonus. Abonnentengegenstand, März 2016.", "armorMystery301404Text": "Steampunkanzug", - "armorMystery301404Notes": "Adrett und schneidig, hoho! Februar 3015 Abonennten-Gegenstand. Kein Attributbonus.", + "armorMystery301404Notes": "Adrett und schneidig, hoho! Gewährt keinen Attributbonus. Februar 3015 Abonnentengegenstand.", "armorArmoireLunarArmorText": "Beruhigende Mondrüstung", - "armorArmoireLunarArmorNotes": "Das Mondlicht wird dich stark und klug machen. Erhöht Stärke um <%= str %> und Wahrnehmung um <%= int %>. Verzauberter Schrank: Beruhigendes Mondset (Gegenstand 2 von 3).", + "armorArmoireLunarArmorNotes": "Das Mondlicht wird Dich stark und klug machen. Erhöht Stärke um <%= str %> und Wahrnehmung um <%= int %>. Verzauberter Schrank: Beruhigendes Mondset (Gegenstand 2 von 3).", "armorArmoireGladiatorArmorText": "Gladiatorenrüstung", - "armorArmoireGladiatorArmorNotes": "Um ein Gladiator zu sein, musst du nicht nur gerissen sein... sondern auch stark. Erhöht Wahrnehmung um <%= per %> und Stärke um <%= str %>. Verzauberter Schrank: Gladiatorset (Gegenstand 2 von 3).", + "armorArmoireGladiatorArmorNotes": "Um ein Gladiator zu sein, musst Du nicht nur gerissen sein ... sondern auch stark. Erhöht Wahrnehmung um <%= per %> und Stärke um <%= str %>. Verzauberter Schrank: Gladiatorset (Gegenstand 2 von 3).", "armorArmoireRancherRobesText": "Farmerroben", - "armorArmoireRancherRobesNotes": "Treibe deine Haus- und Reittiere zusammen, während du dieses zauberhafte Farmergewand trägst. Erhöht Stärke um <%= str %>, Wahrnehmung um <%= per %> und Intelligenz um <%= int %>. Verzauberter Schrank (Gegenstand 2 von 3).", + "armorArmoireRancherRobesNotes": "Treibe Deine Haus- und Reittiere zusammen, während Du dieses zauberhafte Farmergewand trägst. Erhöht Stärke um <%= str %>, Wahrnehmung um <%= per %> und Intelligenz um <%= int %>. Verzauberter Schrank: Viehzüchter-Set (Gegenstand 2 von 3).", "armorArmoireGoldenTogaText": "Goldene Toga", - "armorArmoireGoldenTogaNotes": "Diese schimmernde Toga wird nur von wahren Helden getragen. Erhöht Stärke und Ausdauer jeweils um <%= attrs %>. Verzauberter Schrank: Goldenes Toga Set (Gegenstand 1 von 3). ", + "armorArmoireGoldenTogaNotes": "Diese schimmernde Toga wird nur von wahren Helden getragen. Erhöht Stärke und Ausdauer jeweils um <%= attrs %>. Verzauberter Schrank: Goldene-Toga-Set (Gegenstand 1 von 3).", "armorArmoireHornedIronArmorText": "Gehörnte Eisenrüstung", "armorArmoireHornedIronArmorNotes": "Diese mit Leidenschaft aus Eisen gehämmerte, gehörnte Rüstung ist fast unzerbrechlich. Erhöht Ausdauer um <%= con %> und Wahrnehmung um <%= per %>. Verzauberter Schrank: Gehörntes Eisenset (Gegenstand 2 von 3)", - "armorArmoirePlagueDoctorOvercoatText": "Pestarzt Umhang", - "armorArmoirePlagueDoctorOvercoatNotes": "Ein authentischer Umhang wie ihn Ärzte tragen, die die Pest der Prokrastination bekämpfen! Steigert die Intelligenz um <%= int %>, Stärke um <%= str %>, und Ausdauer um <%= con %>. Verzauberter Schrank: Pestdoktor Set (Gegenstand 3 von 3).", + "armorArmoirePlagueDoctorOvercoatText": "Pestarzt-Umhang", + "armorArmoirePlagueDoctorOvercoatNotes": "Ein authentischer Umhang wie ihn Ärzte tragen, die die Pest der Prokrastination bekämpfen! Erhöht Intelligenz um <%= int %>, Stärke um <%= str %>, und Ausdauer um <%= con %>. Verzauberter Schrank: Pestarzt-Set (Gegenstand 3 von 3).", "armorArmoireShepherdRobesText": "Hirtengewand", - "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).", + "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 jeweils um <%= 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).", + "armorArmoireRoyalRobesNotes": "Wundervoller Herrscher, herrsche den ganzen Tag! Erhöht Ausdauer, Intelligenz und Wahrnehmung jeweils um <%= attrs %>. Verzauberter Schrank: Königsset (Gegenstand 3 von 3).", "armorArmoireCrystalCrescentRobesText": "Kristalline Mondsichelroben", - "armorArmoireCrystalCrescentRobesNotes": "Diese magischen Roben leuchten bei Nacht. Erhöht die Ausdauer und Wahrnehmung um je <%= attrs %>. Verzauberter Schrank: Kristallines Mondsichelset (Gegenstand 2 von 3)", - "armorArmoireDragonTamerArmorText": "Drachenzähmer Rüstung", + "armorArmoireCrystalCrescentRobesNotes": "Diese magischen Roben leuchten bei Nacht. Erhöht Ausdauer und Wahrnehmung jeweils um <%= attrs %>. Verzauberter Schrank: Kristallines Mondsichelset (Gegenstand 2 von 3)", + "armorArmoireDragonTamerArmorText": "Drachenzähmer-Rüstung", "armorArmoireDragonTamerArmorNotes": "Durch diese robuste Rüstung dringt keine Flamme. Erhöht Ausdauer um <%= con %>. Verzauberter Schrank: Drachenzähmer Set (Gegenstand 3 von 3).", - "armorArmoireBarristerRobesText": "Barrister Robes", - "armorArmoireBarristerRobesNotes": "Very serious and stately. Increases Constitution by <%= con %>. Enchanted Armoire: Barrister Set (Item 2 of 3).", - "armorArmoireJesterCostumeText": "Jester Costume", - "armorArmoireJesterCostumeNotes": "Tra-la-la! Despite the look of this costume, you are no fool. Increases Intelligence by <%= int %>. Enchanted Armoire: Jester Set (Item 2 of 3).", + "armorArmoireBarristerRobesText": "Richterrobe", + "armorArmoireBarristerRobesNotes": "Äußerst seriös und stattlich. Erhöht Ausdauer um <%= con %>. Verzauberter Schrank: Richterset (Gegenstand 2 von 3).", + "armorArmoireJesterCostumeText": "Narrenkostüm", + "armorArmoireJesterCostumeNotes": "Tra-la-la! Trotz des Aussehens dieses Kostüms, bist Du kein Narr. Erhöht Intelligenz um <%= int %>. Verzauberter Schrank: Narrenset (Gegenstand 2 von 3).", + "armorArmoireMinerOverallsText": "Arbeitsanzug des Bergmanns", + "armorArmoireMinerOverallsNotes": "Er sieht vielleicht abgetragen aus, aber er wurde Schmutz abweisend verzaubert. Erhöht Ausdauer um <%=con %>. Verzauberter Schrank: Bergmannsset (Gegenstand 2 von 3).", + "armorArmoireBasicArcherArmorText": "Basic Archer Armor", + "armorArmoireBasicArcherArmorNotes": "This camouflaged vest lets you slip unnoticed through the forests. Increases Perception by <%= per %>. Enchanted Armoire: Basic Archer Set (Item 2 of 3).", "headgear": "Kopfschutz", "headBase0Text": "Kein Helm.", "headBase0Notes": "Keine Kopfbedeckung.", @@ -383,7 +410,7 @@ "headRogue1Text": "Lederkapuze", "headRogue1Notes": "Einfache Schutzkutte. Erhöht Wahrnehmung um <%= per %>.", "headRogue2Text": "Schwarzlederkapuze", - "headRogue2Notes": "Ist sowohl für die Verteidigung als auch für die Tarnung nützlich. Erhöht Wahrnehmung um <%= per %>.", + "headRogue2Notes": "Ist sowohl für die Verteidigung als auch für die Tarnung nützlich. Erhöht Wahrnehmung um <%= per %>.", "headRogue3Text": "Tarnkapuze", "headRogue3Notes": "Robust, aber beeinträchtigt das Hören nicht. Erhöht Wahrnehmung um <%= per %>.", "headRogue4Text": "Kapuze des Halbdunkels", @@ -391,7 +418,7 @@ "headRogue5Text": "Kapuze des Schattens", "headRogue5Notes": "Verbirgt Gedanken auch vor denen, die sie lesen könnten. Erhöht Wahrnehmung um <%= per %>.", "headWizard1Text": "Magierhut", - "headWizard1Notes": "Einfach, komfortabel und modisch verarbeitet. Erhöht Wahrnehmung um by <%= per %>.", + "headWizard1Notes": "Einfach, komfortabel und modisch verarbeitet. Erhöht Wahrnehmung um <%= per %>.", "headWizard2Text": "Weissagerhut", "headWizard2Notes": "Traditionelle Kopfbedeckung des wandernden Zauberers. Erhöht Wahrnehmung um <%= per %>.", "headWizard3Text": "Astrologenhut", @@ -405,176 +432,192 @@ "headHealer2Text": "Amethystdiadem", "headHealer2Notes": "Ein wenig Luxus für einen bescheidenen Beruf. Erhöht Intelligenz um <%= int %>.", "headHealer3Text": "Saphirdiadem", - "headHealer3Notes": "Leuchtet, um Leidenden anzukündigen, dass ihre Rettung naht. Erhöht INT um <%= int %>.", + "headHealer3Notes": "Leuchtet, um Leidenden anzukündigen, dass ihre Rettung naht. Erhöht Intelligenz um <%= int %>.", "headHealer4Text": "Smaragddiadem", - "headHealer4Notes": "Strahlt eine Aura von Leben und Wachstum aus. Erhöht die Intelligenz um <%= int %>.", + "headHealer4Notes": "Strahlt eine Aura von Leben und Wachstum aus. Erhöht Intelligenz um <%= int %>.", "headHealer5Text": "Königsdiadem", "headHealer5Notes": "Für König, Königin und Wunderwirker. Erhöht Intelligenz um <%= int %>.", "headSpecial0Text": "Schattenhelm", "headSpecial0Notes": "Blut und Asche, Lava und Obsidian geben diesem Helm sein Erscheinungsbild und seine Macht. Erhöht Intelligenz um <%= int %>.", "headSpecial1Text": "Kristallhelm", - "headSpecial1Notes": "Die Lieblingskrone derer, die mit gutem Beispiel voran gehen. Erhöht alle Attribute um <%= attrs %>.", + "headSpecial1Notes": "Die Lieblingskrone derer, die mit gutem Beispiel voran gehen. Erhöht alle Attribute um <%= attrs %>.", "headSpecial2Text": "Namenloser Helm", "headSpecial2Notes": "Ein Andenken an jene, die gegeben haben ohne eine Gegenleistung zu verlangen. Erhöht Intelligenz und Stärke um jeweils <%= attrs %>.", "headSpecialFireCoralCircletText": "Feuerkorallendiadem", "headSpecialFireCoralCircletNotes": "Dieser Reif, der von Habiticas größten Alchimisten gestaltet wurde, erlaubt dir unter Wasser zu atmen und nach Schätzen zu tauchen! Erhöht Wahrnehmung um <%= per %>.", "headSpecialNyeText": "Ulkiger Festhut", - "headSpecialNyeNotes": "Du hast einen ulkigen Partyhut erhalten! Trage ihn mit Stolz bei Deinem Rutsch ins neue Jahr! Kein Attributbonus.", + "headSpecialNyeNotes": "Du hast einen ulkigen Partyhut erhalten! Trage ihn mit Stolz bei Deinem Rutsch ins neue Jahr! Gewährt keinen Attributbonus.", "headSpecialYetiText": "Helm des Yeti-Zähmers", - "headSpecialYetiNotes": "Eine niedliche, aber gleichzeitig furchterregende Kopfbedeckung. Erhöht Stärke um <%= str %>. Limited Edition 2013-2014 Winter-Ausrüstung.", + "headSpecialYetiNotes": "Eine niedliche, aber gleichzeitig furchterregende Kopfbedeckung. Erhöht Stärke um <%= str %>. Limited Edition 2013-2014 Winterausrüstung.", "headSpecialSkiText": "Kapuze des Ski-ssassinen", - "headSpecialSkiNotes": "Hält Deine Identität geheim... und Dein Gesicht schön warm. Erhöhrt Wahrnehmung um <%= per %>. Limited Edition 2013-2014 Winter Ausrüstung", + "headSpecialSkiNotes": "Hält Deine Identität geheim ... und Dein Gesicht schön warm. Erhöht Wahrnehmung um <%= per %>. Limited Edition 2013-2014 Winterausrüstung", "headSpecialCandycaneText": "Zuckerstangenhut", - "headSpecialCandycaneNotes": "Der leckerste Hut der Welt. Berüchtigt dafür, dass er mysteriös auftaucht und wieder verschwindet. Erhöht Wahrnehmung um <%= per %>. Limited Edition 2013-2014 Winter-Ausrüstung.", + "headSpecialCandycaneNotes": "Der leckerste Hut der Welt. Berüchtigt dafür, dass er mysteriös auftaucht und wieder verschwindet. Erhöht Wahrnehmung um <%= per %>. Limited Edition 2013-2014 Winterausrüstung.", "headSpecialSnowflakeText": "Schneeflockenkrone", - "headSpecialSnowflakeNotes": "Der Träger dieser Krone wird niemals frieren. Erhöht Intelligenz um <%= int %>. Limited Edition 2013-2014 Winter-Ausrüstung.", + "headSpecialSnowflakeNotes": "Der Träger dieser Krone wird niemals frieren. Erhöht Intelligenz um <%= int %>. Limited Edition 2013-2014 Winterausrüstung.", "headSpecialSpringRogueText": "Verstohlene Kätzchenmaske", - "headSpecialSpringRogueNotes": "Niemand wird je darauf kommen, dass du ein Katzeneinbrecher bist! Erhöht Wahrnehmung um <%= per %>. Limited Edition 2014 Frühlings-Ausrüstung.", + "headSpecialSpringRogueNotes": "Niemand wird je darauf kommen, dass Du ein Katzeneinbrecher bist! Erhöht Wahrnehmung um <%= per %>. Limited Edition 2014 Frühlingsausrüstung.", "headSpecialSpringWarriorText": "Hartkleehelm", - "headSpecialSpringWarriorNotes": "Dieser Helm, der aus süßem Wiesenklee geschmiedet wurde, kann auch dem mächtigsten Hieb standhalten. Erhöht Stärke um <%= str %>. Limited Edition 2014 Frühlings-Ausrüstung.", + "headSpecialSpringWarriorNotes": "Dieser Helm, der aus süßem Wiesenklee geschmiedet wurde, kann auch dem mächtigsten Hieb standhalten. Erhöht Stärke um <%= str %>. Limited Edition 2014 Frühlingsausrüstung.", "headSpecialSpringMageText": "Schweizer Käsehut", - "headSpecialSpringMageNotes": "Dieser Hut enthält eine Menge mächtige Magie! Versuche, ihn nicht anzuknabbern. Erhöht Wahrnehmung um <%= per %>. Limited Edition 2014 Frühlings-Ausrüstung.", + "headSpecialSpringMageNotes": "Dieser Hut enthält eine Menge mächtige Magie! Versuche, ihn nicht anzuknabbern. Erhöht Wahrnehmung um <%= per %>. Limited Edition 2014 Frühlingsausrüstung.", "headSpecialSpringHealerText": "Krone der Freundschaft", - "headSpecialSpringHealerNotes": "Diese Krone symbolisiert Treue und Kameradschaft. Ein Hund ist schließlich der beste Freund des Abenteurers! Erhöht Intelligenz um <%= int %>. Limited Edition 2014 Frühlings-Ausrüstung.", + "headSpecialSpringHealerNotes": "Diese Krone symbolisiert Treue und Kameradschaft. Ein Hund ist schließlich der beste Freund des Abenteurers! Erhöht Intelligenz um <%= int %>. Limited Edition 2014 Frühlingsausrüstung.", "headSpecialSummerRogueText": "Piratenhut", - "headSpecialSummerRogueNotes": "Nur die produktivsten Piraten können diesen herrlichen Hut tragen. Erhöht die Wahrnehmung um <%= per %>. Limited Edition 2014 Sommer-Ausrüstung.", + "headSpecialSummerRogueNotes": "Nur die produktivsten Piraten können diesen herrlichen Hut tragen. Erhöht die Wahrnehmung um <%= per %>. Limited Edition 2014 Sommerausrüstung.", "headSpecialSummerWarriorText": "Abenteurerkopftuch", - "headSpecialSummerWarriorNotes": "Dieses weiche, salzige Tuch gibt dem Träger Stärke. Erhöht Stärke um <%= str %>. Limited Edition 2014 Sommer-Ausrüstung.", + "headSpecialSummerWarriorNotes": "Dieses weiche, salzige Tuch gibt dem Träger Stärke. Erhöht Stärke um <%= str %>. Limited Edition 2014 Sommerausrüstung.", "headSpecialSummerMageText": "Algenumwickelter Hut", - "headSpecialSummerMageNotes": "Was könnte magischer sein als ein mit Algen umwickelter Hut? Erhöht Wahrnehmung um <%= per %> Punkte. Limited Edition 2014 Sommer-Ausrüstung.", + "headSpecialSummerMageNotes": "Was könnte magischer sein als ein mit Algen umwickelter Hut? Erhöht Wahrnehmung um <%= per %>. Limited Edition 2014 Sommerausrüstung.", "headSpecialSummerHealerText": "Korallenkrone", - "headSpecialSummerHealerNotes": "Gibt dem Träger die Fähigkeit, beschädigte Korallenriffe zu heilen. Fügt Intelligenz <%= int %> Punkte hinzu. Limited Edition 2014 Sommer-Ausrüstung.", + "headSpecialSummerHealerNotes": "Gibt dem Träger die Fähigkeit, beschädigte Korallenriffe zu heilen. Erhöht Intelligenz um <%= int %>. Limited Edition 2014 Sommerausrüstung.", "headSpecialFallRogueText": "Blutrote Kapuze", - "headSpecialFallRogueNotes": "Die Identität eines Vampirjägers muss stets geschützt sein. Erhöht Wahrnehmung um <%= per %> Punkte. Limited Edition 2014 Herbst-Ausrüstung.", + "headSpecialFallRogueNotes": "Die Identität eines Vampirjägers muss stets geschützt sein. Erhöht Wahrnehmung um <%= per %>. Limited Edition 2014 Herbstausrüstung.", "headSpecialFallWarriorText": "Monstermaske der Wissenschaft", - "headSpecialFallWarriorNotes": "Aufsetzen und sich wohlfühlen. Fast wie neu. Erhöht Stärke um <%= str %> Punkte. Limited Edition 2014 Herbst-Ausrüstung.", + "headSpecialFallWarriorNotes": "Aufsetzen und sich wohlfühlen. Fast wie neu. Erhöht Stärke um <%= str %>. Limited Edition 2014 Herbstausrüstung.", "headSpecialFallMageText": "Spitzer Hut", - "headSpecialFallMageNotes": "Da steckt Magie in jedem Faden. Erhöht Wahrnehmung um <%= per %> Punkte. Limited Edition 2014 Herbst-Ausrüstung.", + "headSpecialFallMageNotes": "Da steckt Magie in jedem Faden. Erhöht Wahrnehmung um <%= per %>. Limited Edition 2014 Herbstausrüstung.", "headSpecialFallHealerText": "Kopfverband", - "headSpecialFallHealerNotes": "Antibakteriell und modebewusst. Erhöht Intelligenz um <%= int %> Punkte. Limited Edition 2014 Herbst-Ausrüstung.", + "headSpecialFallHealerNotes": "Antibakteriell und modebewusst. Erhöht Intelligenz um <%= int %>. Limited Edition 2014 Herbstausrüstung.", "headSpecialNye2014Text": "Alberner Partyhut", - "headSpecialNye2014Notes": "Du hast einen albernen Partyhut erhalten! Trag ihn mit Stolz, während du ins neue Jahr hineinfeierst! Kein Attributbonus.", + "headSpecialNye2014Notes": "Du hast einen albernen Partyhut erhalten! Trag ihn mit Stolz, während Du ins neue Jahr hineinfeierst! Gewährt keinen Attributbonus.", "headSpecialWinter2015RogueText": "Eiszapfen-Drachenmaske", - "headSpecialWinter2015RogueNotes": "Du bist wirklich, wahrhaftig und zweifellos ein total echter Eiszapfen-Drache. Du dringst nicht in das Nest der Eiszapfen-Drachen ein. Du hast absolut gar kein Interesse an den unermesslichen Reichtümern, die Gerüchten zufolge in ihren kalten Tunneln lagern sollen. Rawr. Erhöht Wahrnehmung um <%= per %>. Limited Edition 2014-2015 Winter Ausrüstung", + "headSpecialWinter2015RogueNotes": "Du bist wirklich, wahrhaftig und zweifellos ein total echter Eiszapfen-Drache. Du dringst nicht in das Nest der Eiszapfen-Drachen ein. Du hast absolut gar kein Interesse an den unermesslichen Reichtümern, die Gerüchten zufolge in ihren kalten Tunneln lagern sollen. Rawr. Erhöht Wahrnehmung um <%= per %>. Limited Edition 2014-2015 Winterausrüstung", "headSpecialWinter2015WarriorText": "Lebkuchenhelm", - "headSpecialWinter2015WarriorNotes": "Denk, denk, denk, bis dir der Kopf brummt. Erhöht Stärke um <%= str %>. Limited Edition 2014-2015 Winter Ausrüstung.", + "headSpecialWinter2015WarriorNotes": "Denk, denk, denk, bis dir der Kopf brummt. Erhöht Stärke um <%= str %>. Limited Edition 2014-2015 Winterausrüstung.", "headSpecialWinter2015MageText": "Nordlichthelm", - "headSpecialWinter2015MageNotes": "Das Gewebe dieses Hutes bewegt sich und leuchtet, während der Träger lernt. Erhöht Wahrnehmung um <%= per %>. Limited Edition 2014-2015 Winter Ausrüstung", + "headSpecialWinter2015MageNotes": "Das Gewebe dieses Hutes bewegt sich und leuchtet, während der Träger lernt. Erhöht Wahrnehmung um <%= per %>. Limited Edition 2014-2015 Winterausrüstung", "headSpecialWinter2015HealerText": "Kuschelige Ohrenwärmer", - "headSpecialWinter2015HealerNotes": "Diese warmen Ohrenschützer schützen vor Kälte und störendem Krach. Erhöhen Intelligenz um <%= int %>. Limited Edition 2014-2015 Winter Ausrüstung", + "headSpecialWinter2015HealerNotes": "Diese warmen Ohrenschützer schützen vor Kälte und störendem Krach. Erhöht Intelligenz um <%= int %>. Limited Edition 2014-2015 Winterausrüstung", "headSpecialSpring2015RogueText": "Feuerfester Helm", "headSpecialSpring2015RogueNotes": "Feuer? HAH! Du quiekst erbittert angesichts des Feuers. Erhöht Wahrnehmung um <%= per %>. Limitierte Ausgabe 2015 Frühlingsausrüstung.", "headSpecialSpring2015WarriorText": "Hütehelm", "headSpecialSpring2015WarriorNotes": "Behüte den Helm! Nur ein leidenschaftlicher Hund kann ihn tragen. Höre auf zu lachen. Erhöht Stärke um <%= str %>. Limitierte Auflage 2015 Frühlingsausrüstung.", "headSpecialSpring2015MageText": "Hut des Bühnenmagiers", - "headSpecialSpring2015MageNotes": "Was kam zuerst, das Häschen oder der Hut? Erhöht Wahrnehmung um <%= per %>. Limitierte Auflage 2015 Frühlingsausrüstung.", + "headSpecialSpring2015MageNotes": "Was kam zuerst, das Häschen oder der Hut? Erhöht Wahrnehmung um <%= per %>. Limitierte Auflage 2015 Frühlingsausrüstung.", "headSpecialSpring2015HealerText": "Trostspendende Krone", "headSpecialSpring2015HealerNotes": "Die Perle im Zentrum dieser Krone beruhigt und tröstet jene, die sich in ihrer Nähe befinden. Erhöht Intelligenz um <%= int %>. Limited Edition 2015 Frühlingsausrüstung.", "headSpecialSummer2015RogueText": "Abtrünnigenhut", - "headSpecialSummer2015RogueNotes": "Dieser Piratenhut fiel über Bord und wird jetzt von Feuerkorallenstückchen geschmückt. Erhöht Wahrnehmung um <%= per %>. Limited Edition 2015 Sommer-Ausrüstung.", + "headSpecialSummer2015RogueNotes": "Dieser Piratenhut fiel über Bord und wird jetzt von Feuerkorallenstückchen geschmückt. Erhöht Wahrnehmung um <%= per %>. Limited Edition 2015 Sommerausrüstung.", "headSpecialSummer2015WarriorText": "Juwelenhelm des Meeres", - "headSpecialSummer2015WarriorNotes": "Dieser starke und ansehnliche Helm aus Tiefseemetall wurde von den Kunsthandwerkern aus Dilatory hergestellt. Erhöht Stärke um <%= str %>. Limited Edition 2015 Sommer-Ausrüstung.", + "headSpecialSummer2015WarriorNotes": "Dieser starke und ansehnliche Helm aus Tiefseemetall wurde von den Kunsthandwerkern aus Dilatory hergestellt. Erhöht Stärke um <%= str %>. Limited Edition 2015 Sommerausrüstung.", "headSpecialSummer2015MageText": "Wahrsagertuch", - "headSpecialSummer2015MageNotes": "In den Fäden dieses Schals schlummert verborgene Kraft. Erhöht Wahrnehmung um <%= per %>. Limited Edition 2015 Sommer-Ausrüstung.", + "headSpecialSummer2015MageNotes": "In den Fäden dieses Schals schlummert verborgene Kraft. Erhöht Wahrnehmung um <%= per %>. Limited Edition 2015 Sommerausrüstung.", "headSpecialSummer2015HealerText": "Matrosenkappe", - "headSpecialSummer2015HealerNotes": "Hast du die Matrosenkappe sicher auf deinem Kopf, kannst du sogar durch die stürmischsten Gewässer steuern! Erhöht Intelligenz um <%= int %>. Limited Edition 2015 Sommer-Ausrüstung.", + "headSpecialSummer2015HealerNotes": "Hast Du die Matrosenkappe sicher auf Deinem Kopf, kannst Du sogar durch die stürmischsten Gewässer steuern! Erhöht Intelligenz um <%= int %>. Limited Edition 2015 Sommerausrüstung.", "headSpecialFall2015RogueText": "Geflügelter Kampfhelm", - "headSpecialFall2015RogueNotes": "Orte deine Feinde mit diesem mächtigen Helm durch Echos! Erhöht Wahrnehmung um <%= per %>. Limited Edition 2015 Herbst-Ausrüstung.", + "headSpecialFall2015RogueNotes": "Orte Deine Feinde mit diesem mächtigen Helm durch Echos! Erhöht Wahrnehmung um <%= per %>. Limited Edition 2015 Herbstausrüstung.", "headSpecialFall2015WarriorText": "Vogelscheuchenhut", - "headSpecialFall2015WarriorNotes": "Jeder würde diesen Hut wollen - wenn sie denn nur ein Gehirn hätten. Erhöht Stärke um <%= str %>. Limited Edition 2015 Herbst Ausrüstung.", + "headSpecialFall2015WarriorNotes": "Jeder würde diesen Hut wollen - wenn sie denn nur ein Gehirn hätten. Erhöht Stärke um <%= str %>. Limited Edition 2015 Herbstausrüstung.", "headSpecialFall2015MageText": "Genähter Hut", - "headSpecialFall2015MageNotes": "Dieser Hut wurde mit jedem Nadelstich stärker. Erhöht Wahrnehmung um <%= per %> Punkte. Limited Edition 2015 Herbst-Ausrüstung.", + "headSpecialFall2015MageNotes": "Dieser Hut wurde mit jedem Nadelstich stärker. Erhöht Wahrnehmung um <%= per %>. Limited Edition 2015 Herbstausrüstung.", "headSpecialFall2015HealerText": "Froschhut", - "headSpecialFall2015HealerNotes": "Dies ist ein sehr ernster Hut, der nur den meist fortgeschrittenen Zaubertranksbrauern würdig ist. Erhöht Intelligenz um <%= int %>. Limited Edition 2015 Herbst Ausrüstung.", + "headSpecialFall2015HealerNotes": "Dies ist ein sehr ernster Hut, der nur den meist fortgeschrittenen Zaubertranksbrauern würdig ist. Erhöht Intelligenz um <%= int %>. Limited Edition 2015 Herbstausrüstung.", "headSpecialNye2015Text": "Lächerlicher Partyhut", - "headSpecialNye2015Notes": "Du hast einen lächerlichen Partyhut erhalten! Trag ihn mit Stolz, während du ins neue Jahr hineinfeierst! Kein Attributbonus.", + "headSpecialNye2015Notes": "Du hast einen lächerlichen Partyhut erhalten! Trag ihn mit Stolz, während Du ins neue Jahr hineinfeierst! Gewährt keinen Attributbonus.", "headSpecialWinter2016RogueText": "Kakaohelm", - "headSpecialWinter2016RogueNotes": "Der schützende Schal an diesem gemütlichen Helm wird nur abgenommen um warme Wintergetränke zu trinken. Erhöht Wahrnehmung um <%= per %>. Limited Edition 2015-2016 Winter Ausrüstung.", + "headSpecialWinter2016RogueNotes": "Der schützende Schal an diesem gemütlichen Helm wird nur abgenommen um warme Wintergetränke zu trinken. Erhöht Wahrnehmung um <%= per %>. Limited Edition 2015-2016 Winterausrüstung.", "headSpecialWinter2016WarriorText": "Schneemannmütze", - "headSpecialWinter2016WarriorNotes": "Brr! Dieser mächtige Helm ist wirklich leistungsfähig… bis er schmilzt. Erhöht Stärke um <%= str %>. Limited Edition 2015-2016 Winter Ausrüstung.", + "headSpecialWinter2016WarriorNotes": "Brr! Dieser mächtige Helm ist wirklich leistungsfähig… bis er schmilzt. Erhöht Stärke um <%= str %>. Limited Edition 2015-2016 Winterausrüstung.", "headSpecialWinter2016MageText": "Snowboarder Kapuze", "headSpecialWinter2016MageNotes": "Schützt Deine Augen vor Schnee während Du Zaubersprüche webst. Erhöht Wahrnehmung um <%= per %>. Limited Edition 2015-2016 Winterausrüstung.", "headSpecialWinter2016HealerText": "Feenflügelhelm", - "headSpecialWinter2016HealerNotes": "DieseFlügelflatternsoschnelldasssieverschwimmen! Erhöht Intelligenz um <%= int %>. Limited Edition 2015-2016 Winter Ausrüstung.", + "headSpecialWinter2016HealerNotes": "DieseFlügelflatternsoschnelldasssieverschwimmen! Erhöht Intelligenz um <%= int %>. Limited Edition 2015-2016 Winterausrüstung.", + "headSpecialSpring2016RogueText": "Guter Hund Maske", + "headSpecialSpring2016RogueNotes": "Ohh, was für ein süßer Welpe! Komm her und lass Dich über Deinen Kopf streicheln ... Hey, wo ist mein ganzes Gold hin? Erhöht Wahrnehmung um <%= per %>. Limitierte Edition 2016 Frühlingsausrüstung.", + "headSpecialSpring2016WarriorText": "Maus Wächter Helm", + "headSpecialSpring2016WarriorNotes": "Niemals wieder wird man dir eins über den Schädel ziehen! Lass sie nur kommen! Erhöht Stärke um <%= str %>. Limited Edition 2016 Frühlingsausrüstung.", + "headSpecialSpring2016MageText": "Prachtvoller Lumpen Hut", + "headSpecialSpring2016MageNotes": "Aufmachung, um Dich von den schnöden Wald und Wiesen Magiern dieser Welt abzuheben. Erhöht Wahrnehmung um <%= per %>. Limitierte Ausgabe 2016 Frühlingsausrüstung.", + "headSpecialSpring2016HealerText": "Blumendiadem", + "headSpecialSpring2016HealerNotes": "Es schimmert mit der Kraft neuen Lebens bereit empor zu sprießen. Erhöht Intelligenz um <%= int %>. Limitierte Edition 2016 Frühlingsausrüstung.", "headSpecialGaymerxText": "Regenbogenkriegerhelm", "headSpecialGaymerxNotes": "Zur Feier der GaymerX-Konferenz ist dieser spezielle Helm dekoriert mit einem strahlenden, farbenfrohen Regenbogenmuster! GaymerX ist eine Videospiel-Tagung, die LGBTQ und Videospiele feiert und für alle offen ist.", "headMystery201402Text": "Geflügelter Helm", - "headMystery201402Notes": "Dieser geflügelte Helm verleiht seinem Träger die Geschwindigkeit des Windes. Kein Attributbonus. Februar 2014 Abonnenten-Gegenstand.", + "headMystery201402Notes": "Dieser geflügelte Helm verleiht seinem Träger die Geschwindigkeit des Windes. Gewährt keinen Attributbonus. Februar 2014 Abonnentengegenstand.", "headMystery201405Text": "Flamme des Geistes", - "headMystery201405Notes": "Setze die Aufschieberitis in Flammen! Kein Attributbonus. Mai 2014 Abonnenten-Gegenstand.", + "headMystery201405Notes": "Setze die Aufschieberitis in Flammen! Gewährt keinen Attributbonus. Mai 2014 Abonnentengegenstand.", "headMystery201406Text": "Tentakelkrone", - "headMystery201406Notes": "Die Tentakel dieses Helms sammeln magische Energie aus dem Wasser. Kein Attributbonus. Juni 2014 Abonnenten-Gegenstand.", + "headMystery201406Notes": "Die Tentakel dieses Helms sammeln magische Energie aus dem Wasser. Gewährt keinen Attributbonus. Juni 2014 Abonnentengegenstand.", "headMystery201407Text": "Tiefseeforscher-Helm", - "headMystery201407Notes": "Dieser Helm macht es leicht, unter Wasser auf Entdeckungstour zu gehen! Du siehst damit auch ein bisschen wie ein glubschäugiger Fisch aus. Sehr retro! Kein Attributbonus. Juli 2014 Abonnenten-Gegenstand.", + "headMystery201407Notes": "Dieser Helm macht es leicht, unter Wasser auf Entdeckungstour zu gehen! Du siehst damit auch ein bisschen wie ein glubschäugiger Fisch aus. Sehr retro! Gewährt keinen Attributbonus. Juli 2014 Abonnentengegenstand.", "headMystery201408Text": "Sonnenkrone", - "headMystery201408Notes": "Diese leuchtende Krone gibt ihrem Träger viel Willensstärke. Kein Attributbonus. August 2014 Abonnenten-Gegenstand.", + "headMystery201408Notes": "Diese leuchtende Krone gibt ihrem Träger viel Willensstärke. Gewährt keinen Attributbonus. August 2014 Abonnentengegenstand.", "headMystery201411Text": "Stahlhelm des Sports", - "headMystery201411Notes": "Dies ist der traditionelle Helm, der in der geliebten habiticanischen Sportart \"Balance-Ball\" getragen wird, bei der man sich mit schwerer Schutzausrüstung umhüllt und sich einer gesunden Work-Life-Balance verschreibt... WÄHREND MAN VON HIPPOGREIFEN VERFOLGT WIRD. Kein Attributbonus. November 2014 Abonnenten-Gegenstand.", + "headMystery201411Notes": "Dies ist der traditionelle Helm, der in der geliebten habiticanischen Sportart \"Balance-Ball\" getragen wird, bei der man sich mit schwerer Schutzausrüstung umhüllt und sich einer gesunden Work-Life-Balance verschreibt ... WÄHREND MAN VON HIPPOGREIFEN VERFOLGT WIRD. Gewährt keinen Attributbonus. November 2014 Abonnentengegenstand.", "headMystery201412Text": "Pinguinhut", - "headMystery201412Notes": "Wer ist der Pinguin? Kein Attributbonus. Dezember 2014 Abonnenten-Gegenstand.", + "headMystery201412Notes": "Wer ist der Pinguin? Gewährt keinen Attributbonus. Dezember 2014 Abonnentengegenstand.", "headMystery201501Text": "Sternenhelm", - "headMystery201501Notes": "Die Konstellationen der Sterne funkeln in diesem Helm, und verleihen den Träger die Konzentration, seine Aufgaben zu erfüllen.\nDieser Helm gibt keinen Statuspunktebonus. Januar 2015 Abonnenten Gegenstand.", + "headMystery201501Notes": "Die Konstellationen der Sterne funkeln in diesem Helm, und verleihen den Träger die Konzentration, seine Aufgaben zu erfüllen. Gewährt keinen Attributbonus. Januar 2015 Abonnenten Gegenstand.", "headMystery201505Text": "Grüner Ritterhelm", "headMystery201505Notes": "Die grüne Feder auf diesem Eisenhelm winkt stolz. Gewährt keinen Attributbonus. Mai 2015 Abonnentengegenstand.", - "headMystery201508Text": "Geparden Hut", + "headMystery201508Text": "Gepardenhut", "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.", + "headMystery201509Notes": "Das IST doch eine Maske, nicht wahr? Gewährt keinen Attributbonus. Abonnentengegenstand, September 2015.", "headMystery201511Text": "Baumstammkrone", "headMystery201511Notes": "Zähle die Ringe, um zu erfahren, wie alt diese Krone ist. Gewährt keinen Attributbonus. Abonnentengegenstand vom November 2015.", "headMystery201512Text": "Winterflamme", "headMystery201512Notes": "Diese Flammen brennen kalt mit purem Verstand. Gewährt keinen Attributbonus. Dezember 2015 Abonnentengegenstand.", - "headMystery201601Text": "Helm of True Resolve", - "headMystery201601Notes": "Stay resolute, brave champion! Confers no benefit. January 2016 Subscriber Item.", + "headMystery201601Text": "Helm der wahren Entschlossenheit", + "headMystery201601Notes": "Bleibe entschlossen, tapferer Held! Gewährt keinen Attributbonus. Januar 2016 Abonnentengegenstand.", + "headMystery201602Text": "Herzensbrecher-Haube", + "headMystery201602Notes": "Halte Deine Identität vor all Deinen Verehrern geheim. Gewährt keinen Attributbonus. Februar 2016 Abonnentengegenstand.", + "headMystery201603Text": "Glück-Hut", + "headMystery201603Notes": "Dieser Zylinder ist ein magischer Glücksbringer. Gewährt keinen Attributbonus. März 2016 Abonnentengegenstand", "headMystery301404Text": "Schicker Zylinder", - "headMystery301404Notes": "Ein schicker Zylinder für die feinsten Gentlemänner und -frauen! Januar 3015 Abonennten-Gegenstand. Kein Attributbonus.", + "headMystery301404Notes": "Ein schicker Zylinder für die feinsten Gentlemänner und -frauen! Januar 3015 Abonnentengegenstand. Gewährt keinen Attributbonus.", "headMystery301405Text": "Einfacher Zylinder", - "headMystery301405Notes": "Ein einfacher Zylinder, der wie gemacht für ein paar schicke Kopf-Accessoires ist. Mai 3015 Abonnenten-Gegenstand. Kein Attributbonus.", + "headMystery301405Notes": "Ein einfacher Zylinder, der wie gemacht für ein paar schicke Kopf-Accessoires ist. Gewährt keinen Attributbonus. Mai 3015 Abonnentengegenstand.", "headArmoireLunarCrownText": "Beruhigende Mondkrone", "headArmoireLunarCrownNotes": "Diese Krone stärkt die Gesundheit und schärft die Sinne, besonders bei Vollmond. Erhöht Ausdauer um <%= con %> und Wahrnehmung um <%= per %>. Verzauberter Schrank: Beruhigendes Mondset (Gegenstand 1 von 3).", "headArmoireRedHairbowText": "Rote Haarschleife", - "headArmoireRedHairbowNotes": "Werde stark, taff und schlau, während du diese hübsche Rote Haarschleife trägst! Erhöht Stärke um <%= str %>, Ausdauer um <%= con %> und Intelligenz um <%= int %>. Verzauberter Schrank: Unabhängiger Gegenstand.", + "headArmoireRedHairbowNotes": "Werde stark, taff und schlau, während Du diese hübsche Rote Haarschleife trägst! Erhöht Stärke um <%= str %>, Ausdauer um <%= con %> und Intelligenz um <%= int %>. Verzauberter Schrank: Unabhängiger Gegenstand.", "headArmoireVioletFloppyHatText": "Lila Schlapphut", "headArmoireVioletFloppyHatNotes": "Viele Zaubersprüche wurden in diesen einfachen Hut genäht, um ihm eine angenehme violette Farbe zu verpassen. Erhöht Wahrnehmung um <%= per %>, Intelligenz um <%= int %> und Ausdauer um <%= con %>. Verzauberter Schrank: Unabhängiger Gegenstand.", "headArmoireGladiatorHelmText": "Gladiatorenhelm", - "headArmoireGladiatorHelmNotes": "Um ein Gladiator zu sein, musst du nicht nur stark sein... sondern auch gerissen. Erhöht Intelligenz um <%= int %> und Wahrnehmung um <%= per %>. Verzauberter Schrank: Gladiatorset (Gegenstand 1 von 3).", + "headArmoireGladiatorHelmNotes": "Um ein Gladiator zu sein, musst Du nicht nur stark sein ... sondern auch gerissen. Erhöht Intelligenz um <%= int %> und Wahrnehmung um <%= per %>. Verzauberter Schrank: Gladiatorset (Gegenstand 1 von 3).", "headArmoireRancherHatText": "Farmerhut", - "headArmoireRancherHatNotes": "Treibe deine Haus- und Reittiere zusammen, während du diesen zauberhaften Farmerhut trägst. Erhöht Stärke um <%= str %>, Wahrnehmung um <%= per %> und Intelligenz um <%= int %>. Verzauberter Schrank (Gegenstand 1 von 3).", + "headArmoireRancherHatNotes": "Treibe Deine Haus- und Reittiere zusammen, während Du diesen zauberhaften Farmerhut trägst. Erhöht Stärke um <%= str %>, Wahrnehmung um <%= per %> und Intelligenz um <%= int %>. Verzauberter Schrank: Viehzüchter-Set (Gegenstand 1 von 3).", "headArmoireBlueHairbowText": "Blaue Haarschleife", - "headArmoireBlueHairbowNotes": "Werde scharfsinnig, taff und klug, wenn du diese wunderschöne Blaue Haarschleife trägst! Erhöht Wahrnehmung um <%= per %>, Ausdauer um <%= con %> und Intelligenz um <%= int %>. Verzauberter Schrank: Unabhäniger Gegenstand.", + "headArmoireBlueHairbowNotes": "Werde scharfsinnig, taff und klug, wenn Du diese wunderschöne Blaue Haarschleife trägst! Erhöht Wahrnehmung um <%= per %>, Ausdauer um <%= con %> und Intelligenz um <%= int %>. Verzauberter Schrank: Unabhäniger Gegenstand.", "headArmoireRoyalCrownText": "Königliche Krone", "headArmoireRoyalCrownNotes": "Ein Hoch auf den mächtigen und starken Herrscher! Erhöht Stärke um <%= str %>. Verzauberter Schrank: Königsset (Gegenstand 1 von 3).", "headArmoireGoldenLaurelsText": "Goldene Lorbeeren", - "headArmoireGoldenLaurelsNotes": "Diese goldenen Lorbeeren dienen als Belohnung für diejenigen, die schlechte Gewohnheiten besiegt haben. Erhöht Wahrnehmung und Ausdauer jeweils um <%= attrs %>. Verzauberter Schrank: Goldenes Toga Set (Gegenstand 2 von 3)", + "headArmoireGoldenLaurelsNotes": "Diese goldenen Lorbeeren dienen als Belohnung für diejenigen, die schlechte Gewohnheiten besiegt haben. Erhöht Wahrnehmung und Ausdauer jeweils um <%= attrs %>. Verzauberter Schrank: Goldene-Toga-Set (Gegenstand 2 von 3)", "headArmoireHornedIronHelmText": "Gehörnter Eisenhelm", "headArmoireHornedIronHelmNotes": "Dieser mit Leidenschaft aus Eisen gehämmerte, gehörnte Helm ist fast unzerbrechlich. Erhöht Ausdauer um <%= con %> und Stärke um <%= str %>. Verzauberter Schrank: Gehörntes Eisenset (Gegenstand 1 von 3)", "headArmoireYellowHairbowText": "Gelbe Haarschleife", - "headArmoireYellowHairbowNotes": "Werde scharfsinnig, taff und klug, wenn du diese bezaubernde Gelbe Haarschleife trägst! Erhöht Wahrnehmung, Stärke und Intelligenz jeweils um <%= attrs %>. Verzauberter Schrank: Unabhängiger Gegenstand", + "headArmoireYellowHairbowNotes": "Werde scharfsinnig, taff und klug, wenn Du diese bezaubernde Gelbe Haarschleife trägst! Erhöht Wahrnehmung, Stärke und Intelligenz jeweils um <%= attrs %>. Verzauberter Schrank: Unabhängiger Gegenstand", "headArmoireRedFloppyHatText": "Roter Schlapphut", "headArmoireRedFloppyHatNotes": "Viele Zaubersprüche wurden auf diesen Hut gewirkt, die ihm seine leuchtend rote Farbe geben. Erhöht Ausdauer, Intelligenz und Wahrnehmung um jeweils <%= attrs %>. Verzauberter Schrank: Unabhängiger Gegenstand", - "headArmoirePlagueDoctorHatText": "Pestarzt Hut", - "headArmoirePlagueDoctorHatNotes": "Ein authentischer Hut wie ihn Ärzte tragen, die die Pest der Prokrastination bekämpfen! Steigert die Stärke um <%= str %>, Intelligenz um <%= str %>, und Ausdauer um <%= con %>. Verzauberter Schrank: Pestdoktor Set (Gegenstand 1 von 3).", + "headArmoirePlagueDoctorHatText": "Pestarzt-Hut", + "headArmoirePlagueDoctorHatNotes": "Ein authentischer Hut wie ihn Ärzte tragen, die die Pest der Prokrastination bekämpfen! Erhöht Stärke um <%= str %>, Intelligenz um <%= str %> und Ausdauer um <%= con %>. Verzauberter Schrank: Pestarzt-Set (Gegenstand 1 von 3).", "headArmoireBlackCatText": "schwarzer Katzenhut", - "headArmoireBlackCatNotes": "Dieser schwarze Hut ... schnurrt. Und sein Schwanz zuckt. Und er atmet? Okay, du hast einfach bloß eine schlafende Katze auf dem Kopf. Erhöht Intelligenz und Wahrnehmung um jeweils <%= attrs %>. Verzauberter Schrank: Unabhängiger Gegenstand.", + "headArmoireBlackCatNotes": "Dieser schwarze Hut ... schnurrt. Und sein Schwanz zuckt. Und er atmet? Okay, Du hast einfach bloß eine schlafende Katze auf dem Kopf. Erhöht Intelligenz und Wahrnehmung um jeweils <%= attrs %>. Verzauberter Schrank: Unabhängiger Gegenstand.", "headArmoireOrangeCatText": "oranger Katzenhut", - "headArmoireOrangeCatNotes": "Dieser orangene Hut ... schnurrt. Und sein Schwanz zuckt. Und er atmet? Okay, du hast einfach bloß eine schlafende Katze auf dem Kopf. Erhöht Intelligenz und Wahrnehmung um jeweils <%= attrs %>. Verzauberter Schrank: Unabhängiger Gegenstand.", + "headArmoireOrangeCatNotes": "Dieser orangene Hut ... schnurrt. Und sein Schwanz zuckt. Und er atmet? Okay, Du hast einfach bloß eine schlafende Katze auf dem Kopf. Erhöht Intelligenz und Wahrnehmung um jeweils <%= attrs %>. Verzauberter Schrank: Unabhängiger Gegenstand.", "headArmoireBlueFloppyHatText": "Blauer Schlapphut", "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 es die Greifen, die du hütest, auf dieser Kopfbedeckung herumzukauen, aber du wirkst damit nichtsdestotrotz intelligenter. Erhöht Intelligenz um <%= int %>. Verzauberter Schrank: Hirten-Set (Gegenstand 3 von 3)", + "headArmoireShepherdHeaddressNotes": "Manchmal lieben es die Greifen, die Du hütest, auf dieser Kopfbedeckung herumzukauen, aber Du wirkst damit nichtsdestotrotz intelligenter. Erhöht Intelligenz um <%= int %>. Verzauberter Schrank: Hirten-Set (Gegenstand 3 von 3)", "headArmoireCrystalCrescentHatText": "Kristalliner Mondsichelhut", - "headArmoireCrystalCrescentHatNotes": "Das Design auf diesem Hut nimmt mit den Mondphasen zu und ab. Erhöht Intelligenz und Wahrnehmung um je <%= attrs %>. Verzauberter Schrank: Kristallines Mondsichelset (Gegenstand 1 von 3).", + "headArmoireCrystalCrescentHatNotes": "Das Design auf diesem Hut nimmt mit den Mondphasen zu und ab. Erhöht Intelligenz und Wahrnehmung jeweils um <%= attrs %>. Verzauberter Schrank: Kristallines Mondsichelset (Gegenstand 1 von 3).", "headArmoireDragonTamerHelmText": "Drachenzähmer Helm", - "headArmoireDragonTamerHelmNotes": "Du siehst genau wie ein Drache aus. Die perfekte Tarnung.... Erhöht Intelligenz um <%= int %>. Verzauberter Schrank: Drachenzähmer Set (Gegenstand 1 von 3)", - "headArmoireBarristerWigText": "Barrister Wig", - "headArmoireBarristerWigNotes": "This bouncy wig is enough to frighten away even the fiercest foe. Increases Strength by <%= str %>. Enchanted Armoire: Barrister Set (Item 1 of 3).", - "headArmoireJesterCapText": "Jester Cap", - "headArmoireJesterCapNotes": "The bells on this hat might distract your opponents, but they just help you focus. Increases Perception by <%= per %>. Enchanted Armoire: Jester Set (Item 1 of 3).", + "headArmoireDragonTamerHelmNotes": "Du siehst genau wie ein Drache aus. Die perfekte Tarnung ... Erhöht Intelligenz um <%= int %>. Verzauberter Schrank: Drachenzähmer Set (Gegenstand 1 von 3)", + "headArmoireBarristerWigText": "Richterperücke", + "headArmoireBarristerWigNotes": "Schon allein diese gelockte Perücke reicht, um dem wildesten Feind Angst einzujagen. Erhöht Stärke um <%= str %>. Verzauberter Schrank: Richterset (Gegenstand 1 von 3).", + "headArmoireJesterCapText": "Narrenkappe", + "headArmoireJesterCapNotes": "Die Glöckchen an dieser Kappe könnten Dein Gegenüber ablenken, doch dir helfen sie einfach Dich zu konzentrieren. Erhöht Wahrnehmung um <%= per %>. Verzauberter Schrank: Narrenset (Gegenstand 1 von 3).", + "headArmoireMinerHelmetText": "Bergmannshelm", + "headArmoireMinerHelmetNotes": "Schütze Deinen Kopf vor herunterfallenden Aufgaben! Erhöht Intelligenz um <%=int %>. Verzauberter Schrank: Bergmannsset (Gegenstand 1 von 3).", + "headArmoireBasicArcherCapText": "Basic Archer Cap", + "headArmoireBasicArcherCapNotes": "No archer would be complete without a jaunty cap! Increases Perception by <%= per %>. Enchanted Armoire: Basic Archer Set (Item 3 of 3).", "offhand": "Schildhand-Gegenstand", "shieldBase0Text": "Keine Schildhand-Ausrüstung", "shieldBase0Notes": "Kein Schild oder keine zweite Waffe.", "shieldWarrior1Text": "Holzschild", - "shieldWarrior1Notes": "Rundes Schild aus dickem Holz. Erhöht die Ausdauer um <%= con %>.", + "shieldWarrior1Notes": "Rundes Schild aus dickem Holz. Erhöht Ausdauer um <%= con %>.", "shieldWarrior2Text": "Faustschild", "shieldWarrior2Notes": "Leicht und robust, kann zur Verteidigung schnell in Position gebracht werden. Erhöht Ausdauer um <%= con %>.", "shieldWarrior3Text": "Verstärkter Schild", @@ -602,132 +645,150 @@ "shieldSpecialGoldenknightText": "Mustaines Morgenstern des Meilenstein-Zerquetschens", "shieldSpecialGoldenknightNotes": "Meetings, Monster und Malaise: Alles erledigt! Zu Brei! Erhöht Ausdauer und Wahrnehmung jeweils um <%= attrs %>.", "shieldSpecialYetiText": "Schild des Yeti-Zähmers", - "shieldSpecialYetiNotes": "Dieser Schild reflektiert das Licht vom Schnee. Erhöht Ausdauer um <%= con %>. Limited Edition 2013-2014 Winter Ausrüstung", + "shieldSpecialYetiNotes": "Dieser Schild reflektiert das Licht vom Schnee. Erhöht Ausdauer um <%= con %>. Limited Edition 2013-2014 Winterausrüstung", "shieldSpecialSnowflakeText": "Schneeflockenschild", - "shieldSpecialSnowflakeNotes": "Jeder Schild ist ein Unikat. Erhöht Konstitution um <%= con %>. Limited Edition 2013-2014 Winter Ausrüstung", + "shieldSpecialSnowflakeNotes": "Jeder Schild ist ein Unikat. Erhöht Ausdauer um <%= con %>. Limited Edition 2013-2014 Winterausrüstung", "shieldSpecialSpringRogueText": "Hakenkrallen", - "shieldSpecialSpringRogueNotes": "Sehr nützlich um hohe Gebäude zu erklimmen und ebenso um Teppiche zu zerfetzen. Erhöht STR um <%= str %>. Limited Edition 2014 Frühlings-Ausrüstung.", + "shieldSpecialSpringRogueNotes": "Sehr nützlich um hohe Gebäude zu erklimmen und ebenso um Teppiche zu zerfetzen. Erhöht Stärke um <%= str %>. Limited Edition 2014 Frühlingsausrüstung.", "shieldSpecialSpringWarriorText": "Eischild", - "shieldSpecialSpringWarriorNotes": "Dieses Schild zerbricht niemals, egal wie hart Du es schlägst! Erhöht Ausdauer um <%= con %>. Limited Edition 2014 Frühlings-Ausrüstung.", + "shieldSpecialSpringWarriorNotes": "Dieses Schild zerbricht niemals, egal wie hart Du es schlägst! Erhöht Ausdauer um <%= con %>. Limited Edition 2014 Frühlingsausrüstung.", "shieldSpecialSpringHealerText": "Qietscheball des höchsten Schutzes", - "shieldSpecialSpringHealerNotes": "Erzeugt ein entsetzliches, andauerndes Quietschen wenn man hineinbeißt und verscheucht so alle Gegner. Erhöht Ausdauer um <%= con %>. Limited Edition 2014 Frühlings-Ausrüstung.", + "shieldSpecialSpringHealerNotes": "Erzeugt ein entsetzliches, andauerndes Quietschen wenn man hineinbeißt und verscheucht so alle Gegner. Erhöht Ausdauer um <%= con %>. Limited Edition 2014 Frühlingsausrüstung.", "shieldSpecialSummerRogueText": "Piratensäbel", - "shieldSpecialSummerRogueNotes": "Avast! Du wirst diese täglichen Aufgaben über die Planke gehen lassen! Erhöht Stärke um <%= str %>. Limited Edition 2014 Sommer-Ausrüstung.", + "shieldSpecialSummerRogueNotes": "Avast! Du wirst diese täglichen Aufgaben über die Planke gehen lassen! Erhöht Stärke um <%= str %>. Limited Edition 2014 Sommerausrüstung.", "shieldSpecialSummerWarriorText": "Treibholzschild", - "shieldSpecialSummerWarriorNotes": "Dieses Schild, das aus dem Holz untergangener Schiffe hergestellt wurde, kann selbst die stürmischsten täglichen Aufgaben abschrecken. Fügt Ausdauer <%= con %> Punkte hinzu. Limited Edition 2014 Sommer-Ausrüstung.", + "shieldSpecialSummerWarriorNotes": "Dieses Schild, das aus dem Holz untergegangener Schiffe hergestellt wurde, kann selbst die stürmischsten täglichen Aufgaben abschrecken. Erhöht Ausdauer um <%= con %>. Limited Edition 2014 Sommerausrüstung.", "shieldSpecialSummerHealerText": "Schild der Untiefen", - "shieldSpecialSummerHealerNotes": "Niemand wird es wagen, das Korallenriff anzugreifen, wenn er vor diesem glänzenden Schild steht! Fügt Ausdauer <%= con %> Punkte hinzu. Limited Edition 2014 Sommer-Ausrüstung.", + "shieldSpecialSummerHealerNotes": "Niemand wird es wagen, das Korallenriff anzugreifen, wenn er vor diesem glänzenden Schild steht! Erhöht Ausdauer um <%= con %>. Limited Edition 2014 Sommerausrüstung.", "shieldSpecialFallRogueText": "Silberner Pflock", - "shieldSpecialFallRogueNotes": "Befördert Untote dauerhaft ins Jenseits. Notfalls auch gegen Werwölfe einsetzbar - Vielseitigkeit kann nie schaden. Erhöht Stärke um <%= str %> Punkte. Limited Edition 2014 Herbst-Ausrüstung.", + "shieldSpecialFallRogueNotes": "Befördert Untote dauerhaft ins Jenseits. Notfalls auch gegen Werwölfe einsetzbar - Vielseitigkeit kann nie schaden. Erhöht Stärke um <%= str %>. Limited Edition 2014 Herbstausrüstung.", "shieldSpecialFallWarriorText": "Machtvoller Trank der Wissenschaft", - "shieldSpecialFallWarriorNotes": "Neigt rätselhafterweise dazu, auf Laborkittel verschüttet zu werden. Erhöht Ausdauer um <%= con %> Punkte. Limited Edition 2014 Herbst-Ausrüstung.", + "shieldSpecialFallWarriorNotes": "Neigt rätselhafterweise dazu, auf Laborkittel verschüttet zu werden. Erhöht Ausdauer um <%= con %>. Limited Edition 2014 Herbstausrüstung.", "shieldSpecialFallHealerText": "Juwelenschild", - "shieldSpecialFallHealerNotes": "Dieser glitzernde Schild wurde in einem uralten Grab gefunden. Erhöht Ausdauer um <%= con %>. Limited Edition 2014 Herbst-Ausrüstung.", + "shieldSpecialFallHealerNotes": "Dieser glitzernde Schild wurde in einem uralten Grab gefunden. Erhöht Ausdauer um <%= con %>. Limited Edition 2014 Herbstausrüstung.", "shieldSpecialWinter2015RogueText": "Eiszapfen", - "shieldSpecialWinter2015RogueNotes": "Du hast Sie wirklich, wahrhaftig und ungelogen gerade vom Boden aufgelesen. Erhöhen Stärke um <%= str %>. Limited Edition 2014-2015 Winter Ausrüstung.", + "shieldSpecialWinter2015RogueNotes": "Du hast Sie wirklich, wahrhaftig und ungelogen gerade vom Boden aufgelesen. Erhöhen Stärke um <%= str %>. Limited Edition 2014-2015 Winterausrüstung.", "shieldSpecialWinter2015WarriorText": "Gummibonbonschild", - "shieldSpecialWinter2015WarriorNotes": "Dieser scheinbar zuckersüße Schild besteht in Wirklichkeit aus nahrhaftem, gallertartigem Gemüse. Erhöht Ausdauer um <%= con %>. Limited Edition 2014-2015 Winter Ausrüstung", + "shieldSpecialWinter2015WarriorNotes": "Dieser scheinbar zuckersüße Schild besteht in Wirklichkeit aus nahrhaftem, gallertartigem Gemüse. Erhöht Ausdauer um <%= con %>. Limited Edition 2014-2015 Winterausrüstung", "shieldSpecialWinter2015HealerText": "Beruhigendes Schild", - "shieldSpecialWinter2015HealerNotes": "Dieser Schild wehrt den kalten Wind ab. Erhöht Ausdauer um <%= con %>. Limited Edition 2014-2015 Winter Ausrüstung", + "shieldSpecialWinter2015HealerNotes": "Dieser Schild wehrt den kalten Wind ab. Erhöht Ausdauer um <%= con %>. Limited Edition 2014-2015 Winterausrüstung", "shieldSpecialSpring2015RogueText": "Explodierendes Quieken", - "shieldSpecialSpring2015RogueNotes": "Lass dich nicht täuschen von dem was du hörst - dieser Sprengstoff packt einen Wumms. Erhöhen Stärke um <%= str %>. Limited Edition 2015 Frühlingsausrüstung.", + "shieldSpecialSpring2015RogueNotes": "Lass Dich nicht täuschen von dem was Du hörst - dieser Sprengstoff packt einen Wumms. Erhöht Stärke um <%= str %>. Limited Edition 2015 Frühlingsausrüstung.", "shieldSpecialSpring2015WarriorText": "Tellerdiskus", - "shieldSpecialSpring2015WarriorNotes": "Schleudere ihn auf deine Feinde.... oder halte ihn einfach in der Hand, denn er wird sich zur Essenszeit mit leckerem Trockenfutter füllen. Erhöht Ausdauer um <%= con %>. Limited Edition 2015 Frühlingsausrüstung.", + "shieldSpecialSpring2015WarriorNotes": "Schleudere ihn auf Deine Feinde ... oder halte ihn einfach in der Hand, denn er wird sich zur Essenszeit mit leckerem Trockenfutter füllen. Erhöht Ausdauer um <%= con %>. Limited Edition 2015 Frühlingsausrüstung.", "shieldSpecialSpring2015HealerText": "Gemustertes Kissen", - "shieldSpecialSpring2015HealerNotes": "Du kannst dich auf diesem weichen Kissen ausruhen oder du kannst es mit deinen furchterregenden Klauen zerreißen. Fauch! Erhöht Ausdauer um <%= con %>. Limited Edition 2015 Frühlingsausrüstung.", + "shieldSpecialSpring2015HealerNotes": "Du kannst Dich auf diesem weichen Kissen ausruhen oder Du kannst es mit Deinen furchterregenden Klauen zerreißen. Fauch! Erhöht Ausdauer um <%= con %>. Limited Edition 2015 Frühlingsausrüstung.", "shieldSpecialSummer2015RogueText": "Feuernde Koralle", - "shieldSpecialSummer2015RogueNotes": "Diese Gattung der feuernden Koralle hat die Fähigkeit, ihr Gift durch das Wasser zu schießen. Erhöht Stärke um <%= str %>. Limited Edition 2015 Sommer-Ausrüstung.", + "shieldSpecialSummer2015RogueNotes": "Diese Gattung der feuernden Koralle hat die Fähigkeit, ihr Gift durch das Wasser zu schießen. Erhöht Stärke um <%= str %>. Limited Edition 2015 Sommerausrüstung.", "shieldSpecialSummer2015WarriorText": "Sonnenbarsch-Schild", - "shieldSpecialSummer2015WarriorNotes": "Dieser, wie Sand und Meer glänzende, Schild aus Tiefseemetall wurde von den Kunsthandwerkern aus Dilatory hergestellt. Erhöht Ausdauer um <%= con %>. Limited Edition 2015 Sommer-Ausrüstung.", + "shieldSpecialSummer2015WarriorNotes": "Dieser, wie Sand und Meer glänzende, Schild aus Tiefseemetall wurde von den Kunsthandwerkern aus Dilatory hergestellt. Erhöht Ausdauer um <%= con %>. Limited Edition 2015 Sommerausrüstung.", "shieldSpecialSummer2015HealerText": "Eingefasster Schild", - "shieldSpecialSummer2015HealerNotes": "Benutze dieses Schild um Bilgenratten wegzuschlagen. Erhöht Ausdauer um <%= con %>. Limited Edition 2015 Sommer-Ausrüstung.", + "shieldSpecialSummer2015HealerNotes": "Benutze dieses Schild um Bilgenratten wegzuschlagen. Erhöht Ausdauer um <%= con %>. Limited Edition 2015 Sommerausrüstung.", "shieldSpecialFall2015RogueText": "Kampfaxt", - "shieldSpecialFall2015RogueNotes": "Furchterregende tägliche Aufgaben ducken sich unter den Schlägen dieser Axt. Erhöht Stärke um <%= str %>. Limited Edition 2015 Herbst-Ausrüstung. ", + "shieldSpecialFall2015RogueNotes": "Furchterregende tägliche Aufgaben ducken sich unter den Schlägen dieser Axt. Erhöht Stärke um <%= str %>. Limited Edition 2015 Herbstausrüstung.", "shieldSpecialFall2015WarriorText": "Vogelfutterbeutel", - "shieldSpecialFall2015WarriorNotes": "Ja du solltest die Krähen ERSCHRECKEN, aber ein paar Freunde zu gewinnen kann nicht schaden! Erhöht Ausdauer um <%= con %>. Limited Edition 2015 Herbst-Ausrüstung.", + "shieldSpecialFall2015WarriorNotes": "Ja Du solltest die Krähen ERSCHRECKEN, aber ein paar Freunde zu gewinnen kann nicht schaden! Erhöht Ausdauer um <%= con %>. Limited Edition 2015 Herbstausrüstung.", "shieldSpecialFall2015HealerText": "Rührstab", - "shieldSpecialFall2015HealerNotes": "Mit diesem Stab kannst du alles umrühren, ohne dass er schmilzt, sich auflöst oder in Flammen ausbricht. Er kann ebenso dazu benutzt werden heftig in bösen Aufgaben herumzustochern. Erhöht Ausdauer um <%= con %>. Limited Edition 2015 Herbst-Ausrüstung.", + "shieldSpecialFall2015HealerNotes": "Mit diesem Stab kannst Du alles umrühren, ohne dass er schmilzt, sich auflöst oder in Flammen ausbricht. Er kann ebenso dazu benutzt werden heftig in bösen Aufgaben herumzustochern. Erhöht Ausdauer um <%= con %>. Limited Edition 2015 Herbstausrüstung.", "shieldSpecialWinter2016RogueText": "Kakaobecher", - "shieldSpecialWinter2016RogueNotes": "Wärmendes Getränk oder kochendes Wurfgeschoss? Du entscheidest… Erhöht Stärke um <%= str %>. Limited Edition 2015-2016 Winter Ausrüstung.", + "shieldSpecialWinter2016RogueNotes": "Wärmendes Getränk oder kochendes Wurfgeschoss? Du entscheidest… Erhöht Stärke um <%= str %>. Limited Edition 2015-2016 Winterausrüstung.", "shieldSpecialWinter2016WarriorText": "Schlittenschild", - "shieldSpecialWinter2016WarriorNotes": "Benutze diesen Schlitten um Angriffe abzublocken oder um darauf triumphierend in die Schlacht zu fahren! Erhöht Ausdauer um <%= con %>. Limited Edition 2015-2016 Winter Ausrüstung.", + "shieldSpecialWinter2016WarriorNotes": "Benutze diesen Schlitten um Angriffe abzublocken oder um darauf triumphierend in die Schlacht zu fahren! Erhöht Ausdauer um <%= con %>. Limited Edition 2015-2016 Winterausrüstung.", "shieldSpecialWinter2016HealerText": "Pixie Geschenk", - "shieldSpecialWinter2016HealerNotes": "Öffne es öffne es öffne es öffne es öffne es öffne es!!!!!!!!! Erhöht Ausdauer um <%= con %>. Limited Edition 2015-2016 Winter Ausrüstung.", - "shieldMystery201601Text": "Resolution Slayer", - "shieldMystery201601Notes": "This blade can be used to parry away all distractions. Confers no benefit. January 2016 Subscriber Item.", + "shieldSpecialWinter2016HealerNotes": "Öffne es öffne es öffne es öffne es öffne es öffne es!!!!!!!!! Erhöht Ausdauer um <%= con %>. Limited Edition 2015-2016 Winterausrüstung.", + "shieldSpecialSpring2016RogueText": "Feuer Bolas", + "shieldSpecialSpring2016RogueNotes": "Du hast sowohl den Ball, die Keule und das Messer gemeistert. Jetzt bist Du bereit mit Feuer zu jonglieren! Awoo! Erhöht Stärke um <%= str %>. Limitierte Edition 2016 Frühlingsausrüstung.", + "shieldSpecialSpring2016WarriorText": "Käserad", + "shieldSpecialSpring2016WarriorNotes": "Du musstest viele teuflische Fallen überwinden um diese verteidigungs-boostende Nahrung zu ergattern. Erhöht Ausdauer um <%= con %>. Limited Edition 2016 Frühlingsausrüstung.", + "shieldSpecialSpring2016HealerText": "Kleiner Blumenschild", + "shieldSpecialSpring2016HealerNotes": "Der April Fool behauptet, dass dieser kleine Schild Shiny Seeds abwehren kann. Glaub ihm kein Wort! Erhöht Ausdauer um <%= con %>. Limited Edition 2016 Frühlingsausrüstung.", + "shieldMystery201601Text": "Töter der Vorsätze", + "shieldMystery201601Notes": "Diese Klinge kann zur Entfernung aller Ablenkungen verwendet werden. Gewährt keinen Attributbonus. Januar 2016 Abonnentengegenstand.", "shieldMystery301405Text": "Uhrenschild", - "shieldMystery301405Notes": "Die Zeit ist auf deiner Seite mit diesem gewaltigen Uhrenschild! Juni 3015 Abonennten-Gegenstand. Kein Attributbonus.", + "shieldMystery301405Notes": "Die Zeit ist auf Deiner Seite mit diesem gewaltigen Uhrenschild! Gewährt keinen Attributbonus. Juni 3015 Abonnentengegenstand.", "shieldArmoireGladiatorShieldText": "Gladiatorschild", - "shieldArmoireGladiatorShieldNotes": "Um ein Gladiator zu sein, musst du ... naja, egal, schlag sie einfach mit deinem Schild. Erhöht Ausdauer um <%= con %> und Stärke um <%= str %>. Verzauberter Schrank: Gladiatorset (Gegenstand 3 von 3).", + "shieldArmoireGladiatorShieldNotes": "Um ein Gladiator zu sein, musst Du ... naja, egal, schlag sie einfach mit Deinem Schild. Erhöht Ausdauer um <%= con %> und Stärke um <%= str %>. Verzauberter Schrank: Gladiatorset (Gegenstand 3 von 3).", "shieldArmoireMidnightShieldText": "Mitternachtsschild", "shieldArmoireMidnightShieldNotes": "Dieses Schild ist am mächtigsten um Punkt Mitternacht! Erhöht Ausdauer um <%= con %> und Stärke um <%= str %>. Verzauberter Schrank: Unabhängiger Gegenstand.", "shieldArmoireRoyalCaneText": "Königlicher Stock", - "shieldArmoireRoyalCaneNotes": "Ein Hoch auf den besungenen Herrscher! Erhöht Ausdauer, intelligenz und Wahrnehmung um je <%= attrs %>. Verzauberter Schrank: Königsset (Gegenstand 2 von 3).", + "shieldArmoireRoyalCaneNotes": "Ein Hoch auf den besungenen Herrscher! Erhöht Ausdauer, Intelligenz und Wahrnehmung jeweils um <%= attrs %>. Verzauberter Schrank: Königsset (Gegenstand 2 von 3).", "shieldArmoireDragonTamerShieldText": "Drachenzähmer Schild", - "shieldArmoireDragonTamerShieldNotes": "Lenke deine Feinde mit diesem Schild in Drachenform ab. Erhöht Wahrnehmung um <%= per %>. Drachenzähmer Set (Gegenstand 2 von 3).", + "shieldArmoireDragonTamerShieldNotes": "Lenke Deine Feinde mit diesem Schild in Drachenform ab. Erhöht Wahrnehmung um <%= per %>. Verzauberter Schrank: Drachenzähmer-Set (Gegenstand 2 von 3).", + "shieldArmoireMysticLampText": "Wunderlampe", + "shieldArmoireMysticLampNotes": "Erleuchte die dunkelsten Höhlen mit dieser Wunderlampe! Erhöht Wahrnehmung um <%= per %>. Verzauberter Schrank: Unabhängiger Gegenstand.", "back": "Rückenschmuck", "backBase0Text": "Kein Rückenschmuck", "backBase0Notes": "Kein Rückenschmuck.", "backMystery201402Text": "Güldene Flügel.", - "backMystery201402Notes": "Die Federn dieser leuchtenden Flügel glitzern in der Sonne! Kein Attributbonus. Februar 2014 Abonnenten-Gegenstand.", + "backMystery201402Notes": "Die Federn dieser leuchtenden Flügel glitzern in der Sonne! Gewährt keinen Attributbonus. Februar 2014 Abonnentengegenstand.", "backMystery201404Text": "Schmetterlingsflügel des Zwielichts", - "backMystery201404Notes": "Sei ein Schmetterling und schmettere mit deinen Flügeln davon! Kein Attributbonus. April 2014 Abonennten-Gegenstand.", + "backMystery201404Notes": "Sei ein Schmetterling und schmettere mit Deinen Flügeln davon! Gewährt keinen Attributbonus. April 2014 Abonnentengegenstand.", "backMystery201410Text": "Kobold Flügel", - "backMystery201410Notes": "Fliege mit diesen kräftigen Flügeln im Sturzflug durch die Nacht. Kein Attributbonus. Oktober 2014 Abonennten-Gegenstand.", + "backMystery201410Notes": "Fliege mit diesen kräftigen Flügeln im Sturzflug durch die Nacht. Gewährt keinen Attributbonus. Oktober 2014 Abonnentengegenstand.", "backMystery201504Text": "Bienen Flügel", - "backMystery201504Notes": "Summ summ summ! Schwirre von Aufgabe zu Aufgabe. Verleiht keine Attributboni. April 2015 Abonnentengegenstand.", + "backMystery201504Notes": "Summ summ summ! Schwirre von Aufgabe zu Aufgabe. Gewährt keinen Attributbonus. April 2015 Abonnentengegenstand.", "backMystery201507Text": "Cooles Surfboard", - "backMystery201507Notes": "Brande vor den Fleißigen Docks und reite die Wellen der Unvollständigkeitsbucht! gewährt keinen Attributbonus. Abonnentengegenstand Juli 2015", + "backMystery201507Notes": "Brande vor den Fleißigen Docks und reite die Wellen der Unvollständigkeitsbucht! Gewährt keinen Attributbonus. Abonnentengegenstand, Juli 2015.", "backMystery201510Text": "Koboldschwanz", - "backMystery201510Notes": "Zum Greifen geeignet und mächtig! Gewährt keinen Attributbonus. Oktober 2015 Abonenntengegenstand.", + "backMystery201510Notes": "Zum Greifen geeignet und mächtig! Gewährt keinen Attributbonus. Oktober 2015 Abonnentengegenstand.", + "backMystery201602Text": "Herzensbrecher-Umhang", + "backMystery201602Notes": "Beim Rascheln Deines Umhangs liegen Deine Feinde Dir zu Füßen! Gewährt keinen Attributbonus. Februar 2016 Abonnentengegenstand.", "backSpecialWonderconRedText": "Mächtiger Umhang", - "backSpecialWonderconRedNotes": "Strotzt vor Stärke und Schönheit. Kein Attributbonus. Special Edition Convention-Gegenstand.", + "backSpecialWonderconRedNotes": "Strotzt vor Stärke und Schönheit. Gewährt keinen Attributbonus. Special Edition Convention-Gegenstand.", "backSpecialWonderconBlackText": "Tückischer Umhang", - "backSpecialWonderconBlackNotes": "Gewebt aus Schatten und Geflüster. Kein Attributbonus. Special Edition Convention Rüstung.", + "backSpecialWonderconBlackNotes": "Gewebt aus Schatten und Geflüster. Gewährt keinen Attributbonus. Special Edition Convention Rüstung.", "body": "Kleidungsschmuck", "bodyBase0Text": "Kein Kleidungsschmuck", "bodyBase0Notes": "Kein Kleidungsschmuck.", "bodySpecialWonderconRedText": "Rubinkragen", - "bodySpecialWonderconRedNotes": "Ein fescher Rubinkragen! Gewährt keinen Bonus. Special Edition Convention-Gegenstand.", + "bodySpecialWonderconRedNotes": "Ein fescher Rubinkragen! Gewährt keinen Attributbonus. Special Edition Convention-Gegenstand.", "bodySpecialWonderconGoldText": "Goldkragen", - "bodySpecialWonderconGoldNotes": "Ein fescher Goldkragen! Gewährt keinen Bonus. Special Edition Convention-Gegenstand.", + "bodySpecialWonderconGoldNotes": "Ein fescher Goldkragen! Gewährt keinen Attributbonus. Special Edition Convention-Gegenstand.", "bodySpecialWonderconBlackText": "Ebenholzkragen", - "bodySpecialWonderconBlackNotes": "Ein fescher Ebenholzkragen! Gewährt keinen Bonus. Special Edition Convention-Gegenstand.", + "bodySpecialWonderconBlackNotes": "Ein fescher Ebenholzkragen! Gewährt keinen Attributbonus. Special Edition Convention-Gegenstand.", "bodySpecialSummerMageText": "Glänzender Kurzumhang", - "bodySpecialSummerMageNotes": "Weder Salzwasser noch frisches Wasser kann diesen metallischen Kurzumhang beflecken. Kein Attributbonus. Limited Edition 2014 Sommer-Ausrüstung.", + "bodySpecialSummerMageNotes": "Weder Salzwasser noch frisches Wasser kann diesen metallischen Kurzumhang beflecken. Gewährt keinen Attributbonus. Limited Edition 2014 Sommerausrüstung.", "bodySpecialSummerHealerText": "Korallenkragen", - "bodySpecialSummerHealerNotes": "Limited Edition 2014 Sommer-Set. Ein stylischer Kragen aus lebendigen Korallen! Gewährt keinen Bonus zu Attributen.", + "bodySpecialSummerHealerNotes": "Limited Edition 2014 Sommer-Set. Ein stylischer Kragen aus lebendigen Korallen! Gewährt keinen Attributbonus.", "bodySpecialSummer2015RogueText": "Abtrünnigenschärpe", - "bodySpecialSummer2015RogueNotes": "Du kannst kein richtiger Abtrünniger sein ohne Ausdruckskraft... und einer Schärpe. Gewährt keinen Bonus zu Attributen. Limited Edition 2015 Sommer-Ausrüstung.", + "bodySpecialSummer2015RogueNotes": "Du kannst kein richtiger Abtrünniger sein ohne Ausdruckskraft ... und einer Schärpe. Gewährt keinen Attributbonus. Limited Edition 2015 Sommerausrüstung.", "bodySpecialSummer2015WarriorText": "Meeresstacheln", - "bodySpecialSummer2015WarriorNotes": "Jeder Stachel gibt Quallengift ab, um den Träger zu verteidigen. Gewährt keinen Attributsbonus. Limited Edition 2015 Sommer-Ausrüstung.", + "bodySpecialSummer2015WarriorNotes": "Jeder Stachel gibt Quallengift ab, um den Träger zu verteidigen. Gewährt keinen Attributbonus. Limited Edition 2015 Sommerausrüstung.", "bodySpecialSummer2015MageText": "Goldene Schnalle", - "bodySpecialSummer2015MageNotes": "Diese Schnalle besitzt überhaupt keine Stärke, aber sie glänzt! Kein Attributsbonus. Limited Edition 2015 Sommer-Ausrüstung.", + "bodySpecialSummer2015MageNotes": "Diese Schnalle besitzt überhaupt keine Stärke, aber sie glänzt! Gewährt keinen Attributbonus. Limited Edition 2015 Sommerausrüstung.", "bodySpecialSummer2015HealerText": "Matrosenhalstuch", - "bodySpecialSummer2015HealerNotes": "Yo ho ho? No, no, no! Gewährt keinen Attributsbonus. Limited Edition 2015 Sommer-Ausrüstung.", + "bodySpecialSummer2015HealerNotes": "Yo ho ho? No, no, no! Gewährt keinen Attributbonus. Limited Edition 2015 Sommerausrüstung.", "headAccessory": "Kopfschmuck", "accessories": "Accessoires", "animalEars": "Tierohren", "headAccessoryBase0Text": "Kein Kopfschmuck", "headAccessoryBase0Notes": "Kein Kopfschmuck", "headAccessorySpecialSpringRogueText": "Lila Katzenohren", - "headAccessorySpecialSpringRogueNotes": "Diese Katzenohren sind aufgestellt um eventuelle Bedrohungen zu orten. Kein Attributbonus. Limited Edition 2014 Frühlings-Ausrüstung.", + "headAccessorySpecialSpringRogueNotes": "Diese Katzenohren sind aufgestellt um eventuelle Bedrohungen zu orten. Gewährt keinen Attributbonus. Limited Edition 2014 Frühlingsausrüstung.", "headAccessorySpecialSpringWarriorText": "Grüne Hasenohren", - "headAccessorySpecialSpringWarriorNotes": "Hasenohren, die jedes Karottenknacken aufs genaueste wahrnehmen. Kein Attributbonus. Limited Edition 2014 Frühlings-Ausrüstung.", + "headAccessorySpecialSpringWarriorNotes": "Hasenohren, die jedes Karottenknacken aufs genaueste wahrnehmen. Gewährt keinen Attributbonus. Limited Edition 2014 Frühlingsausrüstung.", "headAccessorySpecialSpringMageText": "Blaue Mausohren", - "headAccessorySpecialSpringMageNotes": "Diese runden Mauseohren sind seidenweich. Kein Attributbonus. Limited Edition 2014 Frühlings-Ausrüstung.", + "headAccessorySpecialSpringMageNotes": "Diese runden Mauseohren sind seidenweich. Gewährt keinen Attributbonus. Limited Edition 2014 Frühlingsausrüstung.", "headAccessorySpecialSpringHealerText": "Gelbe Hundeohren", - "headAccessorySpecialSpringHealerNotes": "Niedliche Schlappohren. Komm, spiel mit mir! Kein Attributbonus. Limited Edition 2014 Frühlings-Ausrüstung.", + "headAccessorySpecialSpringHealerNotes": "Niedliche Schlappohren. Komm, spiel mit mir! Gewährt keinen Attributbonus. Limited Edition 2014 Frühlingsausrüstung.", "headAccessorySpecialSpring2015RogueText": "Gelbe Mauseohren", - "headAccessorySpecialSpring2015RogueNotes": "Diese Ohren stählen sich gegen Explosionsgeräusche. Kein Attributbonus. Limited Edition 2015 Frühlingsausrüstung.", + "headAccessorySpecialSpring2015RogueNotes": "Diese Ohren stählen sich gegen Explosionsgeräusche. Gewährt keinen Attributbonus. Limited Edition 2015 Frühlingsausrüstung.", "headAccessorySpecialSpring2015WarriorText": "Violette Hundeohren", - "headAccessorySpecialSpring2015WarriorNotes": "Sie sind violett. Es sind Hundeohren. Verschwende Deine Zeit nicht mit weiteren Unsinnigkeiten. Kein Attributbonus. Limited Edition 2015 Frühlingsausrüstung.", + "headAccessorySpecialSpring2015WarriorNotes": "Sie sind violett. Es sind Hundeohren. Verschwende Deine Zeit nicht mit weiteren Unsinnigkeiten. Gewährt keinen Attributbonus. Limited Edition 2015 Frühlingsausrüstung.", "headAccessorySpecialSpring2015MageText": "Blaue Häschenohren", - "headAccessorySpecialSpring2015MageNotes": "Diese Ohren lauschen eifrig, falls irgendwo ein Magier Geheimnisse offenbart. Kein Attributbonus. Limited Edition 2015 Frühlingsausrüstung.", + "headAccessorySpecialSpring2015MageNotes": "Diese Ohren lauschen eifrig, falls irgendwo ein Magier Geheimnisse offenbart. Gewährt keinen Attributbonus. Limited Edition 2015 Frühlingsausrüstung.", "headAccessorySpecialSpring2015HealerText": "Grüne Kätzchenohren", - "headAccessorySpecialSpring2015HealerNotes": "Diese süßen Kätzchenohren machen andere grün vor Neid. Kein Attributbonus. Limited Edition 2015 Frühlingsausrüstung.", + "headAccessorySpecialSpring2015HealerNotes": "Diese süßen Kätzchenohren machen andere grün vor Neid. Gewährt keinen Attributbonus. Limited Edition 2015 Frühlingsausrüstung.", + "headAccessorySpecialSpring2016RogueText": "Grüne Hundeohren", + "headAccessorySpecialSpring2016RogueNotes": "HIermit kannst Du gewiefte Magier, sogar wenn sie sich unsichtbar machen, im Auge behalten! Gewährt keinen Attributbonus. Limited Edition 2016 Frühlingsausrüstung.", + "headAccessorySpecialSpring2016WarriorText": "Rote Mauseohren", + "headAccessorySpecialSpring2016WarriorNotes": "Für den idealen Sound Deines 'Theme Songs' inmitten ohrenbetäubender Schlachtfelder. Gewährt keinen Attributbonus. Limited Edition 2016 Frühlingsausrüstung.", + "headAccessorySpecialSpring2016MageText": "Gelbe Katzenohren", + "headAccessorySpecialSpring2016MageNotes": "Diese wachsamen Ohren lassen Dich sogar das kleinste Summen von atmosphärischem Mana wahrnehmen, oder die gedämpften Schritte eines Schurken. Gewährt keinen Attributbonus. Limited Edition 2016 Frühlingsausrüstung.", + "headAccessorySpecialSpring2016HealerText": "Violette Hasenohren", + "headAccessorySpecialSpring2016HealerNotes": "Sie stehen wie Flaggen über dem Getümmel um zu markieren wo einem Hilfe zukommen kann. Gewährt keinen Attributbonus. Limited Edition 2016 Frühlingsausrüstung.", "headAccessoryBearEarsText": "Bärchenohren", - "headAccessoryBearEarsNotes": "Diese Ohren verleihen dir das Aussehen eines knuffigen Bärchens! Gewährt keinen Attributbonus.", + "headAccessoryBearEarsNotes": "Diese Ohren verleihen Dir das Aussehen eines tapferen Bären! Gewährt keinen Attributbonus.", "headAccessoryCactusEarsText": "Kaktusohren", "headAccessoryCactusEarsNotes": "Diese Ohren verleihen Dir das Aussehen eines stacheligen Kaktus! Gewährt keinen Attributbonus.", "headAccessoryFoxEarsText": "Fuchsohren", @@ -743,38 +804,40 @@ "headAccessoryWolfEarsText": "Wolfsohren", "headAccessoryWolfEarsNotes": "Diese Ohren verleihen dir das Aussehen eines loyalen Wolfes! Gewährt keinen Attributbonus.", "headAccessoryMystery201403Text": "Waldwanderergeweih", - "headAccessoryMystery201403Notes": "Diese Geweihe schimmern in Moos und Flechten. Kein Attributbonus. März 2014 Abonennten-Gegenstand.", + "headAccessoryMystery201403Notes": "Diese Geweihe schimmern in Moos und Flechten. Gewährt keinen Attributbonus. März 2014 Abonnentengegenstand.", "headAccessoryMystery201404Text": "Schmetterlingsfühler des Zwielichts", - "headAccessoryMystery201404Notes": "Die Fühler helfen dem Träger gefährlichen Ablenkungen auszuweichen. Kein Attributbonus. April 2014 Abonennten-Gegenstand.", + "headAccessoryMystery201404Notes": "Die Fühler helfen dem Träger gefährlichen Ablenkungen auszuweichen. Gewährt keinen Attributbonus. April 2014 Abonnentengegenstand.", "headAccessoryMystery201409Text": "Herbstgeweih", - "headAccessoryMystery201409Notes": "Dieses mächtige Geweih passt sich in seiner Farbe den Blättern an. Kein Attributbonus. September 2014 Abonnenten-Gegenstand.", + "headAccessoryMystery201409Notes": "Dieses mächtige Geweih passt sich in seiner Farbe den Blättern an. Gewährt keinen Attributbonus. September 2014 Abonnentengegenstand.", "headAccessoryMystery201502Text": "Flügel der Gedanken", - "headAccessoryMystery201502Notes": "Verleihe deiner Vorstellung Flügel! Gewährt keinen Attributbonus. Februar 2015 Abonnentengegenstand.", + "headAccessoryMystery201502Notes": "Verleihe Deiner Vorstellung Flügel! Gewährt keinen Attributbonus. Februar 2015 Abonnentengegenstand.", "headAccessoryMystery201510Text": "Koboldhörner", - "headAccessoryMystery201510Notes": "Diese schreckenerregenden Hörner sind ein wenig schleimig. Gibt keine Verbesserung. Oktober 2015 Abonnementen Gegenstand.", + "headAccessoryMystery201510Notes": "Diese schreckenerregenden Hörner sind ein wenig schleimig. Gewährt keinen Attributbonus. Oktober 2015 Abonnentengegenstand.", "headAccessoryMystery301405Text": "Kopf-Brille", - "headAccessoryMystery301405Notes": "\"Brillen sind für die Augen,\" haben sie gesagt. \"Niemand will Brillen, die man nur auf dem Kopf tragen kann,\" haben sie gesagt. Ha! Da hast du es ihnen aber ordentlich gezeigt! August 3015 Abonnenten-Gegenstand. Kein Attributbonus.", + "headAccessoryMystery301405Notes": "\"Brillen sind für die Augen,\" haben sie gesagt. \"Niemand will Brillen, die man nur auf dem Kopf tragen kann,\" haben sie gesagt. Ha! Da hast Du es ihnen aber ordentlich gezeigt! Gewährt keinen Attributbonus. August 3015 Abonnentengegenstand.", + "headAccessoryArmoireComicalArrowText": "Comical Arrow", + "headAccessoryArmoireComicalArrowNotes": "This whimsical item doesn't provide a stat boost, but it sure is good for a laugh! Confers no benefit. Enchanted Armoire: Independent Item.", "eyewear": "Brillen", "eyewearBase0Text": "Keine Brille", "eyewearBase0Notes": "Keine Brille.", "eyewearSpecialSummerRogueText": "Schurkische Augenklappe", - "eyewearSpecialSummerRogueNotes": "Man muss kein Halunke sein um zu sehen, wie stilvoll das ist! Kein Attributbonus. Limited Edition 2014 Sommer-Ausrüstung.", + "eyewearSpecialSummerRogueNotes": "Man muss kein Halunke sein um zu sehen, wie stilvoll das ist! Gewährt keinen Attributbonus. Limited Edition 2014 Sommerausrüstung.", "eyewearSpecialSummerWarriorText": "Schneidige Augenklappe", - "eyewearSpecialSummerWarriorNotes": "Man muss kein Schlingel sein um zu sehen, wie stilvoll das ist! Kein Attributbonus. Limited Edition 2014 Sommer-Ausrüstung.", + "eyewearSpecialSummerWarriorNotes": "Man muss kein Schlingel sein um zu sehen, wie stilvoll das ist! Gewährt keinen Attributbonus. Limited Edition 2014 Sommerausrüstung.", "eyewearSpecialWonderconRedText": "Mächtige Maske", - "eyewearSpecialWonderconRedNotes": "Was für ein beeindruckender Kopfschmuck! Kein Attributbonus. Special Edition Convention-Rüstung.", + "eyewearSpecialWonderconRedNotes": "Was für ein beeindruckender Kopfschmuck! Gewährt keinen Attributbonus. Special Edition Convention-Rüstung.", "eyewearSpecialWonderconBlackText": "Tückische Maske", - "eyewearSpecialWonderconBlackNotes": "Deine Vorhaben sind mit Sicherheit absolut rechtmäßig. Special Edition Convention Gegenstand.", + "eyewearSpecialWonderconBlackNotes": "Deine Vorhaben sind mit Sicherheit absolut rechtmäßig. Gewährt keinen Attributbonus. Special Edition Convention Gegenstand.", "eyewearMystery201503Text": "Aquamarinblaue Brille", "eyewearMystery201503Notes": "Pikse dir mit diesen schimmernden Edelsteinen nicht ins Auge! Gewährt keinen Attributbonus. März 2015 Abonnentengegenstand.", "eyewearMystery201506Text": "Neonfarbener Schnorchel", - "eyewearMystery201506Notes": "Mit diesem neonfarbenen Schnorchel kann der Träger unter Wasser sehen. Kein Attributbonus. Juni 2015 Abonnenten-Gegenstand.", + "eyewearMystery201506Notes": "Mit diesem neonfarbenen Schnorchel kann der Träger unter Wasser sehen. Gewährt keinen Attributbonus. Abonnentengegenstand, Juni 2015.", "eyewearMystery201507Text": "Coole Sonnenbrille", - "eyewearMystery201507Notes": "Mit dieser Sonnenbrille bleibst du selbst bei heißem Wetter cool. Kein Attributbonus. Juli 2015 Abonnenten-Gegenstand.", + "eyewearMystery201507Notes": "Mit dieser Sonnenbrille bleibst Du selbst bei heißem Wetter cool. Gewährt keinen Attributbonus. Abonnentengegenstand, Juli 2015.", "eyewearMystery301404Text": "Schutzbrille", - "eyewearMystery301404Notes": "Es gibt nichts schickeres vor den Augen als diese Brille - außer vielleicht einem Monokel. April 3015 Abonennten-Gegenstand. Kein Attributbonus", + "eyewearMystery301404Notes": "Es gibt nichts schickeres vor den Augen als diese Brille - außer vielleicht einem Monokel. Gewährt keinen Attributbonus. April 3015 Abonnentengegenstand.", "eyewearMystery301405Text": "Monokel", - "eyewearMystery301405Notes": "Es gibt nichts schickeres vor den Augen als ein Monokel - außer vielleicht einer Brille. April 3015 Abonennten-Gegenstand. Kein Attributbonus", - "eyewearArmoirePlagueDoctorMaskText": "Pestarzt Maske", - "eyewearArmoirePlagueDoctorMaskNotes": "Eine authentische Maske wie sie Ärzte tragen, die die Pest der Prokrastination bekämpfen! Gewährt keinen Attributbonus. Verzauberter Schrank: Pestarzt Set (Gegenstand 2 von 3)." + "eyewearMystery301405Notes": "Es gibt nichts schickeres vor den Augen als ein Monokel - außer vielleicht einer Brille. Gewährt keinen Attributbonus. April 3015 Abonnentengegenstand.", + "eyewearArmoirePlagueDoctorMaskText": "Pestarzt-Maske", + "eyewearArmoirePlagueDoctorMaskNotes": "Eine authentische Maske wie sie Ärzte tragen, die die Pest der Prokrastination bekämpfen! Gewährt keinen Attributbonus. Verzauberter Schrank: Pestarzt-Set (Gegenstand 2 von 3)." } \ No newline at end of file diff --git a/common/locales/de/generic.json b/common/locales/de/generic.json index 76dc266ae6..c6c71eea35 100644 --- a/common/locales/de/generic.json +++ b/common/locales/de/generic.json @@ -9,7 +9,7 @@ "titleStats": "Werte & Erfolge", "titleProfile": "Profil", "titleInbox": "Postfach", - "titleTavern": "Schenke", + "titleTavern": "Gasthaus", "titleParty": "Gruppe", "titleHeroes": "Halle der Helden", "titlePatrons": "Halle der Schirmherren", @@ -100,8 +100,8 @@ "errorUpCase": "FEHLER:", "newPassSent": "Neues Passwort wurde gesendet.", "serverUnreach": "Der Server ist momentan nicht erreichbar.", - "requestError": "Ojeh, ein Fehler ist aufgetreten! Bitte lade die Seite neu, deine letzte Aktion wurde vielleicht nicht korrekt gespeichert.", - "seeConsole": "Tritt der Fehler weiterhin auf, bitte berichte ihn bei Hilfe > Berichte einen Bug. Falls du weißt, wie du die Konsole deines Internetbrowsers einsehen kannst, füge die entsprechenden Fehlernachrichten bei.", + "requestError": "Ojeh, ein Fehler ist aufgetreten! Bitte lade die Seite neu, Deine letzte Aktion wurde vielleicht nicht korrekt gespeichert.", + "seeConsole": "Tritt der Fehler weiterhin auf, bitte berichte ihn bei Hilfe > Berichte einen Bug. Falls Du weißt, wie Du die Konsole Deines Internetbrowsers einsehen kannst, füge die entsprechenden Fehlernachrichten bei.", "error": "Fehler", "menu": "Menü", "notifications": "Mitteilungen", @@ -116,7 +116,7 @@ "audioTheme_luneFoxTheme": "Lunefox's Motiv", "askQuestion": "Stelle eine Frage", "reportBug": "Melde einen Fehler", - "HabiticaWiki": "The Habitica Wiki", + "HabiticaWiki": "Das Habitica Wiki", "HabiticaWikiFrontPage": "http://habitica.wikia.com/wiki/Habitica_Wiki", "contributeToHRPG": "Wirke bei Habitica mit", "overview": "Übersicht für neue Nutzer", @@ -137,6 +137,8 @@ "achievementStressbeastText": "Hat geholfen während des Winter Wunderland 2014 das Abscheuliche Stressbiest zu besiegen!", "achievementBurnout": "Retter der Blühenden Felder", "achievementBurnoutText": "Hat beim 2015 Herbstfestival Event dabei geholfen, Burnout zu besiegen und die Geister der Erschöpfung wiederherzustellen!", + "achievementBewilder": "Savior of Mistiflying", + "achievementBewilderText": "Helped defeat the Be-Wilder during the 2016 Spring Fling Event!", "checkOutProgress": "Schau Dir meinen Fortschritt in Habitica an!", "cardReceived": "Du hast eine Karte erhalten!", "cardReceivedFrom": "<%= cardType %>, Von: <%= cardType %>", @@ -157,16 +159,16 @@ "thankyou2": "Ich danke Dir tausendmal.", "thankyou3": "Im bin sehr dankbar - danke!", "thankyouCardAchievementTitle": "Danke vielmals", - "thankyouCardAchievementText": "Danke für Deine Dankbarkeit! Hat <%= cards %> Dankeskarten verschickt. ", - "birthdayCard": "Birthday Card", - "birthdayCardExplanation": "You both receive the Birthday Bonanza achievement!", - "birthdayCardNotes": "Send a birthday card to a party member.", - "birthday0": "Happy birthday to you!", - "birthdayCardAchievementTitle": "Birthday Bonanza", - "birthdayCardAchievementText": "Many happy returns! Sent or received <%= cards %> birthday cards.", - "streakAchievement": "Du hast einen Strähnen-Erfolg erzielt!", + "thankyouCardAchievementText": "Danke für Deine Dankbarkeit! Hat <%= cards %> Dankeskarten verschickt.", + "birthdayCard": "Geburtstagskarte", + "birthdayCardExplanation": "Ihr erhaltet beide den Fröhlicher-Freund-Erfolg!", + "birthdayCardNotes": "Schicke einem Gruppenmitglied eine Geburtstagskarte.", + "birthday0": "Alles Gute zum Geburtstag!", + "birthdayCardAchievementTitle": "Geburtstags-Bonanza", + "birthdayCardAchievementText": "Viele fröhliche Wiedersehen! Verschicke, oder erhalte <%= cards %> Geburtstagsgrußkarten.", + "streakAchievement": "Du hast einen Strähnenerfolg erzielt!", "firstStreakAchievement": "21-Tage Strähne", - "streakAchievementCount": "<%= streaks %> 21-Tage Strähnen", + "streakAchievementCount": "<%= streaks %> 21-Tage-Strähnen", "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!", @@ -175,5 +177,6 @@ "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!" + "achievementShare": "Ich habe in Habitica einen neuen Erfolg verdient!", + "orderBy": "Sortieren nach <%= item %>" } \ No newline at end of file diff --git a/common/locales/de/groups.json b/common/locales/de/groups.json index 2b6ac9a9b4..176c811951 100644 --- a/common/locales/de/groups.json +++ b/common/locales/de/groups.json @@ -1,9 +1,9 @@ { - "tavern": "Gasthaus", + "tavern": "Gasthaus-Chat", "innCheckOut": "Das Gasthaus verlassen", "innCheckIn": "Im Gasthaus erholen", - "innText": "Du erholst dich im Gasthaus! Während du dort verweilst, werden dir deine täglichen Aufgaben keinen Schaden zufügen, aber trotzdem täglich aktualisiert werden. Vorsicht: Wenn du an einem Bosskampf teilnimmst, erhältst du weiterhin Schaden für die verpassten Aufgaben deiner Gruppenmitglieder, sofern sich diese nicht auch im Gasthaus befinden! Außerdem wird der Schaden, den Du dem Boss zufügst, (und gefundene Gegenstände) erst angewendet, wenn du das Gasthaus verlässt.", - "innTextBroken": "Du erholst dich im Gasthaus, schätze ich... Während du dort verweilst, werden dir deine täglichen Aufgaben keinen Schaden zufügen, aber trotzdem täglich aktualisiert... Wenn du an einem Bosskampf teilnimmst, erhältst du weiterhin Schaden für die verpassten Aufgaben deiner Gruppenmitglieder... sofern sich diese nicht auch im Gasthaus befinden... Außerdem wird dein Schaden am Boss (oder gesammelte Gegenstände) nicht berücksichtigt, bis du das Gasthaus verlässt.... So müde...", + "innText": "Du erholst Dich im Gasthaus! Während Du dort verweilst, werden dir Deine täglichen Aufgaben keinen Schaden zufügen, aber trotzdem täglich aktualisiert werden. Vorsicht: Wenn Du an einem Bosskampf teilnimmst, erhältst Du weiterhin Schaden für die verpassten Aufgaben Deiner Gruppenmitglieder, sofern sich diese nicht auch im Gasthaus befinden! Außerdem wird der Schaden, den Du dem Boss zufügst, (und gefundene Gegenstände) erst angewendet, wenn Du das Gasthaus verlässt.", + "innTextBroken": "Du erholst Dich im Gasthaus, schätze ich ... Während Du dort verweilst, werden Dir Deine täglichen Aufgaben keinen Schaden zufügen, aber trotzdem täglich aktualisiert ... Wenn Du an einem Bosskampf teilnimmst, erhältst Du weiterhin Schaden für die verpassten Aufgaben Deiner Gruppenmitglieder ... sofern sich diese nicht auch im Gasthaus befinden ... Außerdem wird Dein Schaden am Boss (oder gesammelte Gegenstände) nicht berücksichtigt, bis Du das Gasthaus verlässt ... So müde ...", "lfgPosts": "Nach Gruppeneinträgen suchen", "tutorial": "Anleitung", "glossary": "Nomenklatur", @@ -25,7 +25,7 @@ "createAParty": "Gruppe erstellen", "updatedParty": "Gruppeneinstellungen wurden aktualisiert.", "noPartyText": "Entweder bist Du noch in keiner Gruppe oder Deine Gruppe dauert etwas länger, um zu laden. Du kannst eine neue Gruppe erstellen und Freunde einladen. Wenn Du stattdessen einer bestehenden Gruppe beitreten willst, sag ihnen, dass sie Deine persönliche User ID eingeben sollen und komm dann zurück hierher um nach der Einladung zu suchen:", - "LFG": "Um deine Gruppe bekannt zu machen oder um eine zu finden, der du beitreten kannst, gehe zur <%= linkStart %>Gruppe gesucht<%= linkEnd %>-Gilde.", + "LFG": "Um Deine Gruppe bekannt zu machen oder um eine zu finden, der Du beitreten kannst, gehe zur <%= linkStart %>Gruppe gesucht<%= linkEnd %>-Gilde.", "wantExistingParty": "Willst Du Dich bestehenden Gruppen anschließen? Besuche die <%= linkStart %> Gruppe gesucht <%= linkEnd %>-Gilde und poste diese Benutzer ID:", "joinExistingParty": "Trete der Gruppe eines anderen bei", "create": "Erstellen", @@ -36,7 +36,7 @@ "invitedToNewParty": "Du wurdest zu einer Gruppe eingeladen! Möchtest Du diese Gruppe verlassen und stattdessen <%= partyName %> beitreten?", "joinNewParty": "Neuer Gruppe beitreten", "declineInvitation": "Einladung ablehnen", - "loadingNewParty": "Deine neue Gruppe wird geladen. Einen Moment...", + "loadingNewParty": "Deine neue Gruppe wird geladen. Einen Moment bitte ...", "newMsg": "Neue Nachricht unter \"<%= name %>\"", "chat": "Chat", "sendChat": "Nachricht senden", @@ -68,7 +68,7 @@ "createGuild": "Gilde gründen", "guild": "Gilde", "guilds": "Gilden", - "sureKick": "Willst du dieses Mitglied wirklich aus der Gruppe/Gilde entfernen?", + "sureKick": "Willst Du dieses Mitglied wirklich aus der Gruppe/Gilde entfernen?", "optionalMessage": "Optinale Nachricht", "yesRemove": "Ja, entferne sie", "foreverAlone": "\"Gefällt mir\" funktioniert nicht bei eigenen Nachrichten. Sei nicht so einer.", @@ -83,17 +83,17 @@ "ascendingSort": "Aufsteigend sortieren", "descendingSort": "Absteigend sortieren", "confirmGuild": "Gilde für 4 Edelsteine gründen?", - "leaveGroupCha": "Gildenwettbewerbe verlassen und...", + "leaveGroupCha": "Gildenwettbewerbe verlassen und ...", "confirm": "Bestätigen", "leaveGroup": "Gilde verlassen?", - "leavePartyCha": "Gruppenwettbewerbe verlassen und...", + "leavePartyCha": "Gruppenwettbewerbe verlassen und ...", "leaveParty": "Gruppe verlassen?", "sendPM": "Private Nachricht schicken", "send": "Abschicken", "messageSentAlert": "Nachricht abgeschickt", "pmHeading": "Private Nachricht an <%= name %>", "clearAll": "Lösche alle Nachrichten", - "confirmDeleteAllMessages": "Bist du sicher, dass du alle Nachrichten im Posteingang löschen möchtest? Andere Benutzer können immer noch die Nachrichten sehen, die du ihnen geschickt hast.", + "confirmDeleteAllMessages": "Bist Du sicher, dass Du alle Nachrichten im Posteingang löschen möchtest? Andere Benutzer können immer noch die Nachrichten sehen, die Du ihnen geschickt hast.", "optOutPopover": "Du willst keine privaten Nachrichten? Klick hier um sie zu deaktivieren", "block": "Blockieren", "unblock": "Ent-Blockieren", @@ -101,7 +101,7 @@ "inbox": "Postfach", "abuseFlag": "Verletzung der Community-Richtlinien melden", "abuseFlagModalHeading": "<%= name %> melden?", - "abuseFlagModalBody": "Möchtest du diesen Beitrag wirklich melden? DU solltest AUSSCHLIESSLICH Beiträge melden, die unsere <%= firstLinkStart %>Community-Richtlinien<%= linkEnd %> oder unseren <%= secondLinkStart %>Nutzungsbedingungen<%= linkEnd %> verletzen. Das ungerechtfertigte Melden von Beiträgen stellt eine Verletzung der Community-Richtlinien dar und kann geahndet werden. Ein angemessener Grund einen Beitrag zu melden umfasst, ist aber nicht beschränkt auf:


", + "abuseFlagModalBody": "Möchtest Du diesen Beitrag wirklich melden? DU solltest AUSSCHLIESSLICH Beiträge melden, die unsere <%= firstLinkStart %>Community-Richtlinien<%= linkEnd %> und/oder unsere <%= secondLinkStart %>Nutzungsbedingungen<%= linkEnd %> verletzen. Das ungerechtfertigte Melden von Beiträgen stellt eine Verletzung der Community-Richtlinien dar und kann geahndet werden. Gute Gründe einen Beitraqg zu melden sind unter anderem:


", "abuseFlagModalButton": "Verstoß melden", "abuseReported": "Danke, dass Du diesen Verstoß gemeldet hast. Die Moderatoren wurden benachrichtigt.", "abuseAlreadyReported": "Du hast diese Nachricht bereits gemeldet.", @@ -135,17 +135,21 @@ "battleWithFriends": "Besiege mit Freunden Monster!", "startPartyWithFriends": "Gründe eine Gruppe mit Deinen Freunden!", "startAParty": "Erstelle eine Gruppe", - "addToParty": "Füge jemanden deiner Gruppe hinzu", - "likePost": "Klicke wenn du dir dieser Beitrag gefällt!", + "addToParty": "Füge jemanden Deiner Gruppe hinzu", + "likePost": "Klicke wenn Dir dieser Beitrag gefällt!", "partyExplanation1": "Spiele Habitica mit Freunden, um verantwortungsbewusst zu bleiben!", "partyExplanation2": "Bekämpfe Monster und nimm an Wettbewerben teil!", "partyExplanation3": "Lade jetzt Freunde ein und erhalte eine Questschriftrolle!", "wantToStartParty": "Willst Du eine Gruppe gründen?", - "exclusiveQuestScroll": "Wenn Du Freunde in Deine Gruppe einlädst, erhälst Du eine exklusive Questschriftrolle, mit der Ihr gemeinsam den Basi-List bekämpfen könnt!", + "exclusiveQuestScroll": "Wenn Du Freunde in Deine Gruppe einlädst, erhältst Du eine exklusive Questschriftrolle, mit der Ihr gemeinsam den Basi-List bekämpfen könnt!", "nameYourParty": "Gib Deiner neuen Gruppe einen Namen!", "partyEmpty": "Du bist alleine in Deiner Gruppe. Lade Freunde ein!", "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": "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." + "requestAcceptGuidelines": "Wenn Du Nachrichten im Gasthaus oder in irgendeinem Gruppen- oder Gilden-Chat posten willst, lies bitte zuerst unsere <%= linkStart %>Community-Richtlinien<%= linkEnd %>. Klicke danach unten auf den Button, um sie zu akzeptieren.", + "partyUpName": "Party!", + "partyOnName": "Riesenparty!", + "partyUpAchievement": "Du bist einer Gruppe mit einer anderen Person beigetreten! Viel Spaß beim Kampf gegen Monster und gegenseitigen Unterstützen.", + "partyOnAchievement": "Du bist einer Gruppe mit mindestens vier Personen beigetreten! Genieße die gestiegene Zurechenbarkeit, wenn Du Dich mit Deinen Freunden vereinst, um eure Feinde zu bezwingen!" } \ No newline at end of file diff --git a/common/locales/de/limited.json b/common/locales/de/limited.json index f31a0af7ef..b58ec70166 100644 --- a/common/locales/de/limited.json +++ b/common/locales/de/limited.json @@ -1,7 +1,7 @@ { "limitedEdition": "Limitierte Edition", "seasonalEdition": "Jahreszeiten Edition", - "winterColors": "Winter Farben", + "winterColors": "Winterfarben", "annoyingFriends": "Nervige Freunde", "annoyingFriendsText": "Hat sich <%= snowballs %> Schneebälle von Gruppenmitgliedern eingefangen.", "alarmingFriends": "Unheimliche Freunde", @@ -14,34 +14,34 @@ "valentineCardExplanation": "Dafür, dass ihr so ein zuckersüßes Gedicht ertragen habt, erhaltet ihr beide das \"Liebevolle Freunde\" Abzeichen", "valentineCardNotes": "Einem Gruppenmitglied eine Valentinskarte schicken.", "valentine0": "\"Rosen sind rot\n\nMeine Aufgabenliste ist klein\n\nIch bin froh mit dir \n\nIn einer Gruppe zu sein!\"", - "valentine1": "\"Rosen sind rot\n\nKämpfe bringen Zaster\n\nLos, schließ dich mir an\n\nUnd wir besiegen die Laster!", - "valentine2": "\"Rosen sind rot\n\nDieses Gedicht ist mir hold\n\nIch hoffe du magst es\n\nDenn mich kostet's 10 Gold.\"", - "valentine3": "\"Rosen sind rot\n\nEisdrachen sind blau\n\nOhne deine Begleitung\n\nIst Habitica grau!\"", + "valentine1": "\"Rosen sind rot\n\nKämpfe bringen Zaster\n\nLos, schließ Dich mir an\n\nUnd wir besiegen die Laster!", + "valentine2": "\"Rosen sind rot\n\nDieses Gedicht ist mir hold\n\nIch hoffe Du magst es\n\nDenn mich kostet's 10 Gold.\"", + "valentine3": "\"Rosen sind rot\n\nEisdrachen sind blau\n\nOhne Deine Begleitung\n\nIst Habitica grau!\"", "valentineCardAchievementTitle": "Heißgeliebte Freunde", - "valentineCardAchievementText": "Ohh, deine Freunde und du, ihr müsst euch ja wirklich gern haben. Du hast insgesamt <%= cards %> Valentinstagskarten gesendet und bekommen.", + "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": "Vergoldeter Truthahn", "polarBearPup": "Eisbärenjunges", "jackolantern": "Halloweenkürbis", - "seasonalShop": "Saisonaler Shop", + "seasonalShop": "Jahreszeitenmarkt", "seasonalShopClosedTitle": "<%= linkStart %>Leslie<%= linkEnd %>", "seasonalShopTitle": "<%= linkStart %>Saisonzauberin<%= linkEnd %>", - "seasonalShopClosedText": "Der Saisonale Shop ist gerade geschlossen!! Ich weiß nicht, wo die Saisonzauberin gerade ist, aber ich wette sie wird während der nächsten Grand Gala wieder zurück sein!", - "seasonalShopText": "Willkommen zum Jahreszeitenmarkt!! Momentan haben wir Frühlingsgegenstände auf Lager. Alles hier wird während des Frühlingsevents, das jedes Jahr stattfindet, verfügbar sein. Allerdings nur bis zum 30. April, also stocke jetzt auf, ansonsten musst du bis nächstes Jahr warten.", - "seasonalShopSummerText": "Willkommen zum Jahreszeitenmarkt!! Momentan haben wir jahreszeitlich wechselnde Gegenstände auf Lager. Alles hier wird während des Sommerevents, das jedes Jahr stattfindet, verfügbar sein. Allerdings nur bis zum 31. Juli, also stocke jetzt auf, ansonsten musst du bis nächstes Jahr warten.", - "seasonalShopFallText": "Willkommen zum saisonalen Shop!! Momentan haben wir Herbstgegenstände auf Lager. Alles hier wird während des Herbstevents, das jedes Jahr stattfindet, verfügbar sein. Allerdings nur bis zum 31. October, also stocke jetzt deine Vorräte auf, ansonsten musst du bis nächstes Jahr warten.", - "seasonalShopWinterText": "Willkommen zum Jahreszeitenmarkt!! Momentan haben wir Saisonale Edition Gegenstände auf Lager. Alles hier wird während des Winter-Wunderlandes, das jedes Jahr stattfindet, verfügbar sein. Allerdings nur bis 31. Januar, also decke dich jetzt ein, sonst musst Du bis nächstes Jahr warten!", - "seasonalShopFallTextBroken": "Willkommen zum saisonalen Shop!! Momentan haben wir herbst Gegenstände auf Lager. Alles hier wird während des Herbstevents, das jedes Jahr stattfindet, verfügbar sein. Allerdings nur bis zum 31. October, also stocke jetzt deine Vorräte auf, ansonsten musst du bis nächstes Jahr warten...*hach*", - "seasonalShopRebirth": "Wenn Du die Sphäre der Wiedergeburt benutzt hast, kannst du diesen Ausrüstungsgegenstand in der Belohnungsspalte erneut kaufen. Anfangs wirst Du nur Gegenstände für Deine momentane Klasse (Krieger) kaufen können, aber keine Sorge, die anderen klassenspezifischen Gegenstände werden verfügbar, sobald Du zu der jeweiligen Klasse wechselst. ", + "seasonalShopClosedText": "Der Jahreszeitenmarkt ist gerade geschlossen!! Ich weiß nicht, wo die Saisonzauberin gerade ist, aber ich wette sie wird während der nächsten Grand Gala wieder zurück sein!", + "seasonalShopText": "Willkommen auf dem Jahreszeitenmarkt!! Momentan haben wir Frühlingsgegenstände auf Lager. Alles hier wird während des Frühlingsevents, das jedes Jahr stattfindet, verfügbar sein. Allerdings nur bis zum 30. April, also stocke jetzt auf, ansonsten musst Du bis nächstes Jahr warten.", + "seasonalShopSummerText": "Willkommen auf dem Jahreszeitenmarkt!! Momentan haben wir jahreszeitlich wechselnde Gegenstände auf Lager. Alles hier wird während des Sommerevents, das jedes Jahr stattfindet, verfügbar sein. Allerdings nur bis zum 31. Juli, also stocke jetzt auf, ansonsten musst Du bis nächstes Jahr warten.", + "seasonalShopFallText": "Willkommen auf dem Jahreszeitenmarkt!! Momentan haben wir Herbstgegenstände auf Lager. Alles hier wird während des Herbstevents, das jedes Jahr stattfindet, verfügbar sein. Allerdings nur bis zum 31. Oktober, also stocke jetzt Deine Vorräte auf, ansonsten musst Du bis nächstes Jahr warten.", + "seasonalShopWinterText": "Willkommen auf dem Jahreszeitenmarkt!! Momentan haben wir Saisonale Edition Gegenstände auf Lager. Alles hier wird während des Winter-Wunderlandes, das jedes Jahr stattfindet, verfügbar sein. Allerdings nur bis 31. Januar, also decke Dich jetzt ein, sonst musst Du bis nächstes Jahr warten!", + "seasonalShopFallTextBroken": "Willkommen auf dem Jahreszeitenmarkt!! Momentan haben wir Herbstgegenstände auf Lager. Alles hier wird während des Herbstevents, das jedes Jahr stattfindet, verfügbar sein. Allerdings nur bis zum 31. Oktober, also stocke jetzt Deine Vorräte auf, ansonsten musst Du bis nächstes Jahr warten ... *hach*", + "seasonalShopRebirth": "Wenn Du die Sphäre der Wiedergeburt benutzt hast, kannst Du diesen Ausrüstungsgegenstand in der Belohnungsspalte erneut kaufen. Anfangs wirst Du nur Gegenstände für Deine momentane Klasse (Krieger) kaufen können, aber keine Sorge, die anderen klassenspezifischen Gegenstände werden verfügbar, sobald Du zu der jeweiligen Klasse wechselst.", "candycaneSet": "Zuckerstange (Magier)", "skiSet": "Ski-Attentäter (Schurke)", "snowflakeSet": "Schneeflocke (Heiler)", - "yetiSet": "Yeti Zähmer (Krieger)", + "yetiSet": "Yetizähmer (Krieger)", "northMageSet": "Magier des Nordens (Magier)", "icicleDrakeSet": "Eiszapfendrache (Schurke)", "soothingSkaterSet": "Beruhigender Eisläufer (Heiler)", - "gingerbreadSet": "Lebkuchen Krieger (Krieger) ", + "gingerbreadSet": "Lebkuchenkrieger (Krieger)", "toAndFromCard": "An: <%= toName %>, Von: <%= fromName %>", "nyeCard": "Neujahrskarte", "nyeCardExplanation": "Dafür, dass ihr gemeinsam Neujahr gefeiert habt, erhaltet ihr beide die \"Alte Bekannte\" Auszeichnung!", @@ -49,11 +49,11 @@ "seasonalItems": "Saisonaler Artikel", "nyeCardAchievementTitle": "Alte(r) Bekannte(r)", "nyeCardAchievementText": "Fröhliches neues Jahr! Du hast <%= cards %> Neujahrskarten verschickt oder erhalten.", - "nye0": "Fröhliches neues Jahr! Mögest du viele schlechte Angewohnheiten erlegen.", - "nye1": "Fröhliches neues Jahr! Mögest du viele Belohnungen ernten.", - "nye2": "Fröhliches neues Jahr! Mögest du viele Perfekte Tage verdienen.", - "nye3": "Fröhliches neues Jahr! Möge deine Aufgabenliste kurz und knackig bleiben.", - "nye4": "Fröhliches neues Jahr! Mögest du nicht von einem vandalierenden Hippogreif angegriffen werden.", + "nye0": "Fröhliches neues Jahr! Mögest Du viele schlechte Angewohnheiten erlegen.", + "nye1": "Fröhliches neues Jahr! Mögest Du viele Belohnungen ernten.", + "nye2": "Fröhliches neues Jahr! Mögest Du viele Perfekte Tage verdienen.", + "nye3": "Fröhliches neues Jahr! Möge Deine Aufgabenliste kurz und knackig bleiben.", + "nye4": "Fröhliches neues Jahr! Mögest Du nicht von einem vandalierenden Hippogreif angegriffen werden.", "holidayCard": "Du hast eine Grußkarte erhalten!", "mightyBunnySet": "Mächtiges Häschen (Krieger)", "magicMouseSet": "Magische Maus (Magier)", @@ -65,8 +65,12 @@ "roguishPirateSet": "Schurkischer Pirat (Schurke)", "monsterOfScienceSet": "Monster der Wissenschaft (Krieger)", "witchyWizardSet": "Zauberhafter Zauberer (Magier)", - "mummyMedicSet": "Mumien Sanitäter (Heiler)", + "mummyMedicSet": "Mumiensanitäter (Heiler)", "vampireSmiterSet": "Vampirjäger (Schurke)", + "bewareDogSet": "Wachhund (Krieger)", + "magicianBunnySet": "des Magiers Häschen (Magier)", + "comfortingKittySet": "Tröstendes Kätzchen (Heiler)", + "sneakySqueakerSet": "Raffinierter Raffzahn (Schurke)", "fallEventAvailability": "Verfügbar bis zum 31. Oktober", - "winterEventAvailability": "Verfügbar bis 31. Dezember" + "winterEventAvailability": "Verfügbar bis zum 31. Dezember" } \ No newline at end of file diff --git a/common/locales/de/messages.json b/common/locales/de/messages.json index 07b38fd946..2eb77db106 100644 --- a/common/locales/de/messages.json +++ b/common/locales/de/messages.json @@ -5,7 +5,7 @@ "messageTagNotFound": "Tag nicht gefunden.", "messagePetNotFound": ":pet in user.items.pets nicht gefunden", "messageFoodNotFound": ":food in user.items.food nicht gefunden", - "messageNotAvailable": "Dieser Gegenstand steht momentan nicht zum Verkauf. ", + "messageNotAvailable": "Dieser Gegenstand steht momentan nicht zum Verkauf.", "messageCannotFeedPet": "Dieses Haustier will und kann nicht gefüttert werden.", "messageAlreadyMount": "Du hast dieses Reittier bereits. Füttere lieber ein anderes Haustier.", "messageEvolve": "<%= egg %> wurde gezähmt, es ist an der Zeit aufzusitzen!", @@ -15,21 +15,21 @@ "messageEquipped": "<%= itemText %> angelegt.", "messageUnEquipped": "<%= itemText %> abgelegt.", "messageMissingEggPotion": "Dir fehlt entweder dieses Ei oder dieser Trank", - "messageInvalidEggPotionCombo": "Du kannst Quest Haustier-Eier nicht mit magischen Schlüftränken schlüpfen lassen! Versuche es mir einem anderen Ei. ", + "messageInvalidEggPotionCombo": "Du kannst Quest Haustier-Eier nicht mit magischen Schlüpftränken schlüpfen lassen! Versuche es mit einem anderen Ei.", "messageAlreadyPet": "Du hast dieses Haustier bereits. Versuche doch eine andere Kombination.", "messageHatched": "Ein Ei ist ausgeschlüpft! Besichtige die Ställe um Dein Haustier auszuwählen.", "messageNotEnoughGold": "Nicht genug Gold", - "messageTwoHandedEquip": "Um <%= twoHandedText %> zu führen brauchst Du beide Hände, daher wurde <%= offHandedText %> zurück in das Inventar gelegt.", - "messageTwoHandedUnequip": "Um <%= twoHandedText %> zu führen brauchst Du beide Hände, daher wurde es zurück in das Inventar gelegt als Du dich mit <%= offHandedText %> bewaffnetest. ", + "messageTwoHandedEquip": "Um <%= twoHandedText %> zu führen brauchst Du beide Hände, daher wurde <%= offHandedText %> zurück in das Inventar gelegt.", + "messageTwoHandedUnequip": "Um <%= twoHandedText %> zu führen brauchst Du beide Hände, daher wurde es zurück in das Inventar gelegt als Du Dich mit <%= offHandedText %> bewaffnet hast.", "messageDropFood": "<%= dropArticle %><%= dropText %> gefunden! <%= dropNotes %>", "messageDropEgg": "Du hast ein <%= dropText %> Ei gefunden! <%= dropNotes %>", - "messageDropPotion": "Du hast einen <%= dropText %> Schlüpftrank gefunden! <%= dropNotes %>", - "messageDropQuest": "Du hast ein Quest gefunden!", + "messageDropPotion": "Du hast einen <%= dropText %> Schlüpftrank gefunden! <%= dropNotes %>", + "messageDropQuest": "Du hast eine Quest gefunden!", "messageDropMysteryItem": "Du öffnest die Kiste und findest <%= dropText %>!", - "messageFoundQuest": "Du hast das Quest \"<%= questText %>\" gefunden!", - "messageAlreadyPurchasedGear": "Du hast dieses Item in der Vergangenheit bereits gekauft, besitzt es aktuell aber nicht mehr. Du kannst es in der Belohnungen Spalte deiner Aufgaben Seite erneut kaufen.", + "messageFoundQuest": "Du hast die Quest \"<%= questText %>\" gefunden!", + "messageAlreadyPurchasedGear": "Du hast diesen Gegenstand in der Vergangenheit bereits gekauft, besitzt ihn aktuell aber nicht mehr. Du kannst diesen in der Spalte \"Belohnungen\" Deiner Aufgabenseite erneut kaufen.", "messageAlreadyOwnGear": "Du besitzt den Gegenstand schon. Gehe zur Ausrüstungsseite, um ihn anzulegen.", - "armoireEquipment": "<%= image %> Du hast ein Stück seltener Ausrüstung im verzauberten Schrank gefunden: <%= dropText %>! Wow!", + "armoireEquipment": "<%= image %> Du hast ein Stück seltener Ausrüstung im verzauberten Schrank gefunden: <%= dropText %>! Großartig!", "armoireFood": "<%= image %> Du wühlst im verzauberten Schrank herum und findest <%= dropArticle %><%= dropText %>. Was macht das denn da drin?", "armoireExp": "Du ringst mit dem verzauberten Schrank und gewinnst Erfahrung. Nimm das!", "messageInsufficientGems": "Nicht genügend Edelsteine!", @@ -37,17 +37,17 @@ "messageAuthCredentialsRequired": ":username, :email, :password, :confirmPassword erforderlich", "messageAuthUsernameTaken": "Benutzername existiert bereits", "messageAuthEmailTaken": "E-Mail existiert bereits", - "messageAuthNoUserFound": "Kein Benutzer gefunden", + "messageAuthNoUserFound": "Kein Benutzer gefunden.", "messageAuthMustBeLoggedIn": "Du musst angemeldet sein.", "messageAuthMustIncludeTokens": "Deine Anfrage muss ein Token und eine UID (Benutzer-Kennung) beinhalten", - "messageGroupNotFound": "Gruppe nicht gefunden, oder du hast keine Zugriffsrechte.", - "messageGroupAlreadyInParty": "Eine Gruppe bereits beigetreten, versuche die Seite neu zu laden.", + "messageGroupNotFound": "Gruppe nicht gefunden, oder Du hast keine Zugriffsrechte.", + "messageGroupAlreadyInParty": "Bereits einer Gruppe beigetreten, versuche die Seite neu zu laden.", "messageGroupOnlyLeaderCanUpdate": "Nur der Gruppenleiter kann die Gruppe aktualisieren!", - "messageGroupRequiresInvite": "Du kannst keiner Gruppe beitreten, zu der du nicht eingeladen wurdest.", - "messageGroupCannotRemoveSelf": "Du kannst dich nicht selbst entfernen!", + "messageGroupRequiresInvite": "Du kannst keiner Gruppe beitreten, zu der Du nicht eingeladen wurdest.", + "messageGroupCannotRemoveSelf": "Du kannst Dich nicht selbst entfernen!", "messageGroupChatBlankMessage": "Du kannst keine leere Nachricht versenden", "messageGroupChatLikeOwnMessage": "\"Gefällt mir\" funktioniert nicht bei eigenen Nachrichten. Sei nicht so einer.", - "messageGroupChatFlagOwnMessage": "Du kannst deine eigene Nachricht nicht melden.", + "messageGroupChatFlagOwnMessage": "Du kannst Deine eigene Nachricht nicht melden.", "messageGroupChatFlagAlreadyReported": "Du hast diese Nachricht bereits gemeldet.", "messageGroupChatNotFound": "Nachricht wurde nicht gefunden!", "messageGroupChatAdminClearFlagCount": "Nur Admins können den Zählmarker zurücksetzen!", diff --git a/common/locales/de/npc.json b/common/locales/de/npc.json index 204b1a6bd0..db5799c0b2 100644 --- a/common/locales/de/npc.json +++ b/common/locales/de/npc.json @@ -2,32 +2,32 @@ "npc": "NPC", "npcText": "Hat die Kickstarter Kampagne auf dem höchsten Level mitgetragen!", "mattBoch": "Matt Boch", - "mattShall": "Soll ich dir dein Ross bringen, <%= name %>? Sobald du einem Haustier so viel Futter gegeben hast, dass es zu einem Reittier werden konnte, wird es hier erscheinen. Klicke auf ein Reittier um aufzusteigen!", - "mattBochText1": "Willkommen im Stall! Ich bin Matt, der Bestienmeister. Ab Level 3 kannst du mit Hilfe von Eiern und Tränken Haustiere ausbrüten. Wenn du auf dem Marktplatz ein Haustier schlüpfen lässt, wird es hier erscheinen! Klicke auf ein Haustier, um es deinem Avatar hinzuzufügen. Füttere deine Tiere mit dem Futter, das du ab Level 3 findest, damit sie zu mächtigen Reittieren heranwachsen.", + "mattShall": "Soll ich dir Dein Ross bringen, <%= name %>? Sobald Du einem Haustier so viel Futter gegeben hast, dass es zu einem Reittier werden konnte, wird es hier erscheinen. Klicke auf ein Reittier um aufzusteigen!", + "mattBochText1": "Willkommen im Stall! Ich bin Matt, der Bestienmeister. Ab Level 3 kannst Du mit Hilfe von Eiern und Tränken Haustiere ausbrüten. Wenn Du auf dem Marktplatz ein Haustier schlüpfen lässt, wird es hier erscheinen! Klicke auf ein Haustier, um es Deinem Avatar hinzuzufügen. Füttere Deine Tiere mit dem Futter, das Du ab Level 3 findest, damit sie zu mächtigen Reittieren heranwachsen.", "daniel": "Daniel", - "danielText": "Willkommen im Gasthaus! Setz dich und triff die Einheimischen. Willst du dich ausruhen (Urlaub? Krankheit?), dann besorge ich dir ein schönes Zimmer. Solange du dort eingecheckt bist, werden deine täglichen Aufgaben dir am Ende des Tages keinen Schaden zufügen, du kannst sie trotzdem noch abhaken.", + "danielText": "Willkommen im Gasthaus! Setz Dich und triff die Einheimischen. Willst Du Dich ausruhen (Urlaub? Krankheit?), dann besorge ich dir ein schönes Zimmer. Solange Du dort eingecheckt bist, werden Deine täglichen Aufgaben dir am Ende des Tages keinen Schaden zufügen, Du kannst sie trotzdem noch abhaken.", "danielText2": "Sei gewarnt: Falls Du an einer Boss-Quest teilnimmst, wird Dir der Boss immer noch Schaden für die nicht abgehakten Aufgaben Deiner Gruppenmitglieder zufügen! Außerdem wird der Schaden, den Du dem Boss zufügst (sowie gefundene Gegenstände) erst angerechnet, wenn Du das Gasthaus verlässt.", - "danielTextBroken": "Willkommen im Gasthaus... Willst du dich ausruhen, dann besorge ich dir ein schönes Zimmer... Solange du dort eingecheckt bist, werden deine täglichen Aufgaben dir am Ende des Tages keinen Schaden zufügen, du kannst sie trotzdem noch abhaken... wenn du die Kraft dazu hast...", - "danielText2Broken": "Oh... Falls Du an einer Boss-Quest teilnimmst, wird Dir der Boss immer noch Schaden für die nicht abgehakten Aufgaben Deiner Gruppenmitglieder zufügen... Außerdem wird der Schaden, den Du dem Boss zufügst (sowie gefundene Gegenstände) erst angerechnet, wenn Du das Gasthaus verlässt...", + "danielTextBroken": "Willkommen im Gasthaus ... Willst Du Dich ausruhen, dann besorge ich dir ein schönes Zimmer ... Solange Du dort eingecheckt bist, werden Deine täglichen Aufgaben dir am Ende des Tages keinen Schaden zufügen, Du kannst sie trotzdem noch abhaken ... wenn Du die Kraft dazu hast ...", + "danielText2Broken": "Oh ... Falls Du an einer Boss-Quest teilnimmst, wird Dir der Boss immer noch Schaden für die nicht abgehakten Aufgaben Deiner Gruppenmitglieder zufügen ... Außerdem wird der Schaden, den Du dem Boss zufügst (sowie gefundene Gegenstände) erst angerechnet, wenn Du das Gasthaus verlässt ...", "alexander": "Alexander der Händler", "welcomeMarket": "Willkommen auf dem Marktplatz! Kaufe schwer zu findende Eier und Tränke! Verkaufe Überflüssiges! Gib' wichtige Dienste in Auftrag! Komm' und schau', was wir anzubieten haben.", - "displayItemForGold": "Möchtest du ein <%= itemType %> verkaufen?", - "displayEggForGold": "Möchtest du ein <%= itemType %> Ei verkaufen?", - "displayPotionForGold": "Möchtest du einen <%= itemType %> Trank verkaufen?", + "displayItemForGold": "Möchtest Du ein <%= itemType %> verkaufen?", + "displayEggForGold": "Möchtest Du ein <%= itemType %> Ei verkaufen?", + "displayPotionForGold": "Möchtest Du einen <%= itemType %> Trank verkaufen?", "sellForGold": "Verkauf es für <%= gold %> Gold", "buyGems": "Kaufe Edelsteine", "purchaseGems": "Kaufe Edelsteine", "justin": "Justin", "ian": "Jan", - "ianText": "Willkommen beim Quest Shop! Hier kannst du Questschriftrollen besorgen, um mit deinen Freunden Monster zu bekämpfen. Durchstöbere unsere große Anzahl an Schriftrollen und investiere in die Richtige!", - "ianBrokenText": "Willkommen beim Quest Shop... Hier kannst du Questschriftrollen besorgen, um mit deinen Freunden Monster zu bekämpfen... Durchstöbere unsere große Anzahl an Schriftrollen und investiere in die Richtige...", - "USD": "(EUR)", + "ianText": "Willkommen beim Quest Shop! Hier kannst Du Questschriftrollen besorgen, um mit Deinen Freunden Monster zu bekämpfen. Durchstöbere unsere große Anzahl an Schriftrollen und investiere in die Richtige!", + "ianBrokenText": "Willkommen beim Quest Shop ... Hier kannst Du Questschriftrollen besorgen, um mit Deinen Freunden Monster zu bekämpfen ... Durchstöbere unsere große Anzahl an Schriftrollen und investiere in die Richtige ...", + "USD": "(USD)", "newStuff": "Neuigkeiten", "cool": "Erzähl es mir später", "dismissAlert": "Als gelesen markieren", "donateText1": "Fügt Deinem Konto 20 Edelsteine hinzu. Edelsteine werden benutzt um Spielgegenstände wie Shirts und Frisuren zu kaufen.", "donateText2": "Hilf dabei, Habitica zu unterstützen", - "donateText3": "Als \"open source Projekt\" sind wir auf die Hilfe unsere Benutzer angewiesen. Das Geld, was du für Edelsteine ausgibst, hilft uns dabei unsere Server am Laufen zu halten, ein paar Mitarbeiter zu bezahlen, neue Features zu entwickeln und unseren ehrenamtlichen Programmierern Anreize zu bieten. Vielen Dank für deine Großzügigkeit!", + "donateText3": "Als Open-Source-Projekt sind wir auf die Hilfe unserer Benutzer angewiesen. Das Geld, was Du für Edelsteine ausgibst, hilft uns dabei unsere Server am Laufen zu halten, ein paar Mitarbeiter zu bezahlen, neue Features zu entwickeln und unseren ehrenamtlichen Programmierern Anreize zu bieten. Vielen Dank für Deine Großzügigkeit!", "donationDesc": "20 Edelsteine, Spende an die Entwickler", "payWithCard": "Mit Kreditkarte bezahlen", "payNote": "Achtung: PayPal braucht manchmal viel Zeit. Wir empfehlen, eine Kreditkarte zu benutzen", @@ -35,8 +35,8 @@ "amazonInstructions": "Klicke hier um über Amazon Payments zu zahlen.", "paymentMethods": "Kauf mit", "classGear": "Klassenausrüstung", - "classGearText": "Zuallererst: Keine Panik! Deine alte Ausrüstung ist in Deinem Inventar und Du trägst jetzt Deine Lehrling <%= klass %>-Ausrüstung. Die Ausrüstung Deiner Klasse zu tragen verleiht Dir einen 50% Bonus auf ihre Werte. Aber Du kannst jederzeit zu Deiner alten Ausrüstung zurückwechseln.", - "classStats": "Dies sind die Statuswerte deiner Klasse; sie beeinflussen das Spiel. Jedes Mal, wenn du einen Level aufsteigst, erhälst du einen Punkt, den du einem Statuswert zuordnen kannst. Bewege die Maus über die Statuswerte für weitere Informationen.", + "classGearText": "Zuallererst: Keine Panik! Deine alte Ausrüstung ist in Deinem Inventar und Du trägst jetzt die Lehrlingsausrüstung Deiner neuen Klasse. Die Ausrüstung Deiner Klasse zu tragen verleiht Dir einen 50% Bonus auf ihre Werte. Aber Du kannst jederzeit zu Deiner alten Ausrüstung zurückwechseln.", + "classStats": "Dies sind die Statuswerte Deiner Klasse; sie beeinflussen das Spiel. Jedes Mal, wenn Du einen Level aufsteigst, erhältst Du einen Punkt, den Du einem Statuswert zuordnen kannst. Bewege die Maus über die Statuswerte für weitere Informationen.", "autoAllocate": "Automatische Verteilung", "autoAllocateText": "Falls Du eine automatische Verteilung wählst, werden die Punkte automatisch verteilt, abhängig von den Attributen Deiner Aufgaben, die Du unter Aufgabe > Bearbeiten > Erweitert > Attribute finden kannst. Ein Beispiel: Wenn Du oft im Fitnessstudio bist und die entsprechende Aufgabe auf \"körperlich\" gesetzt ist, bekommst Du automatisch Stärke.", "spells": "Fähigkeiten", @@ -45,45 +45,45 @@ "moreClass": "Für mehr Informationen über das Klassensystem klicke", "tourWelcome": "Willkommen in Habitica! Dies ist Deine Aufgabenliste. Hake eine Aufgabe ab, um weiterzumachen!", "tourExp": "Gut gemacht! Eine Aufgabe abzuhaken bringt Dir Erfahrung und Gold ein!", - "tourDailies": "Diese Spalte ist für tägliche Aufgaben. Um weiterzumachen füge eine Aufgabe hinzu, die Du jeden Tag erledigen möchtest.. Beispiele für tägliche Aufgaben: Das Bett machen, Zahnseide benutzen, Geschäfts-Mails durchschauen", + "tourDailies": "Diese Spalte ist für tägliche Aufgaben. Um weiterzumachen füge eine Aufgabe hinzu, die Du jeden Tag erledigen möchtest. Beispiele für tägliche Aufgaben sind: Das Bett machen, Zahnseide benutzen, Geschäfts-Mails durchschauen", "tourCron": "Großartig! Deine täglichen Aufgaben werden jeden Tag zurückgesetzt.", "tourHP": "Pass auf! Wenn Du eine tägliche Aufgabe nicht bis Mitternacht erfüllt hast, wird sie Dir Schaden zufügen!", "tourHabits": "Diese Spalte ist für gute und für schlechte Gewohnheiten, denen Du mehrmals am Tag nachgehst! Um weiterzumachen, klicke auf das Stift-Icon einer Gewohnheit. So kannst Du die Gewohnheit bearbeiten. Ändere die Namen und klicke anschließend auf das Häkchen, um die Änderung zu speichern.", "tourStats": "Gute Gewohnheiten bringen Erfahrung und Gold! Schlechte Gewohnheiten verringern Deine Lebenspunkte.", "tourGP": "Um weiterzumachen, kaufe das Übungschwert mit dem Gold, das Du gerade verdient hast!", - "tourAvatar": "Passe deinen Avatar an", + "tourAvatar": "Passe Deinen Avatar an", "tourScrollDown": "Gehe sicher, dass Du auch ganz nach unten scrollst um alle Optionen zu sehen! Klicke erneut auf Deinen Avatar um zur Aufgabenseite zurückzukehren.", "tourMuchMore": "Wenn Du Aufgaben erledigt hast, kannst Du mit Freunden eine Gruppe gründen, Dich in den Gilden nach Gespräche über verschiedene Themen umsehen, Wettbewerben beitreten und vieles mehr!", "tourStatsPage": "Auf dieser Seite kannst Du Deine Statuswerte im Auge behalten. Erreiche neue Erfolge indem Du die aufgelisteten Aufgaben erledigst.", - "tourTavernPage": "Willkommen im Gasthaus, einem Gesprächsraum für alle Altersklassen! Falls du krank bist oder verreist, kannst du verhindern, dass du Leben durch nicht erledigte tägliche Aufgaben verlierst, indem du auf \"Im Gasthaus erholen\" klickst. Komm herein und sage Hallo!", + "tourTavernPage": "Willkommen im Gasthaus, einem Gesprächsraum für alle Altersklassen! Falls Du krank bist oder verreist, kannst Du verhindern, dass Du Leben durch nicht erledigte tägliche Aufgaben verlierst, indem Du auf \"Im Gasthaus erholen\" klickst. Komm herein und sage Hallo!", "tourPartyPage": "Deine Gruppe wird Dir dabei helfen weiterhin verantwortungsbewusst Deine Aufgaben zu erledigen. Lade Freunde ein um neue Quest Rollen freizuschalten!", - "tourGuildsPage": "Gilden sind Chatgruppen mit einem gemeinsamen Interesse. Sie sind von Spielern für Spieler erstellt worden. Durchblättere die Liste und tritt den Gilden bei, die dich interessieren. Teste die bekannte Newbies Gilde, in der jeder Fragen über Habitica stellen kann!", - "tourChallengesPage": "Wettbewerbe sind themenbezogene Aufgabenlisten, welche von Benutzern erstellt wurden! Wenn du an einem Wettbewerb teilnimmst, werden die Aufgaben deinem Konto hinzugefügt. Trete gegen andere Benutzer an, um Edelsteine zu gewinnen!", + "tourGuildsPage": "Gilden sind Chatgruppen mit einem gemeinsamen Interesse. Sie sind von Spielern für Spieler erstellt worden. Durchblättere die Liste und tritt den Gilden bei, die Dich interessieren. Teste die bekannte Newbies Gilde, in der jeder Fragen über Habitica stellen kann!", + "tourChallengesPage": "Wettbewerbe sind themenbezogene Aufgabenlisten, welche von Benutzern erstellt wurden! Wenn Du an einem Wettbewerb teilnimmst, werden die Aufgaben Deinem Konto hinzugefügt. Trete gegen andere Benutzer an, um Edelsteine zu gewinnen!", "tourMarketPage": "Sobald Du Level 4 erreichst, erhältst Du manchmal als zufällige Belohnung für erledigte Aufgaben Eier und Schlüpftränke. Diese erscheinen hier - nutze sie um Haustiere auszubrüten. Du kannst außerdem Gegenstände vom Marktplatz kaufen.", - "tourHallPage": "Willkommen in der Halle der Helden, in der Mitwirkende an Habitica geehrt werden. Durch Code, Design, Musik, Text oder einfach durch Hilfsbereitschaft, haben sie Edelsteine, exklusive Ausrüstungen und angesehene Titel verdient. Auch du kannst bei Habitica mitwirken!", - "tourPetsPage": "Dies ist der Stall! Ab Level 4 kannst du Haustiere schlüpfen lassen indem du Eier und Tränke verwendest. Wenn du ein Haustier im Marktplatz ausgebrütet hast, wird es hier erscheinen! Klicke auf das Bild eines Haustieres, um es deinem Avatar hinzuzufügen. Füttere die Tiere mit dem Essen, das du ab Level 4 findest und sie werden zu mächtigen Reittieren heranwachsen.", - "tourMountsPage": "Hast du ein Haustier genug gefüttert, wird es sich zu einem Reittier weiterentwickeln und hier erscheinen. (Haustiere, Reittiere und Futter stehen nach Level 4 zur Verfügung.) Klicke auf ein Reittier um aufzusatteln!", - "tourEquipmentPage": "Hier wird deine Ausrüstung gelagert! Deine Kampfausrüstung beeinflusst deine Statuswerte. Wenn du eine andere Ausrüstung an deinem Avatar zeigen willst ohne deine Statuswerte zu verändern, klicke auf \"Verkleidung tragen\".", + "tourHallPage": "Willkommen in der Halle der Helden, in der Mitwirkende an Habitica geehrt werden. Durch Code, Design, Musik, Text oder einfach durch Hilfsbereitschaft, haben sie Edelsteine, exklusive Ausrüstungen und angesehene Titel verdient. Auch Du kannst bei Habitica mitwirken!", + "tourPetsPage": "Dies ist der Stall! Ab Level 4 kannst Du Haustiere schlüpfen lassen indem Du Eier und Tränke verwendest. Wenn Du ein Haustier im Marktplatz ausgebrütet hast, wird es hier erscheinen! Klicke auf das Bild eines Haustieres, um es Deinem Avatar hinzuzufügen. Füttere die Tiere mit dem Essen, das Du ab Level 4 findest und sie werden zu mächtigen Reittieren heranwachsen.", + "tourMountsPage": "Hast Du ein Haustier genug gefüttert, wird es sich zu einem Reittier weiterentwickeln und hier erscheinen. (Haustiere, Reittiere und Futter stehen nach Level 4 zur Verfügung.) Klicke auf ein Reittier um aufzusatteln!", + "tourEquipmentPage": "Hier wird Deine Ausrüstung gelagert! Deine Kampfausrüstung beeinflusst Deine Statuswerte. Wenn Du eine andere Ausrüstung an Deinem Avatar zeigen willst ohne Deine Statuswerte zu verändern, klicke auf \"Verkleidung tragen\".", "tourOkay": "Okay!", "tourAwesome": "Großartig!", "tourSplendid": "Bestens!", "tourNifty": "Raffiniert!", "tourAvatarProceed": "Zeige mir meine Aufgaben!", - "tourToDosBrief": "To-Do Liste", - "tourDailiesBrief": "Tägliche Aufgaben", + "tourToDosBrief": "To-Do Liste", + "tourDailiesBrief": "Tägliche Aufgaben", "tourDailiesProceed": "Ich werde vorsichtig sein!", "tourHabitsBrief": "Gute & Schlechte Gewohnheiten", "tourHabitsProceed": "Das leuchtet ein!", - "tourRewardsBrief": "Liste der Belohnungen", + "tourRewardsBrief": "Liste der Belohnungen", "tourRewardsProceed": "Das war's!", "welcomeToHabit": "Willkommen in Habitica!", "welcome1": "Erstelle einen einfachen Avatar.", - "welcome1notes": "Der Avatar repräsentiert dich und deinen Fortschritt.", - "welcome2": "Erstelle deine Aufgaben.", - "welcome2notes": "Wie gut du deine Aufgaben im echten Leben erledigst, entscheidet wie gut du im Spiel bist! ", - "welcome3": "Mache Fortschritte in deinem Leben und dem Spiel!", - "welcome3notes": "Während du dein Leben verbesserst, steigt dein Avatar im Level auf und schaltet damit Haustiere, Quests, Ausrüstung und noch mehr frei! ", - "welcome4": "Vermeide schlechte Gewohnheiten, die Lebenspunkte (HP) abziehen oder dein Avatar wird sterben!", - "welcome5": "Jetzt kannst du deinen Avatar anpassen und deine Aufgaben einrichten...", + "welcome1notes": "Der Avatar repräsentiert Dich und Deinen Fortschritt.", + "welcome2": "Erstelle Deine Aufgaben.", + "welcome2notes": "Wie gut Du Deine Aufgaben im echten Leben erledigst, entscheidet wie gut Du im Spiel bist!", + "welcome3": "Mache Fortschritte in Deinem Leben und dem Spiel!", + "welcome3notes": "Während Du Dein Leben verbesserst, steigt Dein Avatar im Level auf und schaltet damit Haustiere, Quests, Ausrüstung und noch mehr frei!", + "welcome4": "Vermeide schlechte Gewohnheiten, die Lebenspunkte (HP) abziehen oder Dein Avatar wird sterben!", + "welcome5": "Jetzt kannst Du Deinen Avatar anpassen und Deine Aufgaben einrichten ...", "imReady": "Betrete Habitica" } \ No newline at end of file diff --git a/common/locales/de/pets.json b/common/locales/de/pets.json index 6a307fee52..ca45b5444e 100644 --- a/common/locales/de/pets.json +++ b/common/locales/de/pets.json @@ -1,9 +1,9 @@ { "pets": "Haustiere", "petsFound": "Haustiere gefunden", - "magicPets": "Magische Tiere", + "magicPets": "Magische Haustiere", "rarePets": "Seltene Haustiere", - "questPets": "Quest Haustiere", + "questPets": "Quest-Haustiere", "mounts": "Reittiere", "mountsTamed": "Reittiere gezähmt", "questMounts": "Quest Reittiere", @@ -19,6 +19,7 @@ "orca": "Schwertwal", "royalPurpleGryphon": "Königlicher purpurfarbener Greif", "phoenix": "Phönix", + "bumblebee": "Bumblebee", "rarePetPop1": "Klicke auf den goldenen Pfotenabdruck, um zu sehen, wie Du diese seltenen Haustiere erhalten kannst, indem Du bei Habitica mitwirkst!", "rarePetPop2": "Wie erhält man dieses Haustier?", "potion": "<%= potionType %> Trank", @@ -34,17 +35,17 @@ "foodText": "Futter", "food": "Futter und magische Sättel", "noFood": "Du hast im Moment weder Futter noch magische Sättel.", - "dropsExplanation": "Erhalte diese Gegenständer schneller mit Edelsteinen, wenn du nicht warten möchtest, bis du sie als Beute für erfüllte Aufgaben erhälst. Erfahre mehr über das Beutesystem.", - "premiumPotionNoDropExplanation": "Magische Schlüpftränke können nicht auf Eier, die du durch Quests erhalten hast, angewendet werden. Magische Schlüpftränke können nur gekauft und nicht durch zufällige Beute erworben werden. ", + "dropsExplanation": "Erhalte diese Gegenständer schneller mit Edelsteinen, wenn Du nicht warten möchtest, bis Du sie als Beute für erfüllte Aufgaben erhälst. Erfahre mehr über das Beutesystem.", + "premiumPotionNoDropExplanation": "Magische Schlüpftränke können nicht auf Eier, die Du durch Quests erhalten hast, angewendet werden. Magische Schlüpftränke können nur gekauft und nicht durch zufällige Beute erworben werden.", "beastMasterProgress": "\"Meister aller Bestien\" Fortschritt", "stableBeastMasterProgress": "Meister aller Bestien Forstschritt: <%= number %> Haustiere gefunden", "beastAchievement": "Du hast den \"Meister aller Bestien\" Erfolg dafür erhalten, dass Du alle Haustiere gesammelt hast!", "beastMasterName": "Meister aller Bestien", - "beastMasterText": "Has found all 90 pets (incredibly difficult, congratulate this user!)", + "beastMasterText": "Hat alle 90 Haustiere gesammelt (unglaublich schwer, gratuliere diesem Spieler!)", "beastMasterText2": "und hat seine Haustiere insgesamt <%= count %> mal freigelassen", "mountMasterProgress": "\"Meister aller Reittiere\" Fortschritt", - "stableMountMasterProgress": "Herr der Reittiere Fortschritt: <%= number %>Reittiere gezähmt", - "mountAchievement": "Du hast die \"Meister aller Reittiere\" Auszeichnung erhalten, da Du alle Reittiere gezähmt hast!", + "stableMountMasterProgress": "Meister aller Bestien Fortschritt: <%= number %> Haustiere gefunden", + "mountAchievement": "Du hast den Erfolg \"Meister aller Reittiere\" erhalten, da Du alle Reittiere gezähmt hast!", "mountMasterName": "Meister aller Reittiere", "mountMasterText": "Hat alle 90 Reittiere gezähmt (noch viel schwieriger, gratuliere diesem Spieler!)", "mountMasterText2": "und hat alle 90 seiner Reittiere insgesamt <%= count %> mal freigelassen", @@ -52,31 +53,31 @@ "triadBingoName": "Triaden Bingo", "triadBingoText": "Hat alle 90 Haustiere gesammelt, alle 90 Reittiere gezähmt, und WIEDER alle 90 Haustiere gefunden (WIE HAST DU DAS GESCHAFFT?!)", "triadBingoText2": "und hat alle Tiere aus seinem Stall <%= count %> mal freigelassen", - "triadBingoAchievement": "Du hast Dir den \"Triaden Bingo\" Erfolg verdient, denn du hast alle Haustiere gefunden, alle Reittiere gezähmt und wieder alle Haustiere gefunden!", + "triadBingoAchievement": "Du hast den Erfolg \"Triaden Bingo\" erhalten, da Du alle Haustiere gefunden, alle Reittiere gezähmt und wieder alle Haustiere gefunden hast!", "dropsEnabled": "Beutesystem Aktiviert!", "itemDrop": "Du hast einen Gegenstand gefunden!", - "firstDrop": "Du hast das Beutesystem freigeschaltet! Ab jetzt hast du jedes mal wenn Du eine Aufgabe abhakst eine kleine Chance einen Gegenstand zu finden, wie zum Beispiel Eier, Schlüpftränke und Futter! Du hast eben ein <%= eggText %> Ei gefunden! <%= eggNotes %>", - "useGems": "Du willst ein bestimmtes Haustier haben, möchtest aber nicht länger warten, bis Du die richtigen Gegenstände gefunden hast? Mit Edelsteinen kannst du im Inventar > Marktplatz die entsprechenden Gegenstände kaufen!", - "hatchAPot": "Willst du ein <%= potion %> <%= egg %> ausbrüten?", + "firstDrop": "Du hast das Beutesystem freigeschaltet! Ab jetzt hast Du jedes mal wenn Du eine Aufgabe abhakst eine kleine Chance einen Gegenstand zu finden, wie zum Beispiel Eier, Schlüpftränke und Futter! Du hast eben ein <%= eggText %> Ei gefunden! <%= eggNotes %>", + "useGems": "Du willst ein bestimmtes Haustier haben, möchtest aber nicht länger warten, bis Du die richtigen Gegenstände gefunden hast? Mit Edelsteinen kannst Du im Inventar > Marktplatz die entsprechenden Gegenstände kaufen!", + "hatchAPot": "Willst Du ein <%= potion %> <%= egg %> ausbrüten?", "hatchedPet": "Du hast ein <%= potion %> <%= egg %> ausgebrütet!", "displayNow": "Jetzt anzeigen", "displayLater": "Später anzeigen", - "earnedCompanion": "Durch deine Produktivität hast du einen neuen Begleiter erhalten. Füttere ihn, damit er wächst.", + "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": "Du hast einen <%= pet %> aufgezogen!", - "earnedSteed": "Durch das Erfüllen deiner Aufgaben hast du ein treues Reittier verdient!", + "earnedSteed": "Durch das Erfüllen Deiner Aufgaben hast Du ein treues Reittier verdient!", "rideNow": "Jetzt reiten", "rideLater": "Später reiten", "petName": "<%= potion %> <%= egg %>", "mountName": "<%= potion %> <%= mount %>", "petKeyName": "Schlüssel zu den Zwingern.", - "petKeyPop": "Lasse deine Haustiere auf eigene Faust Habitia erkunden. Lasse sie frei, sodass sie ihr eigenes Abenteuer beginnen können und stelle dich der Herausforderung \"Meister aller Bestien\" erneut!", - "petKeyBegin": "Schlüssel zu den Zwingern: Stelle dich <%= title %> erneut!", + "petKeyPop": "Lasse Deine Haustiere auf eigene Faust Habitica erkunden. Lasse sie frei, sodass sie ihr eigenes Abenteuer beginnen können und stelle Dich der Herausforderung \"Meister aller Bestien\" erneut!", + "petKeyBegin": "Schlüssel zu den Zwingern: Stelle Dich <%= title %> erneut!", "petKeyInfo": "Vermisst Du die Spannung des Haustieresammelns? Jetzt kannst Du Deine Haustiere freilassen um den gefundenen Dingen wieder einen Zweck zu geben!", - "petKeyInfo2": "Benutze den Schlüssel zu den Zwingern um alle deinen normalen Haustiere und/oder Reittiere zu resetten. (Seltene Haus- und Reittiere, sowie Haus- und Reittiere, die Du nur durch Quests bekommen kannst, werden hiervon nicht beeinflusst.)", - "petKeyInfo3": "Es gibt drei Schlüssel zu den Zwingern: \"Lasse nur Haustiere frei\" (4 Edelsteine), \"Lasse nur Reittiere frei\" (4 Edelsteine) oder \"Lasse Haus- und Reittiere frei\" (6 Edelsteine). \nDie Benutzung der Schlüssel lässt Dich die \"Meister aller Bestien\" und \"Meister aller Reittiere\" Erfolge stapeln. Der \"Triaden Bingo\" Erfolg ist nur stapelbar, wenn Du den Schlüssel \"Lasse Haus- und Reittiere frei\" benutzt und außerdem alle 90 Haustiere ein zweites mal gefunden hast. \nZeige der Welt, dass Du ein Meister des Sammelns bist! Aber Vorsicht! Wenn Du erstmal die Türen zu Stall oder Zwinger mit einem Schlüssel geöffnet hast, wirst Du Deine Tiere nicht zurückkriegen, bis Du sie alle wieder gesammelt hast...", - "petKeyInfo4": "Es gibt drei verschiedene Zwingerschlüssel: Lasse Deine Haustiere frei (4 Edelsteine), lasse Deine Reittiere frei (4 Edelsteine), oder lasse Deine Haus- und Reittiere frei. Durch die Zwingerschlüssel kannst Du die Bestienmeister und Reittiermeister Belohnungen mehrfach erlangen. Die Triaden Bingo Belohnung kannst Du nur mehrfach erlangen, wenn Du den dritten Zwingerschlüssel benutzt und alle 90 Haustiere ein zweites Mal wiedergefunden hast. Zeige der Welt, dass Du ein Meistersammler bist! Aber sei vorsichtig, denn wenn Du die Zwingertüren einmal geöffnet hast, bekommst Du Deine Tiere nicht zurück, ohne sie mühsam erneut zu sammeln...", + "petKeyInfo2": "Benutze den Schlüssel zu den Zwingern um alle Deinen normalen Haustiere und/oder Reittiere zu resetten. (Seltene Haus- und Reittiere, sowie Haus- und Reittiere, die Du nur durch Quests bekommen kannst, werden hiervon nicht beeinflusst.)", + "petKeyInfo3": "Es gibt drei Schlüssel zu den Zwingern: \"Lasse nur Haustiere frei\" (4 Edelsteine), \"Lasse nur Reittiere frei\" (4 Edelsteine) oder \"Lasse Haus- und Reittiere frei\" (6 Edelsteine). \nDie Benutzung der Schlüssel lässt Dich die Erfolge \"Meister aller Bestien\" und \"Meister aller Reittiere\" stapeln. Der Erfolg \"Triaden Bingo\" ist nur stapelbar, wenn Du den Schlüssel \"Lasse Haus- und Reittiere frei\" benutzt und außerdem alle 90 Haustiere ein zweites mal gefunden hast. \nZeige der Welt, dass Du ein Meister des Sammelns bist! Aber Vorsicht! Wenn Du erstmal die Türen zu Stall oder Zwinger mit einem Schlüssel geöffnet hast, wirst Du Deine Tiere nicht zurückkriegen, bis Du sie alle wieder gesammelt hast ...", + "petKeyInfo4": "Es gibt drei verschiedene Zwingerschlüssel: Lasse Deine Haustiere frei (4 Edelsteine), lasse Deine Reittiere frei (4 Edelsteine), oder lasse Deine Haus- und Reittiere frei. Durch die Zwingerschlüssel kannst Du die Bestienmeister und Reittiermeister Belohnungen mehrfach erlangen. Die Triaden Bingo Belohnung kannst Du nur mehrfach erlangen, wenn Du den dritten Zwingerschlüssel benutzt und alle 90 Haustiere ein zweites Mal wiedergefunden hast. Zeige der Welt, dass Du ein Meistersammler bist! Aber sei vorsichtig, denn wenn Du die Zwingertüren einmal geöffnet hast, bekommst Du Deine Tiere nicht zurück, ohne sie mühsam erneut zu sammeln ...", "petKeyPets": "Lass' meine Haustiere frei", "petKeyMounts": "Lasse meine Reittiere frei", "petKeyBoth": "Lasse meine Haus- und meine Reittiere frei", diff --git a/common/locales/de/quests.json b/common/locales/de/quests.json index 80038272bf..12643d914f 100644 --- a/common/locales/de/quests.json +++ b/common/locales/de/quests.json @@ -4,18 +4,18 @@ "whereAreMyQuests": "Quests sind jetzt auf einer eigenen Seite verfügbar! Du findest sie unter Inventar -> Quests!", "yourQuests": "Deine Quests", "questsForSale": "Kaufbare Quests", - "petQuests": "Haus- und Reittier Quests", + "petQuests": "Haustier- und Reittier-Quests", "unlockableQuests": "Freischaltbare Quests", "goldQuests": "Mit Gold käufliche Quests", "questDetails": "Quest-Details", "invitations": "Einladungen", "completed": "Erfüllt!", "youReceived": "Du hast folgendes erhalten:", - "dropQuestCongrats": "Gratulation zum Erwerb dieser Questschriftrolle! Du kannst nun deine Gruppe dazu einladen die Quest zu starten oder du kommst irgendwann darauf zurück unter Inventar > Quests.", - "questSend": "Ein Klick auf \"Einladen\" sendet eine Einladung an Deine Gruppenmitglieder. Sobald alle Mitglieder diese angenommen oder abgelehnt haben, beginnt die Quest. Der Status ist unter Optionen > Soziales > Gruppe einsehbar.", - "questSendBroken": "Ein Klick auf \"Einladen\" sendet eine Einladung an Deine Gruppenmitglieder. Sobald alle Mitglieder diese angenommen oder abgelehnt haben, beginnt die Quest ... Der Status ist unter Optionen > Soziales > Gruppe einsehbar.", + "dropQuestCongrats": "Gratulation zum Erwerb dieser Questschriftrolle! Du kannst nun Deine Gruppe dazu einladen die Quest zu starten oder Du kommst irgendwann darauf zurück unter Inventar > Quests.", + "questSend": "Indem Du auf \"Einladen\" klickst sendest Du eine Einladung an Deine Gruppenmitglieder. Sobald alle Mitglieder diese angenommen oder abgelehnt haben beginnt die Quest. Der Status ist unter Soziales > Gruppe zu finden.", + "questSendBroken": "Indem Du auf \"Einladen\" klickst sendest Du eine Einladung an Deine Gruppenmitglieder... Sobald alle Mitglieder diese angenommen oder abgelehnt haben beginnt die Quest... Der Status ist unter Soziales > Gruppe zu finden...", "inviteParty": "Lade Gruppe zur Quest ein", - "questInvitation": "Quest Einladung:", + "questInvitation": "Quest-Einladung:", "questInvitationTitle": "Quest-Einladung", "questInvitationInfo": "Einladung zu der Quest <%= quest %>", "askLater": "Später fragen", @@ -23,35 +23,35 @@ "buyQuest": "Quest kaufen", "accepted": "Angenommen", "rejected": "Abgelehnt", - "pending": "Überlegt noch", + "pending": "Ausstehend", "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": "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...", + "questStartBroken": "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?), kann der Quest-Besitzer die Quest ohne sie starten indem er auf \"Beginnen\" klickt… Der Quest-Besitzer kann die Quest auch abbrechen und die Questschriftrolle zurückerhalten indem er auf \"Abbrechen\" klickt ...", "begin": "Beginnen", "bossHP": "Boss Lebenspunkte", "bossStrength": "Boss Stärke", - "rage": "Wut", + "rage": "Zorn", "collect": "Sammle ein", "collected": "Gesammelt", "collectionItems": "<%= number %> <%= items %>", "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).", + "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": "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": "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...", + "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, sorge deshalb 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 Rage Bar. When the Rage 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": "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...", - "bossColl2Broken": "Nur Mitglieder können Gegenstände sammeln und sich die Quest-Beute teilen ...", + "bossColl1Broken": "Um Gegenstände zu sammeln müssen positive Aufgaben erledigt werden... Quest-Gegenstände erhält man genau wie normale Gegenstände; jedoch kannst Du erst am nächsten Tag sehen wie viele Du gesammelt hast, da erst dann alle zusammengezählt und dem Quest-Fortschritt hinzugefügt werden...", + "bossColl2Broken": "Nur Teilnehmer können Gegenstände sammeln und erhalten ihren Anteil an der Beute...", "abort": "Abbrechen", "leaveQuest": "Quest verlassen", - "sureLeave": "Willst Du die aktive Quest wirklich verlassen? Dein kompletter Questfortschritt wird verlorengehen.", + "sureLeave": "Willst Du die aktive Quest wirklich verlassen? Dein kompletter Questfortschritt wird verloren gehen.", "questOwner": "Quest-Besitzer", - "questOwnerNotInPendingQuest": "Der Quest-Besitzer hat die Gruppe verlassen und kann die Quest nicht mehr starten. Es wird empfohlen, dass du sie jetzt abbrichst. Der Quest-Besitzer wird die Questrolle zurück bekommen.", - "questOwnerNotInRunningQuest": "Der Quest-Besitzer hat die Quest verlassen. Wenn du willst, kannst du die Quest abbrechen. Du kannst sie auch weiterlaufen lassen und alle übrigen Teilnehmer werden die Questbelohnungen erhalten wenn sie die Quest geschafft haben.", - "questOwnerNotInPendingQuestParty": "Der Quest-Besitzer hat die Gruppe verlassen und kann die Quest nicht mehr starten. Es wird empfohlen, dass du sie jetzt abbrichst. Der Quest-Besitzer wird die Questrolle zurück bekommen.", - "questOwnerNotInRunningQuestParty": "Der Quest-Besitzer hat die Gruppe verlassen. Wenn Du willst, kannst du die Quest abbrechen, aber du kannst sie auch weiterlaufen lassen und alle übrigen Teilnehmer werden die Questbelohnungen erhalten wenn sie die Quest geschafft haben.", + "questOwnerNotInPendingQuest": "Der Quest-Besitzer hat die Gruppe verlassen und kann die Quest nicht mehr starten. Es wird empfohlen, dass Du sie jetzt abbrichst. Der Quest-Besitzer wird die Questrolle zurück bekommen.", + "questOwnerNotInRunningQuest": "Der Quest-Besitzer hat die Quest verlassen. Wenn Du willst, kannst Du die Quest abbrechen. Du kannst sie auch weiterlaufen lassen und alle übrigen Teilnehmer werden die Questbelohnungen erhalten wenn sie die Quest geschafft haben.", + "questOwnerNotInPendingQuestParty": "Der Quest-Besitzer hat die Gruppe verlassen und kann die Quest nicht mehr starten. Es wird empfohlen, dass Du sie jetzt abbrichst. Der Quest-Besitzer wird die Questrolle zurück bekommen.", + "questOwnerNotInRunningQuestParty": "Der Quest-Besitzer hat die Gruppe verlassen. Wenn Du willst, kannst Du die Quest abbrechen, aber Du kannst sie auch weiterlaufen lassen und alle übrigen Teilnehmer werden die Questbelohnungen erhalten wenn sie die Quest geschafft haben.", "questParticipants": "Teilnehmer", "scrolls": "Quest Rollen", "noScrolls": "Du hast im Moment keine Quest Rollen.", @@ -62,21 +62,21 @@ "alreadyEarnedQuestReward": "Du hast diese Quest bereits durch Abschließen der Quest <%= priorQuest %> freigeschaltet.", "completedQuests": "Hat die folgenden Quests abgeschlossen", "mustComplete": "Du musst vorher das <%= quest %> Quest abschließen.", - "mustLevel": "Du musst Level <%= level %> sein, um diese Quest zu starten.", + "mustLevel": "Du musst Level <%= level %> haben, um diese Quest zu starten.", "mustLvlQuest": "Du musst Level <%= level %> sein um dieses Quest zu erwerben!", - "mustInviteFriend": "Um diese Quest freizuschalten, musst du einen Freund in deine Gruppe einladen. Jetzt jemanden einladen?", - "unlockByQuesting": "Um diese Quest freizuschalten, schließe <%= title %> ab.", - "sureCancel": "Bist Du sicher, dass du diese Quest abbrechen willst? Alle akzeptierten Einladungen werden verloren gehen. Der Quest-Besitzer wird die Questrolle zurück bekommen.", - "sureAbort": "Bist du sicher, dass du diese Mission abbrechen willst? Das wird sie für alle in deiner Gruppe abbrechen und jeder Fortschritt wird verloren gehen. Die Questrolle wird dem Quest-Besitzer zurückgegeben.", + "mustInviteFriend": "Um diese Quest freizuschalten musst Du einen Freund in Deine Gruppe einladen. Willst Du jetzt jemanden einladen?", + "unlockByQuesting": "Um diese Quest freizuschalten musst Du erst <%= title %> abschließen.", + "sureCancel": "Bist Du sicher, dass Du diese Quest abbrechen willst? Alle akzeptierten Einladungen werden verloren gehen. Der Quest-Besitzer wird die Questrolle zurück bekommen.", + "sureAbort": "Bist Du sicher, dass Du diese Mission abbrechen willst? Das wird sie für alle in Deiner Gruppe abbrechen und jeder Fortschritt wird verloren gehen. Die Questrolle wird dem Quest-Besitzer zurückgegeben.", "doubleSureAbort": "Bist Du wirklich wirklich sicher? Sei' ganz sicher, dass sie Dich nicht für immer hassen werden!", "questWarning": "Wenn neue Mitglieder der Gruppe beitreten, bevor das Quest anfängt, werden auch sie eine Einladung bekommen. Aber sobald das Quest angefangen hat, können neue Gruppenmitglieder dem Quest nicht mehr beitreten.", - "questWarningBroken": "Wenn neue Mitglieder der Gruppe beitreten, bevor die Quest beginnt, werden auch sie eine Einladung erhalten ... Aber sobald die Quest angefangen hat, können der Quest keine neuen Gruppenmitglieder mehr beitreten ...", + "questWarningBroken": "Wenn neue Mitglieder der Gruppe beitreten bevor die Quest beginnt werden auch sie eine Einladung erhalten... Aber sobald die Quest angefangen hat können ihr keine neuen Gruppenmitglieder mehr beitreten...", "bossRageTitle": "Zorn", "bossRageDescription": "Wenn sich dieser Balken füllt, wird der Boss eine Spezialattacke ausführen", "startAQuest": "STARTE EINE QUEST", "startQuest": "Quest starten", "whichQuestStart": "Welche Quest willst Du starten?", "getMoreQuests": "Erhalte mehr Quests", - "unlockedAQuest": "Du hast ein Quest freigeschaltet!", + "unlockedAQuest": "Du hast eine 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 75d1588826..b362499921 100644 --- a/common/locales/de/questscontent.json +++ b/common/locales/de/questscontent.json @@ -1,29 +1,29 @@ { "questEvilSantaText": "Wildernder Weihnachtswichtel", - "questEvilSantaNotes": "Tief im Eisfeld hörst du gequältes brüllen. Du folgst dem knurren - unterstrichen von einem Schnattern - zu einer Waldlichtung auf welcher du einen ausgewachsenen Polarbären siehst. Sie kämpft um ihr Leben, gefesselt und eingesperrt. Oben auf dem Käfig tanzt ein bösartiger kleiner Kobold der kostümiert wie ein Schiffbrüchiger ist. Bezwinge Trapper Santa und rette das Tier!", - "questEvilSantaCompletion": "Vor Wut kreischend hoppst der wildernde Weihnachtswichtel in den dunklen Wald davon. Die Bärin versucht Euch mit Brüllen und Knurren etwas zu verstehen zu geben. Ihr nehmt sie mit zurück zu den Ställen, wo Matt Boch der Tierflüsterer der Bärin zuhört. Mit Schrecken vernehmt Ihr, dass die Bärin ein Junges hat! Als sie gefangen genommen wurde, lief es in die Eissteppe davon. Helft ihr das Junge zu finden!", + "questEvilSantaNotes": "Tief im Eisfeld hörst Du gequältes Brüllen. Du folgst dem Knurren - unterstrichen von einem Schnattern - zu einer Waldlichtung, auf welcher Du eine ausgewachsene Polarbärin siehst. Sie kämpft um ihr Leben, gefesselt und eingesperrt. Oben auf dem Käfig tanzt ein bösartiger kleiner Kobold, der kostümiert wie ein Schiffbrüchiger ist. Bezwinge den Wildernden Weihnachtswichtel und rette das Tier!", + "questEvilSantaCompletion": "Vor Wut kreischend springt der Wildernde Weihnachtswichtel in den dunklen Wald davon. Die Bärin versucht dir mit Brüllen und Knurren etwas zu verstehen zu geben. Du nimmst sie mit zurück zu den Ställen, wo Matt Boch, der Tierflüsterer, der Bärin zuhört. Mit Schrecken vernimmst Du, dass die Bärin ein Junges hat! Als sie gefangen genommen wurde, lief es in die Eissteppe davon. Hilf ihr, das Junge zu finden!", "questEvilSantaBoss": "Wildernder Weihnachtswichtel", "questEvilSantaDropBearCubPolarMount": "Eisbär (Reittier)", "questEvilSanta2Text": "Finde das Jungtier", - "questEvilSanta2Notes": "Mama Bärs Jungtier ist geflohen, als sie vom wilderndem Weihnachtswichtel gefangen wurde. Am Waldesrand hält sie verzweifelt ihre Nase in die Luft. Du hörst Zweige knacken und Schneestapfen in der Tiefe des stillen Waldes. Pfotenabdrücke! Mama Bär und Du laufen los um der Spur zu folgen. Finde alle Spuren und gebrochenen Zweige um das Jungtier aufzuspüren!", - "questEvilSanta2Completion": "Du hast das Jungtier gefunden! Es wird dir für immer Gesellschaft leisten.", + "questEvilSanta2Notes": "Mama Bärs Jungtier ist geflohen, als sie vom Wilderndem Weihnachtswichtel gefangen wurde. Am Waldesrand hält sie verzweifelt ihre Nase in die Luft. Du hörst Zweige knacken und Schneestapfen in der Tiefe des stillen Waldes. Pfotenabdrücke! Mama Bär und Du laufen los, um der Spur zu folgen. Finde alle Spuren und gebrochenen Zweige, um das Jungtier aufzuspüren!", + "questEvilSanta2Completion": "Du hast das Jungtier gefunden! Es wird Dir für immer Gesellschaft leisten.", "questEvilSanta2CollectTracks": "Spuren", "questEvilSanta2CollectBranches": "Zerbrochene Zweige", "questEvilSanta2DropBearCubPolarPet": "Eisbär (Haustier)", "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!\"", + "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": "Feuergreif", "questGryphonDropGryphonEgg": "Greif (Ei)", "questGryphonUnlockText": "Ermöglicht den Kauf von Greifeneiern auf dem Marktplatz", "questHedgehogText": "Das Igelmonster", "questHedgehogNotes": "Igel gehören einer kuriosen Gruppe von Tieren an. Zwar sind sie die liebevollsten Haustiere, die sich ein Habiteer wünschen kann, aber es gibt ein Gerücht wonach sie, wenn man sie nach Mitternacht mit Milch füttert, ein wenig gereizt werden. Und fünfzig mal größer. Und inventrix hat genau das gemacht - Hoppla.", - "questHedgehogCompletion": "Eure Gruppe hat das Igelweibchen beruhigt! Es hoppelt zurück zu seinen Eiern, nachdem es auf seine normale Größe geschrumpft ist. Quietschend kehrt es mit einigen Eiern zurück und stupst sie vorsichtig in eure Richtung. Hoffentlich mögen Igel Milch!", + "questHedgehogCompletion": "Eure Gruppe hat das Igelweibchen beruhigt! Es hoppelt zurück zu seinen Eiern, nachdem es auf seine normale Größe geschrumpft ist. Quietschend kehrt es mit einigen Eiern zurück und stupst sie vorsichtig in eure Richtung. Hoffentlich mögen Igel Milch!", "questHedgehogBoss": "Igelmonster", "questHedgehogDropHedgehogEgg": "Igel (Ei)", "questHedgehogUnlockText": "Ermöglicht den Kauf von Igeleiern auf dem Marktplatz", "questGhostStagText": "Die Seele des Frühlings", - "questGhostStagNotes": "Ahh, Frühling. Die Zeit des Jahres, wenn die Landschaft wieder Farbe annimmt. Hinfort sind die Kälte, Schneeberge und Winter. Wo einst Frost war blüht jetzt neues Leben. Die Bäume schmücken sich mit sattem Grün, das Gras kehrt zu seiner gesunden Farbe zurück, ein wahrer Regenbogen von Blumen breitet sich über die Wiesen und Felder und ein mystischer weißer Nebel legt sich übers Land! ... Moment... Mystischer Nebel? \"Oh nein\", lässt lnventrix verlauten, \"Es scheint als wäre eine Art Geist die Ursache für diesen Nebel. Oh, und derselbe scheint gerade auf Dich loszugehen.\"", + "questGhostStagNotes": "Ahh, Frühling. Die Zeit des Jahres, wenn die Landschaft wieder Farbe annimmt. Hinfort sind die Kälte, Schneeberge und Winter. Wo einst Frost war blüht jetzt neues Leben. Die Bäume schmücken sich mit sattem Grün, das Gras kehrt zu seiner gesunden Farbe zurück, ein wahrer Regenbogen von Blumen breitet sich über die Wiesen und Felder und ein mystischer weißer Nebel legt sich übers Land! ... Moment ... Mystischer Nebel? \"Oh nein\", lässt lnventrix verlauten, \"Es scheint als wäre eine Art Geist die Ursache für diesen Nebel. Oh, und derselbe scheint gerade auf Dich loszugehen.\"", "questGhostStagCompletion": "Der Geist, scheinbar unverwundet, senkt seine Nase bis zur Erde hinab. Eine ruhige Stimme umfängt Deine Gruppe. \"Ich entschuldige mich für mein Benehmen. Ich bin gerade erst aus dem Winterschlaf erwacht und es scheint ich bin noch etwas verwirrt. Bitte nehmt dieses Zeichen meiner Entschuldigung an.\" Ein paar Eier materialisieren sich vor dem Geist im Gras. Ohne ein weiteres Wort zu sagen, verschwindet der Geist in den Wald, eine Spur aus Blumen hinterlassend.", "questGhostStagBoss": "Geisterhirsch", "questGhostStagDropDeerEgg": "Hirsch (Ei)", @@ -41,25 +41,25 @@ "questOctopusDropOctopusEgg": "Krake (Ei)", "questOctopusUnlockText": "Ermöglicht den Kauf von Krakeneiern auf dem Marktplatz", "questHarpyText": "Hilfe! Harpyien!", - "questHarpyNotes": "Der mutige Abenteurer @UncommonCriminal verschwand in den Wald, um der Spur eines geflügelten Monsters zu folgen, das vor einigen Tagen gesichtet wurde. Du bist gerade dabei, eine Suche zu starten, als ein verwundeter Papagei auf deinem Arm landet, eine unschöne Narbe stört sein sonst wunderschönes Federkleid. An sein Bein gebunden ist eine gekritzelte Notiz, die erklärt, dass @UncommonCriminal bei dem Versuch, die Papageien zu beschützen von einer bösartigen Harpyie gefangen genommen wurde und verzweifelt deine Hilfe braucht, um zu fliehen. Wirst du dem Vogel folgen, die Harpyie besiegen und @UncommonCriminal retten?", - "questHarpyCompletion": "Mit einem vernichtenden Schlag fällt die Harpyie zu Boden und Federn fliegen in alle Richtungen. Nach einer kurzen Klettertour in das Nest der Harpyie findest du @UncommonCriminal, der von Papageieneiern umgeben ist. Gemeinsam bringt ihr die Eier unverzüglich zu den Nestern zurück. Doch der vernarbte Papagei, der dich vorher gefunden hatte, krächzt laut und lässt mehrere Eier in deine Arme fallen. \"Der Harpyienangriff lässt einige Eier ohne Nest zurück.\", erklärt @UncommonCriminal, \"Es scheint, dass du ein Ehrenpapagei geworden bist\".", + "questHarpyNotes": "Der mutige Abenteurer @UncommonCriminal verschwand in den Wald, um der Spur eines geflügelten Monsters zu folgen, das vor einigen Tagen gesichtet wurde. Du bist gerade dabei, eine Suche zu starten, als ein verwundeter Papagei auf Deinem Arm landet, eine unschöne Narbe stört sein sonst wunderschönes Federkleid. An sein Bein gebunden ist eine gekritzelte Notiz, die erklärt, dass @UncommonCriminal bei dem Versuch, die Papageien zu beschützen von einer bösartigen Harpyie gefangen genommen wurde und verzweifelt Deine Hilfe braucht, um zu fliehen. Wirst Du dem Vogel folgen, die Harpyie besiegen und @UncommonCriminal retten?", + "questHarpyCompletion": "Mit einem vernichtenden Schlag fällt die Harpyie zu Boden und Federn fliegen in alle Richtungen. Nach einer kurzen Klettertour in das Nest der Harpyie findest Du @UncommonCriminal, der von Papageieneiern umgeben ist. Gemeinsam bringt ihr die Eier unverzüglich zu den Nestern zurück. Doch der vernarbte Papagei, der Dich vorher gefunden hatte, krächzt laut und lässt mehrere Eier in Deine Arme fallen. \"Der Harpyienangriff lässt einige Eier ohne Nest zurück.\", erklärt @UncommonCriminal, \"Es scheint, dass Du ein Ehrenpapagei geworden bist\".", "questHarpyBoss": "Harpyie", "questHarpyDropParrotEgg": "Papagei (Ei)", "questHarpyUnlockText": "Ermöglicht den Kauf von Papageieneiern auf dem Marktplatz", "questRoosterText": "Hahnenkampf", - "questRoosterNotes": "Jahrelang nutzte der Farmer @extrajordanary Hähne als Wecker. Doch nun ist ein riesiger Hahn aufgetaucht, der lauter kräht als je einer davor - und alle Einwohner Habitikas weckt! Die unausgeschlafenen Habitikaner mühen sich durch ihre täglichen Aufgaben. @Pandoro beschließt, dass nun die Zeit gekommen sei, dem ein Ende zu bereiten. \"Bitte, gibt es jemanden, der diesem Hahn beibringen kann, leise zu krähen?\" Du meldest dich freiwillig und näherst dich dem Hahn eines frühen Morgens - aber er dreht sich um, schlägt mit seinen gigantischen Flügeln, zeigt seine scharfen Krallen und kräht einen Schlachtruf.", - "questRoosterCompletion": "Mit Raffinesse und Stärke ist es Dir gelungen, die wilde Bestie zu zähmen. Die Ohren des Hahnes, die bisher mit Federn und halbvergessenen Aufgaben verstopft waren, sind nun offen wie ein Scheunentor. Er kräht dich leise an und kuschelt seinen Schnabel an Deine Schulter. Am nächsten Tag willst Du wieder aufbrechen, aber @EmeraldOx rennt auf Dich zu, in der Hand einen bedeckten Korb. \"Warte! Als ich diesen Morgen ins Bauernhaus kam, hatte der Hahn dies hier an die Tür geschoben, hinter der Du geschlafen hast. Ich glaube, er will, dass Du sie kriegst.\"\nDu öffnest den Korb und siehst drei zierliche Eier.", + "questRoosterNotes": "Jahrelang nutzte der Farmer @extrajordanary Hähne als Wecker. Doch nun ist ein riesiger Hahn aufgetaucht, der lauter kräht als je einer davor - und alle Einwohner Habitikas weckt! Die unausgeschlafenen Habitikaner mühen sich durch ihre täglichen Aufgaben. @Pandoro beschließt, dass nun die Zeit gekommen sei, dem ein Ende zu bereiten. \"Bitte, gibt es jemanden, der diesem Hahn beibringen kann, leise zu krähen?\" Du meldest Dich freiwillig und näherst Dich dem Hahn eines frühen Morgens - aber er dreht sich um, schlägt mit seinen gigantischen Flügeln, zeigt seine scharfen Krallen und kräht einen Schlachtruf.", + "questRoosterCompletion": "Mit Raffinesse und Stärke ist es Dir gelungen, die wilde Bestie zu zähmen. Die Ohren des Hahnes, die bisher mit Federn und halbvergessenen Aufgaben verstopft waren, sind nun offen wie ein Scheunentor. Er kräht Dich leise an und kuschelt seinen Schnabel an Deine Schulter. Am nächsten Tag willst Du wieder aufbrechen, aber @EmeraldOx rennt auf Dich zu, in der Hand einen bedeckten Korb. \"Warte! Als ich diesen Morgen ins Bauernhaus kam, hatte der Hahn dies hier an die Tür geschoben, hinter der Du geschlafen hast. Ich glaube, er will, dass Du sie kriegst.\"\nDu öffnest den Korb und siehst drei zierliche Eier.", "questRoosterBoss": "Hahn", "questRoosterDropRoosterEgg": "Hahn (Ei)", "questRoosterUnlockText": "Ermöglicht den Kauf von Hahneiern auf dem Marktplatz", "questSpiderText": "Die eisige Arachnoide", "questSpiderNotes": "Das Wetter kühlt sich ab und leichter Frost beginnt auf den Fensterscheiben der Einwohner von Habitica in Form von filigranen Netzen zu erscheinen ... außer bei @Arcosine, dessen Fenster komplett zugefroren sind und bei dem sich die Frostspinne eingenistet hat. Oh je!", - "questSpiderCompletion": "Die Frostspinne bricht zusammen. Von ihr bleibt nur ein kleiner Haufen Frost und ein paar ihrer verzauberten Eiersäcke. @Arcosine bietet sie dir recht hastig als Belohnung an--vielleicht könntest du ein paar ungefährliche Spinnen als deine Haustiere aufziehen?", + "questSpiderCompletion": "Die Frostspinne bricht zusammen. Von ihr bleibt nur ein kleiner Haufen Frost und ein paar ihrer verzauberten Eiersäcke. @Arcosine bietet sie dir recht hastig als Belohnung an--vielleicht könntest Du ein paar ungefährliche Spinnen als Deine Haustiere aufziehen?", "questSpiderBoss": "Spinne", "questSpiderDropSpiderEgg": "Spinne (Ei)", "questSpiderUnlockText": "Ermöglicht den Kauf von Spinneneiern auf dem Marktplatz", - "questVice1Text": "Laster, Teil 1: Befreie dich vom Einfluss des Drachen", - "questVice1Notes": "

Es heißt, dass in den Höhlen von Mount Habitica ein schreckliches Übel lauert. Das Monster ist ein Großdrache von gewaltiger Macht dessen bloße Gegenwart den Willen der stärksten Helden des Landes beugt und in schlechte Angewohnheiten und Faulheit verkehrt, Laster der Schattenwyrm. Tapfere Habiteers, erhebt Euch und erschlagt dieses Untier ein für allemal, aber nur, wenn Ihr Euch zutraut seiner gewaltigen Macht zu widerstehen.

Laster Teil 1:

Denn wie könntet Ihr es wagen gegen die Bestie anzutreten solange Ihr Euch in ihrem Bann befindet? Werdet nicht die Beute von Faulheit und schlechten Angewohnheiten! Strengt euch an um den dunklen Einfluss des Drachen der Euch umfängt zu bannen!

", + "questVice1Text": "Laster, Teil 1: Befreie Dich vom Einfluss des Drachen", + "questVice1Notes": "

Sie sagen, es liegt der Schrecken in den Höhlen von Habitica. Ein Monster, deren reine Präsenz den Willen der Helden des Landes so verdreht, dass sie zu schlechten Angewohnheiten und Faulheit gezwungen werden! Das Monster ist ein gewaltiger Drache, der aus den Schatten selbst besteht: Vice, der Schatten-Wyrm. Mutige Habiteers, erhebt euch und zerschlagt das Biest ein für alle Mal, aber nur, wenn ihr daran glaubt, gegen seine immense Kraft bestehen zu können.

Vice, Teil 1:

Wie kann man das Monster besiegen, wenn es schon diese Macht über Dich besitzt? Werde nicht Opfer der Faulheit und Laster! Arbeite hart gegen den dunklen Einfluss des Drachens, und zerschlage seinen Einfluss!", "questVice1Boss": "Lasters Schatten", "questVice1DropVice2Quest": "Laster Teil 2 (Rolle)", "questVice2Text": "Laster, Teil 2: Finde den Hort des Wyrmes", @@ -68,68 +68,68 @@ "questVice2DropVice3Quest": "Laster Teil 3 (Rolle)", "questVice3Text": "Laster, Teil 3: Laster erwacht", "questVice3Notes": "Nach einer langen Suche hat die Gruppe Lasters Hort gefunden. Das kolossale Monster beäugt Deine Gruppe mit Abscheu. Während Schatten um Euch huschen, scheint eine Stimme zu Euch zu flüstern: \"Weitere Narren aus Habitica, die mich aufhalten wollen? Wie niedlich. Ihr hättet besser daran getan zu Hause zu bleiben.\" Der schuppige Titan hebt seinen Kopf und bereitet sich vor anzugreifen. Das ist Eure Chance! Gebt alles und besiegt Laster ein für allemal!", - "questVice3Completion": "Die Schatten lösen sich im Dunkel der Höhle auf und eine undurchdringliche Stille macht sich breit. Du hast es geschafft! Du hast Vice besiegt! Deine Gruppe und Du dürfen endlich erleichtert durchatmen. Genießt Euren Sieg, Ihr mutigen Habitianer, aber vergesst nicht was Ihr hier gelernt habt und hört nicht auf zu kämpfen. Es gibt noch immer Gewohnheiten und Aufgaben zu erfüllen und vielleicht gilt es bald ein noch schlimmeres Übel zu besiegen!", + "questVice3Completion": "Die Schatten lösen sich im Dunkel der Höhle auf und eine undurchdringliche Stille macht sich breit. Du hast es geschafft! Du hast Vice besiegt! Deine Gruppe und Du dürfen endlich erleichtert durchatmen. Genießt Euren Sieg, Ihr mutigen Habiticaner, aber vergesst nicht was Ihr hier gelernt habt und hört nicht auf zu kämpfen. Es gibt noch immer Gewohnheiten und Aufgaben zu erfüllen und vielleicht gilt es bald ein noch schlimmeres Übel zu besiegen!", "questVice3Boss": "Laster der Schattenwyrm", "questVice3DropWeaponSpecial2": "Stephen Webers Drachenschaft", "questVice3DropDragonEgg": "Drache (Ei)", "questVice3DropShadeHatchingPotion": "Schatten Schlüpftrank", "questMoonstone1Text": "Die Mondsteinkette, Teil 1: Die Mondsteinkette", - "questMoonstone1Notes": "

Eine schreckliche Erkrankung hat die Habiticaner befallen. Längst totgeglaubte schlechte Gewohnheiten erstehen mit neuer Kraft aus dem Tod. Geschirr liegt ungewaschen herum, ungelesene Lehrbücher stapeln sich und die Aufschieberitis greift um sich!


Du folgst der Fährte einer deiner eigenen wiederaufgestandenen schlechten Gewohnheiten bis zu den Sümpfen der Stagnation und entdeckst die Übeltäterin: die geisterhafte Totenbeschwörerin Recidivate. Mit gezückten Waffen stürmst du auf sie zu, aber sie gleiten nutzlos durch ihren geisterhaften Körper hindurch.


\"Versuch's gar nicht erst\" faucht sie mit einem trockenen Krächzen. \"Ohne eine Kette aus Mondsteinen bin ich unbesiegbar - und Meisterschmuckhersteller @aurakami hat die Mondsteine vor langer Zeit überall über Habitica verstreut! Du ziehst dich zurück, nach Luft schnappend... aber du weißt, was du zu tun hast.

", + "questMoonstone1Notes": "Eine furchtbares Leiden hat die Habiticaner befallen. Längst totgeglaubte schlechte Angewohnheiten melden sich mit aller Macht zurück. Geschirr bleibt dreckig liegen, ungelesene Lehrbücher stapeln sich ungelesen in die Höhe und die Aufschieberitis ist außer Kontrolle geraten!

Du verfolgst einige Deiner eigenen zurückgekehrten schlechten Angewohnheiten bis zu den Sümpfen der Stagnation und enttarnst die Übeltäterin: die geisterhafte Totenbeschwörerin Recidivate. Mit gezückten Waffen stürmst Du auf sie zu, aber sie gleiten nutzlos durch ihren Spektralkörper.

\"Versuch's erst gar nicht\" faucht sie mit einem trockenen Krächzen. \"Ohne eine Kette aus Mondsteinen bin ich unbesiegbar - und Meisterschmuckhersteller @aurakami hat die Mondsteine vor langer Zeit über ganz Habitica verstreut! Nach Luft schnappend tritts Du den Rückzug an ... aber Du bist dir im Klaren, was Du zu tun hast.", "questMoonstone1CollectMoonstone": "Mondsteine", "questMoonstone1DropMoonstone2Quest": "Die Mondsteinkette Teil 2: Die Totenbeschwörerin Recidivate (Quest-Rolle)", "questMoonstone2Text": "Die Mondsteinkette Teil 2: Die Totenbeschwörerin Recidivate", - "questMoonstone2Notes": "

Der tapfere Waffenschmied @Inventrix hilft dir dabei, die verzauberten Mondsteine zu einer Kette zu verarbeiten. Du bist endlich bereit, Recidivate zu konfrontieren, aber als Du die Sümpfe der Stagnation betrittst, kommt eine furchtbare Kälte über dich.


Ein fauler Atem flüstert in dein Ohr. \"Du bist zurück? Wie entzückend...\" Du drehst dich um und greifst an, und unter dem Licht der Mondsteinkette trifft deine Waffe festes Fleisch. \"Du magst mich abermals an die Welt gebunden haben,\" stößt Recidivate wütend hervor, \"aber jetzt ist der Zeitpunkt gekommen, wo du sie verlässt!\"

", + "questMoonstone2Notes": "Der tapfere Waffenschmied @Inventrix hilft dir, aus den verzauberten Mondsteinen eine Kette zu formen. Du bist endlich bereit, Recidivate entgegenzutreten, aber kaum, dass Du die Sümpfe der Stagnation betrittst, läuft dir ein fürchterlicher Schauer über den Rücken.

Verrottetes Fleisch flüstert in Dein Ohr. \"Wieder zurückgekehrt? Wie entzückend ... \" Du drehst Dich und schlägst zu, und im Licht der Mondsteinkette trifft Deine Waffe auf festes Fleisch. \"Du magst mich einmal mehr an diese Welt gebunden haben,\" knurrt Recidivate, \"aber jetzt ist Deine Zeit gekommen, sie zu verlassen!\"", "questMoonstone2Boss": "Die Totenbeschwörerin", "questMoonstone2DropMoonstone3Quest": "Die Mondsteinkette Teil 3: Recidivate Transformiert (Rolle)", "questMoonstone3Text": "Die Mondsteinkette Teil 3: Recidivate transformiert", - "questMoonstone3Notes": "

Recidivate fällt zu Boden und Du schlägst mit der Mondsteinkette nach ihr. Zu deinem Entsetzen reißt Recidivate die Steine an sich und ihre Augen leuchten vor Triumph.


\"Törichte Kreatur des Fleisches!\", schreit sie. \"Es ist wahr, die Mondsteine werden mich wieder in eine körperliche Form zurückversetzen, aber anders, als Du dir vorgestellt hast. Wenn der volle Mond zunimmt, wächst auch meine Macht, und aus den Schatten rufe ich deinen gefürchtetsten Feind hervor!\"


Ein übler grüner Nebel steigt aus dem Sumpf auf und Recidivate's Körper windet und dreht sich und verzerrt sich in eine Form, die dich mit Schrecken erfüllt - der untote Körper von Laster, wiederauferstanden.

", - "questMoonstone3Completion": "

Du atmest schwer und Schweiß brennt in Deinen Augen als der untote Wyrm zusammenbricht. Die Überreste von Recidivate lösen sich in einen dünnen, grauen Nebel auf, der sich bald durch eine frisch aufkommende Brise zerstreut. In der Ferne hörst Du die Schlachtrufe von Habiticanern, die ihre schlechten Gewohnheiten ein für und allemal besiegen.


@Baconsaur, der Herr aller Bestien, landet mit seinem Greif neben Dir. \"Ich habe das Ende Deines Kampfes vom Himmel aus beobachtet und es hat mich sehr berührt. Bitte nimm diese verzauberte Tunika - Deine Tapferkeit zeugt von einem edlen Herzen und ich glaube, dass Du dazu bestimmt bist, sie zu bekommen.\"

", + "questMoonstone3Notes": "Recidivate sackt zu Boden und Du schlägst mit der Mondsteinkette nach ihr. Zu Deinem Entsetzen reißt Rückfall die Steine an sich und ihre Augen leuchten vor Triumph.

\"Törichte Kreatur des Fleisches!\", schreit sie. \"Es ist wahr, die Mondsteine werden mich wieder in eine körperliche Form zurückversetzen, aber anders, als Du dir vorgestellt hast. So wie der Vollmond in der Dunkelheit heranwächst, wird auch meine Macht zunehmen, und aus den Schatten rufe ich Deinen fürchterlichsten Feind hervor!\"

Ein übler, grüner Nebel steigt aus dem Sumpf empor, Recidivate Körper verkrümmt und windet sich und nimmt eine Form an, die Dich mit Schrecken erfüllt - der untote Körper von Laster ist wiederauferstanden.", + "questMoonstone3Completion": "Du atmest schwer und Schweiß brennt in Deinen Augen, als der untote Wyrm zusammenbricht und Rückfalls Überreste sich in einen dünnen, grauen Nebel auflösen, den eine frische Brise bald zerstreut. In der Ferne hörst Du die Schlachtrufe von Habiticanern, die ihre schlechten Gewohnheiten ein für allemal besiegt haben.

@Baconsaur, der Herr aller Bestien, landet mit seinem Greif neben dir. \"Ich habe das Ende Deines Kampfes vom Himmel aus beobachtet und es hat mich sehr berührt. Bitte nimm diese verzauberte Tunika – Deine Tapferkeit zeugt von einem edlen Herzen und ich glaube, dass Du dazu bestimmt bist, sie zu tragen.\"", "questMoonstone3Boss": "Nekro-Laster", "questMoonstone3DropRottenMeat": "Verrottetes Fleisch (Futter)", "questMoonstone3DropZombiePotion": "Zombifizierter Schlüpftrank", "questGoldenknight1Text": "Der goldene Ritter, Teil 1: Ein ernstes Gespräch", - "questGoldenknight1Notes": "

Die Goldene Ritterin ist Habiticanern mit ihrer Kritik ganz schön auf die Nerven gegangen. Nicht alle täglichen Aufgaben erledigt? Eine negative Gewohnheit angeklickt? Sie nimmt dies als Anlass dich zu bedrängen, dass du doch ihrem Beispiel folgen sollst. Sie ist das leuchtende Beispiel eines perfekten Habiticaners und Du bist nichts als ein Versager. Das ist ja mal gar nicht nett! Jeder macht Fehler. Man sollte deshalb nicht mit solcher Kritik drangsaliert werden. Vielleicht solltest du einige Zeugenaussagen von verletzten Habiticanern zusammentragen und die Goldene Ritterin mal ordentlich zurechtweisen!

", + "questGoldenknight1Notes": "Die goldene Ritterin ist Habiticanern mit ihrer Kritik ganz schön auf die Nerven gegangen. Nicht alle täglichen Aufgaben erledigt? Eine negative Gewohnheit angeklickt? Sie nimmt dies als Anlass Dich zu bedrängen, dass Du doch ihrem Beispiel folgen sollst. Sie ist das leuchtende Beispiel eines perfekten Habiticaners und Du bist nichts als ein Versager. Das ist ja mal gar nicht nett! Jeder macht Fehler. Man sollte deshalb nicht mit solcher Kritik drangsaliert werden. Vielleicht solltest Du einige Zeugenaussagen von verletzten Habiticanern zusammentragen und die goldene Ritterin mal ordentlich zurechtweisen!", "questGoldenknight1CollectTestimony": "Zeugenaussagen", - "questGoldenknight1DropGoldenknight2Quest": "Die goldene Ritter-Kette Teil 2: Der goldene Ritter (Rolle)", + "questGoldenknight1DropGoldenknight2Quest": "Die goldene Ritter-Kette, Teil 2: Der goldene Ritter (Rolle)", "questGoldenknight2Text": "Der goldene Ritter, Teil 2: Gold Ritter", - "questGoldenknight2Notes": "

Mit hunderten Zeugenaussagen von Habiticanern bewaffnet, konfrontierst du die Goldene Ritterin. Du fängst an, ihr die Beschwerden der Habiticaner eine nach der anderen vorzulesen. \"Und @Pfeffernusse sagt, dass deine ständige Prahlerei-\" Die Ritterin hebt ihre Hand, um dich zum Schweigen zu bringen und spottet \"Ich bitte Dich, diese Leute sind einfach nur neidisch auf meinen Erfolg. Statt sich zu beschweren, sollten sie einfach so hart arbeiten wie ich! Vielleicht zeige ich Dir mal, wie stark Du werden kannst, wenn Du so fleißig bist wie ich!\" Sie hebt ihren Morgenstern und setzt zum Angriff an!

", + "questGoldenknight2Notes": "Mit hunderten Zeugenaussagen von Habiticanern bewaffnet, konfrontierst Du die goldene Ritterin. Du fängst an, ihr die Beschwerden der Habiticaner eine nach der anderen vorzulesen. \"Und @Pfeffernusse sagt, dass Deine ständige Prahlerei-\" Die Ritterin hebt ihre Hand, um Dich zum Schweigen zu bringen und spottet \"Ich bitte Dich, diese Leute sind einfach nur neidisch auf meinen Erfolg. Statt sich zu beschweren, sollten sie einfach so hart arbeiten wie ich! Vielleicht zeige ich dir mal, wie stark Du werden kannst, wenn Du so fleißig bist wie ich!\" Sie hebt ihren Morgenstern und setzt zum Angriff an!", "questGoldenknight2Boss": "Goldene Ritterin", "questGoldenknight2DropGoldenknight3Quest": "Die Goldene Ritterin-Kette Teil 3: Der Eiserne Ritter (Rolle)", "questGoldenknight3Text": "Der goldene Ritter, Teil 3: Der eiserne Ritter", - "questGoldenknight3Notes": "

@Jon Arinbjorn ruft zu Dir, um deine Aufmerksamkeit zu erlangen. Im Nachspiel Deiner Schlacht ist eine neue Figur aufgetaucht. Ein Ritter, gerüstet in schwarz geflecktem Eisen, kommt Dir langsam mit einem Schwert in der Hand entgegen. Die goldene Ritterin ruft ihm zu: \"Vater, nein!\" Aber der Ritter zeigt keinerlei Anzeichen anzuhalten. Sie wendet sich an Dich: \"Es tut mir Leid. Ich war ein Narr und zu stolz zu erkennen, wie grausam ich war. Aber mein Vater ist noch viel grausamer als ich es je sein könnte. Wenn er nicht aufgehalten wird, dann wird er uns alle vernichten. Hier, nimm meinen Morgenstern und halte den eisernen Ritter auf!\"

", - "questGoldenknight3Completion": "

Mit einem befriedigenden Geklirr fällt der Eiserne Ritter zu Knie und sackt zusammen. \"Du bist ziemlich stark,\" keucht er. \"Mir wurde heute Bescheidenheit gelehrt.\" Die Goldene Ritterin kommt zu dir und sagt, \"Ich danke dir. Ich glaube, wir beide haben aus der Begegnung mit dir etwas Bescheidenheit gelernt. Ich werde mit meinem Vater sprechen und ihm die Beschwerden über uns erklären. Vielleicht sollten wir damit anfangen, uns bei den anderen Habiticanern zu entschuldigen.\" Sie denkt darüber nach und wendet sich dann wieder dir zu. \"Hier: als ein Geschenk für dich gebe ich dir meinen Morgenstern. Er gehört jetzt dir.\"

", + "questGoldenknight3Notes": "@Jon Arinbjorn schreit laut auf, um Deine Aufmerksamkeit zu erlangen. Nach Deiner Schlacht ist eine neue Figur aufgetaucht. Ein Ritter, gerüstet in schwarz geflecktem Eisen, kommt dir langsam mit einem Schwert in der Hand entgegen. Die goldene Ritterin ruft ihm zu: \"Vater, nein!\" Aber der Ritter zeigt keinerlei Anzeichen anzuhalten. Sie wendet sich an Dich: \"Es tut mir Leid. Ich war ein Narr und zu stolz zu erkennen, wie grausam ich war. Aber mein Vater ist noch viel grausamer als ich es je sein könnte. Wenn er nicht aufgehalten wird, dann wird er uns alle vernichten. Hier, nimm meinen Morgenstern und halte den eisernen Ritter auf!\"", + "questGoldenknight3Completion": "Mit einem befriedigenden Klirren fällt der Eiserne Ritter zu Knie und sackt zusammen. \"Du bist ziemlich stark,\" keucht er. \"Mir wurde heute Bescheidenheit gelehrt.\" Die Goldene Ritterin kommt zu dir und sagt, \"Ich danke dir. Ich glaube, wir beide haben aus der Begegnung mit dir etwas Bescheidenheit gelernt. Ich werde mit meinem Vater sprechen und ihm die Beschwerden über uns erklären. Vielleicht sollten wir damit anfangen, uns bei den anderen Habiticanern zu entschuldigen.\" Sie denkt darüber nach und wendet sich dann wieder dir zu. \"Hier: als ein Geschenk für Dich gebe ich dir meinen Morgenstern. Er gehört jetzt dir.\"", "questGoldenknight3Boss": "Der Eiserne Ritter", "questGoldenknight3DropHoney": "Honig (Futter)", "questGoldenknight3DropGoldenPotion": "Goldener Schlüpftrank", "questGoldenknight3DropWeapon": "Mustaines Meilenstein-matschender Morgenstern (Schildhand-Waffe)", "questBasilistText": "Der Basi-List", - "questBasilistNotes": "Da ist ein Aufruhr auf dem Marktplatz - es sieht ganz so aus, als ob man lieber in die andere Richtung rennen sollte. Da Du aber ein mutiger Abenteurer bist, rennst Du stattdessen darauf zu und entdeckst einen Basi-List, der sich aus einem Haufen unerledigter Aufgaben geformt hat! Alle umstehenden Habiticaner sind aus Angst vor der Länge des Basi-Lists gelähmt und können nicht anfangen zu arbeiten. Von irgendwo in der Nähe hörst du @Arcosine schreien: \"Schnell! Erledige deine einmaligen und täglichen Aufgaben, um dem Monster die Zähne zu entfernen, bevor sich jemand am Papier schneidet!\" Greife schnell an, Abenteurer, und hake etwas ab - aber Vorsicht! Wenn Du irgendwelche täglichen Aufgaben nicht erledigst, wird der Basi-List Dich und Deine Gruppe angreifen!", - "questBasilistCompletion": "Der Basi-List ist in Papierschnitzel zerfallen, die sanft in Regenbogenfarben schimmern. \"Puh!\" sagt @Arcosine. \"Gut, dass ihr gerade hier wart!\" Du fühlst dich erfahrener als vorher und sammelst ein paar verstreute Goldstücke zwischen den Papierstücken auf.", + "questBasilistNotes": "Da ist ein Aufruhr auf dem Marktplatz - es sieht ganz so aus, als ob man lieber in die andere Richtung rennen sollte. Da Du aber ein mutiger Abenteurer bist, rennst Du stattdessen darauf zu und entdeckst einen Basi-List, der sich aus einem Haufen unerledigter Aufgaben geformt hat! Alle umstehenden Habiticaner sind aus Angst vor der Länge des Basi-Lists gelähmt und können nicht anfangen zu arbeiten. Von irgendwo in der Nähe hörst Du @Arcosine schreien: \"Schnell! Erledige Deine einmaligen und täglichen Aufgaben, um dem Monster die Zähne zu entfernen, bevor sich jemand am Papier schneidet!\" Greife schnell an, Abenteurer, und hake etwas ab - aber Vorsicht! Wenn Du irgendwelche täglichen Aufgaben nicht erledigst, wird der Basi-List Dich und Deine Gruppe angreifen!", + "questBasilistCompletion": "Der Basi-List ist in Papierschnitzel zerfallen, die sanft in Regenbogenfarben schimmern. \"Puh!\" sagt @Arcosine. \"Gut, dass ihr gerade hier wart!\" Du fühlst Dich erfahrener als vorher und sammelst ein paar verstreute Goldstücke zwischen den Papierstücken auf.", "questBasilistBoss": "Der Basi-List", "questEggHuntText": "Eierjagd", - "questEggHuntNotes": "Über Nacht sind überall eigenartige Eier aufgetaucht: in Matt's Ställen, hinter der Bar des Gasthauses und sogar zwischen den Eiern auf dem Marktplatz! Wie lästig das ist! \"Niemand weiß, woher sie kommen oder was aus ihnen schlüpfen wird\", sagt Megan, \"aber wir können sie nicht einfach so herumliegen lassen! Macht Euch an die Arbeit und helft mir diese mysteriösen Eier zu sammeln. Wenn Du genug gesammelt hast gibt es eine Belohnung...\"", - "questEggHuntCompletion": "Geschafft! Voller Dankbarkeit gibt Dir Megan zehn der Eier. \"Ich wette die Schlüpftränke werden sie total hübsch einfärben! Und ich frage mich, was passiert wenn sie zu Reittieren werden...\"", + "questEggHuntNotes": "Über Nacht sind überall eigenartige Eier aufgetaucht: in Matt's Ställen, hinter der Bar des Gasthauses und sogar zwischen den Eiern auf dem Marktplatz! Wie lästig das ist! \"Niemand weiß, woher sie kommen oder was aus ihnen schlüpfen wird\", sagt Megan, \"aber wir können sie nicht einfach so herumliegen lassen! Macht Euch an die Arbeit und helft mir diese mysteriösen Eier zu sammeln. Wenn Du genug gesammelt hast gibt es eine Belohnung ... \"", + "questEggHuntCompletion": "Geschafft! Voller Dankbarkeit gibt Dir Megan zehn der Eier. \"Ich wette die Schlüpftränke werden sie total hübsch einfärben! Und ich frage mich, was passiert wenn sie zu Reittieren werden ... \"", "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 er das Gasthaus 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 lange überlebt zu haben, muss er sich selbst heilen können! Wie können wir ihn besiegen?\"

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 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!", + "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", "questSeahorseText": "Das Dilatory Rennen", - "questSeahorseNotes": "Es ist der Tag des Derbys, und Habiticaner von überall auf dem Kontinent sind nach Dilatory gereist, um ihre Seepferdchen-Haustieren gegeneinander antreten zu lassen! Plötzlich bricht auf der Rennstrecke ein großes Spritzen und Fauchen aus und du hörst Seepferdchenpfleger @Kiwibot über das Tosen der Wellen hinwegbrüllen. \"Das Treffen der Seepferdchen hat einen kämpferischen Seehengst angelockt!\" schreit sie. \"Er trampelt durch die Ställe und zerstört die uralte Rennstrecke! Kann ihn irgendwer beruhigen?\"", + "questSeahorseNotes": "Es ist der Tag des Derbys, und Habiticaner von überall auf dem Kontinent sind nach Dilatory gereist, um ihre Seepferdchen-Haustieren gegeneinander antreten zu lassen! Plötzlich bricht auf der Rennstrecke ein großes Spritzen und Fauchen aus und Du hörst Seepferdchenpfleger @Kiwibot über das Tosen der Wellen hinwegbrüllen. \"Das Treffen der Seepferdchen hat einen kämpferischen Seehengst angelockt!\" schreit sie. \"Er trampelt durch die Ställe und zerstört die uralte Rennstrecke! Kann ihn irgendwer beruhigen?\"", "questSeahorseCompletion": "Der jetzt zahme Seehengst schwimmt gefügig zu Dir. \"Oh, sieh doch!\" sagt Kiwibot. \"Er will, dass wir uns um seine Kinder kümmern.\" Sie gibt dir drei Eier. \"Zieh sie gut auf,\" sagt sie. \"Du bist beim Dilatory Derby jederzeit willkommen!\"", "questSeahorseBoss": "Seehengst", "questSeahorseDropSeahorseEgg": "Seehengst (Ei)", "questSeahorseUnlockText": "Ermöglicht den Kauf von Seehengsteiern auf dem Marktplatz", "questAtom1Text": "Angriff des Banalen, Teil 1: Abwasch-Katastrophe!", - "questAtom1Notes": "Du erreichst die Ufer des Waschbeckensees für eine wohlverdiente Auszeit... Aber der See ist verschmutzt mit nicht abgespültem Geschirr! Wie ist das passiert? Wie auch immer, Du kannst den See jedenfalls nicht in diesem Zustand lassen. Es gibt nur eine Sache die Du tun kannst: Abspülen und den Ferienort retten! Dazu musst Du aber Seife für den Abwasch finden. Viel Seife...", + "questAtom1Notes": "Du erreichst die Ufer des Waschbeckensees für eine wohlverdiente Auszeit ... Aber der See ist verschmutzt mit nicht abgespültem Geschirr! Wie ist das passiert? Wie auch immer, Du kannst den See jedenfalls nicht in diesem Zustand lassen. Es gibt nur eine Sache die Du tun kannst: Abspülen und den Ferienort retten! Dazu musst Du aber Seife für den Abwasch finden. Viel Seife ...", "questAtom1CollectSoapBars": "Seifenstücke", "questAtom1Drop": "Das Monster vom KochLess (Questschriftrolle)", "questAtom2Text": "Angriff des Banalen, Teil 2: Das Monster vom KochLess", @@ -138,73 +138,73 @@ "questAtom2Drop": "Der Wäschebeschwörer (Questschriftrolle)", "questAtom3Text": "Angriff des Banalen, Teil 3: Der Wäschebeschwörer", "questAtom3Notes": "Mit einem ohrenbetäubenden Schrei und fünf leckere Arten von Käse spuckend zerfällt das Monster vom KochLess in Stücke. \"DU WAGST ES!?\" dröhnt eine Stimme von unter dem See. Eine blaue Gestalt, erhebt sich in eine Robe gekleidet aus dem Wasser und schwingt eine magische Toilettenbürste. Schmutzige Wäsche beginnt im See aufzusteigen. \"Ich bin der Wäschebeschwörer!\" verkündet die Gestalt ärgerlich. \"Du traust Dir ja ganz schön was zu - einfach so mein wunderbar schmutziges Geschirr abzuspülen, mein Haustier zu verscheuchen und mein Reich mit solch sauberer Kleidung zu betreten. Nimm' Dich in Acht! Spüre den durchnässten Zorn meiner Anti-Wäsche Magie!\"", - "questAtom3Completion": "Der böse Wäschebeschwörer ist besiegt! Saubere Wäsche sammelt sich überall haufenweise. Alles sieht recht ordentlich aus. Wie Du durch die frisch gebügelten Rüstungen watest fällt dir ein metallischer Schein ins Auge und Du bemerkst einen glänzenden Helm. Der ursprüngliche Eigentümer dieses glänzenden Schatzes mag unbekannt sein, aber als Du ihn aufsetzt bemerkst du die wärmende Gegenwart eines freizügigen Geistes. Zu schade, dass niemand ein Namensschild angenäht hat.", + "questAtom3Completion": "Der böse Wäschebeschwörer ist besiegt! Saubere Wäsche sammelt sich überall haufenweise. Alles sieht recht ordentlich aus. Wie Du durch die frisch gebügelten Rüstungen watest fällt dir ein metallischer Schein ins Auge und Du bemerkst einen glänzenden Helm. Der ursprüngliche Eigentümer dieses glänzenden Schatzes mag unbekannt sein, aber als Du ihn aufsetzt bemerkst Du die wärmende Gegenwart eines freizügigen Geistes. Zu schade, dass niemand ein Namensschild angenäht hat.", "questAtom3Boss": "Der Wäschebeschwörer", - "questAtom3DropPotion": "Base Hatching Potion", + "questAtom3DropPotion": "Standard-Schlüpftrank", "questOwlText": "Die Nachteule", - "questOwlNotes": "Das Gasthauslicht brennt bis in die Morgenstunden
doch eines Nachts ist das Leuchten verschwunden!
Wo sollen denn jetzt alle Nachtschwärmer hin?
@Twitching ruft, \"Wir müssen in den Kampfe ziehn!\"
Siehst du diese Nachteule, den gefiederten Feind?
Kämpfe schnell, kämpfe gut, mach sie klein!
Wir werden ihren Schatten schnell verscheuchen,
und die Nacht wieder hell erleuchten!\"", - "questOwlCompletion": "Die Nachteul' verblasst, bevor die Nacht vergeht
Doch dennoch fühlst du, wie es in dir gähnt.
Vielleicht ist es Zeit, sich hinzulegen?
In deinem Bett siehst du ein Nestchen liegen!
Die Nachteul' weiß, es ist sehr schön
spät zu arbeiten und spät ins Bett zu gehn,
Aber deine neuen Haustiere werden leise krähen
und dir dann sagen, \"du sollst schlafen gehen\".", + "questOwlNotes": "Das Gasthauslicht brennt bis in die Morgenstunden
doch eines Nachts ist das Leuchten verschwunden!
Wo sollen denn jetzt alle Nachtschwärmer hin?
@Twitching ruft, \"Wir müssen in den Kampfe ziehn!\"
Siehst Du diese Nachteule, den gefiederten Feind?
Kämpfe schnell, kämpfe gut, mach sie klein!
Wir werden ihren Schatten schnell verscheuchen,
und die Nacht wieder hell erleuchten!\"", + "questOwlCompletion": "Die Nachteul' verblasst, bevor die Nacht vergeht
Doch dennoch fühlst Du, wie es in dir gähnt.
Vielleicht ist es Zeit, sich hinzulegen?
In Deinem Bett siehst Du ein Nestchen liegen!
Die Nachteul' weiß, es ist sehr schön
spät zu arbeiten und spät ins Bett zu gehn,
Aber Deine neuen Haustiere werden leise krähen
und dir dann sagen, \"Du sollst schlafen gehen\".", "questOwlBoss": "Die Nachteule", "questOwlDropOwlEgg": "Eule (Ei)", "questOwlUnlockText": "Ermöglicht den Kauf von Euleneiern auf dem Marktplatz", "questPenguinText": "Der Federvieh-Frost", - "questPenguinNotes": "Obwohl es auf der Südspitze von Habitica ein heißer Sommertag ist, hat eine unnatürliche Kälte den Lively Lake befallen. Man hört das Heulen von starken, eisigen Winden und das Ufer fängt an zuzufrieren. Eisspitzen brechen aus dem Boden und verdrängen Gras und Dreck. @Melynnrose und @Breadstrings rennen zu dir hinüber.

\"Hilfe!\" sagt @Melynnrose. \"Wir haben einen riesigen Pinguin hergebracht, um den See zuzufrieren damit wir alle schlittschuhlaufen können, aber uns sind die Fische ausgegangen, mit denen wir ihn gefüttert haben!\"

\"Er wurde wütend und friert mit seinem Eis-Atem alles zu, was er sieht!\" sagt @Breadstrings. \"Bitte, du musst ihn überwältigen bevor wir alle von Eis bedeckt sind!\" Sieht aus, als ob du das Gemüt dieses Pinguins... etwas abkühlen musst.", - "questPenguinCompletion": "Mit der Niederlage des Pinguins beginnt das Eis zu schmelzen. Der riesige Pinguin setzt sich im Sonnenschein auf den Boden und schlürft einen Eimer Fische herunter. Er gleitet über den See und lässt dabei mit einem leichten Pusten nach unten glattes, glitzerndes Eis entstehen. Was für ein komischer Vogel! \"Es scheint so, als hätte er einige Eier hinterlassen,\" sagt @Painter de Cluster.

@Rattify lacht. \"Vielleicht werden diese Pinguine ein bisschen... gechillter sein?\"", + "questPenguinNotes": "Obwohl es auf der Südspitze von Habitica ein heißer Sommertag ist, hat eine unnatürliche Kälte den Lively Lake befallen. Man hört das Heulen von starken, eisigen Winden und das Ufer fängt an zuzufrieren. Eisspitzen brechen aus dem Boden und verdrängen Gras und Dreck. @Melynnrose und @Breadstrings rennen zu dir hinüber.

\"Hilfe!\" sagt @Melynnrose. \"Wir haben einen riesigen Pinguin hergebracht, um den See zuzufrieren damit wir alle schlittschuhlaufen können, aber uns sind die Fische ausgegangen, mit denen wir ihn gefüttert haben!\"

\"Er wurde wütend und friert mit seinem Eis-Atem alles zu, was er sieht!\" sagt @Breadstrings. \"Bitte, Du musst ihn überwältigen bevor wir alle von Eis bedeckt sind!\" Sieht aus, als ob Du das Gemüt dieses Pinguins ... etwas abkühlen musst.", + "questPenguinCompletion": "Mit der Niederlage des Pinguins beginnt das Eis zu schmelzen. Der riesige Pinguin setzt sich im Sonnenschein auf den Boden und schlürft einen Eimer Fische herunter. Er gleitet über den See und lässt dabei mit einem leichten Pusten nach unten glattes, glitzerndes Eis entstehen. Was für ein komischer Vogel! \"Es scheint so, als hätte er einige Eier hinterlassen,\" sagt @Painter de Cluster.

@Rattify lacht. \"Vielleicht werden diese Pinguine ein bisschen ... gechillter sein?\"", "questPenguinBoss": "Frostpinguin", "questPenguinDropPenguinEgg": "Pinguin (Ei)", "questPenguinUnlockText": "Ermöglicht den Kauf von Pinguineiern auf dem Marktplatz", "questStressbeastText": "Das Schreckliche Stressbiest aus den Stoïstillen Steppen", - "questStressbeastNotes": "Erfülle tägliche, sowie einmalige Aufgaben um dem Welt-Bossmonster Schaden zuzufügen! Unerfüllte tägliche Aufgaben füllen die Stressschlag Leiste. Ist die Leiste voll, wird das Welt-Bissmonster einen NPC angreifen. Ein Welt-Bossmonster fügt einzelnen Spielern oder Accounts auf keine Weise Schaden zufügen. Nur die nicht erfüllten täglichen Aufgaben von aktiven Spielern, die sich nicht im Gasthaus ausruhen zählen.

~*~

Das erste was wir vernehmen sind die Schritte, langsam und donnernd. Einer nach dem anderen öffnen die Haitianer ihre Haustüren und blicken dem entgegen und die Worte bleiben uns im Halse stecken.

Wir alle kennen das Stressbiest, natürlich - winzige, fiese Kreaturen, die uns im ungünstigsten Augenblick angreifen. Aber das? Das hier ragt in den Himmel hinauf, höher als die Gebäude, mit Pranken, die ohne Probleme einen Drachen zerschmettern könnten. Frostsplitter regnen aus dem stinkenden Fell herab und sein Gebrüll entfesselt einen eisigen Sturm, der die Dächer von unseren Häusern hebt. Von so einem gewaltigen Monster sprechen nur unsere ältesten Legenden.

\"Gebt acht, Haitianer!\", ruft SabreCat, \"Barrikadiert euch in euren Häusern - dies ist das schreckliche Stressbiest!\"

\"Dieses Ding muss Jahrhunderte von Stress in sich tragen!\", sagt Kiwibot, während er die Türen des Gasthauses verrammelt und die Fenster zuschlägt.

\"Die Stoïstillen Steppen\", meint Lemnos mit grimmigem Gesicht, \"Die ganze Zeit dachten wir sie wären ein friedlicher Ort, aber sie müssen ihren Stress irgendwo versteckt haben. Über Generationen hinweg ist das hier aus ihm geworden, und nun hat es sich befreit und griff sie an - und uns!\"

Es gibt nur eine Möglichkeit das Stressbiest zu vertreiben, schrecklich oder nicht, und die ist es, es mit erfüllten täglichen und einmaligen Aufgaben anzugreifen! Wir müssen zusammen stehen um gegen diesen furchteinflößenden Feind zu bestehen - geht sicher, dass ihr eure Aufgaben nicht unerfüllt lasst, das könnte das Stressbiest so sehr reizen, dass es vielleicht anfängt um sich zu schlagen...", + "questStressbeastNotes": "Erfülle tägliche, sowie einmalige Aufgaben um dem Welt-Bossmonster Schaden zuzufügen! Unerfüllte tägliche Aufgaben füllen die Stressschlag Leiste. Ist die Leiste voll, wird der Weltboss einen NPC angreifen. Ein Weltboss wird einzelnen Spielern oder Accounts auf keine Weise Schaden zufügen. Nur die nicht erfüllten täglichen Aufgaben von aktiven Spielern, die sich nicht im Gasthaus ausruhen zählen.

~*~

Das erste was wir vernehmen sind die Schritte, langsam und donnernd. Einer nach dem anderen öffnen die Habiticaner ihre Haustüren und blicken dem entgegen und die Worte bleiben uns im Halse stecken.

Wir alle kennen das Stressbiest, natürlich - winzige, fiese Kreaturen, die uns im ungünstigsten Augenblick angreifen. Aber das? Das hier ragt in den Himmel hinauf, höher als die Gebäude, mit Pranken, die ohne Probleme einen Drachen zerschmettern könnten. Frostsplitter regnen aus dem stinkenden Fell herab und sein Gebrüll entfesselt einen eisigen Sturm, der die Dächer von unseren Häusern hebt. Von so einem gewaltigen Monster sprechen nur unsere ältesten Legenden.

\"Gebt acht, Habiticaner!\", ruft SabreCat, \"Verbarrikadiert euch in euren Häusern - dies ist das schreckliche Stressbiest!\"

\"Dieses Ding muss Jahrhunderte von Stress in sich tragen!\", sagt Kiwibot, während er die Türen des Gasthauses verrammelt und die Fenster zuschlägt.

\"Die Stoïstillen Steppen\", meint Lemnos mit grimmigem Gesicht, \"Die ganze Zeit dachten wir sie wären ein friedlicher Ort, aber sie müssen ihren Stress irgendwo versteckt haben. Über Generationen hinweg ist das hier aus ihm geworden, und nun hat es sich befreit und griff sie an - und uns!\"

Es gibt nur eine Möglichkeit das Stressbiest zu vertreiben, schrecklich oder nicht, und die ist es, es mit erfüllten täglichen und einmaligen Aufgaben anzugreifen! Wir müssen zusammen stehen um gegen diesen furchteinflößenden Feind zu bestehen - geht sicher, dass ihr eure Aufgaben nicht unerfüllt lasst, das könnte das Stressbiest so sehr reizen, dass es vielleicht anfängt um sich zu schlagen ...", "questStressbeastBoss": "Das schreckliche Stressbiest", "questStressbeastBossRageTitle": "Stressschlag", "questStressbeastBossRageDescription": "Wenn sich diese Anzeige füllt, entfesselt das Schreckliche Stressbiest seinen Stressschlag auf Habitica!", "questStressbeastDropMammothPet": "Mammut (Haustier)", "questStressbeastDropMammothMount": "Mammut (Reittier)", "questStressbeastBossRageStables": "Das Schreckliche Stressbiest benutzt STRESS-SCHLAG!\n\nDas Aufwallen des Stresses heilt das Schreckliche Stressbiest!\n\nOh nein! Trotz unserer größten Anstrengungen sind uns einige tägliche Aufgaben entwischt! Ihre dunkelrote Farbe hat das Schreckliche Stressbiest zornig gemacht und dafür gesorgt, dass es einen Teil seiner Lebenspunkte zurückerhält! Die furchtbare Kreatur will sich auf die Ställe stürzen, aber Matt der Herr aller Bestien wirft sich heldenhaft in den Kampf, um die Haustiere und Reittiere zu schützen. Das Stressbiest schnappt sich Matt und hält ihn in seinen schrecklichen Klauen, aber dadurch ist es zumindest für einen Moment abgelenkt. Schnell! Erledigen wir unsere Täglichen Aufgaben und besiegen wir es, bevor es erneut zuschlägt!", - "questStressbeastBossRageBailey": "Das Schreckliche Stressbiest benutzt STRESS-SCHLAG!\n\nDas Aufwallen des Stresses heilt das Schreckliche Stressbiest!\n\nAhh!!! Unsere unerfüllten Täglichen Aufgaben haben dafür gesorgt, dass das Schreckliche Stressbiest wütender denn je ist und einige seiner Lebenspunkten zurückerhalten hat! Bailey die Marktschreierin hatte die Einwohner aufgerufen sich in Sicherheit zu bringen, und nun hält das Biest sie in seiner anderen Hand! Seht nur wie sie tapfer die Neuigkeiten berichtet, während das Stressbiest sie heftig hin und her schleudert... Erweisen wir uns ihrer Tapferkeit als würdig, seien wir so produktiv wie nur möglich und retten wir unsere NPCs!", - "questStressbeastBossRageGuide": "Das Schreckliche Stressbiest benutzt STRESS-SCHLAG!\n\nDas Aufwallen des Stresses heilt das Schreckliche Stressbiest!\n\nSchaut! Justin der Stadtführer versucht das Stressbiest abzulenken, indem er um dessen Knöchel herumrennt und dabei hilfreiche Tips für eine bessere Produktivität gibt! Das Schreckliche Stressbiest stampft wütend herum, aber es scheint als würden wir es wirklich niederringen. Ich bezweifele dass es noch einmal genug Energie für einen neuen Schlag hat. Gebt nicht auf... wir sind so nah daran, es zu besiegen!", + "questStressbeastBossRageBailey": "Das Schreckliche Stressbiest benutzt STRESS-SCHLAG!\n\nDas Aufwallen des Stresses heilt das Schreckliche Stressbiest!\n\nAhh!!! Unsere unerfüllten Täglichen Aufgaben haben dafür gesorgt, dass das Schreckliche Stressbiest wütender denn je ist und einige seiner Lebenspunkten zurückerhalten hat! Bailey die Marktschreierin hatte die Einwohner aufgerufen sich in Sicherheit zu bringen, und nun hält das Biest sie in seiner anderen Hand! Seht nur wie sie tapfer die Neuigkeiten berichtet, während das Stressbiest sie heftig hin und her schleudert ... Erweisen wir uns ihrer Tapferkeit als würdig, seien wir so produktiv wie nur möglich und retten wir unsere NPCs!", + "questStressbeastBossRageGuide": "Das Schreckliche Stressbiest benutzt STRESS-SCHLAG!\n\nDas Aufwallen des Stresses heilt das Schreckliche Stressbiest!\n\nSchaut! Justin der Stadtführer versucht das Stressbiest abzulenken, indem er um dessen Knöchel herumrennt und dabei hilfreiche Tips für eine bessere Produktivität gibt! Das Schreckliche Stressbiest stampft wütend herum, aber es scheint als würden wir es wirklich niederringen. Ich bezweifele dass es noch einmal genug Energie für einen neuen Schlag hat. Gebt nicht auf ... wir sind so nah daran, es zu besiegen!", "questStressbeastDesperation": "`Abscheuliche Stressbestie erreicht 500K Leben! Abscheuliche Strssbestie setzt Verzweifelte Verteidigung ein!`\n\nHabiticaner, wir haben es fast geschafft! Mit Fließ und Täglichen Aufgaben haben wir die Lebenspunkte der Stressbestie auf nur noch 500K reduziert! Die Kreatur brüllt und schlägt aus Verzweiflung wild um sich, in ihrer Raserei wird sie dabei schneller und schneller. Bailey und Matt schreien in panischer Angst, als die Bestie beginnt sie in entzetzlicher Geschwindigkeit herumzuwirbeln. Ein dichter Schneesturm zieht auf, der euch die Sicht raubt und es schwieriger macht einen Treffer zu landen.\n\nWir werden unsere Bemühungen verdoppeln müssen. Doch fasst Mut - dies ist ein Zeichen, dass der Stressbestie bewusst wird, dass sie bald besiegt wird. Gebt jetzt nicht auf!", - "questStressbeastCompletion": "Das schreckliche Stressbiest ist BESIEGT!!

Wir haben es geschafft! Mit einem letzten Aufheulen löst sich das Schreckliche Stressbiest in eine Wolke aus Schnee auf. Die Flocken schweben sachte zu Boden, während jubelnde Habitianer ihre Haustiere und Reittiere umarmen. Unsere Tiere und unsere NPCs sind gerettet!!

Stoïstill ist gerettet!

SabreCat spricht sanft mit einem kleinen Säbelzahntiger. \"Bitte finde die Einwohner der Stoïstillen Steppe und führe sie zu uns\", sagt er. Einige Stunden später kehrt der Säbelzahntiger zurück. Ihm folgt gemächlich eine Herde von Mammutreitern. Du erkennst den Anführer der Reiter. Es ist Lady Glaciate, die Anführerin von Stoïstill.

\"Tapfere Habitianer\", spricht sie, \"Meine Einwohner und ich sind Euch zu tiefsten Dank verpflichtet und wir müssen uns entschuldigen. Bei dem Versuch unsere Steppen vor Unruhe zu schützen, haben wir heimlich all unseren Stress in die Frostberge verbannt. Wir hatten ja keine Ahnung, dass sich der Stress dort über Generationen sammeln und schließlich zu dem Stressbiest werden würde, dem Ihr begegnet seid! Als es ausbrach, waren wir alle unter den Trümmern seines Gefängnisses in den Bergen gefangen und es begann unsere geliebten Tiere zu jagen.\" Ihr trauriger Blick folgt dem herabrieselndem Schnee. \"Wir haben durch unsere Dummheit alle in Gefahr gebracht. Seid versichert, dass wir in Zukunft mit unseren Problemen zu Euch kommen werden - bevor die Probleme zu Euch kommen.\"

Sie dreht sich zu @Baconsaur, der mit einigen der Babymammuts kuschelt. \"Wir haben Euren Tieren etwas Leckeres zu essen mitgebracht, um uns für den Schrecken, den wir verursachten, zu entschuldigen und als ein Symbol des Vertrauens werden wir einige unserer Haus- und Reittiere bei Euch lassen. Wir wissen, dass Ihr Euch gut um sie kümmern werdet.\"", - "questStressbeastCompletionChat": "'Das schreckliche Stressbiest ist BESIEGT!'\n\nWir haben es geschafft! Mit einem letzten Aufheulen löst sich das Schreckliche Stressbiest in eine Wolke aus Schnee auf. Die Flocken schweben sachte zu Boden, während jubelnde Habitianer ihre Haustiere und Reittiere umarmen. Unsere Tiere und unsere NPCs sind gerettet!!\n\nStoïstill ist gerettet!\n\nSabreCat spricht sanft mit einem kleinen Säbelzahntiger. \"Bitte finde die Einwohner der Stoïstillen Steppe und führe sie zu uns\", sagt er. Einige Stunden später kehrt der Säbelzahntiger zurück. Ihm folgt gemächlich eine Herde von Mammutreitern. Du erkennst den Anführer der Reiter. Es ist Lady Glaciate, die Anführerin von Stoïstill.\n\nTapfere Habitianer\", spricht sie, \"Meine Einwohner und ich sind Euch zu tiefsten Dank verpflichtet und wir müssen uns entschuldigen. Bei dem Versuch unsere Steppen vor Unruhe zu schützen, haben wir heimlich all unseren Stress in die Frostberge verbannt. Wir hatten ja keine Ahnung, dass sich der Stress dort über Generationen sammeln und schließlich zu dem Stressbiest werden würde, dem Ihr begegnet seid! Als es ausbrach, waren wir alle unter den Trümmern seines Gefängnisses in den Bergen gefangen und es begann unsere geliebten Tiere zu jagen.\" Ihr trauriger Blick folgt dem herabrieselndem Schnee. \"Wir haben durch unsere Dummheit alle in Gefahr gebracht. Seid versichert, dass wir in Zukunft mit unseren Problemen zu Euch kommen werden - bevor die Probleme zu Euch kommen.\"\n\nSie dreht sich zu @Baconsaur, der mit einigen der Babymammuts kuschelt. \"Wir haben Euren Tieren etwas Leckeres zu essen mitgebracht, um uns für den Schrecken, den wir verursachten, zu entschuldigen und als ein Symbol des Vertrauens werden wir einige unserer Haus- und Reittiere bei Euch lassen. Wir wissen, dass Ihr Euch gut um sie kümmern werdet.\"", + "questStressbeastCompletion": "Das schreckliche Stressbiest ist BESIEGT!!

Wir haben es geschafft! Mit einem letzten Aufheulen löst sich das Schreckliche Stressbiest in eine Wolke aus Schnee auf. Die Flocken schweben sachte zu Boden, während jubelnde Habiticaner ihre Haustiere und Reittiere umarmen. Unsere Tiere und unsere NPCs sind gerettet!!

Stoïstill ist gerettet!

SabreCat spricht sanft mit einem kleinen Säbelzahntiger. \"Bitte finde die Einwohner der Stoïstillen Steppe und führe sie zu uns\", sagt er. Einige Stunden später kehrt der Säbelzahntiger zurück. Ihm folgt gemächlich eine Herde von Mammutreitern. Du erkennst den Anführer der Reiter. Es ist Lady Glaciate, die Anführerin von Stoïstill.

\"Tapfere Habiticaner\", spricht sie, \"Meine Einwohner und ich sind Euch zu tiefsten Dank verpflichtet und wir müssen uns entschuldigen. Bei dem Versuch unsere Steppen vor Unruhe zu schützen, haben wir heimlich all unseren Stress in die Frostberge verbannt. Wir hatten ja keine Ahnung, dass sich der Stress dort über Generationen sammeln und schließlich zu dem Stressbiest werden würde, dem Ihr begegnet seid! Als es ausbrach, waren wir alle unter den Trümmern seines Gefängnisses in den Bergen gefangen und es begann unsere geliebten Tiere zu jagen.\" Ihr trauriger Blick folgt dem herabrieselndem Schnee. \"Wir haben durch unsere Dummheit alle in Gefahr gebracht. Seid versichert, dass wir in Zukunft mit unseren Problemen zu Euch kommen werden - bevor die Probleme zu Euch kommen.\"

Sie dreht sich zu @Baconsaur, der mit einigen der Babymammuts kuschelt. \"Wir haben Euren Tieren etwas Leckeres zu essen mitgebracht, um uns für den Schrecken, den wir verursachten, zu entschuldigen und als ein Symbol des Vertrauens werden wir einige unserer Haus- und Reittiere bei Euch lassen. Wir wissen, dass Ihr Euch gut um sie kümmern werdet.\"", + "questStressbeastCompletionChat": "'Das schreckliche Stressbiest ist BESIEGT!'\n\nWir haben es geschafft! Mit einem letzten Aufheulen löst sich das Schreckliche Stressbiest in eine Wolke aus Schnee auf. Die Flocken schweben sachte zu Boden, während jubelnde Habiticaner ihre Haustiere und Reittiere umarmen. Unsere Tiere und unsere NPCs sind gerettet!!\n\nStoïstill ist gerettet!\n\nSabreCat spricht sanft mit einem kleinen Säbelzahntiger. \"Bitte finde die Einwohner der Stoïstillen Steppe und führe sie zu uns\", sagt er. Einige Stunden später kehrt der Säbelzahntiger zurück. Ihm folgt gemächlich eine Herde von Mammutreitern. Du erkennst den Anführer der Reiter. Es ist Lady Glaciate, die Anführerin von Stoïstill.\n\nTapfere Habiticaner\", spricht sie, \"Meine Einwohner und ich sind Euch zu tiefsten Dank verpflichtet und wir müssen uns entschuldigen. Bei dem Versuch unsere Steppen vor Unruhe zu schützen, haben wir heimlich all unseren Stress in die Frostberge verbannt. Wir hatten ja keine Ahnung, dass sich der Stress dort über Generationen sammeln und schließlich zu dem Stressbiest werden würde, dem Ihr begegnet seid! Als es ausbrach, waren wir alle unter den Trümmern seines Gefängnisses in den Bergen gefangen und es begann unsere geliebten Tiere zu jagen.\" Ihr trauriger Blick folgt dem herabrieselndem Schnee. \"Wir haben durch unsere Dummheit alle in Gefahr gebracht. Seid versichert, dass wir in Zukunft mit unseren Problemen zu Euch kommen werden - bevor die Probleme zu Euch kommen.\"\n\nSie dreht sich zu @Baconsaur, der mit einigen der Babymammuts kuschelt. \"Wir haben Euren Tieren etwas Leckeres zu essen mitgebracht, um uns für den Schrecken, den wir verursachten, zu entschuldigen und als ein Symbol des Vertrauens werden wir einige unserer Haus- und Reittiere bei Euch lassen. Wir wissen, dass Ihr Euch gut um sie kümmern werdet.\"", "questTRexText": "König der Dinosaurier", "questTRexNotes": "Jetzt, wo uralte Kreaturen der Stoïkalm Steppen überall in Habitica umherstreifen, hat @Urse beschlossen, einen ausgewachsenen Tyrannosaurus zu adoptieren. Was kann dabei schon schiefgehen?

Alles.", "questTRexCompletion": "Der wilde Dinosaurier hört endlich zu toben und zu randalieren auf, setzt sich ruhig hin und fängt an sich mit den riesigen Hähnen anzufreunden. @Urse strahlt ihn an. \"Sie sind doch gar keine so schlimmen Haustiere! Sie brauchen einfach nur ein bisschen Disziplin. Hier, nimm dir ein paar Tyrannosaurus-Eier mit!\"", "questTRexBoss": "Fleischerner Tyrannosaurus", "questTRexUndeadText": "Der Dinosaurier aus den Tiefen der Erde", "questTRexUndeadNotes": "Während die uralten Dinosaurier der Stoïstillen Steppen durch HabitCity wandern, hört man auf ein mal einen angstvollen Schrei aus Richtung des Grand Museums. @Baconsaur ruft: \"Das Tyrannosaurus Skelett im Museum fängt an sich zu bewegen! Es muss die Anwesenheit seiner Artgenossen gewittert haben!\" Das knöcherne Biest bleckt seine monströsen Zähne und klappert auf Dich zu. Wie wirst Du in der Lage sein eine Kreatur zu besiegen, die bereits tot ist? Du wirst schnell zuschlagen müssen, bevor sie sich selbst heilt!", - "questTRexUndeadCompletion": "Die glühenden Augen des Tyrannosaurus werden dunkel und trüb und er begibt sich zurück zu seinem Sockel. Alle atmen vor Erleichterung auf. \"Seht nur!\", sagt @Baconsaur, \"einige der Fossilisieneier sind plötzlich wie neu! Vielleicht werden sie ja für dich ausschlüpfen.\"", + "questTRexUndeadCompletion": "Die glühenden Augen des Tyrannosaurus werden dunkel und trüb und er begibt sich zurück zu seinem Sockel. Alle atmen vor Erleichterung auf. \"Seht nur!\", sagt @Baconsaur, \"einige der Fossilisieneier sind plötzlich wie neu! Vielleicht werden sie ja für Dich ausschlüpfen.\"", "questTRexUndeadBoss": "Skelettierter Tyrannosaurus", "questTRexUndeadRageTitle": "Knöcherne Heilung", - "questTRexUndeadRageDescription": "Diese Leiste füllt sich, wenn Du deine täglichen Aufgaben nicht erfüllst. Wenn sie voll ist, heilt sich der skelettierte Tyrannosaurus um 30% seiner übrigen Lebenspunkte.", + "questTRexUndeadRageDescription": "Diese Leiste füllt sich, wenn Du Deine täglichen Aufgaben nicht erfüllst. Wenn sie voll ist, heilt sich der skelettierte Tyrannosaurus um 30% seiner übrigen Lebenspunkte.", "questTRexUndeadRageEffect": "'Der Skelettierte Tyrannosaurus benutzt KNÖCHERNE HEILUNG!'\n\nDas Monster lässt ein furchtbares Brüllen ertönen und einige seiner gesplitterten Knochen setzen sich wieder zusammen!", "questTRexDropTRexEgg": "Tyrannosaurus (Ei)", "questTRexUnlockText": "Ermöglicht den Kauf von Tyrannosauruseier auf dem Marktplatz.", "questRockText": "Entkomme dem Höhlenungetüm", - "questRockNotes": "Beim Durchqueren des Habitica Mäandergebirges schlagen Deine Freunde und Du ein Lager in einer Höhle auf, welche mit funkelnden Kristallen übersät ist. Als Du jedoch am nächsten Morgen aufwachst ist der Eingang verschwunden und der Höhlenboden unter dir beginnt sich zu bewegen.

\"Der Berg lebt!\" schreit dein Kamerad @pfeffernusse. \"Das sind keine Kristalle - das sind Zähne!\"

@Painter de Cluster ergreift Deine Hand. \"Wir müssen einen anderen Weg nach draußen finden. Bleib bei mir und lasse Dich nicht ablenken, sonst sind wir vielleicht für immer hier drinnen gefangen!\"", + "questRockNotes": "Beim Durchqueren des Habitica Mäandergebirges schlagen Deine Freunde und Du ein Lager in einer Höhle auf, welche mit funkelnden Kristallen übersät ist. Als Du jedoch am nächsten Morgen aufwachst ist der Eingang verschwunden und der Höhlenboden unter dir beginnt sich zu bewegen.

\"Der Berg lebt!\" schreit Dein Kamerad @pfeffernusse. \"Das sind keine Kristalle - das sind Zähne!\"

@Painter de Cluster ergreift Deine Hand. \"Wir müssen einen anderen Weg nach draußen finden. Bleib bei mir und lasse Dich nicht ablenken, sonst sind wir vielleicht für immer hier drinnen gefangen!\"", "questRockBoss": "Kristallkoloss", - "questRockCompletion": "Dank Deiner harten Arbeit konntest Du zu guter Letzt einen sicheren Weg durch den lebenden Berg finden. \nNach der langen Dunkelheit genießt Du die wärmenden Sonnenstrahlen, als Dich Dein Freund @intune auf ein Funkeln am Boden nahe der Höhle aufmerksam macht.\nDas Funkeln kommt von einem kleinen Stein, der von einer Goldader durchzogen ist. \nWährend Du ihn aufhebst siehst Du, dass um ihn herum weitere merkwürdig geformte Steine liegen. Sind das... Eier?", + "questRockCompletion": "Dank Deiner harten Arbeit konntest Du zu guter Letzt einen sicheren Weg durch den lebenden Berg finden. \nNach der langen Dunkelheit genießt Du die wärmenden Sonnenstrahlen, als Dich Dein Freund @intune auf ein Funkeln am Boden nahe der Höhle aufmerksam macht.\nDas Funkeln kommt von einem kleinen Stein, der von einer Goldader durchzogen ist. \nWährend Du ihn aufhebst siehst Du, dass um ihn herum weitere merkwürdig geformte Steine liegen. Sind das ... Eier?", "questRockDropRockEgg": "Fels (Ei)", "questRockUnlockText": "Ermöglicht den Kauf von Felseier auf dem Marktplatz", "questBunnyText": "Das Killerkaninchen", - "questBunnyNotes": "Nach vielen Tagen voller Schwierigkeiten erreichst Du den Gipfel des Berges des Aufschiebens und stehst vor den imposanten Toren der Festung der Verwahrlosung. Du liest die Inschrift im Stein. \"Hier lebt die Kreatur, die Deine größten Ängste verkörpert, der Grund für dein Nichtstun. Klopf an und stelle dich Deinem Dämon!\" Deine Hände beginnen zu zittern als Du Dir dieses Grauen vor Augen führst und Du spürst plötzlich den Drang zu fliehen, wie Du es schon so viele Male getan hast. @Draayder hält dich zurück. \"Bleib ruhig, mein Freund! Die Zeit ist endlich gekommen. Du musst dies tun!\"

Du klopfst und die Torflügel schwingen nach innen. Aus der Dunkelheit vor Dir hörst Du ein ohrenbetäubendes Brüllen und Du ziehst deine Waffe.", + "questBunnyNotes": "Nach vielen Tagen voller Schwierigkeiten erreichst Du den Gipfel des Berges des Aufschiebens und stehst vor den imposanten Toren der Festung der Verwahrlosung. Du liest die Inschrift im Stein. \"Hier lebt die Kreatur, die Deine größten Ängste verkörpert, der Grund für Dein Nichtstun. Klopf an und stelle Dich Deinem Dämon!\" Deine Hände beginnen zu zittern als Du Dir dieses Grauen vor Augen führst und Du spürst plötzlich den Drang zu fliehen, wie Du es schon so viele Male getan hast. @Draayder hält Dich zurück. \"Bleib ruhig, mein Freund! Die Zeit ist endlich gekommen. Du musst dies tun!\"

Du klopfst und die Torflügel schwingen nach innen. Aus der Dunkelheit vor Dir hörst Du ein ohrenbetäubendes Brüllen und Du ziehst Deine Waffe.", "questBunnyBoss": "Killerkaninchen", "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 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.", + "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 Habiticaner 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.", + "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 Habiticaner 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", - "questSheepNotes": "Als Du mit Deinen Freunden durch das ländliche Aufgabistan wanderst und eine \"kurze Pause\" von Deinen Verpflichtungen einlegst, findest Du einen gemütlichen Garnladen. Du bist so in Deine Aufgabenaufschieberei vertieft, dass du die Unheil verkündenden Wolken am Horizont kaum bemerkst. \"Ich habe ein schlechtes Gefühl bei diesem Wetter\", murmelt @Misceo und du schaust nach oben. Stürmischen Wolken brauen sich zusammen und sie sehen fast aus wie ... \"Wir haben keine Zeit, in die Wolken zu schauen\", ruft @starsystemic. \"Er greift an!\" Der Donnerbock rast los und schleudert Blitze direkt auf Dich zu!", + "questSheepNotes": "Als Du mit Deinen Freunden durch das ländliche Aufgabistan wanderst und eine \"kurze Pause\" von Deinen Verpflichtungen einlegst, findest Du einen gemütlichen Garnladen. Du bist so in Deine Aufgabenaufschieberei vertieft, dass Du die Unheil verkündenden Wolken am Horizont kaum bemerkst. \"Ich habe ein schlechtes Gefühl bei diesem Wetter\", murmelt @Misceo und Du schaust nach oben. Stürmischen Wolken brauen sich zusammen und sie sehen fast aus wie ... \"Wir haben keine Zeit, in die Wolken zu schauen\", ruft @starsystemic. \"Er greift an!\" Der Donnerbock rast los und schleudert Blitze direkt auf Dich zu!", "questSheepBoss": "Donnerbock", - "questSheepCompletion": "Beeindruckt von deinem Fleiß, lässt die Wut des Donnerbocks nach. Er schießt drei riesige Hagelkörner in deine Richtung und verschwindet dann mit leisem Grollen. Bei näherer Betrachtung entdeckst du, dass die Hagelkörner eigentlich drei flauschige Eier sind. Du hebst sie auf und schlenderst unter blauem Himmel nach Hause.", + "questSheepCompletion": "Beeindruckt von Deinem Fleiß, lässt die Wut des Donnerbocks nach. Er schießt drei riesige Hagelkörner in Deine Richtung und verschwindet dann mit leisem Grollen. Bei näherer Betrachtung entdeckst Du, dass die Hagelkörner eigentlich drei flauschige Eier sind. Du hebst sie auf und schlenderst unter blauem Himmel nach Hause.", "questSheepDropSheepEgg": "Schaf (Ei)", "questSheepUnlockText": "Ermöglicht den Kauf von Schafseiern auf dem Marktplatz", "questKrakenText": "Der Kraken von Unfertik", - "questKrakenNotes": "Als Du durch die Unfertige Bucht segelst, ist es ein warmer, sonniger Tag, aber Deine Gedanken sind voller Sorgen über alles was Du noch zu erledigen hast. Es scheint so, als ob sobald eine Aufgabe erledigt ist, eine andere auftaucht, und dann noch eine...

Plötzlich wird das Boot von einem furchtbaren Ruck erschüttert, und schleimige Tentakeln schlängeln sich an allen Seiten aus dem Wasser! \"Der Kraken von Unfertik greift uns an!\" schreit Wolvenhalo.

\"Schnell!\" ruft dir Lemoness zu. \"Schlage so viele Tentakeln und Aufgaben nieder wie Du kannst, bevor neue auftauchen und ihren Platz einnehmen!\"", + "questKrakenNotes": "Als Du durch die Unfertige Bucht segelst, ist es ein warmer, sonniger Tag, aber Deine Gedanken sind voller Sorgen über alles was Du noch zu erledigen hast. Es scheint so, als ob sobald eine Aufgabe erledigt ist, eine andere auftaucht, und dann noch eine ...

Plötzlich wird das Boot von einem furchtbaren Ruck erschüttert, und schleimige Tentakeln schlängeln sich an allen Seiten aus dem Wasser! \"Der Kraken von Unfertik greift uns an!\" schreit Wolvenhalo.

\"Schnell!\" ruft dir Lemoness zu. \"Schlage so viele Tentakeln und Aufgaben nieder wie Du kannst, bevor neue auftauchen und ihren Platz einnehmen!\"", "questKrakenBoss": "Der Kraken von Unfertik", "questKrakenCompletion": "Als der Kraken flieht, treiben mehrere Eier an die Wasseroberfläche. Lemoness untersucht sie zunächst argwöhnisch, dann ruft sie freudestrahlend \"Tintenfischeier! Hier, nimm sie als Belohnung für alles was Du erledigt hast!\"", "questKrakenDropCuttlefishEgg": "Tintenfisch (Ei)", @@ -212,28 +212,28 @@ "questWhaleText": "Jammern des Wals", "questWhaleNotes": "Du kommst am Diligent Hafen an und hoffst, dass Du mit einem U-Boot zum Dilatory Derby fahren kannst. Plötzlich zwingt Dich ein ohrenbetäubendes Grölen dazu anzuhalten und Deine Ohren zuzuhalten. \"Wal in Sicht!\", schreit Kapitän @krazjega, während er auf einen riesigen, klagenden Wal deutet. \"Es ist nicht sicher U-Boote herauszuschicken während sie um sich schlägt!\"

\"Schnell\", ruft @UncommonCriminal. \"Hilf mir die arme Kreatur zu beruhigen, damit wir herausfinden können, wieso sie diesen ganzen Krach macht!\"", "questWhaleBoss": "Jammernder Wal", - "questWhaleCompletion": "Nach der ganzen harten Arbeit verstummt das donnernde Jammern des Wales. \"Scheint als wäre sie in der Flut schlechter Angewohnheiten fast ertrunken\", erklärt @zoebeagle, \"Dank deiner ununterbrochenen Bemühungen konnten wir die Fluten abwenden!\" Als du in das U-Boot steigen willst fallen dir in der ruhigen See einige Eier auf.", + "questWhaleCompletion": "Nach der ganzen harten Arbeit verstummt das donnernde Jammern des Wales. \"Scheint als wäre sie in der Flut schlechter Angewohnheiten fast ertrunken\", erklärt @zoebeagle, \"Dank Deiner ununterbrochenen Bemühungen konnten wir die Fluten abwenden!\" Als Du in das U-Boot steigen willst fallen dir in der ruhigen See einige Eier auf.", "questWhaleDropWhaleEgg": "Wal (Ei)", "questWhaleUnlockText": "Ermöglicht den Kauf von Waleiern auf dem Marktplatz", "questDilatoryDistress1Text": "Dilatory in Gefahr, Teil 1: Flaschenpost", "questDilatoryDistress1Notes": "Eine Nachricht in einer Flasche aus der neu wieder aufgebauten Stadt Dilatory traf ein! Darin steht: \"Liebe Habiticaner, wir brauchen erneut eure Hilfe. Unsere Prinzessin ist verschwunden und die Stadt wird von einigen unbekannten Wasserdämonen belagert! Die Fangschreckenkrebse halten uns die Angreifer vom Leibe. Bitte helft uns!\" Um die weite Reise zur versunkenen Stadt zu durchstehen, muss man fähig sein unter Wasser zu atmen. Glücklicherweise können die Alchimisten @Benga und @hazel dies möglich machen! Du musst nur die richtigen Zutaten finden.", - "questDilatoryDistress1Completion": "Du ziehst die Flossenrüstung an und schwimmst so schnell du kannst nach Dilatory. Bisher haben das Meeresvolk und ihre verbündeten Fangschreckenkrebse es geschafft die Monster aus der Stadt fernzuhalten, aber sie sind drauf und dran zu verlieren. Kaum bist du innerhalb der Schlossmauern, als die entsetzliche Belagerung durchbricht!", + "questDilatoryDistress1Completion": "Du ziehst die Flossenrüstung an und schwimmst so schnell Du kannst nach Dilatory. Bisher haben das Meeresvolk und ihre verbündeten Fangschreckenkrebse es geschafft die Monster aus der Stadt fernzuhalten, aber sie sind drauf und dran zu verlieren. Kaum bist Du innerhalb der Schlossmauern, als die entsetzliche Belagerung durchbricht!", "questDilatoryDistress1CollectFireCoral": "Feuerkorallen", "questDilatoryDistress1CollectBlueFins": "Blaue Schwanzflossen", "questDilatoryDistress1DropArmor": "Flossenbesetztes Ozeangewand (Rüstung)", "questDilatoryDistress2Text": "Dilatory in Gefahr, Teil 2: Kreaturen der Gletscherspalte", - "questDilatoryDistress2Notes": "Die Belagerung kann meilenweit entfernt gesehen werden: tausende körperlose Schädel drängen sich durch ein Portal zwischen den Wänden der Spalte und streben Dilatory entgegen.

Du triffst König Manta mit eingefallenen Augen und besorgtem Gesicht in seinem Kriegszimmer. \"Meine Tochter Adva verschwand in der dunklen Meeresspalte kurz bevor die Belagerung begann. Bitte finde sie und bringe sie sicher wieder zurück! Ich werde dir mein Feuerkorallendiadem leihen, um dir zu helfen. Wenn du erfolgreich bist, ist es deins.\"", - "questDilatoryDistress2Completion": "Du bezwingst die albtraumhalfte Totenschädelhorde, aber du hast nicht das Gefühl näher dran zu sein Adva zu finden. Du fragst @Kiwibot, den königlichen Fährtensucher, ob sie irgendeine Idee hat. \"Die Fangschreckenkrebse, welche die Stadt verteidigen, sollten Advas Flucht gesehen haben\", antwortet @Kiwibot. \"Versuche ihnen in die dunkle Meeresspalte zu folgen.\"", + "questDilatoryDistress2Notes": "Die Belagerung kann meilenweit entfernt gesehen werden: tausende körperlose Schädel drängen sich durch ein Portal zwischen den Wänden der Spalte und streben Dilatory entgegen.

Du triffst König Manta mit eingefallenen Augen und besorgtem Gesicht in seinem Kriegszimmer. \"Meine Tochter Adva verschwand in der dunklen Meeresspalte kurz bevor die Belagerung begann. Bitte finde sie und bringe sie sicher wieder zurück! Ich werde dir mein Feuerkorallendiadem leihen, um dir zu helfen. Wenn Du erfolgreich bist, ist es deins.\"", + "questDilatoryDistress2Completion": "Du bezwingst die albtraumhalfte Totenschädelhorde, aber Du hast nicht das Gefühl näher dran zu sein Adva zu finden. Du fragst @Kiwibot, den königlichen Fährtensucher, ob sie irgendeine Idee hat. \"Die Fangschreckenkrebse, welche die Stadt verteidigen, sollten Advas Flucht gesehen haben\", antwortet @Kiwibot. \"Versuche ihnen in die dunkle Meeresspalte zu folgen.\"", "questDilatoryDistress2Boss": "Wasserschädel Schwarm", "questDilatoryDistress2RageTitle": "Schwarmnachwuchs", - "questDilatoryDistress2RageDescription": "Schwarmnachwuchs: Diese Leiste füllt sich, wenn Du deine täglichen Aufgaben nicht erfüllst. Wenn sie voll ist, heilt sich der Wasserschädel Schwarm um 30% seiner übrigen Lebenspunkte!", + "questDilatoryDistress2RageDescription": "Schwarmnachwuchs: Diese Leiste füllt sich, wenn Du Deine täglichen Aufgaben nicht erfüllst. Wenn sie voll ist, heilt sich der Wasserschädel Schwarm um 30% seiner übrigen Lebenspunkte!", "questDilatoryDistress2RageEffect": "'Wasserschädelschwarm benutzt SCHWARMNACHWUCHS!'\n\nErmutigt durch ihre Siege, strömen weitere Schädel aus der Meeresspalte, um den Schwarm zu unterstützen!", "questDilatoryDistress2DropSkeletonPotion": "Skelettierter Schlüpftrank", "questDilatoryDistress2DropCottonCandyBluePotion": "Zuckerwattenblauer Schlüpftrank", "questDilatoryDistress2DropHeadgear": "Feuerkorallendiadem (Kopfbedeckung)", "questDilatoryDistress3Text": "Dilatory in Gefahr, Teil 3: Nicht nur ein Dienstmädchen", - "questDilatoryDistress3Notes": "Du folgst den Fangschreckenkrebsen tief in die Meeresspalte und entdeckst eine Unterwasserfestung. Prinzessin Adva, von weiteren Wasserschädeln begleitet, erwartet dich in der Haupthalle. \"Mein Vater hat euch gesandt, oder? Berichtet ihm, dass ich es ablehne zurückzukehren. Ich bin damit zufrieden hier zu bleiben und Zauberei zu betreiben. Verschwinde jetzt oder du wirst den Zorn der neuen Meereskönigin spüren!\" Adva scheint unnachgiebig zu sein, aber während sie spricht bemerkst du einen seltsamen, bedrohlich glühenden Rubinanhänger an ihrem Hals ... Vielleicht würden ihre Wahnvorstellungen aufhören, wenn Du ihn zerbrichst?", - "questDilatoryDistress3Completion": "Schließlich gelingt es Dir den verhexten Anhänger von Advas Hals zu nehmen und wirfst ihn weg. Adva fasst sich an den Kopf: \"Wo bin ich? Was ist hier passiert?\" Nachdem sie Deine Geschichte gehört hat, runzelt sie ihre Stirn: \"Dieses Amulett wurde mir von einer seltsamen Botschafterin überreicht - Eine Dame namens 'Tzina'. Danach erinnere ich mich an nichts mehr!\"

Zurück in Dilatory ist Manta überglücklich über Deinen Erfolg. \"Erlaube mir, Dich mit diesem Dreizack und diesem Schild zu belohnen! Ich habe sie bei @aiseant und @starsystemic als Geschenk für Adva anfertigen lassen, aber ... Ich möchte in nächster Zeit lieber keine Waffen mehr in ihre Hände geben.", + "questDilatoryDistress3Notes": "Du folgst den Fangschreckenkrebsen tief in die Meeresspalte und entdeckst eine Unterwasserfestung. Prinzessin Adva, von weiteren Wasserschädeln begleitet, erwartet Dich in der Haupthalle. \"Mein Vater hat euch gesandt, oder? Berichtet ihm, dass ich es ablehne zurückzukehren. Ich bin damit zufrieden hier zu bleiben und Zauberei zu betreiben. Verschwinde jetzt oder Du wirst den Zorn der neuen Meereskönigin spüren!\" Adva scheint unnachgiebig zu sein, aber während sie spricht bemerkst Du einen seltsamen, bedrohlich glühenden Rubinanhänger an ihrem Hals ... Vielleicht würden ihre Wahnvorstellungen aufhören, wenn Du ihn zerbrichst?", + "questDilatoryDistress3Completion": "Schließlich gelingt es dir, den verhexten Anhänger von Advas Hals zu nehmen und Du wirfst ihn weg. Adva fasst sich an den Kopf: \"Wo bin ich? Was ist hier passiert?\" Nachdem sie Deine Geschichte gehört hat, runzelt sie ihre Stirn: \"Dieses Amulett wurde mir von einer seltsamen Botschafterin überreicht - Eine Dame namens 'Tzina'. Danach erinnere ich mich an nichts mehr!\"

Zurück in Dilatory ist Manta überglücklich über Deinen Erfolg. \"Erlaube mir, Dich mit diesem Dreizack und diesem Schild zu belohnen! Ich habe sie bei @aiseant und @starsystemic als Geschenk für Adva anfertigen lassen, aber ... Ich möchte in nächster Zeit lieber keine Waffen mehr in ihre Hände geben.", "questDilatoryDistress3Boss": "Adva, die putschende Meerjungfrau", "questDilatoryDistress3DropFish": "Fisch (Futter)", "questDilatoryDistress3DropWeapon": "Dreizack der zerschmetternden Gezeiten (Waffe)", @@ -252,16 +252,16 @@ "questHorseUnlockText": "Ermöglicht den Kauf von Hengsteier auf dem Marktplatz", "questBurnoutText": "Burnout und die Geister der Erschöpfung", "questBurnoutNotes": "Es ist weit nach Mitternacht, still und erstickend heiß als Redphoenix und Späheranführer Kiwibot plötzlich durch die Stadttore platzen. \"Wir müssen sämtliche Holzgebäude evakuieren!\", schreit Redphoenix. \"Beeilung!\"

Kiwibot stützt sich an die Wand als sie Luft holt. \"Es erschöpft die Menschen und verwandelt sie in Erschöpfungsgeister! Deshalb hat sich alles verzögert. Das ist, wo die Vermissten hin verschwunden sind. Es stiehlt ihre Energie!\"

\"Es?\", fragt Lemoness.

Und dann nimmt die Hitze Gestalt an.

Es steigt von der Erde empor, als wogende, wirbelnde Masse und die Luft wird erfüllt von einem Gestank nach Rauch und Schwefel. Flammen lecken über den geschmolzenen Boden und verkrümmen sich zu Gliedmaßen und winden sich in entsetzliche Höhen. Glimmende Augen öffnen sich und die Kreatur stößt ein tiefes und knackendes Lachen aus.

Kiwibot flüstert ein einzelnes Wort.

\"Burnout.\"", - "questBurnoutCompletion": "Burnout ist BESIEGT!

Mit einen großen, sanften Seufzer lässt Burnout die glühende Energie frei, die sein Feuer angetrieben haben. Während das Monster sich leise in Asche windet, schimmert seine gestohlene Energie im Wind, belebt die Erschöpfungsgeister wieder und bringt sie zu ihrer wahren Gestalt zurück!

Ian, Daniel, und die Jahreszeitenzauberin jubeln als Habiticaner heraneilten um sie zu grüßen, und all die vermissten Einwohner von den Gedeihenden Felder umarmen ihre Freunde und Familien. Der finale Erschöpfungsgeist transformiert sich in den Fröhlichen Reaper selbst!

\"Seht!\" flüstert @Baconsaur, als die Asche anfängt zu schimmern. Langsam klären sie sich in Hunderte von scheinenden Phoenixe auf!

Einer von den glühenden Vögel landet auf den Skelettarm von den Fröhlichen Reaper, und sie grinst es an. \"Es war eine lange Zeit seitdem ich das exquisite Privileg hatte einen Phoenix in den Gedeihenden Felder zu erblicken,! sagt sie. \"Obwohl den vorherigen Vorfällen her muss ich sagen, dass ist thematisch sehr passend!\"

Ihr Ton ernüchtert, auch wenn (natürlicherweise) ihr Grinsen bleibt. \"Wir sind bekannt dafür arbeitsam zu sein, aber wir sind auch für unsere Festmahle und Festivals bekannt. Ziemlich ironisch, vermute ich, als wir eiferten eine spektakuläre Party zu planen, dass wir uns jegliche Zeit für Spaß verwehrt haben zu erlauben. Wir werden diesen Fehler nicht noch mal ein zweites begehen!

Sie klatsche in ihre Hände. \"Nun - lass uns zelebrieren!\" ", - "questBurnoutCompletionChat": "`Burnout ist BESIEGT!`\n\nMit einen großen, sanften Seufzer lässt Burnout die glühende Energie frei, die sein Feuer angetrieben haben. Während das Monster sich leise in Asche windet, schimmert seine gestohlene Energie im Wind, belebt die Erschöpfungsgeister wieder und bringt sie zu ihrer wahren Gestalt zurück!\n\nIan, Daniel, und die Jahreszeitenzauberin jubeln als Habiticaner heraneilten um sie zu grüßen, und all die vermissten Einwohner von den Gedeihenden Felder umarmen ihre Freunde und Familien. Der finale Erschöpfungsgeist transformiert sich in den Fröhlichen Reaper selbst!\n\n\"Seht!\" flüstert @Baconsaur, als die Asche anfängt zu schimmern. Langsam klären sie sich in Hunderte von scheinenden Phoenixe auf!\n\nEiner von den glühenden Vögel landet auf den Skelettarm von den Fröhlichen Reaper, und sie grinst es an. \"Es war eine lange Zeit seitdem ich das exquisite Privileg hatte einen Phoenix in den Gedeihenden Felder zu erblicken,! sagt sie. \"Obwohl den vorherigen Vorfällen her muss ich sagen, dass ist thematisch sehr passend!\"\n\nIhr Ton ernüchtert, auch wenn (natürlicherweise) ihr Grinsen bleibt. \"Wir sind bekannt dafür arbeitsam zu sein, aber wir sind auch für unsere Festmahle und Festivals bekannt. Ziemlich ironisch, vermute ich, als wir eiferten eine spektakuläre Party zu planen, dass wir uns jegliche Zeit für Spaß verwehrt haben zu erlauben. Wir werden diesen Fehler nicht noch mal ein zweites begehen!\n\nSie klatsche in ihre Hände. \"Nun - lass uns zelebrieren!\"\n\nAlle Habiticaner bekommen:\n\nPhoenix Haustier\nPhoenix Reittier\nErfolg: Retter der Gedeihenden Felder\nEinfache Süßigkeit\nVanille Süßigkeit\nSand Süßigkeit\nZimt Süßigkeit\nSchokoladen Süßigkeit \nVerfaultete Süßigkeit\npinke saure Süßigkeit\nblaue saure Süßigkeit\nHonig Süßigkeit", + "questBurnoutCompletion": "Burnout ist BESIEGT!

Mit einen großen, sanften Seufzer lässt Burnout die glühende Energie frei, die sein Feuer angetrieben haben. Während das Monster sich leise in Asche windet, schimmert seine gestohlene Energie im Wind, belebt die Erschöpfungsgeister wieder und bringt sie zu ihrer wahren Gestalt zurück!

Ian, Daniel, und die Jahreszeitenzauberin jubeln als Habiticaner heraneilten um sie zu grüßen, und all die vermissten Einwohner von den Gedeihenden Felder umarmen ihre Freunde und Familien. Der finale Erschöpfungsgeist transformiert sich in den Fröhlichen Reaper selbst!

\"Seht!\" flüstert @Baconsaur, als die Asche anfängt zu schimmern. Langsam klären sie sich in Hunderte von scheinenden Phoenixe auf!

Einer von den glühenden Vögel landet auf den Skelettarm von den Fröhlichen Reaper, und sie grinst es an. \"Es war eine lange Zeit seitdem ich das exquisite Privileg hatte einen Phoenix in den Gedeihenden Felder zu erblicken,! sagt sie. \"Obwohl den vorherigen Vorfällen her muss ich sagen, dass ist thematisch sehr passend!\"

Ihr Ton ernüchtert, auch wenn (natürlicherweise) ihr Grinsen bleibt. \"Wir sind bekannt dafür arbeitsam zu sein, aber wir sind auch für unsere Festmahle und Festivals bekannt. Ziemlich ironisch, vermute ich, als wir eiferten eine spektakuläre Party zu planen, dass wir uns jegliche Zeit für Spaß verwehrt haben zu erlauben. Wir werden diesen Fehler nicht noch mal ein zweites begehen!

Sie klatsche in ihre Hände. \"Nun - lass uns zelebrieren!\"", + "questBurnoutCompletionChat": "`Burnout ist BESIEGT!`\n\nMit einen großen, sanften Seufzer lässt Burnout die glühende Energie frei, die sein Feuer angetrieben haben. Während das Monster sich leise in Asche windet, schimmert seine gestohlene Energie im Wind, belebt die Erschöpfungsgeister wieder und bringt sie zu ihrer wahren Gestalt zurück!\n\nIan, Daniel, und die Jahreszeitenzauberin jubeln als Habiticaner heraneilten um sie zu grüßen, und all die vermissten Einwohner von den Gedeihenden Felder umarmen ihre Freunde und Familien. Der finale Erschöpfungsgeist transformiert sich in den Fröhlichen Reaper selbst!\n\n\"Seht!\" flüstert @Baconsaur, als die Asche anfängt zu schimmern. Langsam klären sie sich in Hunderte von scheinenden Phoenixe auf!\n\nEiner von den glühenden Vögel landet auf den Skelettarm von den Fröhlichen Reaper, und sie grinst es an. \"Es war eine lange Zeit seitdem ich das exquisite Privileg hatte einen Phoenix in den Gedeihenden Felder zu erblicken,! sagt sie. \"Obwohl den vorherigen Vorfällen her muss ich sagen, dass ist thematisch sehr passend!\"\n\nIhr Ton ernüchtert, auch wenn (natürlicherweise) ihr Grinsen bleibt. \"Wir sind bekannt dafür arbeitsam zu sein, aber wir sind auch für unsere Festmahle und Festivals bekannt. Ziemlich ironisch, vermute ich, als wir eiferten eine spektakuläre Party zu planen, dass wir uns jegliche Zeit für Spaß verwehrt haben zu erlauben. Wir werden diesen Fehler nicht noch mal ein zweites begehen!\n\nSie klatsche in ihre Hände. \"Nun - lass uns zelebrieren!\"\n\nAlle Habiticaner bekommen:\n\nPhoenix Haustier\nPhoenix Reittier\nErfolg: Retter der Gedeihenden Felder\nEinfache Süßigkeit\nVanille Süßigkeit\nSand Süßigkeit\nZimt Süßigkeit\nSchokoladen Süßigkeit \nVerfaultete Süßigkeit\nPinke saure Süßigkeit\nBlaue saure Süßigkeit\nHonig Süßigkeit", "questBurnoutBoss": "Burnout", "questBurnoutBossRageTitle": "Erschöpfungsschlag", "questBurnoutBossRageDescription": "Wenn sich diese Anzeige füllt, wird Burnout seinen Erschöpfungsschlag auf Habitica entfesseln!", "questBurnoutDropPhoenixPet": "Phönix (Haustier)", "questBurnoutDropPhoenixMount": "Phönix (Reittier)", - "questBurnoutBossRageQuests": "`Burnout benutzt ERSCHÖPFUNGSSCHLAG!`\n\nOh nein! Trotz unseren besten Bemühungen haben wir einige tägliche Aufgaben nicht ablaufen lassen und nun ist Burnout voller Energie entflammt! Mit einen knisterenden Knurren umhüllt es Ian den Quest Herr in einen Welle von Spektralflammen. Während die gefallende Questrollen qualmen, klärt sich der Rauch und du siehst, dass Ian seiner Energie aufgezehrt wurde und sich in einen herumtreibenden Erschöpfungsgeist verwandelte.\n\nNur die Bezwingung von Burnout kann den Zauber brechen und unseren geliebten Questmeister wiederherstellen. Lasst uns unsere täglichen Aufgaben abchecken und dieses Monster besiegen bevor es nochmals angreift!", - "questBurnoutBossRageSeasonalShop": "Burnout benutzt ERSCHÖPFUNGSSCHLAG!\n\nAhh!!! Unsere unerledigten, täglichen Aufgaben haben die Flammen von Burnout genährt und nun hat es genug Energie, um nochmal anzugreifen! Es lässt ein Meer von Spektralflammen los, welches den seasonalen Shop verbrennt. Du bist erschrocken zu sehen, dass die heitere Jahreszeitenzauberin in einen schlaffen Erschöpfungsgeist transformiert wurde.\n\nWir müssen die NPCs retten! Schnell, Habiticaner, erledige deine Aufgaben und besiege Burnout bevor es ein drittes Mal zuschlägt!", - "questBurnoutBossRageTavern": "`Burnout benutzt ERSCHÖPFUNGSSCHLAG!`\n\nVIele Habiticaner haben sich vor Burnout in dem Gasthaus versteckt, aber nicht mehr länger! Mit einen kreischenden Schrei harkt Burnout das Gasthaus mit seinen weiß glühenden Händen. Während der Gasthaus Schutzherr flieht, wurde Daniel von Burnout's Klauen gegriffen und transformiert sich direkt vor dir in einen Erschöpfungsgeist!.\n\nDieser unbeheerschte Horror ging schon viel zu lange. Gib nicht auf... wir sind so nah dran Burnout ein für alle Mal zu bezwingen!", + "questBurnoutBossRageQuests": "`Burnout benutzt ERSCHÖPFUNGSSCHLAG!`\n\nOh nein! Trotz unseren besten Bemühungen haben wir einige tägliche Aufgaben nicht ablaufen lassen und nun ist Burnout voller Energie entflammt! Mit einen knisterenden Knurren umhüllt es Ian den Quest Herr in einen Welle von Spektralflammen. Während die gefallende Questrollen qualmen, klärt sich der Rauch und Du siehst, dass Ian seiner Energie aufgezehrt wurde und sich in einen herumtreibenden Erschöpfungsgeist verwandelte.\n\nNur die Bezwingung von Burnout kann den Zauber brechen und unseren geliebten Questmeister wiederherstellen. Lasst uns unsere täglichen Aufgaben abchecken und dieses Monster besiegen bevor es nochmals angreift!", + "questBurnoutBossRageSeasonalShop": "Burnout benutzt ERSCHÖPFUNGSSCHLAG!\n\nAhh!!! Unsere unerledigten, täglichen Aufgaben haben die Flammen von Burnout genährt und nun hat es genug Energie, um nochmal anzugreifen! Es lässt ein Meer von Spektralflammen los, welches den seasonalen Shop verbrennt. Du bist erschrocken zu sehen, dass die heitere Jahreszeitenzauberin in einen schlaffen Erschöpfungsgeist transformiert wurde.\n\nWir müssen die NPCs retten! Schnell, Habiticaner, erledige Deine Aufgaben und besiege Burnout bevor es ein drittes Mal zuschlägt!", + "questBurnoutBossRageTavern": "`Burnout benutzt ERSCHÖPFUNGSSCHLAG!`\n\nVIele Habiticaner haben sich vor Burnout im Gasthaus versteckt, aber nicht mehr lange! Mit einen kreischenden Schrei harkt Burnout das Gasthaus mit seinen weiß glühenden Händen. Während der Gasthaus-Schutzherr flieht, wurde Daniel von Burnouts Klauen gegriffen und transformiert sich direkt vor dir in einen Erschöpfungsgeist!.\n\nDieser unbeherrschte Horror ging schon viel zu lange. Gib nicht auf ... wir sind so nah dran Burnout ein für alle Mal zu bezwingen!", "questFrogText": "Sumpf des Chaos-Froschs", "questFrogNotes": "Als Du Dich mit Deinen Freunden durch den Sumpf des Stillstands schlägst, deutet @starsystemic auf ein großes Schild: \"Auf dem Weg bleiben -- wenn möglich.\"

\"Das ist sicher nicht schwer\" sagt @RosemonkeyCT. \"Er ist breit und frei.\"

Aber als Ihr weitergeht, bemerkst Du, dass der Weg langsam immer mehr vom Moor des Sumpfs eingenommen wird, übersät mit Stücken blauen Gerölls und Müll. Irgendwann ist es unmöglich voranzukommen.

Als Du Dich umsiehst und Dich fragst, wie es hier so verschmutzt werden konnte, ruft @Jon Arjinborn: \"Passt auf!\" Ein wütender Frosch springt aus dem Schlamm hervor, bekleidet mit dreckigen Lumpen und von blauem Feuer entfacht. Du musst diesen giftigen Chaos-Frosch überwältigen um weiterzukommen!", "questFrogCompletion": "Der Frosch kauert sich zurück ins Moor, besiegt. Als er sich langsam davonschleicht, löst sich der blaue Schleim auf und gibt den Weg vor euch frei.

In der Mitte des Weges befinden sich drei makellose Eier. \"Man kann sogar die winzigen Kaulquappen durch die klare Schale hindurch erkennen!\" sagt @Breadstrings. \"Hier, Du solltest sie nehmen.\"", @@ -274,22 +274,39 @@ "questSnakeBoss": "Schlange der Ablenkung", "questSnakeDropSnakeEgg": "Schlange (Ei)", "questSnakeUnlockText": "Ermöglicht den Kauf von Schlangeneiern auf dem Marktplatz", - "questUnicornText": "Überzeuge die Königin der Einhörner", - "questUnicornNotes": "Conquest Creek ist völlig verschlammt und zerstört so Habit City's Frischwasser Vorräte! Glücklicherweise kennt @Lukreja eine alte Legende, laut dieser ein Einhorn-Horn in der Lage ist das fauleste aller Wasser zu reinigen. Gemeinsam mit deinem unerschrockenen Führer @UncommonCriminal machst du dich auf die Reise durch die, im ewigen Eis verborgenen, Gipfel der Mäandergebirge.\nLetztendlich, auf der eisigen Spitze vom Mount Habitica erblickst du inmitten des funkelnden Schneetreiben die Einhorn-Königing höchstselbst.\n\"Dein Gesuch ist überzeugend\", spricht sie. \"Aber zuerst musst du dich meiner Hilfe als würdig erweisen!\"", - "questUnicornCompletion": "Von deiner Aufrichtigkeit und Stärke beeindruckt stimmt die Einhorn-Königin deinem Anliegen zu. Auf Ihrem Rücken reitend fliegt ihr zum Ursprung des Conquest Creek. In dem Moment wo das güldene Horn der Königing das faulige Wasser berührt beginnt ein grell-blaues List aus dem Wasser zu steigen. Es blendet so sehr das du nicht anders kannst als deine Augen zu verschließen. Als du sie einen Moment später wieder öffnest ist die Königing verschwundend. Ehe du darüber nachdenken kannst hörst du @rosiesully´s Freudenschrei: Das Wasser ist nun klar und am Ufer des Flusses erblickst du drei glänzende Eier.", - "questUnicornBoss": "Die Königin der Einhörner", + "questUnicornText": "Überzeuge die Einhornkönigin", + "questUnicornNotes": "Conquest Creek ist völlig verschlammt und zerstört so Habit Citys Frischwasser-Vorräte! Glücklicherweise kennt @Lukreja eine alte Legende, laut welcher das Horn eines Einhorns in der Lage ist selbst das fauleste aller Wasser zu reinigen. Gemeinsam mit Deinem unerschrockenen Führer @UncommonCriminal machst Du Dich auf die Reise durch die, im ewigen Eis verborgenen, Gipfel der Mäandergebirge.\nLetztendlich, auf der eisigen Spitze von Mount Habitica erblickst Du inmitten des funkelnden Schneetreibens die Einhorn-Königin höchstselbst.\n\"Dein Gesuch ist überzeugend\", spricht sie. \"Aber zuerst musst Du Dich meiner Hilfe als würdig erweisen!\"", + "questUnicornCompletion": "Von Deiner Aufrichtigkeit und Stärke beeindruckt stimmt die Einhorn-Königin schließlich Deinem Anliegen zu. Auf Ihrem Rücken reitend fliegt ihr zum Ursprung des Conquest Creek. In dem Moment, als das güldene Horn der Königin das faulige Wasser berührt beginnt ein grell-blaues Licht aus dem Wasser zu steigen. Es blendet so sehr, dass Du nicht anders kannst als Deine Augen zu schließen. Als Du sie einen Augenblick später wieder öffnest ist die Königin verschwunden. Ehe Du darüber nachdenken kannst hörst Du @rosiesullys Freudenschrei: Das Wasser ist nun klar und am Ufer des Flusses erblickst Du drei glänzende Eier.", + "questUnicornBoss": "Die Einhornkönigin", "questUnicornDropUnicornEgg": "Einhorn (Ei)", "questUnicornUnlockText": "Ermöglicht den Kauf von Einhorneier auf dem Marktplatz", "questSabretoothText": "Der Säbelzahntiger", - "questSabretoothNotes": "Ein brüllendes Monster terrorisiert Habitica! Die Kreatur pirscht sich durch Wildnis und Wälder an, greift blitzschnell an und verschwindet so schnell sie gekommen ist wieder. Es hat unschuldige Pandas angegriffen und die Flugkeiler erschreckt, sodass sie geflohen sind und sich in den Bäumen verstecken. @Inventrix und @icefelis erklären, dass der Zombie-Säbelzahntiger freigelassen wurde, während sie in den alten, verlassenen Eisfeldern der Stoischen Steppe gruben. \"Es war zuerst sehr freundlich - Ich weiß nicht, was passiert ist. Bitte hilf uns es wieder einzufangen! Nur ein Meister von Habitica kann dieses prähistorische Biest bändigen!\"", + "questSabretoothNotes": "Ein brüllendes Monster terrorisiert Habitica! Die Kreatur pirscht durch Wildnis und Wälder, greift blitzschnell an und verschwindet so schnell es gekommen ist wieder. Es hat unschuldige Pandas angegriffen und die Flugkeiler erschreckt, sodass sie geflohen sind und sich in den Wäldern verstecken. @Inventrix und @icefelis erklären, dass der Zombie-Säbelzahntiger freigelassen wurde, während sie in den alten, verlassenen Eisfeldern der Stoischen Steppe gruben. \"Es war zuerst sehr freundlich - Ich weiß nicht, was passiert ist. Bitte hilf uns es wieder einzufangen! Nur ein Meister von Habitica kann dieses prähistorische Biest bändigen!\"", "questSabretoothCompletion": "Nach einem langen und ermüdenden Kampf, ringst Du den Zombie-Säbelzahntiger zu Boden. Als Du endlich in der Lage bist heranzutreten, bemerkst Du ein scheußliches Loch in einem seiner Zähne. Nun erkennst Du den wahren Grund für den Zorn des Tigers, füllst das Loch mit @Fandekasp und rätst allen, ihre Freunde in Zukunft nicht länger mit Süßigkeiten zu füttern. Der Säbelzahntiger blüht auf und aus Dankbarkeit senden Dir seine Dompteure eine großzügige Belohnung - einen Haufen Säbelzahntigereier!", - "questSabretoothBoss": "Zombie Säbelzahntiger", + "questSabretoothBoss": "Zombie-Säbelzahntiger", "questSabretoothDropSabretoothEgg": "Säbelzahntiger (Ei)", "questSabretoothUnlockText": "Ermöglicht den Kauf von Säbelzahntigereiern auf dem Marktplatz", - "questMonkeyText": "Monstrous Mandrill and the Mischief Monkeys", - "questMonkeyNotes": "The Sloensteadi Savannah is being torn apart by the Monstrous Mandrill and his Mischief Monkeys! They shriek loudly enough to drown out the sound of approaching deadlines, encouraging everyone to avoid their duties and keep monkeying around. Alas, plenty of people ape this bad behavior. If no one stops these primates, soon everyone's tasks will be as red as the Monstrous Mandrill's face!

\"It will take a dedicated adventurer to resist them,\" says @yamato.

\"Quick, let's get this monkey off everyone's backs!\" @Oneironaut yells, and you charge into battle.", - "questMonkeyCompletion": "You did it! No bananas for those fiends today. Overwhelmed by your diligence, the monkeys flee in panic. \"Look,\" says @Misceo. \"They left a few eggs behind.\"

@Leephon grins. \"Maybe a well-trained pet monkey can help you as much as the wild ones hinder you!\"", - "questMonkeyBoss": "Monstrous Mandrill", - "questMonkeyDropMonkeyEgg": "Monkey (Egg)", - "questMonkeyUnlockText": "Unlocks purchasable Monkey eggs in the Market" + "questMonkeyText": "Monströser Mandrill und die Albernen Affen", + "questMonkeyNotes": "Die Sloensteadi-Savanne wird vom Monströsen Mandrill und seinen Albernen Affen verwüstet. Sie kreischen laut genug um den Klang nahender Deadlines zu übertönen und ermutigen dadurch alle, ihre Pflichten zu vernachlässigen und weiter herumzualbern. Und so äffen viele dieses schlechte Verhalten nach. Wenn niemand diese Primaten aufhält, werden alle Aufgaben bald so rot wie das Gesicht des Monströsen Mandrills.

\"Man muss schon ein erfahrener Abenteurer sein um ihnen zu widerstehen,\" meint @yamato.

\"Auf, geh'n wir in die Affensive!\" ruft @Oneironaut während ihr in den Kampf stürmt.", + "questMonkeyCompletion": "Du hast es geschafft! Keine Bananen für diese Übeltäter, heute. Überwältigt von Deinem Eifer fliehen die Affen in heller Panik. \"Guck mal\", sagt @Misceo. \"Sie haben ein paar Eier zurückgelassen.\"

@Leephon grinst. \"Vielleicht werden Dir ein paar gut trainierte Haustieraffen so gut helfen, wie die wilden ein Hindernis waren!\"", + "questMonkeyBoss": "Monströser Mandrill", + "questMonkeyDropMonkeyEgg": "Affe (Ei)", + "questMonkeyUnlockText": "Ermöglicht den Kauf von Affeneiern auf dem Marktplatz", + "questSnailText": "Der Schneckerich der schlammigen Schinderei", + "questSnailNotes": "Du freust Dich, Deinen Quest in den verlassenen Schinderverliesen zu beginnen, aber kaum, dass Du die Verliese betrittst, fühlst Du wie der Grund unter dir an Deinen Stiefeln zu saugen beginnt. Du betrachtest den Pfad vor dir und siehst in Schleim versunkene Habiticaner. @Overomega brüllt, \"Sie haben zu viele unwichtige Aufgaben, und sie bleiben an Dingen hängen, die nicht wichtig sind! Zieh sie raus!

\"Du musst die Quelle des Schlamms finden,\" stimmt @Pfeffernusse zu, \"oder die nicht erfüllbaren Aufgaben ziehen sie ewig hinunter!\"

Deine Waffe ziehend watest Du durch den zählen Schlamm ... und triffst auf den fürchterlichen Schneckerich der schlammigen Schinderei.", + "questSnailCompletion": "Du lässt Deine Waffe auf den Schneckenpanzer niederfahren, wobei dieser in zwei Teile zerbricht und eine Flutwelle Wasser freigibt. Der Schleim wird weggespült und die Habiticaner um Dich herum jubeln. \"Sieh!\" sagt @Misceo. \"Dort liegen einige Schneckeneier in den Überresten des Unrats.\"", + "questSnailBoss": "Schneckerich der schlammigen Schinderei", + "questSnailDropSnailEgg": "Schnecke (Ei)", + "questSnailUnlockText": "Ermöglicht den Kauf von Schneckeneiern auf dem Marktplatz", + "questBewilderText": "The Be-Wilder", + "questBewilderNotes": "The party begins like any other.

The appetizers are excellent, the music is swinging, and even the dancing elephants have become routine. Habiticans laugh and frolic amid the overflowing floral centerpieces, happy to have a distraction from their least-favorite tasks, and the April Fool whirls among them, eagerly providing an amusing trick here and a witty twist there.

As the Mistiflying clock tower strikes midnight, the April Fool leaps onto the stage to give a speech.

“Friends! Enemies! Tolerant acquaintances! Lend me your ears.” The crowd chuckles as animal ears sprout from their heads, and they pose with their new accessories.

“As you know,” the Fool continues, “my confusing illusions usually only last a single day. But I’m pleased to announce that I’ve discovered a shortcut that will guarantee us non-stop fun, without having to deal with the pesky weight of our responsibilities. Charming Habiticans, meet my magical new friend... the Be-Wilder!”

Lemoness pales suddenly, dropping her hors d'oeuvres. “Wait! Don’t trust--”

But suddenly mists are pouring into the room, glittering and thick, and they swirl around the April Fool, coalescing into cloudy feathers and a stretching neck. The crowd is speechless as an monstrous bird unfolds before them, its wings shimmering with illusions. It lets out a horrible screeching laugh.

“Oh, it has been ages since a Habitican has been foolish enough to summon me! How wonderful it feels, to have a tangible form at last.”

Buzzing in terror, the magic bees of Mistiflying flee the floating city, which sags from the sky. One by one, the brilliant spring flowers wither up and wisp away.

“My dearest friends, why so alarmed?” crows the Be-Wilder, beating its wings. “There’s no need to toil for your rewards any more. I’ll just give you all the things that you desire!”

A rain of coins pours from the sky, hammering into the ground with brutal force, and the crowd screams and flees for cover. “Is this a joke?” Baconsaur shouts, as the gold smashes through windows and shatters roof shingles.

PainterProphet ducks as lightning bolts crackle overhead, and fog blots out the sun. “No! This time, I don’t think it is!”

Quickly, Habiticans, don’t let this World Boss distract us from our goals! Stay focused on the tasks that you need to complete so we can rescue Mistiflying -- and hopefully, ourselves.", + "questBewilderCompletion": "The Be-Wilder is DEFEATED!

We've done it! The Be-Wilder lets out a ululating cry as it twists in the air, shedding feathers like falling rain. Slowly, gradually, it coils into a cloud of sparkling mist. As the newly-revealed sun pierces the fog, it burns away, revealing the coughing, mercifully human forms of Bailey, Matt, Alex.... and the April Fool himself.

Mistiflying is saved!

The April Fool has enough shame to look a bit sheepish. “Oh, hm,” he says. “Perhaps I got a little…. carried away.”

The crowd mutters. Sodden flowers wash up on sidewalks. Somewhere in the distance, a roof collapses with a spectacular splash.

“Er, yes,” the April Fool says. “That is. What I meant to say was, I’m dreadfully sorry.” He heaves a sigh. “I suppose it can’t all be fun and games, after all. It might not hurt to focus occasionally. Maybe I’ll get a head start on next year’s pranking.”

Redphoenix coughs meaningfully.

“I mean, get a head start on this year’s spring cleaning!” the April Fool says. “Nothing to fear, I’ll have Habit City in spit-shape soon. Luckily nobody is better than I at dual-wielding mops.”

Encouraged, the marching band starts up.

It isn’t long before all is back to normal in Habit City. Plus, now that the Be-Wilder has evaporated, the magical bees of Mistiflying bustle back to work, and soon the flowers are blooming and the city is floating once more.

As Habiticans cuddle the magical fuzzy bees, the April Fool’s eyes light up. “Oho, I’ve had a thought! Why don’t you all keep some of these fuzzy Bee Pets and Mounts? It’s a gift that perfectly symbolizes the balance between hard work and sweet rewards, if I’m going to get all boring and allegorical on you.” He winks. “Besides, they don’t have stingers! Fool’s honor.”", + "questBewilderCompletionChat": "`The Be-Wilder is DEFEATED!`\n\nWe've done it! The Be-Wilder lets out a ululating cry as it twists in the air, shedding feathers like falling rain. Slowly, gradually, it coils into a cloud of sparkling mist. As the newly-revealed sun pierces the fog, it burns away, revealing the coughing, mercifully human forms of Bailey, Matt, Alex.... and the April Fool himself.\n\n`Mistiflying is saved!`\n\nThe April Fool has enough shame to look a bit sheepish. “Oh, hm,” he says. “Perhaps I got a little…. carried away.”\n\nThe crowd mutters. Sodden flowers wash up on sidewalks. Somewhere in the distance, a roof collapses with a spectacular splash.\n\n“Er, yes,” the April Fool says. “That is. What I meant to say was, I’m dreadfully sorry.” He heaves a sigh. “I suppose it can’t all be fun and games, after all. It might not hurt to focus occasionally. Maybe I’ll get a head start on next year’s pranking.”\n\nRedphoenix coughs meaningfully.\n\n“I mean, get a head start on this year’s spring cleaning!” the April Fool says. “Nothing to fear, I’ll have Habit City in spit-shape soon. Luckily nobody is better than I at dual-wielding mops.”\n\nEncouraged, the marching band starts up.\n\nIt isn’t long before all is back to normal in Habit City. Plus, now that the Be-Wilder has evaporated, the magical bees of Mistiflying bustle back to work, and soon the flowers are blooming and the city is floating once more.\n\nAs Habiticans cuddle the magical fuzzy bees, the April Fool’s eyes light up. “Oho, I’ve had a thought! Why don’t you all keep some of these fuzzy Bee Pets and Mounts? It’s a gift that perfectly symbolizes the balance between hard work and sweet rewards, if I’m going to get all boring and allegorical on you.” He winks. “Besides, they don’t have stingers! Fool’s honor.”", + "questBewilderBossRageTitle": "Beguilement Strike", + "questBewilderBossRageDescription": "When this gauge fills, The Be-Wilder will unleash its Beguilement Strike on Habitica!", + "questBewilderDropBumblebeePet": "Bumblebee (Pet)", + "questBewilderDropBumblebeeMount": "Bumblebee (Mount)", + "questBewilderBossRageMarket": "`The Be-Wilder uses BEGUILEMENT STRIKE!`\n\nOh no! Despite our best efforts, we've gotten distracted by the Be-Wilder’s charming illusions and have forgotten to do some of our Dailies! With a cackling cry, the shining bird beats its wings, raising a swarm of mist around Alex the Merchant. When the fog clears, he has been possessed! “Have some free samples!” he shouts gleefully, and begins to hurl exploding eggs and potions at fleeing Habiticans. Not the most favorable of sales, to be sure.\n\nHurry! Let's stay focused on our Dailies to defeat this monster before it possesses someone else.", + "questBewilderBossRageStables": "`The Be-Wilder uses BEGUILEMENT STRIKE!`\n\nAhh!!! Once again the Be-Wilder has dazzled us into neglecting our Dailies, and now it has attacked Matt the Beast Master! With a swirl of mist, Matt transforms into a terrifying winged creature, and all the pets and mounts howl sadly in their stables. Quickly, stay focused on your tasks to defeat this dastardly distraction!", + "questBewilderBossRageBailey": "`The Be-Wilder uses BEGUILEMENT STRIKE!`\n\nLook out! In the middle of reporting the news, Bailey the Town Crier has been possessed by the Be-Wilder! She lets out an evil, uninformative screech as she rises into the air. Now how will we know what’s going on?\n\nDon't give up... we're so close to defeating this bothersome bird for once and for all!" } \ No newline at end of file diff --git a/common/locales/de/rebirth.json b/common/locales/de/rebirth.json index 975e1bcf5d..349d265829 100644 --- a/common/locales/de/rebirth.json +++ b/common/locales/de/rebirth.json @@ -1,10 +1,10 @@ { "rebirthNew": "Wiedergeburt: Ein neues Abenteuer erwartet Dich!", - "rebirthUnlock": "Du hast die Wiedergeburt freigeschaltet! Dieser besondere Dienst gestattet es dir, ein neues Spiel mit Level 1 zu beginnen, jedoch deine Aufgaben, Erfolge, Haustiere und mehr zu behalten. Verwende den Gegenstand, um neues Leben in Habitica zu bringen, wenn du glaubst alles erreicht zu haben, oder um neue Features aus dem Blickwinkel eines neuen Charakters zu erleben!", + "rebirthUnlock": "Du hast die Wiedergeburt freigeschaltet! Dieser besondere Gegenstand gestattet es Dir ein neues Spiel mit Level 1 zu beginnen, jedoch behältst Du Deine Aufgaben, Erfolge, Haustiere und mehr. Verwende den Gegenstand um Habitica neues Leben einzuhauchen wenn Du glaubst alles erreicht zu haben, oder um neue Features aus dem Blickwinkel eines Beginners zu erleben!", "rebirthBegin": "Wiedergeburt: Beginne ein neues Abenteuer", - "rebirthStartOver": "Die Wiedergeburt setzt deinen Charakter auf Level 1 zurück.", + "rebirthStartOver": "Wiedergeburt setzt Deinen Charakter auf Level 1 zurück.", "rebirthAdvList1": "Du erhältst volle Lebenspunkte.", - "rebirthAdvList2": "Du hast weder Erfahrung noch Gold noch Ausrüstung (mit Ausnahme von kostenlosen Gegenstände wie zum Beispiel den geheimnisvollen Gegenständen).", + "rebirthAdvList2": "Du hast weder Erfahrung noch Gold oder Ausrüstung (mit Ausnahme von kostenlosen Gegenständen, wie zum Beispiel den geheimnisvollen Gegenständen).", "rebirthAdvList3": "Deine Gewohnheiten, täglichen Aufgaben und Aufgaben werden auf Gelb gesetzt und Strähnen starten von vorn.", "rebirthAdvList4": "Du hast die Anfangsklasse Krieger bis Du eine neue Klasse freigeschaltet hast.", "rebirthInherit": "Dein neuer Charakter erbt ein paar Dinge von seinem Vorgänger:", @@ -12,11 +12,11 @@ "rebirthInList2": "Wettbewerb-, Gilden- und Gruppenmitgliedschaften bleiben bestehen.", "rebirthInList3": "Edelsteine, Träger-Stufen, Mitwirkender-Level bleiben bestehen.", "rebirthInList4": "Gegenstände die mit Edelsteinen oder zufällig gefunden wurden bleiben bestehen (wie z.B. Haus- und Reittiere), allerdings kannst Du sie erst anwählen, wenn das Feature wieder freigeschaltet ist.", - "rebirthInList5": "Limited edition equipment you've purchased can be repurchased, even if its event has ended. To repurchase class-specific equipment, you must first change to the correct class.", + "rebirthInList5": "Gekaufte Limited Edition Ausrüstung kann zurückgegeben werden, auch wenn das Event bereits beendet ist. Um Klassen-spezifische Ausrüstung zurückzugeben, musst Du zunächst in die korrekte Klasse wechseln.", "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": "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!", + "rebirthAchievement": "Du hast ein neues Abenteuer begonnen! Das ist Deine <%= number %>. Wiedergeburt. 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": "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 eea844fd77..a1f333879c 100644 --- a/common/locales/de/settings.json +++ b/common/locales/de/settings.json @@ -2,14 +2,14 @@ "settings": "Einstellungen", "language": "Sprache", "americanEnglishGovern": "Im Fall von Bedeutungsunterschieden gilt die englische Version.", - "helpWithTranslation": "Möchtest Du bei der Übersetzung von Habitica helfen? Toll! Dann besuche doch diese Trello Karte.", + "helpWithTranslation": "Möchtest Du bei der Übersetzung von Habitica helfen? Toll! Dann besuche doch diese Trello-Karte.", "showHeaderPop": "Zeigt Deinen Avatar, den Lebens- und Erfahrungsbalken und Deine Gruppe an.", "stickyHeader": "Kopfzeile anheften", "stickyHeaderPop": "Fixiert die Kopfzeile am oberen Ende der Seite. Abgewählt bedeutet, dass die Kopfzeile aus dem Fokus verschwinden kann.", "newTaskEdit": "Neue Aufgaben im Bearbeiten-Modus öffnen", "newTaskEditPop": "Mit dieser Option werden Aufgaben sofort geöffnet, damit Du Details, Notizen und Tags hinzufügen kannst.", "dailyDueDefaultView": "Setze Standardansicht der täglichen Aufgaben auf \"Fällig\"", - "dailyDueDefaultViewPop": "Mit dieser Option änderst du die Standardansicht der täglichen Aufgaben zu \"Fällig\" statt zu \"Alle\"", + "dailyDueDefaultViewPop": "Mit dieser Option änderst Du die Standardansicht der täglichen Aufgaben zu \"Fällig\" statt zu \"Alle\"", "reverseChatOrder": "Zeige die Chat-Nachrichten in umgekehrter Reihenfolge", "startCollapsed": "Tag-Liste in Aufgaben standartmäßig verdecken", "startCollapsedPop": "Mit dieser Option wird die Liste der Tags verdeckt, wenn Du eine Aufgabe das erste mal bearbeitest.", @@ -47,8 +47,8 @@ "customDayStart": "Tageswechsel einstellen", "changeCustomDayStart": "Tageswechsel ändern?", "sureChangeCustomDayStart": "Willst Du Deinen Tageswechsel wirklich ändern?", - "nextCron": "Deine täglichen Aufgaben werden das nächste Mal überprüft und zurückgesetzt, wenn Du Habitica das erste Mal nach <%= time %> nutzt. Stelle sicher, dass Du Deine täglichen Aufgaben vor diesem Zeitpunkt erledigt hast. ", - "customDayStartInfo1": "Normalerweise werden Deine täglichen Aufgaben jeden Tag um Mitternacht Deiner Ortszeit von Habitica überprüft und zurückgesetzt. Du kannst diesen Zeitpunkt hier ändern. ", + "nextCron": "Deine täglichen Aufgaben werden das nächste Mal überprüft und zurückgesetzt, wenn Du Habitica das erste Mal nach <%= time %> nutzt. Stelle sicher, dass Du Deine täglichen Aufgaben vor diesem Zeitpunkt erledigt hast.", + "customDayStartInfo1": "Normalerweise werden Deine täglichen Aufgaben jeden Tag um Mitternacht Deiner Ortszeit von Habitica überprüft und zurückgesetzt. Du kannst diesen Zeitpunkt hier ändern.", "misc": "Verschiedenes", "showHeader": "Header anzeigen", "changePass": "Passwort ändern", @@ -61,17 +61,17 @@ "newUsername": "Neuen Login Name erstellen", "dangerZone": "Gefahrenzone", "resetText1": "WARNUNG! Es werden große Teile Deines Accounts zurückgesetzt. Wir raten dringend davon ab. Jedoch finden einige Spieler diese Funktion sinnvoll, um nach einem anfänglichen Testen der Seite neu beginnen zu können.", - "resetText2": "Du verlierst alle Level, Dein Gold und Erfahrungspunkte. Darüber hinaus werden alle aktuellen und vergangenen Aufgaben gelöscht. Außerdem verlierst Du deine Ausrüstung, die Du Dir jedoch zurück kaufen kannst. Darunter fallen Sonderausrüstungsgegenstände oder Mystery-Gegenstände von Abonnenten (Du musst in der gleichen Klasse sein, um klassenabhängige Gegenstände zurück kaufen zu können). Du behältst deine aktuelle Klasse, deine Haus- und Reittiere. Statt dieser Option empfehlen wir die Kugel der Wiedergeburt zu verwenden, da dadurch alle Deine Aufgaben erhalten bleiben.", + "resetText2": "Du verlierst alle Level, Dein Gold und Erfahrungspunkte. Darüber hinaus werden alle aktuellen und vergangenen Aufgaben gelöscht. Außerdem verlierst Du Deine Ausrüstung, die Du Dir jedoch zurück kaufen kannst. Darunter fallen Sonderausrüstungsgegenstände oder Mystery-Gegenstände von Abonnenten (Du musst in der gleichen Klasse sein, um klassenabhängige Gegenstände zurück kaufen zu können). Du behältst Deine aktuelle Klasse, Deine Haus- und Reittiere. Statt dieser Option empfehlen wir die Kugel der Wiedergeburt zu verwenden, da dadurch alle Deine Aufgaben erhalten bleiben.", "deleteText": "Bist Du sicher? Das wird Dein Konto für immer löschen und es kann nicht wiederhergestellt werden! Wenn Du Habitica wieder verwenden möchtest, musst Du ein neues Konto registrieren. Gesparte oder verbrauchte Edelsteine werden nicht ersetzt. Wenn Du absolut sicher bist, dann tippe <%= deleteWord %> in die Text-Box unten ein.", "API": "API", - "APIText": "Kopiere sie zur Anwendung in Applikationen von Drittanbietern. Sieh Dein API Token aber als Passwort an und verbreite es nicht. Du wirst vielleicht gelegentlich nach deiner User ID gefragt, aber poste niemals dein API Token öffentlich wo es andere sehen können, auch nicht auf Github.", - "APIToken": "API Token (Das ist ein Password - die obige Warnung gilt auch hier!)", + "APIText": "Kopiere sie zur Anwendung in Applikationen von Drittanbietern. Sieh Dein API Token aber als Passwort an und verbreite es nicht. Du wirst vielleicht gelegentlich nach Deiner User ID gefragt, aber poste niemals Dein API Token öffentlich wo es andere sehen können, auch nicht auf Github.", + "APIToken": "API Token (Das ist ein Passwort - die obige Warnung gilt auch hier!)", "resetDo": "Ja, setzt mein Konto jetzt zurück!", "fixValues": "Werte reparieren", "fixValuesText1": "Wenn Du Opfer eines Bugs geworden bist, oder einen Fehler gemacht hast, der Deinen Charakter unfair beeinflusst hat, (Schaden den Du nicht hättest nehmen dürfen, Gold das Du nicht verdient hast, usw.), dann kannst Du das hier manuell korrigieren. Ja, das eröffnet die Möglichkeit zu cheaten: verwende dieses Feature mit Bedacht, oder Du verdirbst Dir das Ausbilden Deiner Gewohnheiten!", "fixValuesText2": "Beachte, dass Du hier keine Strähnen einzelner Aufgaben wiederherstellen kannst. Um das zu tun, bearbeite eine tägliche Aufgabe unter erweiterte Optionen. Dort wirst Du ein Strähne wiederherstellen Feld finden.", "disabledWinterEvent": "Während dem Winter Wunderland Event Teil 4 geschlossen (Weil die Belohnungen mit Gold erworben werden).", - "fix21Streaks": "21-Tage Strähnen", + "fix21Streaks": "21-Tage-Strähnen", "discardChanges": "Änderungen verwerfen", "deleteDo": "Ja, löscht jetzt meine Konto!", "enterNumber": "Bitte gib' eine Zahl zwischen 0 und 24 ein", @@ -80,7 +80,7 @@ "usernameSuccess": "Dein Login Name wurde erfolgreich geändert!", "emailSuccess": "Die E-Mail-Adresse wurde erfolgreich geändert", "detachFacebook": "Facebook Registrierung löschen", - "detachedFacebook": "Facebook erfolgreich von deinem Konto entfernt", + "detachedFacebook": "Facebook erfolgreich von Deinem Konto entfernt", "addedLocalAuth": "Lokale Authentifizierung erfolgreich hinzugefügt", "data": "Daten", "exportData": "Daten exportieren", @@ -102,7 +102,7 @@ "invitedParty": "In die Gruppe eingeladen", "invitedGuild": "In die Gilde eingeladen", "importantAnnouncements": "Dein Konto ist inaktiv", - "weeklyRecaps": "Zusammenfassung deiner Kontoaktivitäten der letzten Woche", + "weeklyRecaps": "Zusammenfassung Deiner Account aktivitäten in dieser Woche (Notiz: Ist zurzeit wegen Performance Problemen deaktiviert, Wir hoffen das es bald wieder zurück ist und werden demnächst wieder e-mails verschicken!)", "questStarted": "Dein Quest hat begonnen", "invitedQuest": "Zu einem Quest eingeladen", "kickedGroup": "Aus Gruppe entfernt.", @@ -123,7 +123,7 @@ "apply": "Anwenden", "resubscribe": "Wieder abonnieren", "promoCode": "Aktionscode", - "promoCodeApplied": "Promo Code aktiviert! Überprüfe dein Inventar", + "promoCodeApplied": "Promo Code aktiviert! Überprüfe Dein Inventar", "promoPlaceholder": "Promo Code eingeben", "displayInviteToPartyWhenPartyIs1": "Zeige \"In Gruppe einladen\"-Schaltfläche an, wenn die Gruppe nur 1 Mitglied hat.", "saveCustomDayStart": "Speichere den Tageswechsel", @@ -140,14 +140,14 @@ "mysticHourglass": "<%= amount %> mystische Sanduhr", "mysticHourglassText": "Mystische Sanduhren erlauben dir ein Überraschungsgegenstandsset früherer Monate zu kaufen.", "purchasedPlanId": "Abonnement über <%= price %> USD pro <%= months %> Monat(e) (Abgerechnet über: <%= plan %>)", - "purchasedPlanExtraMonths": "You have <%= months %> months of extra subscription credit.", + "purchasedPlanExtraMonths": "Du hast <%= months %> Monate zusätzliches Abonnement-Guthaben.", "consecutiveSubscription": "Fortlaufendes Abonnement", "consecutiveMonths": "Aufeinanderfolgende Monate:", "gemCapExtra": "Zusätzliche Erhöhung der Edelsteingrenze:", - "mysticHourglasses": "Mystische Stundengläser", + "mysticHourglasses": "Mystische Stundengläser:", "paypal": "PayPal", "amazonPayments": "Amazon-Zahlungen", "timezone": "Zeitzone", - "timezoneUTC": "Habitica verwendet die Zeitzone, welche an deinem PC eingestellt ist: <%= utc %>", - "timezoneInfo": "Wenn diese Zeitzone falsch ist, lade diese Seite neu, indem du den Neu Laden Button deines Browsers drückst, um sicher zu stellen, dass Habitica die aktuellsten Daten hat. Wenn die Zeitzone weiterhin falsch ist, passe die Zeitzone an deinem PC an und lade diese Seite noch einmal neu.

Wenn du Habitica auch auf anderen PCs oder mobilen Geräten verwendest, muss die Zeitzone auf allen Geräten gleich sein. Wenn sich deine täglichen Aufgaben zur falschen Zeit zurückgestellt haben, wiederhole diese Überprüfung auf allen anderen PCs und in einem Browser deines mobilen Gerätes." + "timezoneUTC": "Habitica verwendet die Zeitzone, welche an Deinem PC eingestellt ist: <%= utc %>", + "timezoneInfo": "Wenn diese Zeitzone falsch ist, lade diese Seite neu, indem Du den Neu Laden Button Deines Browsers drückst, um sicher zu stellen, dass Habitica die aktuellsten Daten hat. Wenn die Zeitzone weiterhin falsch ist, passe die Zeitzone an Deinem PC an und lade diese Seite noch einmal neu.

Wenn Du Habitica auch auf anderen PCs oder mobilen Geräten verwendest, muss die Zeitzone auf allen Geräten gleich sein. Wenn sich Deine täglichen Aufgaben zur falschen Zeit zurückgestellt haben, wiederhole diese Überprüfung auf allen anderen PCs und in einem Browser Deines mobilen Gerätes." } \ No newline at end of file diff --git a/common/locales/de/spells.json b/common/locales/de/spells.json index 05ce079d6b..fd638957c6 100644 --- a/common/locales/de/spells.json +++ b/common/locales/de/spells.json @@ -1,18 +1,18 @@ { "spellWizardFireballText": "Flammenstoß", - "spellWizardFireballNotes": "Flammen schießen aus deinen Händen. Du erhältst XP und fügst Bossen zusätzlichen Schaden zu! Klicke auf eine Aufgabe, um sie zu verzaubern. (Basiert auf: INT Wert)", + "spellWizardFireballNotes": "Flammen schießen aus Deinen Händen. Du erhältst XP und fügst Bossen zusätzlichen Schaden zu! Klicke auf eine Aufgabe, um sie zu verzaubern. (Basiert auf: INT Wert)", "spellWizardMPHealText": "Ätherischer Schwall", "spellWizardMPHealNotes": "Du opferst Mana um Deinen Freunden zu helfen. Der Rest Deiner Gruppe erhält MP! (Basiert auf: INT Wert)", "spellWizardEarthText": "Erdbeben", "spellWizardEarthNotes": "Deine mentalen Kräfte bringen die Erde zum beben. Deine ganze Gruppe erhält Bonus Intelligenzpunkte! (Basiert auf: INT ohne Boni)", "spellWizardFrostText": "Klirrender Frost", - "spellWizardFrostNotes": "Eine Eisschicht überzieht deine Aufgaben. Keine Deiner Strähnen wird morgen auf null zurückgesetzt! (Einmal gewirkt wirkt der Effekt auf all Deine Strähnen)", + "spellWizardFrostNotes": "Eine Eisschicht überzieht Deine Aufgaben. Keine Deiner Strähnen wird morgen auf null zurückgesetzt! (Einmal gewirkt wirkt der Effekt auf all Deine Strähnen)", "spellWarriorSmashText": "Gewaltschlag", - "spellWarriorSmashNotes": "Du triffst eine Aufgabe mit aller Kraft. Sie wird blauer/weniger rot, und du fügst Bossen extra Schaden zu! Klicke auf eine Aufgabe, um sie zu anzugreifen. (Basiert auf: STR)", + "spellWarriorSmashNotes": "Du triffst eine Aufgabe mit aller Kraft. Sie wird blauer/weniger rot, und Du fügst Bossen extra Schaden zu! Klicke auf eine Aufgabe, um sie anzugreifen. (Basiert auf: STR)", "spellWarriorDefensiveStanceText": "Verteidigungstellung", - "spellWarriorDefensiveStanceNotes": "Du bereitest dich auf den Ansturm deiner Aufgaben vor. Du erhälst einen Ausdauerbonus! (Basiert auf: CON ohne Boni)", + "spellWarriorDefensiveStanceNotes": "Du bereitest Dich auf den Ansturm Deiner Aufgaben vor. Du erhälst einen Ausdauerbonus! (Basiert auf: CON ohne Boni)", "spellWarriorValorousPresenceText": "Tapferer Charakter", - "spellWarriorValorousPresenceNotes": "Deine Anwesenheit ermutigt deine Gruppe. Deine ganze Gruppe erhält einen Stärkebonus (Basiert auf: STR ohne Boni)", + "spellWarriorValorousPresenceNotes": "Deine Anwesenheit ermutigt Deine Gruppe. Deine ganze Gruppe erhält einen Stärkebonus (Basiert auf: STR ohne Boni)", "spellWarriorIntimidateText": "Einschüchternder Blick", "spellWarriorIntimidateNotes": "Dein Blick erfüllt die Herzen Deiner Feinde mit Angst. Deine ganze Gruppe erhält einen Ausdauerbonus! (Basiert auf: CON ohne Boni)", "spellRoguePickPocketText": "Taschendiebstahl", @@ -22,7 +22,7 @@ "spellRogueToolsOfTradeText": "Handwerkszeug", "spellRogueToolsOfTradeNotes": "Du teilst Deine Talente mit Deinen Freunden. Deine ganze Gruppe erhält einen Wahrnehmungsbonus! (Basiert auf: PER ohne Boni)", "spellRogueStealthText": "Schleichen", - "spellRogueStealthNotes": "Du bist zu raffiniert, um entdeckt zu werden. Einige deiner täglichen Aufgaben werden heute Nacht nicht zu Schaden führen und ihre Strähnen/Farbe wird sich nicht ändern. (Mehrfache Anwendung hat Auswirkung auf mehr täglichen Aufgaben)", + "spellRogueStealthNotes": "Du bist zu raffiniert, um entdeckt zu werden. Einige Deiner täglichen Aufgaben werden heute Nacht nicht zu Schaden führen und ihre Strähnen/Farbe wird sich nicht ändern. (Mehrfache Anwendung hat Auswirkung auf mehr täglichen Aufgaben)", "spellHealerHealText": "Heilendes Licht", "spellHealerHealNotes": "Licht strömt aus Deinem Körper, es heilt Deine Wunden. Du erhältst Lebenspunkte zurück! (Basiert auf: CON und INT)", "spellHealerBrightnessText": "Brennende Helle", diff --git a/common/locales/de/subscriber.json b/common/locales/de/subscriber.json index 0f811b7f7f..eefcf0312e 100644 --- a/common/locales/de/subscriber.json +++ b/common/locales/de/subscriber.json @@ -3,26 +3,26 @@ "subscriptions": "Abonnements", "subDescription": "Kaufe Edelsteine mit Gold, bekomme monatlich Überraschungsgegenstände, behalte Deinen Fortschrittsverlauf, verdopple das tägliche Beutelimit und unterstütze die Entwickler. Klicke um mehr zu erfahren.", "buyGemsGold": "Kaufe Edelsteine mit Gold", - "buyGemsGoldText": "Alexander der Händler verkauft Dir Edelsteine zum Preis von <%= gemCost %> Goldstücken pro Edelstein. Seine Lieferungen sind anfänglich auf <%= gemLimit %> Edelsteine pro Monat beschränkt, aber dieses Limit erhöht sich um 5 Edelsteine für alle drei Monate, die Du ein fortlaufendes Abo hast, bis zu einem Maximum von 50 Edelsteinen pro Monat!", - "retainHistory": "Retain additional history entries", - "retainHistoryText": "Makes completed To-Dos and task history available for longer.", + "buyGemsGoldText": "Alexander der Händler verkauft Dir Edelsteine zum Preis von <%= gemCost %> Goldstücken pro Edelstein. Seine Lieferungen sind anfänglich auf <%= gemLimit %> Edelsteine pro Monat beschränkt, aber dieses Limit erhöht sich um 5 Edelsteine für alle drei Monate, die Du ein fortlaufendes Abo hast, bis zu einem Maximum von 50 Edelsteinen pro Monat!", + "retainHistory": "Erhalte zusätzliche Einträge der Vergangenheit", + "retainHistoryText": "Macht abgeschlossene einmalige Aufgaben und den Aufgabenverlauf länger verfügbar.", "doubleDrops": "Du kannst doppelt so viele Gegenstände pro Tag finden", "doubleDropsText": "Fülle Deine Ställe schneller!", "mysteryItem": "Einzigartige monatliche Gegenstände", - "mysteryItemText": "Du wirst jeden Monat einen einzigartigen kosmetischen Gegenstand für deinen Avatar erhalten! Zusätzlich gewähren Dir die Mysteriösen Zeitreisenden für je drei aufeinanderfolgende Abonnement-Monate Zugang zu historischen (oder futuristischen) kosmetischen Gegenständen.", + "mysteryItemText": "Du wirst jeden Monat einen einzigartigen kosmetischen Gegenstand für Deinen Avatar erhalten! Zusätzlich gewähren Dir die Mysteriösen Zeitreisenden für je drei aufeinanderfolgende Abonnement-Monate Zugang zu historischen (oder futuristischen) kosmetischen Gegenständen.", "supportDevs": "Unterstütze die Entwickler", - "supportDevsText": "Dein Abonnement lässt Habitica florieren und hilft uns weiterzuentwickeln. Danke für deine Großzügigkeit!", + "supportDevsText": "Dein Abonnement lässt Habitica florieren und hilft uns weiterzuentwickeln. Danke für Deine Großzügigkeit!", "monthUSD": "USD($) / Monat", "organization": "Organisation", "groupPlans": "Gemeinschaftliche Pläne", "indivPlan1": "Für Privatpersonen ist Habitica kostenlos. Auch für kleine Interessengruppen kann die kostenlose (oder billige)", "indivPlan2": "verwendet werden um Teilnehmer zu motivieren ihr Verhalten zu verändern. Denke nur an Gruppen von Autoren, künstlerische Wettbewerbe und mehr.", - "groupText1": "Aber einige Gruppenleiter wollen mehr Kontrolle, Datenschutz, Sicherheit und Unterstützung. Beispielsweise Familien, Gruppen mit Gesundheits- oder Erholungszielen, Angestelltengruppen und mehr. Die Planung erlauben selbstständige Instanzen von Habitica für deine Gruppe oder Organisation, sicher und unabhängig von", + "groupText1": "Aber einige Gruppenleiter wollen mehr Kontrolle, Datenschutz, Sicherheit und Unterstützung. Beispielsweise Familien, Gruppen mit Gesundheits- oder Erholungszielen, Angestelltengruppen und mehr. Die Planung erlauben selbstständige Instanzen von Habitica für Deine Gruppe oder Organisation, sicher und unabhängig von", "groupText2": "Weiter unten sind weitere Boni für solche Pläne aufgelistet, trete mit uns in Verbindung um mehr Informationen zu erhalten!", "planFamily": "Familien (in naher Zukunft)", "planGroup": "Gruppen (in naher Zukunft)", "dedicatedHost": "Dediziertes Hosting", - "dedicatedHostText": "Dedicated Hosting: Du erhältst deine eigene Datenbank und Server, gehosted von Habitica, oder - wahlweise - installieren wir es auch im Netzwerk deiner Organisation. Wenn nicht, dann sieht der Plan \"Shared Hosting\" vor: Deine Organisation verwendet die selbe Datenbank wie Habitica, aber läuft unabhängig davon. Deine Mitglieder sind getrennt und geschützt von dem Gasthaus und Gilden, aber dennoch auf dem selben Server/Datenbank.", + "dedicatedHostText": "Dedicated Hosting: Du erhältst Deine eigene Datenbank und Server, gehosted von Habitica, oder - wahlweise - installieren wir es auch im Netzwerk Deiner Organisation. Wenn nicht, dann sieht der Plan \"Shared Hosting\" vor: Deine Organisation verwendet die selbe Datenbank wie Habitica, aber läuft unabhängig davon. Deine Mitglieder sind getrennt und geschützt von dem Gasthaus und Gilden, aber dennoch auf dem selben Server/Datenbank.", "individualSub": "Einzelne Abonnements", "subscribe": "Abonniere", "subscribed": "Abonniert", @@ -30,11 +30,11 @@ "cancelSub": "Abonnement beenden", "canceledSubscription": "Abonnement storniert", "adminSub": "Administrator Abonnements", - "morePlans": "Mehr Pläne
in naher Zukunft", + "morePlans": "Weitere Abonnements
Bald verfügbar!", "organizationSub": "Private Organisationen", - "organizationSubText": "Mitglieder der Organisation nehmen außerhalb von Habitica teil, das bringt deinen Teilnehmern einen Konzentrationsvorteil.", + "organizationSubText": "Mitglieder der Organisation nehmen außerhalb von Habitica teil, das bringt Deinen Teilnehmern einen Konzentrationsvorteil.", "hostingType": "Art des Hostings", - "hostingTypeText": "Shared hosting bedeutet, deine Organisation verwendet die selbe Datenbank wie Habitica, obwohl Du nicht mit Habitica interagierst. Dedicated bedeutet, Du bekommst deine eigene Datenbank und Server. Du kannst wählen, ob Du Habitica auf deinem Server oder Datenbank hosten möchtest, oder ob wir es auf unserem Server installieren.", + "hostingTypeText": "Shared hosting bedeutet, Deine Organisation verwendet die selbe Datenbank wie Habitica, obwohl Du nicht mit Habitica interagierst. Dedicated bedeutet, Du bekommst Deine eigene Datenbank und Server. Du kannst wählen, ob Du Habitica auf Deinem Server oder Datenbank hosten möchtest, oder ob wir es auf unserem Server installieren.", "dedicated": "Dediziert", "customDomain": "Wählbare Domain", "customDomainText": "Wir können Dir wahlweise eine eigene Domain für die Intallation zur Verfügung stellen.", @@ -53,24 +53,24 @@ "notYetPlan": "Noch kein Plan verfügbar, aber klicke um mit uns in Kontakt zu treten, wir halten Dich auf dem Laufenden.", "contactUs": "Kontakt", "checkout": "Kasse", - "sureCancelSub": "Bist Du sicher, dass du das Abonnement kündigen willst?", + "sureCancelSub": "Bist Du sicher, dass Du das Abonnement kündigen willst?", "subCanceled": "Das Abonnement wird auslaufen zum", "buyGemsGoldTitle": "Kaufe Edelsteine mit Gold", "becomeSubscriber": "Abonnent werden", "subGemPop": "Weil Du Habitica abonniert hast, kannst Du pro Monat eine bestimmte Anzahl an Edelsteinen mit Gold kaufen. An der Ecke des Edelstein-Icons kannst Du sehen, wie viele Edelsteine zum Kaufen verfügbar sind.", "subGemName": "Abonnenten-Edelsteine", "freeGemsTitle": "Erhalte kostenlose Edelsteine", - "maxBuyGems": "Du kannst im jetzigen Monat keine Edelsteine mehr kaufen. Edelsteine werden spätestens ab dem dritten Tag des folgenden Monats wieder verfügbar sein. Danke für dein Abonnement!", + "maxBuyGems": "Du kannst im jetzigen Monat keine Edelsteine mehr kaufen. Edelsteine werden spätestens ab dem dritten Tag des Folgemonats wieder verfügbar sein. Danke für Dein Abonnement!", "buyGemsAllow1": "Du kannst noch", "buyGemsAllow2": "weitere Edelsteine in diesem Monat erwerben", "purchaseGemsSeparately": "Zusätzliche Edelsteine kaufen", "subFreeGemsHow": "Habitica Spieler können kostenlose Edelsteine verdienen, indem sie Wettbewerbe gewinnen, die Edelsteine als Siegespreise verleihen, oder als eine Belohnung für Mitwirkende, indem sie bei der Entwickelung von Habitica helfen.", - "seeSubscriptionDetails": "Gehe zu Einstellungen > Abonnement um die Details deines Abonnements zu sehen!", + "seeSubscriptionDetails": "Gehe zu Einstellungen > Abonnement um die Details Deines Abonnements zu sehen!", "timeTravelers": "Mysteriöse Zeitreisende", "timeTravelersTitleNoSub": "<%= linkStartTyler %>Tyler<%= linkEnd %> und <%= linkStartVicky %>Vicky<%= linkEnd %>", "timeTravelersTitle": "Mysteriöse Zeitreisende", - "timeTravelersPopoverNoSub": "Du brauchst eine mystische Sanduhr um die mysteriösen Zeitreisenden herbeizurufen! <%= linkStart %>Abbonnementen<%= linkEnd %> verdienen eine mystische Sanduhr für je drei Monate durchgehendes abonnieren. Komm zurück, wenn Du eine mystischer Sanduhr hast und die Zeitreisenden werden Dir ein seltenes Haustier, Reittier oder Abonnementen Gegenstandsset aus der Vergangenheit holen... oder vielleicht sogar aus der Zukunft.", - "timeTravelersPopover": "Wir sehen Du hast eine mystische Sanduhr, deshalb werden wir gerne für Dich zurück durch die Zeit reisen! Bitte wähle das Haustier, Reittier oder mystische Gegenstandsset, dass Du haben möchtest. Die Liste aller vergangenen Gegenstandssets kannst du hier finden! Wenn diese Dich nicht zufrieden stellen können wir Dich vielleicht für eines unserer futuristischen Steampunk Gegenstandssets interessieren?", + "timeTravelersPopoverNoSub": "Du brauchst eine mystische Sanduhr um die mysteriösen Zeitreisenden herbeizurufen! <%= linkStart %>Abonnenten<%= linkEnd %> verdienen eine mystische Sanduhr für je drei Monate durchgehendes abonnieren. Komm zurück, wenn Du eine mystischer Sanduhr hast und die Zeitreisenden werden Dir ein seltenes Haustier, Reittier oder Abonnentengegenstandsset aus der Vergangenheit holen ... oder vielleicht sogar aus der Zukunft.", + "timeTravelersPopover": "Wir sehen Du hast eine mystische Sanduhr, deshalb werden wir gerne für Dich zurück durch die Zeit reisen! Bitte wähle das Haustier, Reittier oder mystische Gegenstandsset, dass Du haben möchtest. Die Liste aller vergangenen Gegenstandssets kannst Du hier finden! Wenn diese Dich nicht zufrieden stellen können wir Dich vielleicht für eines unserer futuristischen Steampunk Gegenstandssets interessieren?", "timeTravelersAlreadyOwned": "Herzlichen Glückwunsch! Du besitzt bereits alles, was die Zeitreisenden gerade anbieten können. Danke, dass Du die Seite unterstützt!", "mysticHourglassPopover": "Eine mystische Sanduhr erlaubt Dir Gegenstände zu kaufen, welche in der Vergangenheit nur zeitlich begrenzt zur Verfügung standen. Dies sind beispielsweise die Überraschungs-Abonnenten-Sets und Belohnungen ehemaligerWeltbosse.", "mysterySet201402": "Geflügelter-Bote-Set", @@ -87,7 +87,7 @@ "mysterySet201501": "Sternenritter-Set", "mysterySet201502": "Geflügelter-Verzauberer-Set", "mysterySet201503": "Aquamarin-Set", - "mysterySet201504": "Bienen Set", + "mysterySet201504": "Bienen-Set", "mysterySet201505": "Grüner-Ritter-Set", "mysterySet201506": "Neon-Schnorchler-Set", "mysterySet201507": "Cooler-Surfer-Set", @@ -96,19 +96,21 @@ "mysterySet201510": "Gehörnter-Goblin-Set", "mysterySet201511": "Holzkrieger-Set", "mysterySet201512": "Winterflammen-Set", - "mysterySet201601": "Champion of Resolution Set", + "mysterySet201601": "Entschlossener-Held-Set", + "mysterySet201602": "Herzensbrecher-Set", + "mysterySet201603": "Glücksklee-Set", "mysterySet301404": "Steampunk-Standard-Set", "mysterySet301405": "Steampunk-Zubehör-Set", "mysterySetwondercon": "Wondercon", - "subUpdateCard": "Aktualisiere deine Karte", + "subUpdateCard": "Aktualisiere Deine Karte", "subUpdateTitle": "Aktualisiere", "subUpdateDescription": "Aktualisiere die Karte mit der Du zahlen möchtest.", "notEnoughHourglasses": "Du hast nicht genügend mystische Sanduhren.", - "hourglassBuyEquipSetConfirm": "Möchtest du das ganze Set Gegenstände für 1 Mystische Sanduhr kaufen?", - "hourglassBuyItemConfirm": "Möchtest du diesen Gegenstand für 1 Mystische Sanduhr kaufen?", + "hourglassBuyEquipSetConfirm": "Möchtest Du das ganze Set Gegenstände für 1 Mystische Sanduhr kaufen?", + "hourglassBuyItemConfirm": "Möchtest Du diesen Gegenstand für 1 Mystische Sanduhr kaufen?", "petsAlreadyOwned": "Bereits im Besitz dieses Haustieres.", "mountsAlreadyOwned": "Bereits im Besitz dieses Rettieres.", - "typeNotAllowedHourglass": "Diese Art Gegenstand ist nicht für den Kauf mit einer Mystischen Sanduhr geeignet. Geeignete Arten von Gegenständen: ", + "typeNotAllowedHourglass": "Diese Art Gegenstand ist nicht für den Kauf mit einer Mystischen Sanduhr geeignet. Geeignete Arten von Gegenständen:", "petsNotAllowedHourglass": "Das Haustier ist nicht für den Kauf mit einer Mystischen Sanduhr geeignet.", "mountsNotAllowedHourglass": "Das Reittier ist nicht für den Kauf mit einer Mystischen Sanduhr geeignet.", "hourglassPurchase": "Gegenstand mit einer Mystischen Sanduhr gekauft!", diff --git a/common/locales/de/tasks.json b/common/locales/de/tasks.json index a40f46fae0..08a84694de 100644 --- a/common/locales/de/tasks.json +++ b/common/locales/de/tasks.json @@ -14,7 +14,7 @@ "save": "Speichern", "addChecklist": "Checkliste hinzufügen", "checklist": "Checkliste", - "checklistText": "Zerlege eine Aufgabe in kleinere Teile! Checklisten erhöhen die Erfahrung und das Gold, das du für eine Aufgabe bekommst, und verringern den Schaden, den eine tägliche Aufgabe verursacht.", + "checklistText": "Zerlege eine Aufgabe in kleinere Teile! Checklisten erhöhen die Erfahrung und das Gold, das Du für eine Aufgabe bekommst, und verringern den Schaden, den eine tägliche Aufgabe verursacht.", "expandCollapse": "Auf-/Zuklappen", "text": "Titel", "extraNotes": "Extra Notizen", @@ -22,12 +22,12 @@ "advancedOptions": "Erweiterte Optionen", "difficulty": "Schwierigkeit", "difficultyHelpTitle": "Wie schwer ist die Aufgabe?", - "difficultyHelpContent": "Je schwieriger eine Aufgabe ist, desto mehr Erfahrung und Gold bekommst du, wenn du sie abhakst... aber sie verursacht auch umso mehr Schaden, wenn es eine tägliche Aufgabe oder schlechte Gewohnheit ist!", + "difficultyHelpContent": "Je schwieriger eine Aufgabe ist, desto mehr Erfahrung und Gold bekommst Du, wenn Du sie abhakst ... aber sie verursacht auch umso mehr Schaden, wenn es eine tägliche Aufgabe oder schlechte Gewohnheit ist!", "trivial": "Trivial", "easy": "Einfach", "medium": "Mittel", "hard": "Schwer", - "attributes": "Attribute", + "attributes": "Eigenschaften", "physical": "Körperlich", "mental": "Mental", "otherExamples": "z.B. berufliche Unternehmungen, Hobbies, Finanzielles, usw.", @@ -39,16 +39,16 @@ "streakCounter": "Strähnenzähler", "repeat": "Wiederholen", "repeatEvery": "Wiederhole alle", - "repeatHelpTitle": "Wie oft sollte diese Aufgabe wiederholt werden?", - "dailyRepeatHelpContent": "Diese Aufgabe wird alle X Tage fällig werden. Du kannst den Wert unten bestimmen. ", - "weeklyRepeatHelpContent": "Diese Aufgabe wird an den unten hervorgehobenen Tagen fällig werden. Klicke auf einen Tag um ihn zu aktivieren / deaktivieren. ", + "repeatHelpTitle": "Wie oft soll diese Aufgabe wiederholt werden?", + "dailyRepeatHelpContent": "Diese Aufgabe wird alle X Tage fällig werden. Du kannst diesen Wert unten bestimmen.", + "weeklyRepeatHelpContent": "Diese Aufgabe wird an den unten hervorgehobenen Tagen fällig werden. Klicke auf einen Tag um ihn zu aktivieren / deaktivieren.", "repeatDays": "Alle X Tage", "repeatWeek": "An bestimmten Tagen der Woche", "day": "Tag", "days": "Tage", "restoreStreak": "Strähne wiederherstellen", "todo": "Aufgabe", - "todos": "To-Dos", + "todos": "Aufgaben", "newTodo": "Neuer To-Do Eintrag", "newTodoBulk": "Neue To-Do Einträge (einer pro Zeile)", "dueDate": "Frist", @@ -75,42 +75,42 @@ "showTags": "Anzeigen", "startDate": "Starttermin", "startDateHelpTitle": "Wann soll diese Aufgabe beginnen?", - "startDateHelp": "Setzt das Datum fest, ab dem diese Aufgabe in Kraft tritt. Davor wird sie nicht fällig werden.", - "streakName": "Strähnen Erfolg(e)", - "streakText": "Hat <%= streaks %> 21-tägige Strähnen von täglichen Aufgaben erreicht", + "startDateHelp": "Setze das Datum fest, ab dem diese Aufgabe in Kraft tritt. Davor wird sie nicht fällig werden.", + "streakName": "Strähnenerfolg(e)", + "streakText": "Hat <%= streaks %> 21-Tage-Strähnen von täglichen Aufgaben erreicht", "streakSingular": "Perfektionist", "streakSingularText": "Hat eine 21-tägige Strähne bei einer täglichen Aufgaben erreicht", "perfectName": "Perfekte Tage", "perfectText": "Du hast alle täglichen Aufgaben an <%= perfects %> Tagen erfüllt. Mit diesem Erfolg erhältst Du eine Level/2 Stärkung aller Attribute für den nächsten Tag. Alle Level über 100 haben keine zusätzliche Auswirkung auf die Attribute.", "perfectSingular": "Perfekt(e) Tag(e)", "perfectSingularText": "Du hast alle täglichen Aufgaben an einem Tag erfüllt. Mit diesem Erfolg erhältst Du eine Level/2 Stärkung aller Attribute für den nächsten Tag. Alle Level über 100 haben keine zusätzliche Auswirkung auf die Attribute.", - "streakerAchievement": "Du hast den \"Streaker\"-Erfolg erlangt! Die 21-Tages-Marke ist ein Meilenstein für das Bilden von Gewohnheiten. Du erhältst diesen Erfolg alle 21 Tage neu (gestapelt), auch für die selbe tägliche Aufgabe.", + "streakerAchievement": "Du hast den Erfolg \"Perfektionist\" erlangt! Die 21-Tages-Marke ist ein Meilenstein für das Bilden von Gewohnheiten. Du erhältst diesen Erfolg alle 21 Tage neu (gestapelt), auch für dieselbe tägliche Aufgabe.", "fortifyName": "Verstärkungstrank", "fortifyPop": "Setzt alle Aufgaben auf den Anfangswert (gelb) zurück und füllt Deine Lebenspunkte wieder auf.", "fortify": "Verstärken", - "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!", + "fortifyText": "Stärken setzt alle Aufgaben auf einen neutralen (gelben) Status zurück, als hättest Du sie gerade erst hinzugefügt, und füllt Deine Gesundheit vollkommen auf. Das ist klasse, wenn Deine ganzen roten Aufgaben das Spiel zu schwer oder Deine ganzen blauen Aufgaben das Spiel zu einfach machen. Wenn ein neuer Start motivierender klingt, gib Deine Edelsteine aus und hol' erstmal Luft!", "confirmFortify": "Bist Du sicher?", - "sureDelete": "Willst Du (<%= taskType %>) \"<%= taskText %>\" wirklich löschen?", - "streakCoins": "Strähnen Bonus!", + "sureDelete": "Willst Du <%= taskType %> mit dem Text \"<%= taskText %>\" wirklich löschen?", + "streakCoins": "Strähnenbonus!", "pushTaskToTop": "Verschiebe die Aufgabe nach oben. Halte dabei strg oder cmd, um sie nach unten zu verschieben.", "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.", - "habitHelp2": "Schlechte Gewohnheiten sind Aktivitäten, die du vermeiden solltest. Sie ziehen dir jedes mal, wenn du auf <%= minusIcon %> klickst Leben ab.", - "habitHelp3": "Zur Inspiration kannst du dir diese Beispiele von Gewohnheiten durchsehen!", + "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 bringen Gold und Erfahrung immer wenn Du auf <%= plusIcon %> klickst.", + "habitHelp2": "Schlechte Gewohnheiten sind Aktivitäten, die Du vermeiden solltest. Sie ziehen dir jedes mal Leben ab, wenn Du auf <%= minusIcon %> klickst.", + "habitHelp3": "Schau dir zur Inspiration diese Gewohnheitsbeispiele an!", "newbieGuild": "Du hast weitere Fragen? Du kannst sie in der <%= linkStart %>Newbies Gilde<%= linkEnd %> loswerden!", "dailyHelp1": "Tägliche Aufgaben wiederholen sich an<%= emphasisStart %>allen Tagen<%= emphasisEnd %>, an denen sie aktiv sind. Klicke den <%= pencilIcon %>, um die Tage zu ändern, an denen eine tägliche Aufgabe aktiv ist.", - "dailyHelp2": "Wenn du tägliche Aufgaben nicht beendest, verlierst du am Ende des Tages Leben.", - "dailyHelp3": "Tägliche Aufgaben werden immer <%= emphasisStart %>röter<%= emphasisEnd %>, wenn du sie nicht erledigst, und immer <%= emphasisStart %>blauer<%= emphasisEnd %>, wenn du sie abschließt. Je röter die tägliche Aufgabe ist, desto größer fällt deine Belohnung aus... oder deine Bestrafung.", + "dailyHelp2": "Wenn Du aktive tägliche Aufgaben nicht beendest, verlierst Du am Ende des Tages Gesundheit.", + "dailyHelp3": "Tägliche Aufgaben werden <%= emphasisStart %>röter<%= emphasisEnd %>, wenn Du sie nicht verpasst, und <%= emphasisStart %>blauer<%= emphasisEnd %>, wenn Du sie erledigst. Je röter die tägliche Aufgabe ist, desto größer fällt Deine Belohnung aus ... oder Deine Bestrafung.", "dailyHelp4": "Um die Uhrzeit für den Beginn des neuen Tages festzulegen, gehe zu <%= linkStart %> Einstellungen > Seite<%= linkEnd %> > Tageswechsel einstellen.", - "dailyHelp5": "Zur Inspiration kannst du dir diese Beispiele von täglichen Aufgaben durchsehen!", - "toDoHelp1": "Einmalige Aufgaben sind anfangs gelb, werden aber immer röter (mehr Belohnung) je später sie beendet werden.", + "dailyHelp5": "Schau dir zur Inspiration diese Beispiele von täglichen Aufgaben an!", + "toDoHelp1": "Einmalige Aufgaben sind anfangs gelb, werden aber röter (wertvoller) je später sie beendet werden.", "toDoHelp2": "To-Dos werden dir niemals Schaden zufügen! Sie verleihen nur Gold und Erfahrung.", - "toDoHelp3": "Einmalige Aufgaben können mit der Kontrollliste in kleinere Teilaufgaben heruntergebrochen werden, um sie weniger beängstigend zu machen. Dafür werden erhaltene Punkte erhöht!", - "toDoHelp4": "Zur Inspiration kannst du dir diese Beispiele von einmaligen Aufgaben durchsehen!", - "rewardHelp1": "Die Ausrüstung, die du für deinen Avatar kaufst, ist unter <%= linkStart %>Inventar > Ausrüstung<%= linkEnd %> gelagert.", - "rewardHelp2": "Ausrüstungsgegenstände beeinflussen deine Statuswerte (<%= linkStart %>Benutzer > Werte&Erfolge<%= linkEnd %>).", + "toDoHelp3": "Einmalige Aufgaben mit der Kontrollliste in kleinere Teilaufgaben zu unterteilen macht sie weniger beängstigend, und wird Deine Punkte erhöhen!", + "toDoHelp4": "Zur Inspiration kannst Du dir diese Beispiele von einmaligen Aufgaben durchsehen!", + "rewardHelp1": "Die Ausrüstung, die Du für Deinen Avatar kaufst, ist unter <%= linkStart %>Inventar > Ausrüstung<%= linkEnd %> gelagert.", + "rewardHelp2": "Ausrüstungsgegenstände beeinflussen Deine Statuswerte (<%= linkStart %>Benutzer > Werte<%= linkEnd %>).", "rewardHelp3": "Während weltweiten Events wird hier Spezialausrüstung erscheinen.", - "rewardHelp4": "Scheue dich nicht davor eigene Belohnungen hinzuzufügen! Sieh dir einige Beispielbelohnungen durch.", - "clickForHelp": "Hilfe" + "rewardHelp4": "Scheue Dich nicht davor eigene Belohnungen hinzuzufügen! Sieh dir einige Beispielbelohnungen durch.", + "clickForHelp": "Klicke hier für Hilfe" } \ No newline at end of file diff --git a/common/locales/en/backgrounds.json b/common/locales/en/backgrounds.json index 2bb086bf22..5033629a35 100644 --- a/common/locales/en/backgrounds.json +++ b/common/locales/en/backgrounds.json @@ -167,6 +167,22 @@ "backgroundCozyLibraryText": "Cozy Library", "backgroundCozyLibraryNotes": "Read in the Cozy Library.", "backgroundGrandStaircaseText": "Grand Staircase", - "backgroundGrandStaircaseNotes": "Stride down the Grand Staircase." + "backgroundGrandStaircaseNotes": "Stride down the Grand Staircase.", + + "backgrounds032016": "SET 22: Released March 2016", + "backgroundDeepMineText": "Deep Mine", + "backgroundDeepMineNotes": "Find precious metals in a Deep Mine.", + "backgroundRainforestText": "Rainforest", + "backgroundRainforestNotes": "Venture into a Rainforest.", + "backgroundStoneCircleText": "Circle of Stones", + "backgroundStoneCircleNotes": "Cast spells in a Circle of Stones.", + + "backgrounds042016": "SET 23: Released April 2016", + "backgroundArcheryRangeText": "Archery Range", + "backgroundArcheryRangeNotes": "Practice on the Archery Range.", + "backgroundGiantFlowersText": "Giant Flowers", + "backgroundGiantFlowersNotes": "Frolic atop Giant Flowers.", + "backgroundRainbowsEndText": "End of the Rainbow", + "backgroundRainbowsEndNotes": "Discover gold at the End of the Rainbow." } diff --git a/common/locales/en/character.json b/common/locales/en/character.json index 18e769834d..0cd4e854cb 100644 --- a/common/locales/en/character.json +++ b/common/locales/en/character.json @@ -1,7 +1,8 @@ { + "communityGuidelinesWarning": "Please keep in mind that your Display Name, profile photo, and blurb must comply with the Community Guidelines (e.g. no profanity, no adult topics, no insults, etc). If you have any questions about whether or not something is appropriate, feel free to email leslie@habitica.com!", "statsAch": "Stats & Achievements", "profile": "Profile", - "avatar": "Avatar", + "avatar": "Customize Avatar", "other": "Other", "fullName": "Full Name", "displayName": "Display Name", @@ -34,6 +35,7 @@ "beard": "Beard", "mustache": "Mustache", "flower": "Flower", + "wheelchair": "Wheelchair", "basicSkins": "Basic Skins", "rainbowSkins": "Rainbow Skins", "pastelSkins": "Pastel Skins", @@ -83,7 +85,7 @@ "allocateInt": "Points allocated to Intelligence:", "allocateIntPop": "Add a point to Intelligence", "noMoreAllocate": "Now that you've hit level 100, you won't gain any more Attribute Points. You can continue leveling up, or start a new adventure at level 1 by using the Orb of Rebirth, now available for free in the Market.", - "stats": "Stats", + "stats": "Avatar Stats", "strength": "Strength", "strengthText": "Strength increases the chance of random \"critical hits\" and the Gold, Experience, and drop chance boost from them. It also helps deal damage to boss monsters.", "constitution": "Constitution", @@ -136,7 +138,7 @@ "respawn": "Respawn!", "youDied": "You Died!", "dieText": "You've lost a Level, all your Gold, and a random piece of Equipment. Arise, Habiteer, and try again! Curb those negative Habits, be vigilant in completion of Dailies, and hold death at arm's length with a Health Potion if you falter!", - "sureReset": "Are you sure? This will reset your character's class and allocated points (you'll get them all back to re-allocate), and costs 3 gems", + "sureReset": "Are you sure? This will reset your character's class and allocated points (you'll get them all back to re-allocate), and costs 3 gems.", "purchaseFor": "Purchase for <%= cost %> Gems?", "notEnoughMana": "Not enough mana.", "invalidTarget": "Invalid target", @@ -160,5 +162,8 @@ "str": "STR", "con": "CON", "per": "PER", - "int": "INT" + "int": "INT", + "showQuickAllocation": "Show stat allocation", + "hideQuickAllocation": "Hide stat allocation", + "quickAllocationLevelPopover": "Each level earns you one point to assign to an attribute of your choice. You can do so manually, or let the game decide for you using one of the Automatic Allocation options found in User -> Stats." } diff --git a/common/locales/en/communityGuidelines.json b/common/locales/en/communityGuidelines.json index 911f5863d1..feffb3b022 100644 --- a/common/locales/en/communityGuidelines.json +++ b/common/locales/en/communityGuidelines.json @@ -31,7 +31,7 @@ "commGuidePara013": "In a community as big as Habitica, users come and go, and sometimes a moderator needs to lay down their noble mantle and relax. The following are Moderators Emeritus. They no longer act with the power of a Moderator, but we would still like to honor their work!", "commGuidePara014": "Moderators Emeritus:", "commGuideHeadingPublicSpaces": "Public Spaces In Habitica", - "commGuidePara015": "Habitica has two kinds of social spaces: public, and private. Public spaces include the Tavern, Public Guilds, GitHub, Trello, and the Wiki. Private spaces are Private Guilds, party chat, and Private Messages.", + "commGuidePara015": "Habitica has two kinds of social spaces: public, and private. Public spaces include the Tavern, Public Guilds, GitHub, Trello, and the Wiki. Private spaces are Private Guilds, party chat, and Private Messages. All Display Names must comply with the public space guidelines. To change your Display Name, go on the website to User > Profile and click on the \"Edit\" button.", "commGuidePara016": "When navigating the public spaces in Habitica, there are some general rules to keep everyone safe and happy. These should be easy for adventurers like you!", "commGuidePara017": "Respect each other. Be courteous, kind, friendly, and helpful. Remember: Habiticans come from all backgrounds and have had wildly divergent experiences. This is part of what makes Habitica so cool! Building a community means respecting and celebrating our differences as well as our similarities. Here are some easy ways to respect each other:", @@ -43,9 +43,9 @@ "commGuideList02F": "Comply immediately with any Mod request to cease a discussion or move it to the Back Corner. Last words, parting shots and conclusive zingers should all be delivered (courteously) at your \"table\" in the Back Corner, if allowed.", "commGuideList02G": "Take time to reflect instead of responding in anger if someone tells you that something you said or did made them uncomfortable. There is great strength in being able to sincerely apologize to someone. If you feel that the way they responded to you was inappropriate, contact a mod rather than calling them out on it publicly.", "commGuideList02H": "Divisive/contentious conversations should be reported to mods. If you feel that a conversation is getting heated, overly emotional, or hurtful, cease to engage. Instead, email leslie@habitica.com to let us know about it. It's our job to keep you safe.", - "commGuideList02I": "Do not spam. Spamming may include, but is not limited to: posting the same comment or query in multiple places, posting links without explanation or context, posting nonsensical messages, or posting many messages in a row. Repeatedly begging for gems or a subscription may also be considered spamming.", + "commGuideList02I": "Do not spam. Spamming may include, but is not limited to: posting the same comment or query in multiple places, posting links without explanation or context, posting nonsensical messages, or posting many messages in a row. Asking for gems or a subscription in any of the chat spaces or via Private Message is also considered spamming.", - "commGuidePara019": "In private spaces, users have more freedom to discuss whatever topics they would like, but they still may not violate the Terms and Conditions, including posting any discriminatory, violent, or threatening content.", + "commGuidePara019": "In private spaces, users have more freedom to discuss whatever topics they would like, but they still may not violate the Terms and Conditions, including posting any discriminatory, violent, or threatening content. Note that, because Challenge names appear in the winner's public profile, ALL Challenge names must obey the public space guidelines, even if they appear in a private space.", "commGuidePara020": "Private Messages (PMs) have some additional guidelines. If someone has blocked you, do not contact them elsewhere to ask them to unblock you. Additionally, you should not send PMs to someone asking for support (since public answers to support questions are helpful to the community). Finally, do not send anyone PMs begging for a gift of gems or a subscription, as this can be considered spamming.", "commGuidePara021": "Furthermore, some public spaces in Habitica have additional guidelines.", "commGuideHeadingTavern": "The Tavern", diff --git a/common/locales/en/content.json b/common/locales/en/content.json index a238f2a555..906d2ac0b4 100644 --- a/common/locales/en/content.json +++ b/common/locales/en/content.json @@ -49,7 +49,7 @@ "dropEggBearCubText": "Bear Cub", "dropEggBearCubMountText": "Bear", - "dropEggBearCubAdjective": "a cuddly", + "dropEggBearCubAdjective": "a brave", "questEggGryphonText": "Gryphon", "questEggGryphonMountText": "Gryphon", @@ -69,7 +69,7 @@ "questEggRatText": "Rat", "questEggRatMountText": "Rat", - "questEggRatAdjective": "a dirty", + "questEggRatAdjective": "a sociable", "questEggOctopusText": "Octopus", "questEggOctopusMountText": "Octopus", @@ -155,6 +155,14 @@ "questEggMonkeyMountText": "Monkey", "questEggMonkeyAdjective": "a mischievous", + "questEggSnailText": "Snail", + "questEggSnailMountText": "Snail", + "questEggSnailAdjective": "a slow but steady", + + "questEggFalconText": "Falcon", + "questEggFalconMountText": "Falcon", + "questEggFalconAdjective": "a swift", + "eggNotes": "Find a hatching potion to pour on this egg, and it will hatch into <%= eggAdjective(locale) %> <%= eggText(locale) %>.", "hatchingPotionBase": "Base", @@ -169,6 +177,7 @@ "hatchingPotionGolden": "Golden", "hatchingPotionSpooky": "Spooky", "hatchingPotionPeppermint": "Peppermint", + "hatchingPotionFloral": "Floral", "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/contrib.json b/common/locales/en/contrib.json index 8d9f0c0d6f..f309618458 100644 --- a/common/locales/en/contrib.json +++ b/common/locales/en/contrib.json @@ -28,11 +28,11 @@ "helped": "Helped Habit Grow", "helpedText1": "Helped Habitica grow by filling out", "helpedText2": "this survey.", - "hall": "Hall", + "hall": "Hall of Heroes", "contribTitle": "Contributor Title (eg, \"Blacksmith\")", "contribLevel": "Contrib Tier", "contribHallText": "1-7 for normal contributors, 8 for moderators, 9 for staff. This determines which items, pets, and mounts are available. Also determines name-tag coloring. Tiers 8 and 9 are automatically given admin status.", - "hallHeroes": "Hall of Heroes", + "hallContributors": "Hall of Contributors", "hallPatrons": "Hall of Patrons", "rewardUser": "Reward User", "UUID": "UUID", @@ -60,5 +60,5 @@ "blurbGuildsPage": "Guilds are common-interest chat groups created by the players, for players. Browse through the list and join the Guilds that interest you!", "blurbChallenges": "Challenges are created by your fellow players. Joining a Challenge will add its tasks to your task dashboard, and winning a Challenge will give you an achievement and often a gem prize!", "blurbHallPatrons": "This is the Hall of Patrons, where we honor the noble adventurers who backed Habitica's original Kickstarter. We thank them for helping us bring Habitica to life!", - "blurbHallHeroes": "This is the Hall of Heroes, where open-source contributors to Habitica are honored. Whether through code, art, music, writing, or even just helpfulness, they have earned gems, exclusive equipment, and prestigious titles. You can contribute to Habitica, too! Find out more here. " + "blurbHallContributors": "This is the Hall of Contributors, where open-source contributors to Habitica are honored. Whether through code, art, music, writing, or even just helpfulness, they have earned gems, exclusive equipment, and prestigious titles. You can contribute to Habitica, too! Find out more here. " } diff --git a/common/locales/en/gear.json b/common/locales/en/gear.json index 1e33caf19d..3fa7ea8545 100644 --- a/common/locales/en/gear.json +++ b/common/locales/en/gear.json @@ -1,4 +1,6 @@ { + "set": "Set", + "weapon": "weapon", "weaponBase0Text": "No Weapon", @@ -158,6 +160,15 @@ "weaponSpecialWinter2016HealerText": "Confetti Cannon", "weaponSpecialWinter2016HealerNotes": "WHEEEEEEEEEE!!!!!!! HAPPY WINTER WONDERLAND!!!!!!!! Increases Intelligence by <%= int %>. Limited Edition 2015-2016 Winter Gear.", + "weaponSpecialSpring2016RogueText": "Fire Bolas", + "weaponSpecialSpring2016RogueNotes": "You've mastered the ball, the club, and the knife. Now you advance to juggling fire! Awoo! Increases Strength by <%= str %>. Limited Edition 2016 Spring Gear.", + "weaponSpecialSpring2016WarriorText": "Cheese Mallet", + "weaponSpecialSpring2016WarriorNotes": "No one has as many friends as the mouse with tender cheeses. Increases Strength by <%= str %>. Limited Edition 2016 Spring Gear.", + "weaponSpecialSpring2016MageText": "Staff of Bells", + "weaponSpecialSpring2016MageNotes": "Abra-cat-abra! So dazzling, you might mesmerize yourself! Ooh... it jingles... Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2016 Spring Gear.", + "weaponSpecialSpring2016HealerText": "Spring Flower Wand", + "weaponSpecialSpring2016HealerNotes": "With a wave and a wink, you bring the fields and forests into bloom! Or bop troublesome mice on the head. Increases Intelligence by <%= int %>. Limited Edition 2016 Spring Gear.", + "weaponMystery201411Text": "Pitchfork of Feasting", "weaponMystery201411Notes": "Stab your enemies or dig in to your favorite foods - this versatile pitchfork does it all! Confers no benefit. November 2014 Subscriber Item.", "weaponMystery201502Text": "Shimmery Winged Staff of Love and Also Truth", @@ -193,6 +204,10 @@ "weaponArmoireBarristerGavelNotes": "Order! Increases Strength and Constitution by <%= attrs %> each. Enchanted Armoire: Barrister Set (Item 3 of 3).", "weaponArmoireJesterBatonText": "Jester Baton", "weaponArmoireJesterBatonNotes": "With a wave of your baton and some witty repartee, even the most complicated situations become clear. Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Jester Set (Item 3 of 3).", + "weaponArmoireMiningPickaxText": "Mining Pickax", + "weaponArmoireMiningPickaxNotes": "Mine the maximum amount of gold from your tasks! Increases Perception by <%= per %>. Enchanted Armoire: Miner Set (Item 3 of 3).", + "weaponArmoireBasicLongbowText": "Basic Longbow", + "weaponArmoireBasicLongbowNotes": "A serviceable hand-me-down bow. Increases Strength by <%= str %>. Enchanted Armoire: Basic Archer Set (Item 1 of 3).", "armor": "armor", @@ -342,6 +357,15 @@ "armorSpecialWinter2016HealerText": "Festive Fairy Cloak", "armorSpecialWinter2016HealerNotes": "Festive Fairies wrap their body wings around themselves for protection as they use their head wings to catch headwinds and fly around Habitica at speeds of up to 100 mph, delivering gifts and spraying everyone with confetti. How droll. Increases Constitution by <%= con %>. Limited Edition 2015-2016 Winter Gear.", + "armorSpecialSpring2016RogueText": "Canine Camo Suit", + "armorSpecialSpring2016RogueNotes": "A clever pup knows to choose a brighter guise for concealment when everything is green and vibrant. Increases Perception by <%= per %>. Limited Edition 2016 Spring Gear.", + "armorSpecialSpring2016WarriorText": "Mighty Mail", + "armorSpecialSpring2016WarriorNotes": "Though you be but little, you are fierce! Increases Constitution by <%= con %>. Limited Edition 2016 Spring Gear.", + "armorSpecialSpring2016MageText": "Grand Malkin Robes", + "armorSpecialSpring2016MageNotes": "Brightly colored, so you won't be mistaken for a necromouser. Increases Intelligence by <%= int %>. Limited Edition 2016 Spring Gear.", + "armorSpecialSpring2016HealerText": "Fluffy Bunny Breeches", + "armorSpecialSpring2016HealerNotes": "Hippity hop! Bound from hill to hill, healing those in need. Increases Constitution by <%= con %>. Limited Edition 2016 Spring Gear.", + "armorMystery201402Text": "Messenger Robes", "armorMystery201402Notes": "Shimmering and strong, these robes have many pockets to carry letters. Confers no benefit. February 2014 Subscriber Item.", "armorMystery201403Text": "Forest Walker Armor", @@ -376,6 +400,10 @@ "armorMystery201511Notes": "Considering this armor was carved directly from a magical log, it's surprisingly comfortable. Confers no benefit. November 2015 Subscriber Item.", "armorMystery201512Text": "Cold Fire Armor", "armorMystery201512Notes": "Summon the icy flames of winter! Confers no benefit. December 2015 Subscriber Item.", + "armorMystery201603Text": "Lucky Suit", + "armorMystery201603Notes": "This suit is sewn from thousands of four-leafed clovers! Confers no benefit. March 2016 Subscriber Item.", + "armorMystery201604Text": "Armor o' Leaves", + "armorMystery201604Notes": "You, too, can be a small but fearsome leaf puff. Confers no benefit. April 2016 Subscriber Item.", "armorMystery301404Text": "Steampunk Suit", "armorMystery301404Notes": "Dapper and dashing, wot! Confers no benefit. February 3015 Subscriber Item.", @@ -403,6 +431,10 @@ "armorArmoireBarristerRobesNotes": "Very serious and stately. Increases Constitution by <%= con %>. Enchanted Armoire: Barrister Set (Item 2 of 3).", "armorArmoireJesterCostumeText": "Jester Costume", "armorArmoireJesterCostumeNotes": "Tra-la-la! Despite the look of this costume, you are no fool. Increases Intelligence by <%= int %>. Enchanted Armoire: Jester Set (Item 2 of 3).", + "armorArmoireMinerOverallsText": "Miner Overalls", + "armorArmoireMinerOverallsNotes": "They may seem worn, but they are enchanted to repel dirt. Increases Constitution by <%= con %>. Enchanted Armoire: Miner Set (Item 2 of 3).", + "armorArmoireBasicArcherArmorText": "Basic Archer Armor", + "armorArmoireBasicArcherArmorNotes": "This camouflaged vest lets you slip unnoticed through the forests. Increases Perception by <%= per %>. Enchanted Armoire: Basic Archer Set (Item 2 of 3).", "headgear": "headgear", @@ -549,6 +581,15 @@ "headSpecialWinter2016HealerText": "Fairy Wing Helm", "headSpecialWinter2016HealerNotes": "Thesewingsfluttersoquicklythattheyblur! Increases Intelligence by <%= int %>. Limited Edition 2015-2016 Winter Gear.", + "headSpecialSpring2016RogueText": "Good Doggy Mask", + "headSpecialSpring2016RogueNotes": "Aww, what a cute puppy! Come here and let me pet your head. ...Hey, where did all my Gold go? Increases Perception by <%= per %>. Limited Edition 2016 Spring Gear.", + "headSpecialSpring2016WarriorText": "Mouse Guard Helm", + "headSpecialSpring2016WarriorNotes": "Never again shall you be bopped on the head! Let them try! Increases Strength by <%= str %>. Limited Edition 2016 Spring Gear.", + "headSpecialSpring2016MageText": "Grand Malkin Hat", + "headSpecialSpring2016MageNotes": "Apparel to set you above the mere alley-mages of the world. Increases Perception by <%= per %>. Limited Edition 2016 Spring Gear.", + "headSpecialSpring2016HealerText": "Blossom Diadem", + "headSpecialSpring2016HealerNotes": "It glints with the potential of new life ready to burst forth. Increases Intelligence by <%= int %>. Limited Edition 2016 Spring Gear.", + "headSpecialGaymerxText": "Rainbow Warrior Helm", "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.", @@ -580,6 +621,12 @@ "headMystery201512Notes": "These flames burn cold with pure intellect. Confers no benefit. December 2015 Subscriber Item.", "headMystery201601Text": "Helm of True Resolve", "headMystery201601Notes": "Stay resolute, brave champion! Confers no benefit. January 2016 Subscriber Item.", + "headMystery201602Text": "Heartbreaker Hood", + "headMystery201602Notes": "Shield your identity from all your admirers. Confers no benefit. February 2016 Subscriber Item.", + "headMystery201603Text": "Lucky Hat", + "headMystery201603Notes": "This top hat is a magical good-luck charm. Confers no benefit. March 2016 Subscriber Item.", + "headMystery201604Text": "Crown o' Flowers", + "headMystery201604Notes": "These woven flowers make a surprisingly strong helm! Confers no benefit. April 2016 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", @@ -625,6 +672,10 @@ "headArmoireBarristerWigNotes": "This bouncy wig is enough to frighten away even the fiercest foe. Increases Strength by <%= str %>. Enchanted Armoire: Barrister Set (Item 1 of 3).", "headArmoireJesterCapText": "Jester Cap", "headArmoireJesterCapNotes": "The bells on this hat might distract your opponents, but they just help you focus. Increases Perception by <%= per %>. Enchanted Armoire: Jester Set (Item 1 of 3).", + "headArmoireMinerHelmetText": "Miner Helmet", + "headArmoireMinerHelmetNotes": "Protect your head from falling tasks! Increases Intelligence by <%= int %>. Enchanted Armoire: Miner Set (Item 1 of 3).", + "headArmoireBasicArcherCapText": "Basic Archer Cap", + "headArmoireBasicArcherCapNotes": "No archer would be complete without a jaunty cap! Increases Perception by <%= per %>. Enchanted Armoire: Basic Archer Set (Item 3 of 3).", "offhand": "shield-hand item", @@ -724,6 +775,13 @@ "shieldSpecialWinter2016HealerText": "Pixie Present", "shieldSpecialWinter2016HealerNotes": "Open it open it open it open it open it open it!!!!!!!!! Increases Constitution by <%= con %>. Limited Edition 2015-2016 Winter Gear.", + "shieldSpecialSpring2016RogueText": "Fire Bolas", + "shieldSpecialSpring2016RogueNotes": "You've mastered the ball, the club, and the knife. Now you advance to juggling fire! Awoo! Increases Strength <%= str %>. Limited Edition 2016 Spring Gear.", + "shieldSpecialSpring2016WarriorText": "Cheese Wheel", + "shieldSpecialSpring2016WarriorNotes": "You braved fiendish traps to procure this defense-boosting food. Increases Constitution by <%= con %>. Limited Edition 2016 Spring Gear.", + "shieldSpecialSpring2016HealerText": "Floral Buckler", + "shieldSpecialSpring2016HealerNotes": "The April Fool claims this little shield will block Shiny Seeds. Don't believe him. Increases Constitution by <%= con %>. Limited Edition 2016 Spring Gear.", + "shieldMystery201601Text": "Resolution Slayer", "shieldMystery201601Notes": "This blade can be used to parry away all distractions. Confers no benefit. January 2016 Subscriber Item.", "shieldMystery301405Text": "Clock Shield", @@ -737,6 +795,8 @@ "shieldArmoireRoyalCaneNotes": "Hooray for the ruler, worthy of song! Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Royal Set (Item 2 of 3).", "shieldArmoireDragonTamerShieldText": "Dragon Tamer Shield", "shieldArmoireDragonTamerShieldNotes": "Distract enemies with this dragon-shaped shield. Increases Perception by <%= per %>. Enchanted Armoire: Dragon Tamer Set (Item 2 of 3).", + "shieldArmoireMysticLampText": "Mystic Lamp", + "shieldArmoireMysticLampNotes": "Light the darkest caves with this mystic lamp! Increases Perception by <%= per %>. Enchanted Armoire: Independent Item.", "back": "Back Accessory", "backBase0Text": "No Back Accessory", @@ -754,6 +814,8 @@ "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.", + "backMystery201602Text": "Heartbreaker Cape", + "backMystery201602Notes": "With a swish of your cape, your enemies fall before you! Confers no benefit. February 2016 Subscriber Item.", "backSpecialWonderconRedText": "Mighty Cape", "backSpecialWonderconRedNotes": "Swishes with strength and beauty. Confers no benefit. Special Edition Convention Item.", @@ -810,8 +872,17 @@ "headAccessorySpecialSpring2015HealerText": "Green Kitty Ears", "headAccessorySpecialSpring2015HealerNotes": "These cute kitty ears will make others green with envy. Confers no benefit. Limited Edition 2015 Spring Gear.", + "headAccessorySpecialSpring2016RogueText": "Green Dog Ears", + "headAccessorySpecialSpring2016RogueNotes": "With these, you can keep track of tricky Mages even if they turn invisible! Confers no benefit. Limited Edition 2016 Spring Gear.", + "headAccessorySpecialSpring2016WarriorText": "Red Mouse Ears", + "headAccessorySpecialSpring2016WarriorNotes": "To better hear your theme song across clamorous battlefields. Confers no benefit. Limited Edition 2016 Spring Gear.", + "headAccessorySpecialSpring2016MageText": "Yellow Cat Ears", + "headAccessorySpecialSpring2016MageNotes": "These sharp ears can detect the minute hum of ambient Mana, or the muted footfalls of a Rogue. Confers no benefit. Limited Edition 2016 Spring Gear.", + "headAccessorySpecialSpring2016HealerText": "Purple Bunny Ears", + "headAccessorySpecialSpring2016HealerNotes": "They stand like flags above the fray, letting others know where to run for help. Confers no benefit. Limited Edition 2016 Spring Gear.", + "headAccessoryBearEarsText": "Bear Ears", - "headAccessoryBearEarsNotes": "These ears make you look like a cuddly bear! Confers no benefit.", + "headAccessoryBearEarsNotes": "These ears make you look like a brave bear! Confers no benefit.", "headAccessoryCactusEarsText": "Cactus Ears", "headAccessoryCactusEarsNotes": "These ears make you look like a prickly cactus! Confers no benefit.", "headAccessoryFoxEarsText": "Fox Ears", @@ -840,6 +911,9 @@ "headAccessoryMystery301405Text": "Headwear Goggles", "headAccessoryMystery301405Notes": "\"Goggles are for your eyes,\" they said. \"Nobody wants goggles that you can only wear on your head,\" they said. Hah! You sure showed them! Confers no benefit. August 3015 Subscriber Item.", + "headAccessoryArmoireComicalArrowText": "Comical Arrow", + "headAccessoryArmoireComicalArrowNotes": "This whimsical item doesn't provide a stat boost, but it sure is good for a laugh! Confers no benefit. Enchanted Armoire: Independent Item.", + "eyewear": "Eyewear", "eyewearBase0Text": "No Eyewear", "eyewearBase0Notes": "No Eyewear.", diff --git a/common/locales/en/generic.json b/common/locales/en/generic.json index 409e48e1f0..f1fd915ca0 100644 --- a/common/locales/en/generic.json +++ b/common/locales/en/generic.json @@ -139,6 +139,8 @@ "achievementStressbeastText": "Helped defeat the Abominable Stressbeast during the 2014 Winter Wonderland Event!", "achievementBurnout": "Savior of the Flourishing Fields", "achievementBurnoutText": "Helped defeat Burnout and restore the Exhaust Spirits during the 2015 Fall Festival Event!", + "achievementBewilder": "Savior of Mistiflying", + "achievementBewilderText": "Helped defeat the Be-Wilder during the 2016 Spring Fling Event!", "checkOutProgress": "Check out my progress in Habitica!", "cardReceived": "Received a card!", "cardReceivedFrom": "<%= cardType %> from <%= userName %>", @@ -177,5 +179,6 @@ "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!" + "achievementShare": "I earned a new achievement in Habitica!", + "orderBy": "Order By <%= item %>" } diff --git a/common/locales/en/groups.json b/common/locales/en/groups.json index a07d5bc663..901c813d96 100644 --- a/common/locales/en/groups.json +++ b/common/locales/en/groups.json @@ -1,5 +1,5 @@ { - "tavern": "Tavern", + "tavern": "Tavern Chat", "innCheckOut": "Check Out of Inn", "innCheckIn": "Rest in the Inn", "innText": "You're resting in the Inn! While checked-in, your Dailies won't hurt you at the day's end, but they will still refresh every day. Be warned: If you are participating in a Boss Quest, the Boss will still damage you for your party mates' missed Dailies unless they are also in the Inn! Also, your own damage to the Boss (or items collected) will not be applied until you check out of the Inn.", @@ -101,7 +101,7 @@ "inbox": "Inbox", "abuseFlag": "Report violation of Community Guidelines", "abuseFlagModalHeading": "Report <%= name %> for violation?", - "abuseFlagModalBody": "Are you sure you want to report this post? You should ONLY report a post that violates the <%= firstLinkStart %>Community Guidelines<%= linkEnd %> and/or <%= secondLinkStart %>Terms of Service<%= linkEnd %>. Inappropriately reporting a post is a violation of the Community Guidelines and may give you an infraction. Appropriate reasons to flag a post include but are not limited to:


", + "abuseFlagModalBody": "Are you sure you want to report this post? You should ONLY report a post that violates the <%= firstLinkStart %>Community Guidelines<%= linkEnd %> and/or <%= secondLinkStart %>Terms of Service<%= linkEnd %>. Inappropriately reporting a post is a violation of the Community Guidelines and may give you an infraction. Appropriate reasons to flag a post include but are not limited to:

", "abuseFlagModalButton": "Report Violation", "abuseReported": "Thank you for reporting this violation. The moderators have been notified.", "abuseAlreadyReported": "You have already reported this message.", @@ -147,6 +147,10 @@ "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 %>Community Guidelines<%= linkEnd %> and then click the button below to indicate that you accept them.", + "partyUpName": "Party Up", + "partyOnName": "Party On", + "partyUpAchievement": "Joined a Party with another person! Have fun battling monsters and supporting each other.", + "partyOnAchievement": "Joined a Party with at least four people! Enjoy your increased accountability as you unite with your friends to vanquish your foes!" } diff --git a/common/locales/en/limited.json b/common/locales/en/limited.json index 449d2ff26d..2407b788fe 100644 --- a/common/locales/en/limited.json +++ b/common/locales/en/limited.json @@ -67,6 +67,11 @@ "witchyWizardSet": "Witchy Wizard (Mage)", "mummyMedicSet": "Mummy Medic (Healer)", "vampireSmiterSet": "Vampire Smiter (Rogue)", + "bewareDogSet": "Beware Dog (Warrior)", + "magicianBunnySet": "Magician's Bunny (Mage)", + "comfortingKittySet": "Comforting Kitty (Healer)", + "sneakySqueakerSet": "Sneaky Squeaker (Rogue)", "fallEventAvailability": "Available until October 31", - "winterEventAvailability": "Available until December 31" + "winterEventAvailability": "Available until December 31", + "springEventAvailability": "Available until May 31" } diff --git a/common/locales/en/npc.json b/common/locales/en/npc.json index add6d3b1e3..656b0c5e35 100644 --- a/common/locales/en/npc.json +++ b/common/locales/en/npc.json @@ -36,7 +36,7 @@ "paymentMethods": "Purchase using", "classGear": "Class Gear", - "classGearText": "First: don't panic! Your old gear is in your inventory, and you're now wearing your apprentice <%= klass %> equipment. Wearing your class's gear grants you a 50% bonus to stats. However, feel free to switch back to your old gear.", + "classGearText": "First: don't panic! Your old gear is in your inventory, and you're now wearing the apprentice equipment of your new class. Wearing your class's gear grants you a 50% bonus to stats. However, feel free to switch back to your old gear.", "classStats": "These are your class's stats; they affect the game-play. Each time you level up, you get one point to allocate to a particular stat. Hover over each stat for more information.", "autoAllocate": "Auto Allocate", "autoAllocateText": "If 'automatic allocation' is checked, your avatar gains stats automatically based on your tasks' attributes, which you can find in TASK > Edit > Advanced > Attributes. Eg, if you hit the gym often, and your 'Gym' Daily is set to 'Physical', you'll gain Strength automatically.", @@ -47,7 +47,7 @@ "tourWelcome": "Welcome to Habitica! This is your To-Do list. Check off a task to proceed!", "tourExp": "Great job! Checking off a task gives you Experience and Gold!", - "tourDailies": "This column is for Daily tasks. To proceed, enter a task you should do every day! Sample Dailies: Make Bed, Floss, Check Work Email", + "tourDailies": "This column is for Daily tasks. To proceed, enter a task you should do every day! Sample Dailies: Make Bed, Floss, Check Work Email", "tourCron": "Splendid! Your Dailies will reset every day.", "tourHP": "Watch out! If you don't complete a Daily by midnight, it will hurt you!", "tourHabits": "This column is for good and bad Habits that you do many times a day! To proceed, click the pencil to edit the names, then click the checkmark to save.", diff --git a/common/locales/en/pets.json b/common/locales/en/pets.json index 473986e9e0..f6dcadae58 100644 --- a/common/locales/en/pets.json +++ b/common/locales/en/pets.json @@ -19,6 +19,7 @@ "orca": "Orca", "royalPurpleGryphon": "Royal Purple Gryphon", "phoenix": "Phoenix", + "magicalBee": "Magical Bee", "rarePetPop1": "Click the gold paw to learn more about how you can obtain this rare pet through contributing to Habitica!", "rarePetPop2": "How to Get this Pet!", "potion": "<%= potionType %> Potion", diff --git a/common/locales/en/quests.json b/common/locales/en/quests.json index 7b3fe7af43..98b3a10b52 100644 --- a/common/locales/en/quests.json +++ b/common/locales/en/quests.json @@ -38,7 +38,7 @@ "bossDmg2": "Only participants will fight the boss and share in the quest loot.", "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)...", "bossDmg2Broken": "Only participants will fight the boss and share in the quest loot...", - "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": "Complete Dailies and To-Dos and score positive Habits to damage the World Boss! Incomplete Dailies fill the Rage Bar. When the Rage 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...", "bossColl1": "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.", "bossColl2": "Only participants can collect items and share in the quest loot.", diff --git a/common/locales/en/questsContent.json b/common/locales/en/questsContent.json index 792b5ac681..fb9efa573d 100644 --- a/common/locales/en/questsContent.json +++ b/common/locales/en/questsContent.json @@ -69,7 +69,7 @@ "questSpiderUnlockText": "Unlocks purchasable spider eggs in the Market", "questVice1Text": "Vice, Part 1: Free Yourself of the Dragon's Influence", - "questVice1Notes": "

They say there lies a terrible evil in the caverns of Mt. Habitica. A monster whose presence twists the wills of the strong heroes of the land, turning them towards bad habits and laziness! The beast is a grand dragon of immense power and comprised of the shadows themselves: Vice, the treacherous Shadow Wyrm. Brave Habiteers, stand up and defeat this foul beast once and for all, but only if you believe you can stand against its immense power.

Vice Part 1:

How can you expect to fight the beast if it already has control over you? Don't fall victim to laziness and vice! Work hard to fight against the dragon's dark influence and dispel his hold on you!

", + "questVice1Notes": "

They say there lies a terrible evil in the caverns of Mt. Habitica. A monster whose presence twists the wills of the strong heroes of the land, turning them towards bad habits and laziness! The beast is a grand dragon of immense power and comprised of the shadows themselves: Vice, the treacherous Shadow Wyrm. Brave Habiteers, stand up and defeat this foul beast once and for all, but only if you believe you can stand against its immense power.

Vice Part 1:

How can you expect to fight the beast if it already has control over you? Don't fall victim to laziness and vice! Work hard to fight against the dragon's dark influence and dispel his hold on you!

", "questVice1Boss": "Vice's Shade", "questVice1DropVice2Quest": "Vice Part 2 (Scroll)", @@ -87,35 +87,35 @@ "questVice3DropShadeHatchingPotion": "Shade Hatching Potion", "questMoonstone1Text": "The Moonstone Chain, Part 1: The Moonstone Chain", - "questMoonstone1Notes": "

A terrible affliction has struck Habiticans. Bad Habits thought long-dead are rising back up with a vengeance. Dishes lie unwashed, textbooks linger unread, and procrastination runs rampant!


You track some of your own returning Bad Habits to the Swamps of Stagnation and discover the culprit: the ghostly Necromancer, Recidivate. You rush in, weapons swinging, but they slide through her specter uselessly.


\"Don’t bother,\" she hisses with a dry rasp. \"Without a chain of moonstones, nothing can harm me – and master jeweler @aurakami scattered all the moonstones across Habitica long ago!\" Panting, you retreat... but you know what you must do.

", + "questMoonstone1Notes": "A terrible affliction has struck Habiticans. Bad Habits thought long-dead are rising back up with a vengeance. Dishes lie unwashed, textbooks linger unread, and procrastination runs rampant!

You track some of your own returning Bad Habits to the Swamps of Stagnation and discover the culprit: the ghostly Necromancer, Recidivate. You rush in, weapons swinging, but they slide through her specter uselessly.

\"Don’t bother,\" she hisses with a dry rasp. \"Without a chain of moonstones, nothing can harm me – and master jeweler @aurakami scattered all the moonstones across Habitica long ago!\" Panting, you retreat... but you know what you must do.", "questMoonstone1CollectMoonstone": "Moonstones", "questMoonstone1DropMoonstone2Quest": "The Moonstone Chain Part 2: Recidivate the Necromancer (Scroll)", "questMoonstone2Text": "The Moonstone Chain, Part 2: Recidivate The Necromancer", - "questMoonstone2Notes": "

The brave weaponsmith @Inventrix helps you fashion the enchanted moonstones into a chain. You’re ready to confront Recidivate at last, but as you enter the Swamps of Stagnation, a terrible chill sweeps over you.


Rotting breath whispers in your ear. \"Back again? How delightful...\" You spin and lunge, and under the light of the moonstone chain, your weapon strikes solid flesh. \"You may have bound me to the world once more,\" Recidivate snarls, \"but now it is time for you to leave it!\"

", + "questMoonstone2Notes": "The brave weaponsmith @Inventrix helps you fashion the enchanted moonstones into a chain. You’re ready to confront Recidivate at last, but as you enter the Swamps of Stagnation, a terrible chill sweeps over you.

Rotting breath whispers in your ear. \"Back again? How delightful...\" You spin and lunge, and under the light of the moonstone chain, your weapon strikes solid flesh. \"You may have bound me to the world once more,\" Recidivate snarls, \"but now it is time for you to leave it!\"", "questMoonstone2Boss": "The Necromancer", "questMoonstone2DropMoonstone3Quest": "The Moonstone Chain Part 3: Recidivate Transformed (Scroll)", "questMoonstone3Text": "The Moonstone Chain, Part 3: Recidivate Transformed", - "questMoonstone3Notes": "

Recidivate crumples to the ground, and you strike at her with the moonstone chain. To your horror, Recidivate seizes the gems, eyes burning with triumph.


\"Foolish creature of flesh!\" she shouts. \"These moonstones will restore me to a physical form, true, but not as you imagined. As the full moon waxes from the dark, so too does my power flourish, and from the shadows I summon the specter of your most feared foe!\"


A sickly green fog rises from the swamp, and Recidivate’s body writhes and contorts into a shape that fills you with dread – the undead body of Vice, horribly reborn.

", - "questMoonstone3Completion": "

Your breath comes hard and sweat stings your eyes as the undead Wyrm collapses. The remains of Recidivate dissipate into a thin grey mist that clears quickly under the onslaught of a refreshing breeze, and you hear the distant, rallying cries of Habiticans defeating their Bad Habits for once and for all.


@Baconsaur the beast master swoops down on a gryphon. \"I saw the end of your battle from the sky, and I was greatly moved. Please, take this enchanted tunic – your bravery speaks of a noble heart, and I believe you were meant to have it.\"

", + "questMoonstone3Notes": "Recidivate crumples to the ground, and you strike at her with the moonstone chain. To your horror, Recidivate seizes the gems, eyes burning with triumph.

\"Foolish creature of flesh!\" she shouts. \"These moonstones will restore me to a physical form, true, but not as you imagined. As the full moon waxes from the dark, so too does my power flourish, and from the shadows I summon the specter of your most feared foe!\"

A sickly green fog rises from the swamp, and Recidivate’s body writhes and contorts into a shape that fills you with dread – the undead body of Vice, horribly reborn.", + "questMoonstone3Completion": "Your breath comes hard and sweat stings your eyes as the undead Wyrm collapses. The remains of Recidivate dissipate into a thin grey mist that clears quickly under the onslaught of a refreshing breeze, and you hear the distant, rallying cries of Habiticans defeating their Bad Habits for once and for all.

@Baconsaur the beast master swoops down on a gryphon. \"I saw the end of your battle from the sky, and I was greatly moved. Please, take this enchanted tunic – your bravery speaks of a noble heart, and I believe you were meant to have it.\"", "questMoonstone3Boss": "Necro-Vice", "questMoonstone3DropRottenMeat": "Rotten Meat (Food)", "questMoonstone3DropZombiePotion": "Zombie Hatching Potion", "questGoldenknight1Text": "The Golden Knight, Part 1: A Stern Talking-To", - "questGoldenknight1Notes": "

The Golden Knight has been getting on poor Habiticans' cases. Didn't do all of your Dailies? Checked off a negative Habit? She will use this as a reason to harass you about how you should follow her example. She is the shining example of a perfect Habitican, and you are naught but a failure. Well, that is not nice at all! Everyone makes mistakes. They should not have to be met with such negativity for it. Perhaps it is time you gather some testimonies from hurt Habiticans and give the Golden Knight a stern talking-to!

", + "questGoldenknight1Notes": "The Golden Knight has been getting on poor Habiticans' cases. Didn't do all of your Dailies? Checked off a negative Habit? She will use this as a reason to harass you about how you should follow her example. She is the shining example of a perfect Habitican, and you are naught but a failure. Well, that is not nice at all! Everyone makes mistakes. They should not have to be met with such negativity for it. Perhaps it is time you gather some testimonies from hurt Habiticans and give the Golden Knight a stern talking-to!", "questGoldenknight1CollectTestimony": "Testimonies", "questGoldenknight1DropGoldenknight2Quest": "The Golden Knight Chain Part 2: Gold Knight (Scroll)", "questGoldenknight2Text": "The Golden Knight, Part 2: Gold Knight", - "questGoldenknight2Notes": "

Armed with hundreds of Habitican's testimonies, you finally confront the Golden Knight. You begin to recite the Habitcan's complaints to her, one by one. \"And @Pfeffernusse says that your constant bragging-\" The knight raises her hand to silence you and scoffs, \"Please, these people are merely jealous of my success. Instead of complaining, they should simply work as hard as I! Perhaps I shall show you the power you can attain through diligence such as mine!\" She raises her morningstar and prepares to attack you!

", + "questGoldenknight2Notes": "Armed with hundreds of Habitican's testimonies, you finally confront the Golden Knight. You begin to recite the Habitcan's complaints to her, one by one. \"And @Pfeffernusse says that your constant bragging-\" The knight raises her hand to silence you and scoffs, \"Please, these people are merely jealous of my success. Instead of complaining, they should simply work as hard as I! Perhaps I shall show you the power you can attain through diligence such as mine!\" She raises her morningstar and prepares to attack you!", "questGoldenknight2Boss": "Gold Knight", "questGoldenknight2DropGoldenknight3Quest": "The Golden Knight Chain Part 3: The Iron Knight (Scroll)", "questGoldenknight3Text": "The Golden Knight, Part 3: The Iron Knight", - "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!\"

", - "questGoldenknight3Completion": "

With a satisfying clang, the Iron Knight falls to his knees and slumps over. \"You are quite strong,\" he pants. \"I have been humbled, today.\" The Golden Knight approaches you and says, \"Thank you. I believe we have gained some humility from our encounter with you. I will speak with my father and explain the complaints against us. Perhaps, we should begin apologizing to the other Habiticans.\" She mulls over in thought before turning back to you. \"Here: as our gift to you, I want you to keep my morningstar. It is yours now.\"

", + "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!\"", + "questGoldenknight3Completion": "With a satisfying clang, the Iron Knight falls to his knees and slumps over. \"You are quite strong,\" he pants. \"I have been humbled, today.\" The Golden Knight approaches you and says, \"Thank you. I believe we have gained some humility from our encounter with you. I will speak with my father and explain the complaints against us. Perhaps, we should begin apologizing to the other Habiticans.\" She mulls over in thought before turning back to you. \"Here: as our gift to you, I want you to keep my morningstar. It is yours now.\"", "questGoldenknight3Boss": "The Iron Knight", "questGoldenknight3DropHoney": "Honey (Food)", "questGoldenknight3DropGoldenPotion": "Golden Hatching Potion", @@ -133,7 +133,7 @@ "questEggHuntDropPlainEgg": "Plain Egg", "questDilatoryText": "The Dread Drag'on of Dilatory", - "questDilatoryNotes": "

We should have heeded the warnings.


Dark shining eyes. Ancient scales. Massive jaws, and flashing teeth. We've awoken something horrifying from the crevasse: the Dread Drag'on of Dilatory! Screaming Habiticans fled in all directions when it reared out of the sea, its terrifyingly long neck extending hundreds of feet out of the water as it shattered windows with its searing roar.


\"This must be what dragged Dilatory down!\" yells Lemoness. \"It wasn't the weight of the neglected tasks - the Dark Red Dailies just attracted its attention!\"


\"It's surging with magical energy!\" @Baconsaur cries. \"To have lived this long, it must be able to heal itself! How can we defeat it?\"


Why, the same way we defeat all beasts - with productivity! Quickly, Habitica, band together and strike through your tasks, and all of us will battle this monster together. (There's no need to abandon previous quests - we believe in your ability to double-strike!) It won't attack us individually, but the more Dailies we skip, the closer we get to triggering its Neglect Strike - and I don't like the way it's eyeing the Tavern....

", + "questDilatoryNotes": "We should have heeded the warnings.

Dark shining eyes. Ancient scales. Massive jaws, and flashing teeth. We've awoken something horrifying from the crevasse: the Dread Drag'on of Dilatory! Screaming Habiticans fled in all directions when it reared out of the sea, its terrifyingly long neck extending hundreds of feet out of the water as it shattered windows with its searing roar.

\"This must be what dragged Dilatory down!\" yells Lemoness. \"It wasn't the weight of the neglected tasks - the Dark Red Dailies just attracted its attention!\"

\"It's surging with magical energy!\" @Baconsaur cries. \"To have lived this long, it must be able to heal itself! How can we defeat it?\"

Why, the same way we defeat all beasts - with productivity! Quickly, Habitica, band together and strike through your tasks, and all of us will battle this monster together. (There's no need to abandon previous quests - we believe in your ability to double-strike!) It won't attack us individually, but the more Dailies we skip, the closer we get to triggering its Neglect Strike - and I don't like the way it's eyeing the Tavern....", "questDilatoryBoss": "The Dread Drag'on of Dilatory", "questDilatoryBossRageTitle": "Neglect Strike", "questDilatoryBossRageDescription": "When this bar has filled up, the Dread Drag'on of Dilatory will unleash great havoc on Habitica's terrain", @@ -168,7 +168,7 @@ "questAtom3DropPotion": "Base Hatching Potion", "questOwlText": "The Night-Owl", - "questOwlNotes": "The Tavern light is lit 'til dawn
Until one eve the glow is gone!
How can we see for our all-nighters?
@Twitching cries, \"I need some fighters!
See that Night-Owl, starry foe?
Fight with haste and do not slow!
We'll drive its shadow from our door,
And make the night shine bright once more!\"", + "questOwlNotes": "The Tavern light is lit 'til dawn
Until one eve the glow is gone!
How can we see for our all-nighters?
@Twitching cries, \"I need some fighters!
See that Night-Owl, starry foe?
Fight with haste and do not slow!
We'll drive its shadow from our door,
And make the night shine bright once more!\"", "questOwlCompletion": "The Night-Owl fades before the dawn,
But even so, you feel a yawn.
Perhaps it's time to get some rest?
Then on your bed, you see a nest!
A Night-Owl knows it can be great
To finish work and stay up late,
But your new pets will softly peep
To tell you when it's time to sleep.", "questOwlBoss": "The Night-Owl", "questOwlDropOwlEgg": "Owl (Egg)", @@ -339,5 +339,31 @@ "questMonkeyCompletion": "You did it! No bananas for those fiends today. Overwhelmed by your diligence, the monkeys flee in panic. \"Look,\" says @Misceo. \"They left a few eggs behind.\"

@Leephon grins. \"Maybe a well-trained pet monkey can help you as much as the wild ones hinder you!\"", "questMonkeyBoss": "Monstrous Mandrill", "questMonkeyDropMonkeyEgg": "Monkey (Egg)", - "questMonkeyUnlockText": "Unlocks purchasable Monkey eggs in the Market" + "questMonkeyUnlockText": "Unlocks purchasable Monkey eggs in the Market", + + "questSnailText": "The Snail of Drudgery Sludge", + "questSnailNotes": "You're excited to begin questing in the abandoned Dungeons of Drudgery, but as soon as you enter, you feel the ground under your feet start to suck at your boots. You look up to the path ahead and see Habiticans mired in slime. @Overomega yells, \"They have too many unimportant tasks and dailies, and they're getting stuck on things that don't matter! Pull them out!\"

\"You need to find the source of the ooze,\" @Pfeffernusse agrees, \"or the tasks that they cannot accomplish will drag them down forever!\"

Pulling out your weapon, you wade through the gooey mud.... and encounter the fearsome Snail of Drudgery Sludge.", + "questSnailCompletion": "You bring your weapon down on the great Snail's shell, cracking it in two, releasing a flood of water. The slime is washed away, and the Habiticans around you rejoice. \"Look!\" says @Misceo. \"There's a small group of snail eggs in the remnants of the muck.\"", + "questSnailBoss": "Snail of Drudgery Sludge", + "questSnailDropSnailEgg": "Snail (Egg)", + "questSnailUnlockText": "Unlocks purchasable Snail eggs in the Market", + + "questBewilderText": "The Be-Wilder", + "questBewilderNotes": "The party begins like any other.

The appetizers are excellent, the music is swinging, and even the dancing elephants have become routine. Habiticans laugh and frolic amid the overflowing floral centerpieces, happy to have a distraction from their least-favorite tasks, and the April Fool whirls among them, eagerly providing an amusing trick here and a witty twist there.

As the Mistiflying clock tower strikes midnight, the April Fool leaps onto the stage to give a speech.

“Friends! Enemies! Tolerant acquaintances! Lend me your ears.” The crowd chuckles as animal ears sprout from their heads, and they pose with their new accessories.

“As you know,” the Fool continues, “my confusing illusions usually only last a single day. But I’m pleased to announce that I’ve discovered a shortcut that will guarantee us non-stop fun, without having to deal with the pesky weight of our responsibilities. Charming Habiticans, meet my magical new friend... the Be-Wilder!”

Lemoness pales suddenly, dropping her hors d'oeuvres. “Wait! Don’t trust--”

But suddenly mists are pouring into the room, glittering and thick, and they swirl around the April Fool, coalescing into cloudy feathers and a stretching neck. The crowd is speechless as an monstrous bird unfolds before them, its wings shimmering with illusions. It lets out a horrible screeching laugh.

“Oh, it has been ages since a Habitican has been foolish enough to summon me! How wonderful it feels, to have a tangible form at last.”

Buzzing in terror, the magic bees of Mistiflying flee the floating city, which sags from the sky. One by one, the brilliant spring flowers wither up and wisp away.

“My dearest friends, why so alarmed?” crows the Be-Wilder, beating its wings. “There’s no need to toil for your rewards any more. I’ll just give you all the things that you desire!”

A rain of coins pours from the sky, hammering into the ground with brutal force, and the crowd screams and flees for cover. “Is this a joke?” Baconsaur shouts, as the gold smashes through windows and shatters roof shingles.

PainterProphet ducks as lightning bolts crackle overhead, and fog blots out the sun. “No! This time, I don’t think it is!”

Quickly, Habiticans, don’t let this World Boss distract us from our goals! Stay focused on the tasks that you need to complete so we can rescue Mistiflying -- and hopefully, ourselves.", + "questBewilderCompletion": "The Be-Wilder is DEFEATED!

We've done it! The Be-Wilder lets out a ululating cry as it twists in the air, shedding feathers like falling rain. Slowly, gradually, it coils into a cloud of sparkling mist. As the newly-revealed sun pierces the fog, it burns away, revealing the coughing, mercifully human forms of Bailey, Matt, Alex.... and the April Fool himself.

Mistiflying is saved!

The April Fool has enough shame to look a bit sheepish. “Oh, hm,” he says. “Perhaps I got a little…. carried away.”

The crowd mutters. Sodden flowers wash up on sidewalks. Somewhere in the distance, a roof collapses with a spectacular splash.

“Er, yes,” the April Fool says. “That is. What I meant to say was, I’m dreadfully sorry.” He heaves a sigh. “I suppose it can’t all be fun and games, after all. It might not hurt to focus occasionally. Maybe I’ll get a head start on next year’s pranking.”

Redphoenix coughs meaningfully.

“I mean, get a head start on this year’s spring cleaning!” the April Fool says. “Nothing to fear, I’ll have Habit City in spit-shape soon. Luckily nobody is better than I at dual-wielding mops.”

Encouraged, the marching band starts up.

It isn’t long before all is back to normal in Habit City. Plus, now that the Be-Wilder has evaporated, the magical bees of Mistiflying bustle back to work, and soon the flowers are blooming and the city is floating once more.

As Habiticans cuddle the magical fuzzy bees, the April Fool’s eyes light up. “Oho, I’ve had a thought! Why don’t you all keep some of these fuzzy Bee Pets and Mounts? It’s a gift that perfectly symbolizes the balance between hard work and sweet rewards, if I’m going to get all boring and allegorical on you.” He winks. “Besides, they don’t have stingers! Fool’s honor.”", + "questBewilderCompletionChat": "`The Be-Wilder is DEFEATED!`\n\nWe've done it! The Be-Wilder lets out a ululating cry as it twists in the air, shedding feathers like falling rain. Slowly, gradually, it coils into a cloud of sparkling mist. As the newly-revealed sun pierces the fog, it burns away, revealing the coughing, mercifully human forms of Bailey, Matt, Alex.... and the April Fool himself.\n\n`Mistiflying is saved!`\n\nThe April Fool has enough shame to look a bit sheepish. “Oh, hm,” he says. “Perhaps I got a little…. carried away.”\n\nThe crowd mutters. Sodden flowers wash up on sidewalks. Somewhere in the distance, a roof collapses with a spectacular splash.\n\n“Er, yes,” the April Fool says. “That is. What I meant to say was, I’m dreadfully sorry.” He heaves a sigh. “I suppose it can’t all be fun and games, after all. It might not hurt to focus occasionally. Maybe I’ll get a head start on next year’s pranking.”\n\nRedphoenix coughs meaningfully.\n\n“I mean, get a head start on this year’s spring cleaning!” the April Fool says. “Nothing to fear, I’ll have Habit City in spit-shape soon. Luckily nobody is better than I at dual-wielding mops.”\n\nEncouraged, the marching band starts up.\n\nIt isn’t long before all is back to normal in Habit City. Plus, now that the Be-Wilder has evaporated, the magical bees of Mistiflying bustle back to work, and soon the flowers are blooming and the city is floating once more.\n\nAs Habiticans cuddle the magical fuzzy bees, the April Fool’s eyes light up. “Oho, I’ve had a thought! Why don’t you all keep some of these fuzzy Bee Pets and Mounts? It’s a gift that perfectly symbolizes the balance between hard work and sweet rewards, if I’m going to get all boring and allegorical on you.” He winks. “Besides, they don’t have stingers! Fool’s honor.”", + "questBewilderBossRageTitle": "Beguilement Strike", + "questBewilderBossRageDescription": "When this gauge fills, The Be-Wilder will unleash its Beguilement Strike on Habitica!", + "questBewilderDropBumblebeePet": "Magical Bee (Pet)", + "questBewilderDropBumblebeeMount": "Magical Bee (Mount)", + "questBewilderBossRageMarket": "`The Be-Wilder uses BEGUILEMENT STRIKE!`\n\nOh no! Despite our best efforts, we've gotten distracted by the Be-Wilder’s charming illusions and have forgotten to do some of our Dailies! With a cackling cry, the shining bird beats its wings, raising a swarm of mist around Alex the Merchant. When the fog clears, he has been possessed! “Have some free samples!” he shouts gleefully, and begins to hurl exploding eggs and potions at fleeing Habiticans. Not the most favorable of sales, to be sure.\n\nHurry! Let's stay focused on our Dailies to defeat this monster before it possesses someone else.", + "questBewilderBossRageStables": "`The Be-Wilder uses BEGUILEMENT STRIKE!`\n\nAhh!!! Once again the Be-Wilder has dazzled us into neglecting our Dailies, and now it has attacked Matt the Beast Master! With a swirl of mist, Matt transforms into a terrifying winged creature, and all the pets and mounts howl sadly in their stables. Quickly, stay focused on your tasks to defeat this dastardly distraction!", + "questBewilderBossRageBailey": "`The Be-Wilder uses BEGUILEMENT STRIKE!`\n\nLook out! In the middle of reporting the news, Bailey the Town Crier has been possessed by the Be-Wilder! She lets out an evil, uninformative screech as she rises into the air. Now how will we know what’s going on?\n\nDon't give up... we're so close to defeating this bothersome bird for once and for all!", + + "questFalconText": "The Birds of Preycrastination", + "questFalconNotes": "Mt. Habitica is being overshadowed by a looming mountain of To-Dos. It used to be a place to picnic and enjoy a sense of accomplishment, until the neglected tasks grew out of control. Now it's home to fearsome Birds of Preycrastination, foul creatures which stop Habiticans from completing their tasks!

\"It's too hard!\" they caw at @JonArinbjorn and @Onheiron. \"It'll take too long to do right now! It won't make any difference if you wait until tomorrow! Why don't you do something fun instead?\"

No more, you vow. You will climb your personal mountain of To-Dos and defeat the Birds of Preycrastination!", + "questFalconCompletion": "Having finally triumphed over the Birds of Preycrastination, you settle down to enjoy the view and your well-earned rest.

\"Wow!\" says @Trogdorina. \"You won!\"

@Squish adds, \"Here, take these eggs I found as a reward.\"", + "questFalconBoss": "Birds of Preycrastination", + "questFalconDropFalconEgg": "Falcon (Egg)", + "questFalconUnlockText": "Unlocks purchasable Falcon eggs in the Market" } diff --git a/common/locales/en/settings.json b/common/locales/en/settings.json index b48b7ddd1e..b1262e9d7d 100644 --- a/common/locales/en/settings.json +++ b/common/locales/en/settings.json @@ -66,6 +66,14 @@ "API": "API", "APIText": "Copy these for use in third party applications. However, think of your API Token like a password, and do not share it publicly. You may occasionally be asked for your User ID, but never post your API Token where others can see it, including on Github.", "APIToken": "API Token (this is a password - see warning above!)", + "thirdPartyApps": "Third Party Apps", + "dataToolDesc": "A webpage that shows you certain information from your Habitica account, such as statistics about your tasks, equipment, and skills.", + "beeminder": "Beeminder", + "beeminderDesc": "Let Beeminder automatically monitor your Habitica To-Dos. You can commit to maintaining a target number of To-Dos completed per day or per week, or you can commit to gradually reducing your remaining number of uncompleted To-Dos. (By \"commit\" Beeminder means under threat of paying actual money! But you may also just like Beeminder's fancy graphs.)", + "chromeChatExtension": "Chrome Chat Extension", + "chromeChatExtensionDesc": "The Chrome Chat Extension for Habitica adds an intuitive chat box to all of habitica.com. It allows users to chat in the Tavern, their party, and any guilds they are in.", + "otherExtensions": "Other Extensions", + "otherDesc": "Find other apps, extensions, and tools on the Habitica wiki.", "resetDo": "Do it, reset my account!", "fixValues": "Fix Values", "fixValuesText1": "If you've encountered a bug or made a mistake that unfairly changed your character (damage you shouldn't have taken, Gold you didn't really earn, etc.), you can manually correct your numbers here. Yes, this makes it possible to cheat: use this feature wisely, or you'll sabotage your own habit-building!", @@ -102,7 +110,7 @@ "invitedParty": "Invited To Party", "invitedGuild": "Invited To Guild", "importantAnnouncements": "Your account is inactive", - "weeklyRecaps": "Summaries of your account activity in the past week", + "weeklyRecaps": "Summaries of your account activity in the past week (Note: this is currently disabled due to performance issues, but we hope to have this back up and sending e-mails again soon!)", "questStarted": "Your Quest has Begun", "invitedQuest": "Invited to Quest", "kickedGroup": "Kicked from group", diff --git a/common/locales/en/subscriber.json b/common/locales/en/subscriber.json index cf2a5f81bb..c0377347c6 100644 --- a/common/locales/en/subscriber.json +++ b/common/locales/en/subscriber.json @@ -30,7 +30,7 @@ "cancelSub": "Cancel Subscription", "canceledSubscription": "Canceled Subscription", "adminSub": "Administrator Subscriptions", - "morePlans": "More Plans
Coming Soon", + "morePlans": "More Plans
Coming Soon", "organizationSub": "Private Organization", "organizationSubText": "Members of the organization participate outside of Habitica proper, providing focus for your participants.", "hostingType": "Hosting Type", @@ -98,6 +98,9 @@ "mysterySet201511": "Wood Warrior Set", "mysterySet201512": "Winter Flame Set", "mysterySet201601": "Champion of Resolution Set", + "mysterySet201602": "Heartbreaker Set", + "mysterySet201603": "Lucky Clover Set", + "mysterySet201604": "Leaf Warrior Set", "mysterySet301404": "Steampunk Standard Set", "mysterySet301405": "Steampunk Accessories Set", diff --git a/common/locales/en@pirate/backgrounds.json b/common/locales/en@pirate/backgrounds.json index baa0d53ff2..718328153a 100644 --- a/common/locales/en@pirate/backgrounds.json +++ b/common/locales/en@pirate/backgrounds.json @@ -146,5 +146,19 @@ "backgroundCozyLibraryText": "Cozy Library", "backgroundCozyLibraryNotes": "Read in the Cozy Library.", "backgroundGrandStaircaseText": "Grand Staircase", - "backgroundGrandStaircaseNotes": "Stride down the Grand Staircase." + "backgroundGrandStaircaseNotes": "Stride down the Grand Staircase.", + "backgrounds032016": "SET 22: Released March 2016", + "backgroundDeepMineText": "Deep Mine", + "backgroundDeepMineNotes": "Find precious metals in a Deep Mine.", + "backgroundRainforestText": "Rainforest", + "backgroundRainforestNotes": "Venture into a Rainforest.", + "backgroundStoneCircleText": "Circle of Stones", + "backgroundStoneCircleNotes": "Cast spells in a Circle of Stones.", + "backgrounds042016": "SET 23: Released April 2016", + "backgroundArcheryRangeText": "Archery Range", + "backgroundArcheryRangeNotes": "Practice on the Archery Range.", + "backgroundGiantFlowersText": "Giant Flowers", + "backgroundGiantFlowersNotes": "Frolic atop Giant Flowers.", + "backgroundRainbowsEndText": "End of the Rainbow", + "backgroundRainbowsEndNotes": "Discover gold at the End of the Rainbow." } \ No newline at end of file diff --git a/common/locales/en@pirate/character.json b/common/locales/en@pirate/character.json index 5a0e1adda5..ec13ae75ed 100644 --- a/common/locales/en@pirate/character.json +++ b/common/locales/en@pirate/character.json @@ -1,7 +1,7 @@ { "statsAch": "Stats & Achievements", "profile": "Profile", - "avatar": "Avatarrr", + "avatar": "Customize Avatar", "other": "Other", "fullName": "Full Name", "displayName": "Display Name", @@ -34,6 +34,7 @@ "beard": "Beard", "mustache": "Mustache", "flower": "Flower", + "wheelchair": "Wheelchair", "basicSkins": "Basic Skins", "rainbowSkins": "Rainbow Skins", "pastelSkins": "Pastel Skins", @@ -83,7 +84,7 @@ "allocateInt": "Points allocated t' Intelligence:", "allocateIntPop": "Add a point t' Intelligence", "noMoreAllocate": "Now that yor'ge hit level 100, you won't gain any yore Attribute Points. You can continue leveling up, or start a new adventure at level 1 by using the Orb of Re'birth, now available for free in the Market.", - "stats": "Stats", + "stats": "Avatar Stats", "strength": "Strength", "strengthText": "Strength increases th' chance 'o random \"critical hits\" 'n th' Doubloon, Experience, 'n loot chance boost from them. It also helps deal damage to boss monsters.", "constitution": "Constitution", @@ -136,7 +137,7 @@ "respawn": "Respawn!", "youDied": "Avast! Yer dead!", "dieText": "Ye've lost a Level, all ye Doubloons, 'n a random piece 'o Equipment. Arise, Habiteer, 'n give a go' again! Curb them negative Habits, be vigilant in completion 'o Dailies, 'n hold Davy Jones' locker at arm's length wit' a Health Potion if ye falter!", - "sureReset": "Be ye sure? 'tis gunna reset ye character's class 'n allocated points (ye'll get them all back t' re-allocate), 'n costs 3 sapphires", + "sureReset": "Ye be sure? This'll reset yer character's class an' allocated points (you'll get them all back t' re-allocate), an' costs 3 sapphires.", "purchaseFor": "Purchase fer <%= cost %> Sapphires?", "notEnoughMana": "Not enough mana.", "invalidTarget": "Invalid target", @@ -160,5 +161,8 @@ "str": "STR", "con": "CON", "per": "PER", - "int": "INT" + "int": "INT", + "showQuickAllocation": "Show stat allocation", + "hideQuickAllocation": "Hide stat allocation", + "quickAllocationLevelPopover": "Each level earns ye one point t' assign t' an attribute o' yer choice. Ye can do so manually, or let th' game decide for ye using one o' th' Automatic Allocation options found in User -> Stats." } \ No newline at end of file diff --git a/common/locales/en@pirate/communityguidelines.json b/common/locales/en@pirate/communityguidelines.json index 8646b9acf9..8f8189df1b 100644 --- a/common/locales/en@pirate/communityguidelines.json +++ b/common/locales/en@pirate/communityguidelines.json @@ -29,7 +29,7 @@ "commGuidePara013": "In an ocean as wide as Habitica, Pirates come and go, sometimes the Privateers be needin' a break. These here be Privateers Emeritus. They have swabbed the deck and walked the plank and no longer have yer special powers, but they still be honorable.", "commGuidePara014": "Privateers Emeritus:", "commGuideHeadingPublicSpaces": "Gatherin' Places in Habitica", - "commGuidePara015": "There be two kinds of gatherin' places in Habitica: public 'n private. The Pub, Public Guilds, GitHub, Trello, 'n the Wiki be public. Private Guilds, party chat, 'n Messages in a Bottle be private.", + "commGuidePara015": "Habitica be havin' two kinds o' social spaces: public, and private. Public spaces include th' Pub, Public Alliances, GitHub, Trello, an' th' Wiki. Private spaces are Private Alliances, crew chat, an' Private Messages. All Display Names must comply with th' public space guidelines. T' change yer Display Name, go on th' website to User > Profile an' click on th' \"Edit\" button.", "commGuidePara016": "When navigating ther' rough seas in Habitica, some landlubber guidelines to seek out ye shold abide by so yer don't go gettin' sea sick on me boat. These be adventures ye will fancy.", "commGuidePara017": "Respect each other. Be courteous, kind, friendly, an' helpful. Remember: Habiticans come from all backgrounds an' have had wildly divergent experiences. This be part o' what makes Habitica so cool! Buildin' a community means respectin' an' celebratin' our differences as well as our similarities. Here be some easy ways t' respect each other:", "commGuideList02A": "Obey all o' th' Terms an' Conditions.", @@ -40,8 +40,8 @@ "commGuideList02F": "Comply immediately with any Mod request t' cease a discussion or move it t' th' Back Corner. Last words, partin' shots an' conclusive zingers should all be delivered (courteously) at yer \"table\" in th' Back Corner, if allowed.", "commGuideList02G": "Take time t' reflect instead o' respondin' in anger if someone tells ye that somethin' ye said or did made 'em uncomfortable. There be great strength in bein' able t' sincerely apologize t' someone. If ye feel that th' way they responded t' ye was inappropriate, contact a mod rather than callin' 'em out on it publicly.", "commGuideList02H": "Divisive/contentious conversations should be reported t' mods. If ye feel tha' a conversation be gettin' heated, overly emotional, or hurtful, cease t' engage. Instead, email leslie@habitica.com t' let us know about it. It be our job t' keep ye safe.", - "commGuideList02I": "Do not spam. Spammin' may include, but be not limited t': postin' th' same comment or query in multiple places, postin' links without explanation or context, postin' nonsensical messages, or postin' many messages in a row. Repeatedly beggin' fer sapphires or a subscription may also be considered spammin'.", - "commGuidePara019": "In private spaces, users be havin' more freedom t' discuss whatever topics they would like, but they still may not violate th' Terms an' Conditions, includin' postin' any discriminatory, violent, or threatenin' content.", + "commGuideList02I": "Do not spam. Spamming may include, but is not limited to: posting th' same comment or query in multiple places, posting links without explanation or context, posting nonsensical messages, or posting many messages in a row. Askin' fer sapphires or a subscription in any of the chat spaces or via Private Message also be considered spammin'.", + "commGuidePara019": "In private spaces, users have more freedom t' discuss whatever topics they would like, but they still may not violate the Terms and Conditions, including posting any discriminatory, violent, or threatenin' content. Note that, because Challenge names appear in th' winner's public profile, ALL Challenge names must obey th' public space guidelines, even if they appear in a private space.", "commGuidePara020": "Private Messages (PMs) have some additional guidelines. If someone has blocked ye, do not be contactin' 'em elsewhere t' ask 'em t' unblock ye. Additionally, ye should not be sendin' PMs t' someone askin' fer support (since public answers t' support questions be helpful t' th' community). Finally, do not be sendin' anyone PMs beggin' for a gift o' sapphires or a subscription, as this can be considered spammin'.", "commGuidePara021": "Some gatherin' places in Habitica abide by more guideline scrolls.", "commGuideHeadingTavern": "The Tavern", diff --git a/common/locales/en@pirate/content.json b/common/locales/en@pirate/content.json index dbc50e156f..0cf306ced2 100644 --- a/common/locales/en@pirate/content.json +++ b/common/locales/en@pirate/content.json @@ -31,7 +31,7 @@ "dropEggCactusAdjective": "a prickly", "dropEggBearCubText": "Bear Cub", "dropEggBearCubMountText": "Bear", - "dropEggBearCubAdjective": "a cuddly", + "dropEggBearCubAdjective": "a brave", "questEggGryphonText": "Gryphon", "questEggGryphonMountText": "Gryphon", "questEggGryphonAdjective": "a proud", @@ -46,7 +46,7 @@ "questEggEggAdjective": "a colourful", "questEggRatText": "Rat", "questEggRatMountText": "Rat", - "questEggRatAdjective": "a dirty", + "questEggRatAdjective": "a sociable", "questEggOctopusText": "Octopus", "questEggOctopusMountText": "Kraken", "questEggOctopusAdjective": "a slippery", @@ -110,6 +110,9 @@ "questEggMonkeyText": "Monkey", "questEggMonkeyMountText": "Monkey", "questEggMonkeyAdjective": "a mischievous", + "questEggSnailText": "Snail", + "questEggSnailMountText": "Snail", + "questEggSnailAdjective": "a slow but steady", "eggNotes": "Find ye hatchin' potion to pourrrr on this egg, an' it'll hatch into <%= eggAdjective(locale) %> <%= eggText(locale) %>.", "hatchingPotionBase": "Base", "hatchingPotionWhite": "White", @@ -123,7 +126,7 @@ "hatchingPotionGolden": "Golden", "hatchingPotionSpooky": "Spooky", "hatchingPotionPeppermint": "Peppermint", - "hatchingPotionNotes": "Pour 'tis on an egg, 'n it gunna hatch as a <%= potText(locale) %> pet.", + "hatchingPotionNotes": "Pour this on an egg, an' it'll hatch as a <%= potText(locale) %> pet.", "premiumPotionAddlNotes": "Ye canna use this on quest pet eggs.", "foodMeat": "Meat", "foodMilk": "Milk", diff --git a/common/locales/en@pirate/contrib.json b/common/locales/en@pirate/contrib.json index 8a772cd22a..fdc58d8655 100644 --- a/common/locales/en@pirate/contrib.json +++ b/common/locales/en@pirate/contrib.json @@ -28,11 +28,11 @@ "helped": "Helped Habit Grow", "helpedText1": "Helped Habitica grow by fillin' out", "helpedText2": "this survey.", - "hall": "Hall", + "hall": "Deck o' Heroes", "contribTitle": "Contributor Title (eg, \"Blacksmith\")", "contribLevel": "Contrib Tier", "contribHallText": "1–7 fer normal contributors, 8 fer moderators, 9 fer staff. This determines which items, pets, an' mounts be available. Also determines name-tag coloring. Tiers 8 an' 9 be automatically given admin status.", - "hallHeroes": "Hall o' Captains", + "hallContributors": "Deck o' Contributors", "hallPatrons": "Hall o' Patrons", "rewardUser": "Reward User", "UUID": "UUID", @@ -60,5 +60,5 @@ "blurbGuildsPage": "Guilds be common-interest chat groups created by th' players, for players. Browse through th' list an' join th' Guilds that interest ye!", "blurbChallenges": "Challenges are created by yer fellow players. Joining a Challenge will add its tasks t' yer task dashboard, an' winnin' a Challenge 'll give ye an achievement an' often a gem prize!", "blurbHallPatrons": "This is th' Hall o' Patrons, where we honor th' noble adventurers who backed Habitica's original Kickstarter. We thank them f'r helpin' us bring Habitica t' life!", - "blurbHallHeroes": "This be th' Hall o' Heroes, where open-source contributors t' Habitica be honored. Whether through code, art, music, writing, or even jus' helpfulness, they have earned sapphires, exclusive equipment, and prestigious titles. Ye can contribute to Habitica, too! Find out more here. " + "blurbHallContributors": "This here be th' Deck o' Contributors, where open-source contributors t' Habitica be honored. Whether through code, art, music, writing, or even just helpfulness, they have earned sapphires, exclusive rainments, an' prestigious titles. Ye can contribute t' Habitica, too! Find out more 'ere. " } \ No newline at end of file diff --git a/common/locales/en@pirate/gear.json b/common/locales/en@pirate/gear.json index 103ddaaf74..9148f4811f 100644 --- a/common/locales/en@pirate/gear.json +++ b/common/locales/en@pirate/gear.json @@ -1,4 +1,5 @@ { + "set": "Set", "weapon": "Weapon", "weaponBase0Text": "No Weapon", "weaponBase0Notes": "No Weapon.", @@ -142,6 +143,14 @@ "weaponSpecialWinter2016MageNotes": "Your moves are so sick, they must be magic! Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2015-2016 Winter Gear.", "weaponSpecialWinter2016HealerText": "Confetti Cannon", "weaponSpecialWinter2016HealerNotes": "WHEEEEEEEEEE!!!!!!! HAPPY WINTER WONDERLAND!!!!!!!! Increases Intelligence by <%= int %>. Limited Edition 2015-2016 Winter Gear.", + "weaponSpecialSpring2016RogueText": "Fire Bolas", + "weaponSpecialSpring2016RogueNotes": "You've mastered the ball, the club, and the knife. Now you advance to juggling fire! Awoo! Increases Strength by <%= str %>. Limited Edition 2016 Spring Gear.", + "weaponSpecialSpring2016WarriorText": "Cheese Mallet", + "weaponSpecialSpring2016WarriorNotes": "No one has as many friends as the mouse with tender cheeses. Increases Strength by <%= str %>. Limited Edition 2016 Spring Gear.", + "weaponSpecialSpring2016MageText": "Staff of Bells", + "weaponSpecialSpring2016MageNotes": "Abra-cat-abra! So dazzling, you might mesmerize yourself! Ooh... it jingles... Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2016 Spring Gear.", + "weaponSpecialSpring2016HealerText": "Spring Flower Wand", + "weaponSpecialSpring2016HealerNotes": "With a wave and a wink, you bring the fields and forests into bloom! Or bop troublesome mice on the head. Increases Intelligence by <%= int %>. Limited Edition 2016 Spring Gear.", "weaponMystery201411Text": "Pitchfork o' Feasting", "weaponMystery201411Notes": "Stab yer enemies or dig in to yer favorite vittles - this here versatile pitchfork does it all! It don't benefit ye.\nNovember 2014 Subscriberrr Item", "weaponMystery201502Text": "Shimmery Winged Staff of Love and Also Truth", @@ -176,6 +185,10 @@ "weaponArmoireBarristerGavelNotes": "Order! Increases Strength and Constitution by <%= attrs %> each. Enchanted Armoire: Barrister Set (Item 3 of 3).", "weaponArmoireJesterBatonText": "Jester Baton", "weaponArmoireJesterBatonNotes": "With a wave of your baton and some witty repartee, even the most complicated situations become clear. Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Jester Set (Item 3 of 3).", + "weaponArmoireMiningPickaxText": "Mining Pickax", + "weaponArmoireMiningPickaxNotes": "Mine the maximum amount of gold from your tasks! Increases Perception by <%= per %>. Enchanted Armoire: Miner Set (Item 3 of 3).", + "weaponArmoireBasicLongbowText": "Basic Longbow", + "weaponArmoireBasicLongbowNotes": "A serviceable hand-me-down bow. Increases Strength by <%= str %>. Enchanted Armoire: Basic Archer Set (Item 1 of 3).", "armor": "armor", "armorBase0Text": "Plain Slops", "armorBase0Notes": "Ordinary slops. Don't benefit ye.", @@ -307,6 +320,14 @@ "armorSpecialWinter2016MageNotes": "The wisest wizard keeps well-bundled in the winter wind. Increases Intelligence by <%= int %>. Limited Edition 2015-2016 Winter Gear.", "armorSpecialWinter2016HealerText": "Festive Fairy Cloak", "armorSpecialWinter2016HealerNotes": "Festive Fairies wrap their body wings around themselves for protection as they use their head wings to catch headwinds and fly around Habitica at speeds of up to 100 mph, delivering gifts an' sprayin' everyone with confetti. How droll. Increases Constitution by <%= con %>. Limited Edition 2015-2016 Winter Gear.", + "armorSpecialSpring2016RogueText": "Canine Camo Suit", + "armorSpecialSpring2016RogueNotes": "A clever pup knows to choose a brighter guise for concealment when everything is green and vibrant. Increases Perception by <%= per %>. Limited Edition 2016 Spring Gear.", + "armorSpecialSpring2016WarriorText": "Mighty Mail", + "armorSpecialSpring2016WarriorNotes": "Though you be but little, you are fierce! Increases Constitution by <%= con %>. Limited Edition 2016 Spring Gear.", + "armorSpecialSpring2016MageText": "Grand Malkin Robes", + "armorSpecialSpring2016MageNotes": "Brightly colored, so you won't be mistaken for a necromouser. Increases Intelligence by <%= int %>. Limited Edition 2016 Spring Gear.", + "armorSpecialSpring2016HealerText": "Fluffy Bunny Breeches", + "armorSpecialSpring2016HealerNotes": "Hippity hop! Bound from hill to hill, healing those in need. Increases Constitution by <%= con %>. Limited Edition 2016 Spring Gear.", "armorMystery201402Text": "Messenger Robes", "armorMystery201402Notes": "Shimmering an' strong, these robes have many pockets t' carry letters. Don't benefit ye. February 2014 Subscriber Item.", "armorMystery201403Text": "Forest Walker Armor", @@ -341,6 +362,8 @@ "armorMystery201511Notes": "Considering this armor was carved directly from a magical log, tis surprisingly comfortable. Don't benefit ye. November 2015 Subscriber Item.", "armorMystery201512Text": "Cold Fire Armor", "armorMystery201512Notes": "Summon th' icy flames of winter! Don't benefit ye. December 2015 Subscriber Item.", + "armorMystery201603Text": "Lucky Suit", + "armorMystery201603Notes": "This suit is sewn from thousands of four-leafed clovers! Confers no benefit. March 2016 Subscriber Item.", "armorMystery301404Text": "Steampunk Suit", "armorMystery301404Notes": "Dapper an' dashing, wot! Don't benefit ye. February 3015 Subscriber Item.", "armorArmoireLunarArmorText": "Soothin' Lunar Armor", @@ -367,6 +390,10 @@ "armorArmoireBarristerRobesNotes": "Very serious and stately. Increases Constitution by <%= con %>. Enchanted Armoire: Barrister Set (Item 2 of 3).", "armorArmoireJesterCostumeText": "Jester Costume", "armorArmoireJesterCostumeNotes": "Tra-la-la! Despite the look of this costume, you are no fool. Increases Intelligence by <%= int %>. Enchanted Armoire: Jester Set (Item 2 of 3).", + "armorArmoireMinerOverallsText": "Miner Overalls", + "armorArmoireMinerOverallsNotes": "They may seem worn, but they are enchanted to repel dirt. Increases Constitution by <%= con %>. Enchanted Armoire: Miner Set (Item 2 of 3).", + "armorArmoireBasicArcherArmorText": "Basic Archer Armor", + "armorArmoireBasicArcherArmorNotes": "This camouflaged vest lets you slip unnoticed through the forests. Increases Perception by <%= per %>. Enchanted Armoire: Basic Archer Set (Item 2 of 3).", "headgear": "headgear", "headBase0Text": "No Helm", "headBase0Notes": "No headgear.", @@ -496,6 +523,14 @@ "headSpecialWinter2016MageNotes": "Keeps the snow out of your eyes while ye be casting spells. Increases Perception by <%= per %>. Limited Edition 2015-2016 Winter Gear.", "headSpecialWinter2016HealerText": "Fairy Wing Helm", "headSpecialWinter2016HealerNotes": "Thesewingsfluttersoquicklythattheyblur! Increases Intelligence by <%= int %>. Limited Edition 2015-2016 Winter Gear.", + "headSpecialSpring2016RogueText": "Good Doggy Mask", + "headSpecialSpring2016RogueNotes": "Aww, what a cute puppy! Come here and let me pet your head. ...Hey, where did all my Gold go? Increases Perception by <%= per %>. Limited Edition 2016 Spring Gear.", + "headSpecialSpring2016WarriorText": "Mouse Guard Helm", + "headSpecialSpring2016WarriorNotes": "Never again shall you be bopped on the head! Let them try! Increases Strength by <%= str %>. Limited Edition 2016 Spring Gear.", + "headSpecialSpring2016MageText": "Grand Malkin Hat", + "headSpecialSpring2016MageNotes": "Apparel to set you above the mere alley-mages of the world. Increases Perception by <%= per %>. Limited Edition 2016 Spring Gear.", + "headSpecialSpring2016HealerText": "Blossom Diadem", + "headSpecialSpring2016HealerNotes": "It glints with the potential of new life ready to burst forth. Increases Intelligence by <%= int %>. Limited Edition 2016 Spring Gear.", "headSpecialGaymerxText": "Rainbow Warrior Helm", "headSpecialGaymerxNotes": "In celebration o' th' GaymerX Conference, this special helmet be decorated with a radiant, colorful rainbow pattern! GaymerX be a game convention celebratin' LGTBQ an' gaming an' be open t' everyone.", "headMystery201402Text": "Winged Helm", @@ -526,6 +561,10 @@ "headMystery201512Notes": "These flames burn cold with pure intellect. Don't benefit ye. December 2015 Subscriber Item.", "headMystery201601Text": "Helm of True Resolve", "headMystery201601Notes": "Stay resolute, brave champion! Confers no benefit. January 2016 Subscriber Item.", + "headMystery201602Text": "Heartbreaker Hood", + "headMystery201602Notes": "Shield your identity from all your admirers. Confers no benefit. February 2016 Subscriber Item.", + "headMystery201603Text": "Lucky Hat", + "headMystery201603Notes": "This top hat is a magical good-luck charm. Confers no benefit. March 2016 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", @@ -570,6 +609,10 @@ "headArmoireBarristerWigNotes": "This bouncy wig is enough to frighten away even the fiercest foe. Increases Strength by <%= str %>. Enchanted Armoire: Barrister Set (Item 1 of 3).", "headArmoireJesterCapText": "Jester Cap", "headArmoireJesterCapNotes": "The bells on this hat might distract your opponents, but they just help you focus. Increases Perception by <%= per %>. Enchanted Armoire: Jester Set (Item 1 of 3).", + "headArmoireMinerHelmetText": "Miner Helmet", + "headArmoireMinerHelmetNotes": "Protect your head from falling tasks! Increases Intelligence by <%= int %>. Enchanted Armoire: Miner Set (Item 1 of 3).", + "headArmoireBasicArcherCapText": "Basic Archer Cap", + "headArmoireBasicArcherCapNotes": "No archer would be complete without a jaunty cap! Increases Perception by <%= per %>. Enchanted Armoire: Basic Archer Set (Item 3 of 3).", "offhand": "shield-hand item", "shieldBase0Text": "No Shield-Hand Equipment", "shieldBase0Notes": "No shield or second weapon.", @@ -653,6 +696,12 @@ "shieldSpecialWinter2016WarriorNotes": "Use this sled to block attacks, or ride 'er triumphantly into battle! Increases Constitution by <%= con %>. Limited Edition 2015-2016 Winter Gear.", "shieldSpecialWinter2016HealerText": "Pixie Present", "shieldSpecialWinter2016HealerNotes": "Open it open it open it open it open it open it!!!!!!!!! Increases Constitution by <%= con %>. Limited Edition 2015-2016 Winter Gear.", + "shieldSpecialSpring2016RogueText": "Fire Bolas", + "shieldSpecialSpring2016RogueNotes": "You've mastered the ball, the club, and the knife. Now you advance to juggling fire! Awoo! Increases Strength <%= str %>. Limited Edition 2016 Spring Gear.", + "shieldSpecialSpring2016WarriorText": "Cheese Wheel", + "shieldSpecialSpring2016WarriorNotes": "You braved fiendish traps to procure this defense-boosting food. Increases Constitution by <%= con %>. Limited Edition 2016 Spring Gear.", + "shieldSpecialSpring2016HealerText": "Floral Buckler", + "shieldSpecialSpring2016HealerNotes": "The April Fool claims this little shield will block Shiny Seeds. Don't believe him. Increases Constitution by <%= con %>. Limited Edition 2016 Spring Gear.", "shieldMystery201601Text": "Resolution Slayer", "shieldMystery201601Notes": "This blade can be used to parry away all distractions. Confers no benefit. January 2016 Subscriber Item.", "shieldMystery301405Text": "Clock Shield", @@ -665,6 +714,8 @@ "shieldArmoireRoyalCaneNotes": "Three cheers for th' ruler, what be worthy of song! Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Chest: Royal Set (Item 2 of 3).", "shieldArmoireDragonTamerShieldText": "Dragon Tamer Shield", "shieldArmoireDragonTamerShieldNotes": "Distract enemies with yer dragon-shaped shield. Increases Perception by <%= per %>. Enchanted Chest: Dragon Tamer Set (Item 2 of 3).", + "shieldArmoireMysticLampText": "Mystic Lamp", + "shieldArmoireMysticLampNotes": "Light the darkest caves with this mystic lamp! Increases Perception by <%= per %>. Enchanted Armoire: Independent Item.", "back": "Back Accessory", "backBase0Text": "No Back Accessory", "backBase0Notes": "No Back Accessory.", @@ -680,6 +731,8 @@ "backMystery201507Notes": "Surf off th' Diligent Docks an' ride th' waves in Inkomplete Bay! Don't benefit ye. July 2015 Subscriber Item.", "backMystery201510Text": "Goblin Tail", "backMystery201510Notes": "Prehensile and powerful! Confers no benefit. October 2015 Subscriber Item.", + "backMystery201602Text": "Heartbreaker Cape", + "backMystery201602Notes": "With a swish of your cape, your enemies fall before you! Confers no benefit. February 2016 Subscriber Item.", "backSpecialWonderconRedText": "Mighty Cape", "backSpecialWonderconRedNotes": "Swishes wit' strength an' beauty. Don't benefit ye. Special Edition Convention Item.", "backSpecialWonderconBlackText": "Sneaky Cape", @@ -726,8 +779,16 @@ "headAccessorySpecialSpring2015MageNotes": "These ears listen keenly, in case somewhere a magician be revealin' secrets. Don't benefit ye. Limited Edition 2015 Spring Gear.", "headAccessorySpecialSpring2015HealerText": "Green Kitty Ears", "headAccessorySpecialSpring2015HealerNotes": "These cute kitty ears will make others green wit' envy. Don't benefit ye. Limited Edition 2015 Spring Gear.", + "headAccessorySpecialSpring2016RogueText": "Green Dog Ears", + "headAccessorySpecialSpring2016RogueNotes": "With these, you can keep track of tricky Mages even if they turn invisible! Confers no benefit. Limited Edition 2016 Spring Gear.", + "headAccessorySpecialSpring2016WarriorText": "Red Mouse Ears", + "headAccessorySpecialSpring2016WarriorNotes": "To better hear your theme song across clamorous battlefields. Confers no benefit. Limited Edition 2016 Spring Gear.", + "headAccessorySpecialSpring2016MageText": "Yellow Cat Ears", + "headAccessorySpecialSpring2016MageNotes": "These sharp ears can detect the minute hum of ambient Mana, or the muted footfalls of a Rogue. Confers no benefit. Limited Edition 2016 Spring Gear.", + "headAccessorySpecialSpring2016HealerText": "Purple Bunny Ears", + "headAccessorySpecialSpring2016HealerNotes": "They stand like flags above the fray, letting others know where to run for help. Confers no benefit. Limited Edition 2016 Spring Gear.", "headAccessoryBearEarsText": "Bear Ears", - "headAccessoryBearEarsNotes": "These ears make ye look like a cuddly bear! Don't benefit ye.", + "headAccessoryBearEarsNotes": "These ears make you look like a brave bear! Confers no benefit.", "headAccessoryCactusEarsText": "Cactus Ears", "headAccessoryCactusEarsNotes": "These ears make ye look like a prickly cactus! Don't benefit ye.", "headAccessoryFoxEarsText": "Fox Ears", @@ -754,6 +815,8 @@ "headAccessoryMystery201510Notes": "These fearsome horns be a tad slimy. Confers no benefit. October 2015 Subscriber Item.", "headAccessoryMystery301405Text": "Headwear Goggles", "headAccessoryMystery301405Notes": "\"Goggles be f'r yer eyes,\" they said. \"Nobody be wantin' goggles that ye can only wear on yer head,\" they said. Hah! Ye sure showed them! Don't benefit ye. August 3015 Subscriber Item.", + "headAccessoryArmoireComicalArrowText": "Comical Arrow", + "headAccessoryArmoireComicalArrowNotes": "This whimsical item doesn't provide a stat boost, but it sure is good for a laugh! Confers no benefit. Enchanted Armoire: Independent Item.", "eyewear": "Eyewear", "eyewearBase0Text": "No Eyewear", "eyewearBase0Notes": "No Eyewear.", diff --git a/common/locales/en@pirate/generic.json b/common/locales/en@pirate/generic.json index c8d6c35f10..1d2e9ac662 100644 --- a/common/locales/en@pirate/generic.json +++ b/common/locales/en@pirate/generic.json @@ -4,7 +4,7 @@ "titleIndex": "Habitica | Yer Life Th' Role Playing Game", "habitica": "Habitica", "titleTasks": "Tasks", - "titleAvatar": "Avatar", + "titleAvatar": "Avatarrr", "titleBackgrounds": "Backgrounds", "titleStats": "Stats 'n Achievements", "titleProfile": "Profile", @@ -64,9 +64,9 @@ "undo": "Undo", "continue": "Sail On", "accept": "Aye", - "reject": "Nay", - "neverMind": "Nev'r mind", - "buyMoreGems": "Buy More Sapphires", + "reject": "Yea", + "neverMind": "Ne'er mind", + "buyMoreGems": "Trade Fer More Sapphires", "notEnoughGems": "Not enough Sapphires", "alreadyHave": "Ahoy! Ye already be havin' this item. Save yer Doubloons!", "delete": "Delete", @@ -116,7 +116,7 @@ "audioTheme_luneFoxTheme": "LuneFox's Theme", "askQuestion": "Ask a Question", "reportBug": "Report a Bug", - "HabiticaWiki": "The Habitica Wiki", + "HabiticaWiki": "Th' Habitica Wiki", "HabiticaWikiFrontPage": "http://habitica.wikia.com/wiki/Habitica_Wiki", "contributeToHRPG": "Contribute t' Habitica", "overview": "Overview fer New Pirates", @@ -137,6 +137,8 @@ "achievementStressbeastText": "Helped defeat th' Abominable Stressbeast durin' th' 2014 Winter Wonderland Event!", "achievementBurnout": "Savior o' th' Flourishing Fields", "achievementBurnoutText": "Helped defeat Burnout and restore the Exhaust Spirits during the 2015 Fall Festival Event!", + "achievementBewilder": "Savior of Mistiflying", + "achievementBewilderText": "Helped defeat the Be-Wilder during the 2016 Spring Fling Event!", "checkOutProgress": "Check out me progress in Habitica!", "cardReceived": "Received a card!", "cardReceivedFrom": "<%= cardType %> from <%= userName %>", @@ -159,9 +161,9 @@ "thankyouCardAchievementTitle": "Greatly Grateful", "thankyouCardAchievementText": "Thanks fer bein' thankful! Sent or received <%= cards %> Thank-Ye cards.", "birthdayCard": "Birthday Card", - "birthdayCardExplanation": "You both receive the Birthday Bonanza achievement!", - "birthdayCardNotes": "Send a birthday card to a party member.", - "birthday0": "Happy birthday to you!", + "birthdayCardExplanation": "Ye both receive th' Birthday Bonanza achievement!", + "birthdayCardNotes": "Send a birthday card t' a crew member.", + "birthday0": "Happy Day o' Birth t' You!", "birthdayCardAchievementTitle": "Birthday Bonanza", "birthdayCardAchievementText": "Many happy returns! Sent or received <%= cards %> birthday cards.", "streakAchievement": "Ye earned a streak achievement!", @@ -175,5 +177,6 @@ "hatchPetShare": "I hatched meself a new pet by completin' me real-life tasks!", "raisePetShare": "I raised a pet into a mount by completin' me real-life tasks!", "wonChallengeShare": "I won a challenge in Habitica!", - "achievementShare": "I earned meself a new achievement in Habitica!" + "achievementShare": "I earned meself a new achievement in Habitica!", + "orderBy": "Order By <%= item %>" } \ No newline at end of file diff --git a/common/locales/en@pirate/groups.json b/common/locales/en@pirate/groups.json index f53c39c96e..e68147dcc5 100644 --- a/common/locales/en@pirate/groups.json +++ b/common/locales/en@pirate/groups.json @@ -1,5 +1,5 @@ { - "tavern": "Pub", + "tavern": "Pub Chat", "innCheckOut": "Check Out o' th' Quarters", "innCheckIn": "Rest in th' Quarters", "innText": "Ye be restin' in th' Inn! While checked-in, yer Dailies won't hurt ye at th' day's end, but they will still refresh every day. Be warned: If ye be participatin' in a Boss Quest, the Boss will still damage ye for ye crew mates' missed Dailies unless they be also in th' Inn! Also, yer own damage to th' Boss (or items collected) will not be applied until ye check out of th' Inn.", @@ -101,7 +101,7 @@ "inbox": "Inbox", "abuseFlag": "Report violation o' Rules o' th' Sea", "abuseFlagModalHeading": "Report <%= name %> fer violation?", - "abuseFlagModalBody": "Be ye sure ye want t' report this post? Ye should ONLY report a post tha' violates th' <%= firstLinkStart %>Community Guidelines<%= linkEnd %> and/or <%= secondLinkStart %>Terms of Service<%= linkEnd %>. Inappropriately reportin' a post be a violation o' th' Community Guidelines an' may be givin' ye an infraction. Appropriate reasons t' flag a post include but not be limited t':


", + "abuseFlagModalBody": "Are ye sure ye want t' report this post? Ye should ONLY report a post that violates th' <%= firstLinkStart %>Community Guidelines<%= linkEnd %> an'/or <%= secondLinkStart %>Terms of Service<%= linkEnd %>. Inappropriately reportin' a post be a violation o' th' Community Guidelines an'\u001d may give ye an infraction. Appropriate reasons t' flag a post include but not be limited to:

", "abuseFlagModalButton": "Report Violation", "abuseReported": "Thank ye for reportin' this violation. Th' moderators have been notified.", "abuseAlreadyReported": "Ye have already reported this message.", @@ -147,5 +147,9 @@ "partyChatEmpty": "Yer crew chat be empty! Type a message in th' box above t' start chatting.", "guildChatEmpty": "This Alliance's chat be empty! Type a message in th' box above t' start chattin'.", "possessiveParty": "<%= name %>'s Crew", - "requestAcceptGuidelines": "If ye would like t' post messages in th' Pub or any crew or alliance chat, please first read our <%= linkStart %>Community Guidelines<%= linkEnd %> an' then click th' button below t' indicate that ye accept them." + "requestAcceptGuidelines": "If ye would like t' post messages in th' Pub or any crew or alliance chat, please first read our <%= linkStart %>Community Guidelines<%= linkEnd %> an' then click th' button below t' indicate that ye accept them.", + "partyUpName": "Crew Aloft", + "partyOnName": "Crew Ahead", + "partyUpAchievement": "Joined a Crew with a mate! Have fun battlin' monsters an' supportin' each other.", + "partyOnAchievement": "Joined a Crew with at least four mates! Enjoy yer increased accountability as ye unite with yer friends t' vanquish yer foes!" } \ No newline at end of file diff --git a/common/locales/en@pirate/limited.json b/common/locales/en@pirate/limited.json index b297c6e185..3e8d614c2c 100644 --- a/common/locales/en@pirate/limited.json +++ b/common/locales/en@pirate/limited.json @@ -67,6 +67,10 @@ "witchyWizardSet": "Witchy Wizard (Magician)", "mummyMedicSet": "Mummy Medic (Doc)", "vampireSmiterSet": "Vampire Smiter (Scallywag)", + "bewareDogSet": "Beware Dog (Warrior)", + "magicianBunnySet": "Magician's Bunny (Mage)", + "comfortingKittySet": "Comforting Kitty (Healer)", + "sneakySqueakerSet": "Sneaky Squeaker (Rogue)", "fallEventAvailability": "Available 'til October 31", "winterEventAvailability": "Available until December 31" } \ No newline at end of file diff --git a/common/locales/en@pirate/npc.json b/common/locales/en@pirate/npc.json index fca131a34d..0dc2eebb31 100644 --- a/common/locales/en@pirate/npc.json +++ b/common/locales/en@pirate/npc.json @@ -35,7 +35,7 @@ "amazonInstructions": "Click the button to pay usin' Amazon Payments", "paymentMethods": "Purchase using:", "classGear": "Class Gear", - "classGearText": "First: don't panic! ye barnacle-covered gear be in ye inventory, 'n ye're now wearin' ye apprentice <%= klass %> equipment. Wearin' ye class's gear grants ye a 50% bonus to stats. However, feel free to switch back to ye old gear.", + "classGearText": "First: don't panic! Your old raiments be in yer inventory, an' ye now be wearin' th' apprentice raiments o' yer new class. Wearing yer class's raiments grants ye a 50% bonus t' stats. However, feel free t' switch back t' yer old raiments.", "classStats": "These be yer class's stats; they affect th' game-play. Each time ye level up, ye get one point t' allocate t' a particular stat. Hover over each stat fer more information.", "autoAllocate": "Auto Allocate", "autoAllocateText": "If 'automatic allocation' be checked, ye avatarr gains stats automatically based on ye tasks' attributes, which ye can find in TASK > Edit > Advanced > Attributes. Eg, if ye hit th' swordfight often, 'n ye 'Swordfight' Daily be set to 'Physical', ye'll gain Strength automatically.", @@ -45,7 +45,7 @@ "moreClass": "Fer more information on th' class-system, see", "tourWelcome": "Ahoy and welcome t' Habitica! This be yer To-Do list. Check off a task t' proceed!", "tourExp": "Great job! Checkin' off a task gives ye Experience an' Gold!", - "tourDailies": "This column is fer yer Daily tasks. To proceed, enter a task ye should do every day! Sample Dailies: Swab the Deck, Brush yer Teeth, Inspect the Riggin'", + "tourDailies": "This column be fer Daily tasks. T' proceed, enter a task ye should do every day! Sample Dailies: Make Berth, Floss, Check Work Email", "tourCron": "Splendid! Yer Dailies will reset every day.", "tourHP": "Watch out! If ye don't complete a Daily by midnight, it will hurt ye!", "tourHabits": "This column is for good an' bad Habits that ye  do many times a day! To proceed, click the pencil t' edit th' names, then click th' checkmark t' save.", diff --git a/common/locales/en@pirate/pets.json b/common/locales/en@pirate/pets.json index b7a33c7891..41c9a9b593 100644 --- a/common/locales/en@pirate/pets.json +++ b/common/locales/en@pirate/pets.json @@ -19,6 +19,7 @@ "orca": "Orca", "royalPurpleGryphon": "Royal Purple Gryphon", "phoenix": "Phoenix", + "bumblebee": "Bumblebee", "rarePetPop1": "Click th' gold paw t' learn more 'bout how ye can obtain 'tis rare pet through contributin' t' Habitica!", "rarePetPop2": "How t' Get this Pet!", "potion": "<%= potionType %> Potion", @@ -40,7 +41,7 @@ "stableBeastMasterProgress": "Beast Master Progress: <%= number %> Pets Found", "beastAchievement": "Ye've earned th' \"Beast Master\" Achievement fer collectin' all th' pets!", "beastMasterName": "Beast Master", - "beastMasterText": "Has found all 90 pets (incredibly difficult, congratulate this user!)", + "beastMasterText": "Has found all 90 pets (incredibly difficult, congratulate this pirate!)", "beastMasterText2": "an' has released their pets a total o' <%= count %> times", "mountMasterProgress": "Mount Master Progress", "stableMountMasterProgress": "Mount Master Progress: <%= number %> Mounts Tamed", diff --git a/common/locales/en@pirate/quests.json b/common/locales/en@pirate/quests.json index f42b0bc4ac..cc2dbb2504 100644 --- a/common/locales/en@pirate/quests.json +++ b/common/locales/en@pirate/quests.json @@ -38,7 +38,7 @@ "bossDmg2": "Only participants will fight th' boss an' share in the adventure's loot.", "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)...", "bossDmg2Broken": "Only participants will fight the boss an' share in the quest loot...", - "tavernBossInfo": "Complete Dailies an' T'-Dos an' score positive Habits t' damage th' World Boss! Incomplete Dailies fill th' Exhaust Strike Bar. When th' Exhaust Strike bar be full, th' World Boss'll attack an NPC. A World Boss'll never damage individual players or accounts in any way. Only active accounts not restin' in th' Inn will have their tasks tallied.", + "tavernBossInfo": "Complete Dailies and To-Dos and score positive Habits to damage the World Boss! Incomplete Dailies fill the Rage Bar. When the Rage 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 an' T'-Dos an' score positive Habits t' damage th' World Boss... Incomplete Dailies fill th' Exhaust Strike Bar... When th' Exhaust Strike bar be full, th' World Boss'll attack an NPC... A World Boss'll never damage individual players or accounts in any way... Only active accounts not restin' in th' Inn will have their tasks tallied...", "bossColl1": "T'  collect items, do ye positive tasks. Quest items drop just like normal items; however, ye won't spy wit' ye eye th' loot 'til th' next day, then everythin' ye've found gunna be tallied up 'n contributed to th' pile.", "bossColl2": "Only participants can collect items an' share in th' adventure's loot.", diff --git a/common/locales/en@pirate/questscontent.json b/common/locales/en@pirate/questscontent.json index e038dd3394..3de548428d 100644 --- a/common/locales/en@pirate/questscontent.json +++ b/common/locales/en@pirate/questscontent.json @@ -59,7 +59,7 @@ "questSpiderDropSpiderEgg": "Spider (Egg)", "questSpiderUnlockText": "Unlocks purchasable spider eggs in the Market", "questVice1Text": "Vice, Part 1: Free Yourself of the Dragon's Influence", - "questVice1Notes": "

They shout thar lies a terrible evil in th' caverns 'o Mt. Habitica. A monster whose presence twists th' wills 'o th' strong heroes 'o th' land, turnin' them towards bad habits 'n laziness! th' beast be a grand dragon 'o immense power 'n comprised 'o th' shadows themselves: Vice, th' treacherous Shadow Wyrm. Brave Habiteers, stand up 'n defeat 'tis foul beast once 'n fer all, but only if ye believe ye can stand against its immense power.

Vice Part 1:

How can ye expect to fight th' beast if it already has control over ye? Don't fall victim to laziness 'n vice! Work harrrd to fight against th' dragon's dark influence 'n dispel his hold on ye!

", + "questVice1Notes": "

They say there lies a terrible evil in the caverns of Mt. Habitica. A monster whose presence twists the wills of the strong heroes of the land, turning them towards bad habits and laziness! The beast is a grand dragon of immense power and comprised of the shadows themselves: Vice, the treacherous Shadow Wyrm. Brave Habiteers, stand up and defeat this foul beast once and for all, but only if you believe you can stand against its immense power.

Vice Part 1:

How can you expect to fight the beast if it already has control over you? Don't fall victim to laziness and vice! Work hard to fight against the dragon's dark influence and dispel his hold on you!

", "questVice1Boss": "Vice's Shade", "questVice1DropVice2Quest": "Vice Part 2 (Scroll)", "questVice2Text": "Vice, Part 2: Find the Lair of the Wyrm", @@ -74,30 +74,30 @@ "questVice3DropDragonEgg": "Dragon (Egg)", "questVice3DropShadeHatchingPotion": "Shade Hatchin' Potion", "questMoonstone1Text": "Th' Moonstone Chain, Part 1: Th' Moonstone Chain", - "questMoonstone1Notes": "

A terrible affliction has struck Habiticans. Bad Habits thought to be in Davy Jones' locker be risin' back up wit' a vengeance. Dishes lie unwashed, textbooks linger unread, 'n procrastination runs rampant!


ye track some 'o ye own returnin' Bad Habits to th' Swamps 'o Stagnation 'n discover th' culprit: th' ghostly Necromancer, Recidivate. ye rush in, weapons swin'in', but they slide through her specter uselessly.


\"Don't bother,\" she hisses wit' a dry rasp. \"Without a chain 'o moonstones, nothin' can harm me -- 'n master jeweler @aurakami scattered all th' moonstones across Habitica long ago!\" Pantin', ye retreat... but ye be knowin' what ye must do.

", + "questMoonstone1Notes": "A terrible affliction has struck Habiticans. Bad Habits thought long-dead are rising back up with a vengeance. Dishes lie unwashed, textbooks linger unread, and procrastination runs rampant!

You track some of your own returning Bad Habits to the Swamps of Stagnation and discover the culprit: the ghostly Necromancer, Recidivate. You rush in, weapons swinging, but they slide through her specter uselessly.

\"Don’t bother,\" she hisses with a dry rasp. \"Without a chain of moonstones, nothing can harm me – and master jeweler @aurakami scattered all the moonstones across Habitica long ago!\" Panting, you retreat... but you know what you must do.", "questMoonstone1CollectMoonstone": "Moonstones", "questMoonstone1DropMoonstone2Quest": "Th' Moonstone Chain Part 2: Recidivate th' Necromancer (Scroll)", "questMoonstone2Text": "Th' Moonstone Chain, Part 2: Recidivate Th' Necromancer", - "questMoonstone2Notes": "

th' brave weaponsmith @Inventrix helps ye fashion th' enchanted moonstones into a chain. ye're ready to confront Recidivate at last, but as ye enter th' Swamps 'o Stagnation, a terrible chill sweeps over ye.


Rottin' breath whispers in ye ear. \"Back again? How delightful...\" ye spin 'n lunge, 'n under th' light 'o th' moonstone chain, ye weapon strikes solid flesh. \"ye may have bound me to th' seven seas once more,\" Recidivate snarls, \"but now it be the hour fer ye to leave it!\"

", + "questMoonstone2Notes": "The brave weaponsmith @Inventrix helps you fashion the enchanted moonstones into a chain. You’re ready to confront Recidivate at last, but as you enter the Swamps of Stagnation, a terrible chill sweeps over you.

Rotting breath whispers in your ear. \"Back again? How delightful...\" You spin and lunge, and under the light of the moonstone chain, your weapon strikes solid flesh. \"You may have bound me to the world once more,\" Recidivate snarls, \"but now it is time for you to leave it!\"", "questMoonstone2Boss": "Th' Necromancer", "questMoonstone2DropMoonstone3Quest": "Th' Moonstone Chain Part 3: Recidivate Transformed (Scroll)", "questMoonstone3Text": "Th' Moonstone Chain, Part 3: Recidivate Transformed", - "questMoonstone3Notes": "

Recidivate crumples to th' ground, 'n ye strike at her wit' th' moonstone chain. To ye horror, Recidivate seizes th' gems, eyes burnin' wit' triumph.


\"Foolish creature 'o flesh!\" she shouts. \"These moonstones gunna restore me to a physical form, true, but not as ye imagined. As th' full moon waxes from th' dark, so too does me power flourish, 'n from th' shadows I summon th' specter 'o ye most feared foe!\"


A sickly green fog rises from th' swamp, 'n Recidivate's body writhes 'n contorts into a shape that fills ye wit' dread – th' undead body 'o Vice, horribly reborn.

", - "questMoonstone3Completion": "

Yer breath comes hard an' sweat stings your eyes as th' undead Wyrm collapses. Th' remains o' Recidivate dissipate into a thin grey mist that clears quickly under th' onslaught o' a refreshing breeze, an' you hear th' distant, rallying cries o' Habiticans defeatin' their Bad Habits for once an' for all.


@Baconsaur th' beast master swoops down on a gryphon. \"I saw the end o' your battle from the sky, and I was greatly moved. Please, take this enchanted tunic – your bravery speaks of a noble heart, and I believe you were meant to have it.\"

", + "questMoonstone3Notes": "Recidivate crumples to the ground, and you strike at her with the moonstone chain. To your horror, Recidivate seizes the gems, eyes burning with triumph.

\"Foolish creature of flesh!\" she shouts. \"These moonstones will restore me to a physical form, true, but not as you imagined. As the full moon waxes from the dark, so too does my power flourish, and from the shadows I summon the specter of your most feared foe!\"

A sickly green fog rises from the swamp, and Recidivate’s body writhes and contorts into a shape that fills you with dread – the undead body of Vice, horribly reborn.", + "questMoonstone3Completion": "Your breath comes hard and sweat stings your eyes as the undead Wyrm collapses. The remains of Recidivate dissipate into a thin grey mist that clears quickly under the onslaught of a refreshing breeze, and you hear the distant, rallying cries of Habiticans defeating their Bad Habits for once and for all.

@Baconsaur the beast master swoops down on a gryphon. \"I saw the end of your battle from the sky, and I was greatly moved. Please, take this enchanted tunic – your bravery speaks of a noble heart, and I believe you were meant to have it.\"", "questMoonstone3Boss": "Necro-Vice", "questMoonstone3DropRottenMeat": "Rotten Meat (Foodstuffs)", "questMoonstone3DropZombiePotion": "Zombie Hatchin' Potion", "questGoldenknight1Text": "Th' Golden Knight, Part 1: A Stern Talkin'-To", - "questGoldenknight1Notes": "

Th'  Golden Knight has been getting on poor Habiticans' cases. Didn't do all o' yer Dailies? Checked off a negative Habit? She will use this as a reason t' harass ye about how ye should follow her example. She be th' shinin' example o' a perfect Habitican, and ye be naught but a failure. Well, that not be nice at all! Everyone makes mistakes. They should not have t' be met with such negativity for it. Perhaps it be time ye gather some testimonies from hurt Habiticans an' give th' Golden Knight a stern talkin'-to!

", + "questGoldenknight1Notes": "The Golden Knight has been getting on poor Habiticans' cases. Didn't do all of your Dailies? Checked off a negative Habit? She will use this as a reason to harass you about how you should follow her example. She is the shining example of a perfect Habitican, and you are naught but a failure. Well, that is not nice at all! Everyone makes mistakes. They should not have to be met with such negativity for it. Perhaps it is time you gather some testimonies from hurt Habiticans and give the Golden Knight a stern talking-to!", "questGoldenknight1CollectTestimony": "Testimonies", "questGoldenknight1DropGoldenknight2Quest": "Th' Golden Knight Chain Part 2: Gold Knight (Scroll)", "questGoldenknight2Text": "Th' Golden Knight, Part 2: Gold Knight", - "questGoldenknight2Notes": "

Armed with hundreds o' Habitican's testimonies, ye finally confront th' Golden Knight. Ye begin t' recite th' Habitcan's complaints t' her, one by one. \"And @Pfeffernusse says that yer constant bragging-\" The knight raises her hand t' silence you an' scoffs, \"Please, these people are merely jealous of my success. Instead of complaining, they should simply work as hard as I! Perhaps I shall show you the power you can attain through diligence such as mine!\" She raises her morningstar an' prepares t' attack ye!

", + "questGoldenknight2Notes": "Armed with hundreds of Habitican's testimonies, you finally confront the Golden Knight. You begin to recite the Habitcan's complaints to her, one by one. \"And @Pfeffernusse says that your constant bragging-\" The knight raises her hand to silence you and scoffs, \"Please, these people are merely jealous of my success. Instead of complaining, they should simply work as hard as I! Perhaps I shall show you the power you can attain through diligence such as mine!\" She raises her morningstar and prepares to attack you!", "questGoldenknight2Boss": "Gold Knight", "questGoldenknight2DropGoldenknight3Quest": "Th' Golden Knight Chain Part 3: Th' Iron Knight (Scroll)", "questGoldenknight3Text": "Th' Golden Knight, Part 3: Th' Iron Knight", - "questGoldenknight3Notes": "

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

", - "questGoldenknight3Completion": "

With a satisfying clang, th' Iron Knight falls t' his knees an' slumps over. \"You are quite strong,\" he pants. \"I have been humbled, today.\" Th' Golden Knight approaches ye an' says, \"Thank you. I believe we have gained some humility from our encounter with you. I will speak with my father and explain the complaints against us. Perhaps, we should begin apologizing to the other Habiticans.\" She mulls over in thought before turnin' back t' ye. \"Here: as our gift to you, I want you to keep my morningstar. It is yours now.\"

", + "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!\"", + "questGoldenknight3Completion": "With a satisfying clang, the Iron Knight falls to his knees and slumps over. \"You are quite strong,\" he pants. \"I have been humbled, today.\" The Golden Knight approaches you and says, \"Thank you. I believe we have gained some humility from our encounter with you. I will speak with my father and explain the complaints against us. Perhaps, we should begin apologizing to the other Habiticans.\" She mulls over in thought before turning back to you. \"Here: as our gift to you, I want you to keep my morningstar. It is yours now.\"", "questGoldenknight3Boss": "The Iron Knight", "questGoldenknight3DropHoney": "Honey (Foodstuffs)", "questGoldenknight3DropGoldenPotion": "Golden Hatching Potion", @@ -112,7 +112,7 @@ "questEggHuntCollectPlainEgg": "Plain Eggs", "questEggHuntDropPlainEgg": "Plain Egg", "questDilatoryText": "Th' Dread Drag'on o' Dilatory", - "questDilatoryNotes": "

We should have heeded th' warnin's.


Dark shinin' eyes. Ancient scales. Massive jaws, 'n flashin' teeth. We've awoken somethin' horrifyin' from th' crevasse: th' Dread Drag'on 'o Dilatory! Screamin' Habiticans fled in all directions when it reared out 'o th' sea, its terrifyin'ly long neck extendin' hundreds 'o feet out 'o th' rum as it shattered windows wit' its searin' roar.


\"'tis must be what dragged Dilatory below!\" yells Lemoness. \"It wasn't th' weight 'o th' neglected tasks - th' Dark Red Dailies just attracted its attention!\"


\"'tis surgin' wit' magical energy!\" @Baconsaur cries. \"To have lived 'tis long, it must be able to heal itself! How can we defeat it?\"


Why, th' same way we defeat all beasts - wit' productivity! Quickly, Habitica, band together 'n strike through ye tasks, 'n all 'o us gunna battle 'tis monster together. (thar's no need to abandon previous quests - we believe in ye ability to double-strike!) It won't attack us individually, but th' more Dailies we skip, th' closer we get to triggerin' its Neglect Strike - 'n I don't like th' way 'tis eyein' th' Pub....

", + "questDilatoryNotes": "We should have heeded the warnings.

Dark shining eyes. Ancient scales. Massive jaws, and flashing teeth. We've awoken something horrifying from the crevasse: the Dread Drag'on of Dilatory! Screaming Habiticans fled in all directions when it reared out of the sea, its terrifyingly long neck extending hundreds of feet out of the water as it shattered windows with its searing roar.

\"This must be what dragged Dilatory down!\" yells Lemoness. \"It wasn't the weight of the neglected tasks - the Dark Red Dailies just attracted its attention!\"

\"It's surging with magical energy!\" @Baconsaur cries. \"To have lived this long, it must be able to heal itself! How can we defeat it?\"

Why, the same way we defeat all beasts - with productivity! Quickly, Habitica, band together and strike through your tasks, and all of us will battle this monster together. (There's no need to abandon previous quests - we believe in your ability to double-strike!) It won't attack us individually, but the more Dailies we skip, the closer we get to triggering its Neglect Strike - and I don't like the way it's eyeing the Tavern....", "questDilatoryBoss": "Th' Dread Drag'on o' Dilatory", "questDilatoryBossRageTitle": "Neglect Strike", "questDilatoryBossRageDescription": "When 'tis bar has filled up, th' Dread Drag'on 'o Dilatory gunna unleash great havoc on Habitica's terrain", @@ -142,7 +142,7 @@ "questAtom3Boss": "Th' Laundromancer", "questAtom3DropPotion": "Base Hatching Potion", "questOwlText": "The Night-Owl", - "questOwlNotes": "The Tavern light is lit 'til dawn
Until one eve the glow is gone!
How can we see for our all-nighters?
@Twitching cries, \"I need some fighters!
See that Night-Owl, starry foe?
Fight with haste and do not slow!
We'll drive its shadow from our door,
And make the night shine bright once more!\"", + "questOwlNotes": "The Tavern light is lit 'til dawn
Until one eve the glow is gone!
How can we see for our all-nighters?
@Twitching cries, \"I need some fighters!
See that Night-Owl, starry foe?
Fight with haste and do not slow!
We'll drive its shadow from our door,
And make the night shine bright once more!\"", "questOwlCompletion": "The Night-Owl fades before the dawn,
But even so, you feel a yawn.
Perhaps it's time to get some rest?
Then on your bed, you see a nest!
A Night-Owl knows it can be great
To finish work and stay up late,
But your new pets will softly peep
To tell you when it's time to sleep.", "questOwlBoss": "The Night-Owl", "questOwlDropOwlEgg": "Owl (Egg)", @@ -291,5 +291,22 @@ "questMonkeyCompletion": "You did it! No bananas for those fiends today. Overwhelmed by your diligence, the monkeys flee in panic. \"Look,\" says @Misceo. \"They left a few eggs behind.\"

@Leephon grins. \"Maybe a well-trained pet monkey can help you as much as the wild ones hinder you!\"", "questMonkeyBoss": "Monstrous Mandrill", "questMonkeyDropMonkeyEgg": "Monkey (Egg)", - "questMonkeyUnlockText": "Unlocks purchasable Monkey eggs in the Market" + "questMonkeyUnlockText": "Unlocks purchasable Monkey eggs in the Market", + "questSnailText": "The Snail of Drudgery Sludge", + "questSnailNotes": "You're excited to begin questing in the abandoned Dungeons of Drudgery, but as soon as you enter, you feel the ground under your feet start to suck at your boots. You look up to the path ahead and see Habiticans mired in slime. @Overomega yells, \"They have too many unimportant tasks and dailies, and they're getting stuck on things that don't matter! Pull them out!\"

\"You need to find the source of the ooze,\" @Pfeffernusse agrees, \"or the tasks that they cannot accomplish will drag them down forever!\"

Pulling out your weapon, you wade through the gooey mud.... and encounter the fearsome Snail of Drudgery Sludge.", + "questSnailCompletion": "You bring your weapon down on the great Snail's shell, cracking it in two, releasing a flood of water. The slime is washed away, and the Habiticans around you rejoice. \"Look!\" says @Misceo. \"There's a small group of snail eggs in the remnants of the muck.\"", + "questSnailBoss": "Snail of Drudgery Sludge", + "questSnailDropSnailEgg": "Snail (Egg)", + "questSnailUnlockText": "Unlocks purchasable Snail eggs in the Market", + "questBewilderText": "The Be-Wilder", + "questBewilderNotes": "The party begins like any other.

The appetizers are excellent, the music is swinging, and even the dancing elephants have become routine. Habiticans laugh and frolic amid the overflowing floral centerpieces, happy to have a distraction from their least-favorite tasks, and the April Fool whirls among them, eagerly providing an amusing trick here and a witty twist there.

As the Mistiflying clock tower strikes midnight, the April Fool leaps onto the stage to give a speech.

“Friends! Enemies! Tolerant acquaintances! Lend me your ears.” The crowd chuckles as animal ears sprout from their heads, and they pose with their new accessories.

“As you know,” the Fool continues, “my confusing illusions usually only last a single day. But I’m pleased to announce that I’ve discovered a shortcut that will guarantee us non-stop fun, without having to deal with the pesky weight of our responsibilities. Charming Habiticans, meet my magical new friend... the Be-Wilder!”

Lemoness pales suddenly, dropping her hors d'oeuvres. “Wait! Don’t trust--”

But suddenly mists are pouring into the room, glittering and thick, and they swirl around the April Fool, coalescing into cloudy feathers and a stretching neck. The crowd is speechless as an monstrous bird unfolds before them, its wings shimmering with illusions. It lets out a horrible screeching laugh.

“Oh, it has been ages since a Habitican has been foolish enough to summon me! How wonderful it feels, to have a tangible form at last.”

Buzzing in terror, the magic bees of Mistiflying flee the floating city, which sags from the sky. One by one, the brilliant spring flowers wither up and wisp away.

“My dearest friends, why so alarmed?” crows the Be-Wilder, beating its wings. “There’s no need to toil for your rewards any more. I’ll just give you all the things that you desire!”

A rain of coins pours from the sky, hammering into the ground with brutal force, and the crowd screams and flees for cover. “Is this a joke?” Baconsaur shouts, as the gold smashes through windows and shatters roof shingles.

PainterProphet ducks as lightning bolts crackle overhead, and fog blots out the sun. “No! This time, I don’t think it is!”

Quickly, Habiticans, don’t let this World Boss distract us from our goals! Stay focused on the tasks that you need to complete so we can rescue Mistiflying -- and hopefully, ourselves.", + "questBewilderCompletion": "The Be-Wilder is DEFEATED!

We've done it! The Be-Wilder lets out a ululating cry as it twists in the air, shedding feathers like falling rain. Slowly, gradually, it coils into a cloud of sparkling mist. As the newly-revealed sun pierces the fog, it burns away, revealing the coughing, mercifully human forms of Bailey, Matt, Alex.... and the April Fool himself.

Mistiflying is saved!

The April Fool has enough shame to look a bit sheepish. “Oh, hm,” he says. “Perhaps I got a little…. carried away.”

The crowd mutters. Sodden flowers wash up on sidewalks. Somewhere in the distance, a roof collapses with a spectacular splash.

“Er, yes,” the April Fool says. “That is. What I meant to say was, I’m dreadfully sorry.” He heaves a sigh. “I suppose it can’t all be fun and games, after all. It might not hurt to focus occasionally. Maybe I’ll get a head start on next year’s pranking.”

Redphoenix coughs meaningfully.

“I mean, get a head start on this year’s spring cleaning!” the April Fool says. “Nothing to fear, I’ll have Habit City in spit-shape soon. Luckily nobody is better than I at dual-wielding mops.”

Encouraged, the marching band starts up.

It isn’t long before all is back to normal in Habit City. Plus, now that the Be-Wilder has evaporated, the magical bees of Mistiflying bustle back to work, and soon the flowers are blooming and the city is floating once more.

As Habiticans cuddle the magical fuzzy bees, the April Fool’s eyes light up. “Oho, I’ve had a thought! Why don’t you all keep some of these fuzzy Bee Pets and Mounts? It’s a gift that perfectly symbolizes the balance between hard work and sweet rewards, if I’m going to get all boring and allegorical on you.” He winks. “Besides, they don’t have stingers! Fool’s honor.”", + "questBewilderCompletionChat": "`The Be-Wilder is DEFEATED!`\n\nWe've done it! The Be-Wilder lets out a ululating cry as it twists in the air, shedding feathers like falling rain. Slowly, gradually, it coils into a cloud of sparkling mist. As the newly-revealed sun pierces the fog, it burns away, revealing the coughing, mercifully human forms of Bailey, Matt, Alex.... and the April Fool himself.\n\n`Mistiflying is saved!`\n\nThe April Fool has enough shame to look a bit sheepish. “Oh, hm,” he says. “Perhaps I got a little…. carried away.”\n\nThe crowd mutters. Sodden flowers wash up on sidewalks. Somewhere in the distance, a roof collapses with a spectacular splash.\n\n“Er, yes,” the April Fool says. “That is. What I meant to say was, I’m dreadfully sorry.” He heaves a sigh. “I suppose it can’t all be fun and games, after all. It might not hurt to focus occasionally. Maybe I’ll get a head start on next year’s pranking.”\n\nRedphoenix coughs meaningfully.\n\n“I mean, get a head start on this year’s spring cleaning!” the April Fool says. “Nothing to fear, I’ll have Habit City in spit-shape soon. Luckily nobody is better than I at dual-wielding mops.”\n\nEncouraged, the marching band starts up.\n\nIt isn’t long before all is back to normal in Habit City. Plus, now that the Be-Wilder has evaporated, the magical bees of Mistiflying bustle back to work, and soon the flowers are blooming and the city is floating once more.\n\nAs Habiticans cuddle the magical fuzzy bees, the April Fool’s eyes light up. “Oho, I’ve had a thought! Why don’t you all keep some of these fuzzy Bee Pets and Mounts? It’s a gift that perfectly symbolizes the balance between hard work and sweet rewards, if I’m going to get all boring and allegorical on you.” He winks. “Besides, they don’t have stingers! Fool’s honor.”", + "questBewilderBossRageTitle": "Beguilement Strike", + "questBewilderBossRageDescription": "When this gauge fills, The Be-Wilder will unleash its Beguilement Strike on Habitica!", + "questBewilderDropBumblebeePet": "Bumblebee (Pet)", + "questBewilderDropBumblebeeMount": "Bumblebee (Mount)", + "questBewilderBossRageMarket": "`The Be-Wilder uses BEGUILEMENT STRIKE!`\n\nOh no! Despite our best efforts, we've gotten distracted by the Be-Wilder’s charming illusions and have forgotten to do some of our Dailies! With a cackling cry, the shining bird beats its wings, raising a swarm of mist around Alex the Merchant. When the fog clears, he has been possessed! “Have some free samples!” he shouts gleefully, and begins to hurl exploding eggs and potions at fleeing Habiticans. Not the most favorable of sales, to be sure.\n\nHurry! Let's stay focused on our Dailies to defeat this monster before it possesses someone else.", + "questBewilderBossRageStables": "`The Be-Wilder uses BEGUILEMENT STRIKE!`\n\nAhh!!! Once again the Be-Wilder has dazzled us into neglecting our Dailies, and now it has attacked Matt the Beast Master! With a swirl of mist, Matt transforms into a terrifying winged creature, and all the pets and mounts howl sadly in their stables. Quickly, stay focused on your tasks to defeat this dastardly distraction!", + "questBewilderBossRageBailey": "`The Be-Wilder uses BEGUILEMENT STRIKE!`\n\nLook out! In the middle of reporting the news, Bailey the Town Crier has been possessed by the Be-Wilder! She lets out an evil, uninformative screech as she rises into the air. Now how will we know what’s going on?\n\nDon't give up... we're so close to defeating this bothersome bird for once and for all!" } \ No newline at end of file diff --git a/common/locales/en@pirate/rebirth.json b/common/locales/en@pirate/rebirth.json index e210a31d33..060fc542ef 100644 --- a/common/locales/en@pirate/rebirth.json +++ b/common/locales/en@pirate/rebirth.json @@ -12,7 +12,7 @@ "rebirthInList2": "Challenge, Alliance, an' Crew memberships remain.", "rebirthInList3": "Gems, backer rank, an' contributor levels remain.", "rebirthInList4": "Items obtained from Gems er loot (such as pets an' mounts) remain, though ye can't access 'em until ye unlock 'em again.", - "rebirthInList5": "Limited edition equipment you've purchased can be repurchased, even if its event has ended. To repurchase class-specific equipment, you must first change to the correct class.", + "rebirthInList5": "Limited edition equipment ye 'ave purchased can be repurchased, even if its event has ended. To repurchase class-specific equipment, ye must first change to th' correct class.", "rebirthEarnAchievement": "Ye also earn an Achievement fer embarkin' on a new adventure!", "beReborn": "Be Reborn", "rebirthAchievement": "Ye've begun a new adventure! 'tis be Rebirth <%= number %> fer ye, 'n th' highest Level ye've attained be <%= level %>. To stack 'tis Achievement, begin ye next new adventure when ye've reached an even higher Level!", diff --git a/common/locales/en@pirate/settings.json b/common/locales/en@pirate/settings.json index 4c20ca0713..586fccc5f5 100644 --- a/common/locales/en@pirate/settings.json +++ b/common/locales/en@pirate/settings.json @@ -102,7 +102,7 @@ "invitedParty": "Invited T' Crew", "invitedGuild": "Invited T' Alliance", "importantAnnouncements": "Yer account be inactive", - "weeklyRecaps": "Summaries o' yer account activity in th' past week", + "weeklyRecaps": "Summaries o' ye account activity in th' past week (Note: this be currently disabled due t' performance issues, but we hope t' have this back up an' sendin' e-mails again soon!)", "questStarted": "Yer Quest has Begun", "invitedQuest": "Invited t' Quest", "kickedGroup": "Kicked from group", @@ -140,7 +140,7 @@ "mysticHourglass": "<%= amount %> Mystic Hourglass", "mysticHourglassText": "Mystic Hourglasses allow ye to purchase a previous moon's Mystery Item set.", "purchasedPlanId": "Recurring $<%= price %> USD each <%= months %> Moon(s) (<%= plan %>)", - "purchasedPlanExtraMonths": "You have <%= months %> months of extra subscription credit.", + "purchasedPlanExtraMonths": "Ye've <%= months %> months o' extra subscription credit.", "consecutiveSubscription": "Consecutive Subscription", "consecutiveMonths": "Consecutive Moons:", "gemCapExtra": "Sapphire Cap Extra:", diff --git a/common/locales/en@pirate/subscriber.json b/common/locales/en@pirate/subscriber.json index 8c326db440..1e8c3df388 100644 --- a/common/locales/en@pirate/subscriber.json +++ b/common/locales/en@pirate/subscriber.json @@ -5,7 +5,7 @@ "buyGemsGold": "Buy Gems with Doubloons", "buyGemsGoldText": "Alexander th' Merchant 'll sell ye gems at a cost of <%= gemCost %> gold a gem. His monthly shipments are initially capped at <%= gemLimit %>; gems a month, but this cap goes up by 5 gems f'r every three months of consecutive subscription, up to a maximum of 50 gems a month!", "retainHistory": "Retain additional history entries", - "retainHistoryText": "Makes completed To-Dos and task history available for longer.", + "retainHistoryText": "Makes completed To-Dos an' task history available fer longer.", "doubleDrops": "Daily loot-caps doubled", "doubleDropsText": "Complete yer stable faster!", "mysteryItem": "Exclusive items per moon", @@ -30,7 +30,7 @@ "cancelSub": "Cancel Subscription", "canceledSubscription": "Canceled Subscription", "adminSub": "Administrator Subscriptions", - "morePlans": "More Plans
Comin' Soon", + "morePlans": "More Plans Be
Comin' Soon!", "organizationSub": "Private Organization", "organizationSubText": "Members of t' organization participate outside of Habitica proper, providing focus for yer participants.", "hostingType": "Hostin' Type", @@ -97,6 +97,8 @@ "mysterySet201511": "Wood Warrior Set", "mysterySet201512": "Winter Flame Set", "mysterySet201601": "Champion of Resolution Set", + "mysterySet201602": "Heartbreaker Set", + "mysterySet201603": "Lucky Clover Set", "mysterySet301404": "Steampunk Standard Set", "mysterySet301405": "Steampunk Accessories Set", "mysterySetwondercon": "Wondercon", diff --git a/common/locales/en_GB/backgrounds.json b/common/locales/en_GB/backgrounds.json index fc8891779b..f50f8067fb 100644 --- a/common/locales/en_GB/backgrounds.json +++ b/common/locales/en_GB/backgrounds.json @@ -146,5 +146,19 @@ "backgroundCozyLibraryText": "Cozy Library", "backgroundCozyLibraryNotes": "Read in the Cozy Library.", "backgroundGrandStaircaseText": "Grand Staircase", - "backgroundGrandStaircaseNotes": "Stride down the Grand Staircase." + "backgroundGrandStaircaseNotes": "Stride down the Grand Staircase.", + "backgrounds032016": "SET 22: Released March 2016", + "backgroundDeepMineText": "Deep Mine", + "backgroundDeepMineNotes": "Find precious metals in a Deep Mine.", + "backgroundRainforestText": "Rainforest", + "backgroundRainforestNotes": "Venture into a Rainforest.", + "backgroundStoneCircleText": "Circle of Stones", + "backgroundStoneCircleNotes": "Cast spells in a Circle of Stones.", + "backgrounds042016": "SET 23: Released April 2016", + "backgroundArcheryRangeText": "Archery Range", + "backgroundArcheryRangeNotes": "Practice on the Archery Range.", + "backgroundGiantFlowersText": "Giant Flowers", + "backgroundGiantFlowersNotes": "Frolic atop Giant Flowers.", + "backgroundRainbowsEndText": "End of the Rainbow", + "backgroundRainbowsEndNotes": "Discover gold at the End of the Rainbow." } \ No newline at end of file diff --git a/common/locales/en_GB/character.json b/common/locales/en_GB/character.json index 4244c8be30..2215a0fd13 100644 --- a/common/locales/en_GB/character.json +++ b/common/locales/en_GB/character.json @@ -1,7 +1,7 @@ { "statsAch": "Stats & Achievements", "profile": "Profile", - "avatar": "Avatar", + "avatar": "Customise Avatar", "other": "Other", "fullName": "Full Name", "displayName": "Display Name", @@ -34,6 +34,7 @@ "beard": "Beard", "mustache": "Moustache", "flower": "Flower", + "wheelchair": "Wheelchair", "basicSkins": "Basic Skins", "rainbowSkins": "Rainbow Skins", "pastelSkins": "Pastel Skins", @@ -83,7 +84,7 @@ "allocateInt": "Points allocated to Intelligence:", "allocateIntPop": "Add a point to Intelligence", "noMoreAllocate": "Now that you've hit level 100, you won't gain any more Attribute Points. You can continue levelling up, or start a new adventure at level 1 by using the Orb of Rebirth, now available for free in the Market.", - "stats": "Stats", + "stats": "Avatar Stats", "strength": "Strength", "strengthText": "Strength increases the chance of random \"critical hits\" and the Gold, Experience, and drop chance boost from them. It also helps deal damage to boss monsters.", "constitution": "Constitution", @@ -136,7 +137,7 @@ "respawn": "Respawn!", "youDied": "You Died!", "dieText": "You've lost a Level, all your Gold, and a random piece of Equipment. Arise, Habiteer, and try again! Curb those negative Habits, be vigilant in completion of Dailies, and hold death at arm's length with a Health Potion if you falter!", - "sureReset": "Are you sure? This will reset your character's class and allocated points (you'll get them all back to re-allocate), and costs 3 gems", + "sureReset": "Are you sure? This will reset your character's class and allocated points (you'll get them all back to re-allocate), and costs 3 gems.", "purchaseFor": "Purchase for <%= cost %> Gems?", "notEnoughMana": "Not enough mana.", "invalidTarget": "Invalid target", @@ -160,5 +161,8 @@ "str": "STR", "con": "CON", "per": "PER", - "int": "INT" + "int": "INT", + "showQuickAllocation": "Show stats allocation", + "hideQuickAllocation": "Hide stats allocation", + "quickAllocationLevelPopover": "Each level earns you one point to assign to an attribute of your choice. You can do so manually, or let the game decide for you using one of the Automatic Allocation options found in User -> Stats." } \ No newline at end of file diff --git a/common/locales/en_GB/communityguidelines.json b/common/locales/en_GB/communityguidelines.json index d0948aef97..6b1b22d31d 100644 --- a/common/locales/en_GB/communityguidelines.json +++ b/common/locales/en_GB/communityguidelines.json @@ -29,7 +29,7 @@ "commGuidePara013": "In a community as big as Habitica, users come and go, and sometimes a moderator needs to lay down their noble mantle and relax. The following are Moderators Emeritus. They no longer act with the power of a Moderator, but we would still like to honour their work!", "commGuidePara014": "Moderators Emeritus:", "commGuideHeadingPublicSpaces": "Public Spaces In Habitica", - "commGuidePara015": "Habitica has two kinds of social spaces: public, and private. Public spaces include the Tavern, Public Guilds, GitHub, Trello, and the Wiki. Private spaces are Private Guilds, party chat, and Private Messages.", + "commGuidePara015": "Habitica has two kinds of social spaces: public, and private. Public spaces include the Tavern, Public Guilds, GitHub, Trello, and the Wiki. Private spaces are Private Guilds, party chat, and Private Messages. All Display Names must comply with the public space guidelines. To change your Display Name, go on the website to User > Profile and click on the \"Edit\" button.", "commGuidePara016": "When navigating the public spaces in Habitica, there are some general rules to keep everyone safe and happy. These should be easy for adventurers like you!", "commGuidePara017": "Respect each other. Be courteous, kind, friendly, and helpful. Remember: Habiticans come from all backgrounds and have had wildly divergent experiences. This is part of what makes Habitica so cool! Building a community means respecting and celebrating our differences as well as our similarities. Here are some easy ways to respect each other:", "commGuideList02A": "Obey all of the Terms and Conditions.", @@ -40,8 +40,8 @@ "commGuideList02F": "Comply immediately with any Mod request to cease a discussion or move it to the Back Corner. Last words, parting shots and conclusive zingers should all be delivered (courteously) at your \"table\" in the Back Corner, if allowed.", "commGuideList02G": "Take time to reflect instead of responding in anger if someone tells you that something you said or did made them uncomfortable. There is great strength in being able to sincerely apologise to someone. If you feel that the way they responded to you was inappropriate, contact a mod rather than calling them out on it publicly.", "commGuideList02H": "Divisive/contentious conversations should be reported to mods. If you feel that a conversation is getting heated, overly emotional, or hurtful, cease to engage. Instead, email leslie@habitica.com to let us know about it. It's our job to keep you safe.", - "commGuideList02I": "Do not spam. Spamming may include, but is not limited to: posting the same comment or query in multiple places, posting links without explanation or context, posting nonsensical messages, or posting many messages in a row. Repeatedly begging for gems or a subscription may also be considered spamming.", - "commGuidePara019": "In private spaces, users have more freedom to discuss whatever topics they would like, but they still may not violate the Terms and Conditions, including posting any discriminatory, violent, or threatening content.", + "commGuideList02I": "Do not spam. Spamming may include, but is not limited to: posting the same comment or query in multiple places, posting links without explanation or context, posting nonsensical messages, or posting many messages in a row. Asking for gems or a subscription in any of the chat spaces or via Private Message is also considered spamming.", + "commGuidePara019": "In private spaces, users have more freedom to discuss whatever topics they would like, but they still may not violate the Terms and Conditions, including posting any discriminatory, violent, or threatening content. Note that, because Challenge names appear in the winner's public profile, ALL Challenge names must obey the public space guidelines, even if they appear in a private space.", "commGuidePara020": "Private Messages (PMs) have some additional guidelines. If someone has blocked you, do not contact them elsewhere to ask them to unblock you. Additionally, you should not send PMs to someone asking for support (since public answers to support questions are helpful to the community). Finally, do not send anyone PMs begging for a gift of gems or a subscription, as this can be considered spamming.", "commGuidePara021": "Furthermore, some public spaces in Habitica have additional guidelines.", "commGuideHeadingTavern": "The Tavern", diff --git a/common/locales/en_GB/content.json b/common/locales/en_GB/content.json index 6bdcd6ff54..366ee70abb 100644 --- a/common/locales/en_GB/content.json +++ b/common/locales/en_GB/content.json @@ -31,7 +31,7 @@ "dropEggCactusAdjective": "a prickly", "dropEggBearCubText": "Bear Cub", "dropEggBearCubMountText": "Bear", - "dropEggBearCubAdjective": "a cuddly", + "dropEggBearCubAdjective": "a brave", "questEggGryphonText": "Gryphon", "questEggGryphonMountText": "Gryphon", "questEggGryphonAdjective": "a proud", @@ -46,7 +46,7 @@ "questEggEggAdjective": "a colourful", "questEggRatText": "Rat", "questEggRatMountText": "Rat", - "questEggRatAdjective": "a dirty", + "questEggRatAdjective": "a sociable", "questEggOctopusText": "Octopus", "questEggOctopusMountText": "Octopus", "questEggOctopusAdjective": "a slippery", @@ -110,6 +110,9 @@ "questEggMonkeyText": "Monkey", "questEggMonkeyMountText": "Monkey", "questEggMonkeyAdjective": "a mischievous", + "questEggSnailText": "Snail", + "questEggSnailMountText": "Snail", + "questEggSnailAdjective": "a slow but steady", "eggNotes": "Find a hatching potion to pour on this egg, and it will hatch into <%= eggAdjective(locale) %> <%= eggText(locale) %>.", "hatchingPotionBase": "Base", "hatchingPotionWhite": "White", diff --git a/common/locales/en_GB/contrib.json b/common/locales/en_GB/contrib.json index 11bb9862af..230956f41e 100644 --- a/common/locales/en_GB/contrib.json +++ b/common/locales/en_GB/contrib.json @@ -28,11 +28,11 @@ "helped": "Helped Habit Grow", "helpedText1": "Helped Habitica grow by filling in", "helpedText2": "this survey.", - "hall": "Hall", + "hall": "Hall of Heroes", "contribTitle": "Contributor Title (eg, \"Blacksmith\")", "contribLevel": "Contrib Tier", "contribHallText": "1-7 for normal contributors, 8 for moderators, 9 for staff. This determines which items, pets, and mounts are available. Also determines name-tag colouring. Tiers 8 and 9 are automatically given admin status.", - "hallHeroes": "Hall of Heroes", + "hallContributors": "Hall of Contributors", "hallPatrons": "Hall of Patrons", "rewardUser": "Reward User", "UUID": "UUID", @@ -60,5 +60,5 @@ "blurbGuildsPage": "Guilds are common-interest chat groups created by the players, for players. Browse through the list and join the Guilds that interest you!", "blurbChallenges": "Challenges are created by your fellow players. Joining a Challenge will add its tasks to your task dashboard, and winning a Challenge will give you an achievement and often a gem prize!", "blurbHallPatrons": "This is the Hall of Patrons, where we honour the noble adventurers who backed Habitica's original Kickstarter. We thank them for helping us bring Habitica to life!", - "blurbHallHeroes": "This is 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! Find out more here. " + "blurbHallContributors": "This is the Hall of Contributors, where open-source contributors to Habitica are honored. Whether through code, art, music, writing, or even just helpfulness, they have earned gems, exclusive equipment, and prestigious titles. You can contribute to Habitica, too! Find out more here. " } \ No newline at end of file diff --git a/common/locales/en_GB/front.json b/common/locales/en_GB/front.json index 88c38e4fa5..76922b4d44 100644 --- a/common/locales/en_GB/front.json +++ b/common/locales/en_GB/front.json @@ -195,10 +195,10 @@ "landingCopy3": "Join over <%= userCount %> people having fun as they improve their lives.", "alreadyHaveAccount": "I already have an account!", "getStartedNow": "Get Started Now!", - "altAttrNavLogo": "Habitica home", + "altAttrNavLogo": "Habitica Home", "altAttrLifehacker": "Lifehacker", "altAttrNewYorkTimes": "The New York Times", - "altAttrMakeUseOf": "MakeUseOf", + "altAttrMakeUseOf": "Make Use Of", "altAttrForbes": "Forbes", "altAttrCnet": "CNet", "altAttrFastCompany": "Fast Company", diff --git a/common/locales/en_GB/gear.json b/common/locales/en_GB/gear.json index c2fe025f58..a20cfa82cf 100644 --- a/common/locales/en_GB/gear.json +++ b/common/locales/en_GB/gear.json @@ -1,4 +1,5 @@ { + "set": "Set", "weapon": "weapon", "weaponBase0Text": "No Weapon", "weaponBase0Notes": "No Weapon.", @@ -142,6 +143,14 @@ "weaponSpecialWinter2016MageNotes": "Your moves are so sick, they must be magic! Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2015-2016 Winter Gear.", "weaponSpecialWinter2016HealerText": "Confetti Cannon", "weaponSpecialWinter2016HealerNotes": "WHEEEEEEEEEE!!!!!!! HAPPY WINTER WONDERLAND!!!!!!!! Increases Intelligence by <%= int %>. Limited Edition 2015-2016 Winter Gear.", + "weaponSpecialSpring2016RogueText": "Fire Bolas", + "weaponSpecialSpring2016RogueNotes": "You've mastered the ball, the club, and the knife. Now you advance to juggling fire! Awoo! Increases Strength by <%= str %>. Limited Edition 2016 Spring Gear.", + "weaponSpecialSpring2016WarriorText": "Cheese Mallet", + "weaponSpecialSpring2016WarriorNotes": "No one has as many friends as the mouse with tender cheeses. Increases Strength by <%= str %>. Limited Edition 2016 Spring Gear.", + "weaponSpecialSpring2016MageText": "Staff of Bells", + "weaponSpecialSpring2016MageNotes": "Abracadabra! So dazzling, you might mesmerize yourself! Ooh... it jingles... Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2016 Spring Gear.", + "weaponSpecialSpring2016HealerText": "Spring Flower Wand", + "weaponSpecialSpring2016HealerNotes": "With a wave and a wink, you bring the fields and forests into bloom! Or bop troublesome mice on the head. Increases Intelligence by <%= int %>. Limited Edition 2016 Spring Gear.", "weaponMystery201411Text": "Pitchfork of Feasting", "weaponMystery201411Notes": "Stab your enemies or dig in to your favourite foods - this versatile pitchfork does it all! Confers no benefit. November 2014 Subscriber Item.", "weaponMystery201502Text": "Shimmery Winged Staff of Love and Also Truth", @@ -176,6 +185,10 @@ "weaponArmoireBarristerGavelNotes": "Order! Increases Strength and Constitution by <%= attrs %> each. Enchanted Armoire: Barrister Set (Item 3 of 3).", "weaponArmoireJesterBatonText": "Jester Baton", "weaponArmoireJesterBatonNotes": "With a wave of your baton and some witty repartee, even the most complicated situations become clear. Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Jester Set (Item 3 of 3).", + "weaponArmoireMiningPickaxText": "Mining Pickaxe", + "weaponArmoireMiningPickaxNotes": "Mine the maximum amount of gold from your tasks! Increases Perception by <%= per %>. Enchanted Armoire: Miner Set (Item 3 of 3).", + "weaponArmoireBasicLongbowText": "Basic Longbow", + "weaponArmoireBasicLongbowNotes": "A serviceable hand-me-down bow. Increases Strength by <%= str %>. Enchanted Armoire: Basic Archer Set (Item 1 of 3).", "armor": "armour", "armorBase0Text": "Plain Clothing", "armorBase0Notes": "Ordinary clothing. Confers no benefit.", @@ -307,6 +320,14 @@ "armorSpecialWinter2016MageNotes": "The wisest wizard keeps well-bundled in the winter wind. Increases Intelligence by <%= int %>. Limited Edition 2015-2016 Winter Gear.", "armorSpecialWinter2016HealerText": "Festive Fairy Cloak", "armorSpecialWinter2016HealerNotes": "Festive Fairies wrap their body wings around themselves for protection as they use their head wings to catch headwinds and fly around Habitica at speeds of up to 100 mph, delivering gifts and spraying everyone with confetti. How droll. Increases Constitution by <%= con %>. Limited Edition 2015-2016 Winter Gear.", + "armorSpecialSpring2016RogueText": "Canine Camouflauge Suit", + "armorSpecialSpring2016RogueNotes": "A clever pup knows to choose a brighter guise for concealment when everything is green and vibrant. Increases Perception by <%= per %>. Limited Edition 2016 Spring Gear.", + "armorSpecialSpring2016WarriorText": "Mighty Mail", + "armorSpecialSpring2016WarriorNotes": "Though you be but little, you are fierce! Increases Constitution by <%= con %>. Limited Edition 2016 Spring Gear.", + "armorSpecialSpring2016MageText": "Grand Malkin Robes", + "armorSpecialSpring2016MageNotes": "Brightly colored, so you won't be mistaken for a necromouser. Increases Intelligence by <%= int %>. Limited Edition 2016 Spring Gear.", + "armorSpecialSpring2016HealerText": "Fluffy Bunny Breeches", + "armorSpecialSpring2016HealerNotes": "Hippity hop! Bound from hill to hill, healing those in need. Increases Constitution by <%= con %>. Limited Edition 2016 Spring Gear.", "armorMystery201402Text": "Messenger Robes", "armorMystery201402Notes": "Shimmering and strong, these robes have many pockets to carry letters. Confers no benefit. February 2014 Subscriber Item.", "armorMystery201403Text": "Forest Walker Armour", @@ -341,6 +362,8 @@ "armorMystery201511Notes": "Considering this armour was carved directly from a magical log, it's surprisingly comfortable. Confers no benefit. November 2015 Subscriber Item.", "armorMystery201512Text": "Cold Fire Armour", "armorMystery201512Notes": "Summon the icy flames of winter! Confers no benefit. December 2015 Subscriber Item.", + "armorMystery201603Text": "Lucky Suit", + "armorMystery201603Notes": "This suit is sewn from thousands of four-leafed clovers! Confers no benefit. March 2016 Subscriber Item.", "armorMystery301404Text": "Steampunk Suit", "armorMystery301404Notes": "Dapper and dashing, wot! Confers no benefit. February 3015 Subscriber Item.", "armorArmoireLunarArmorText": "Soothing Lunar Armour", @@ -367,6 +390,10 @@ "armorArmoireBarristerRobesNotes": "Very serious and stately. Increases Constitution by <%= con %>. Enchanted Armoire: Barrister Set (Item 2 of 3).", "armorArmoireJesterCostumeText": "Jester Costume", "armorArmoireJesterCostumeNotes": "Tra-la-la! Despite the look of this costume, you are no fool. Increases Intelligence by <%= int %>. Enchanted Armoire: Jester Set (Item 2 of 3).", + "armorArmoireMinerOverallsText": "Miner Overalls", + "armorArmoireMinerOverallsNotes": "They may seem worn, but they are enchanted to repel dirt. Increases Constitution by <%= con %>. Enchanted Armoire: Miner Set (Item 2 of 3).", + "armorArmoireBasicArcherArmorText": "Basic Archer Armor", + "armorArmoireBasicArcherArmorNotes": "This camouflaged vest lets you slip unnoticed through the forests. Increases Perception by <%= per %>. Enchanted Armoire: Basic Archer Set (Item 2 of 3).", "headgear": "headgear", "headBase0Text": "No Helm", "headBase0Notes": "No headgear.", @@ -496,6 +523,14 @@ "headSpecialWinter2016MageNotes": "Keeps the snow out of your eyes while you're casting spells. Increases Perception by <%= per %>. Limited Edition 2015-2016 Winter Gear.", "headSpecialWinter2016HealerText": "Fairy Wing Helm", "headSpecialWinter2016HealerNotes": "Thesewingsfluttersoquicklythattheyblur! Increases Intelligence by <%= int %>. Limited Edition 2015-2016 Winter Gear.", + "headSpecialSpring2016RogueText": "Good Doggy Mask", + "headSpecialSpring2016RogueNotes": "Aww, what a cute puppy! Come here and let me pet your head. ...Hey, where did all my Gold go? Increases Perception by <%= per %>. Limited Edition 2016 Spring Gear.", + "headSpecialSpring2016WarriorText": "Mouse Guard Helmet", + "headSpecialSpring2016WarriorNotes": "Never again shall you be bopped on the head! Let them try! Increases Strength by <%= str %>. Limited Edition 2016 Spring Gear.", + "headSpecialSpring2016MageText": "Grand Malkin Hat", + "headSpecialSpring2016MageNotes": "Apparel to set you above the mere alley-mages of the world. Increases Perception by <%= per %>. Limited Edition 2016 Spring Gear.", + "headSpecialSpring2016HealerText": "Blossom Diadem", + "headSpecialSpring2016HealerNotes": "It glints with the potential of new life ready to burst forth. Increases Intelligence by <%= int %>. Limited Edition 2016 Spring Gear.", "headSpecialGaymerxText": "Rainbow Warrior Helm", "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", @@ -526,6 +561,10 @@ "headMystery201512Notes": "These flames burn cold with pure intellect. Confers no benefit. December 2015 Subscriber Item.", "headMystery201601Text": "Helm of True Resolve", "headMystery201601Notes": "Stay resolute, brave champion! Confers no benefit. January 2016 Subscriber Item.", + "headMystery201602Text": "Heartbreaker Hood", + "headMystery201602Notes": "Shield your identity from all your admirers. Confers no benefit. February 2016 Subscriber Item.", + "headMystery201603Text": "Lucky Hat", + "headMystery201603Notes": "This top hat is a magical good-luck charm. Confers no benefit. March 2016 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", @@ -570,6 +609,10 @@ "headArmoireBarristerWigNotes": "This bouncy wig is enough to frighten away even the fiercest foe. Increases Strength by <%= str %>. Enchanted Armoire: Barrister Set (Item 1 of 3).", "headArmoireJesterCapText": "Jester Cap", "headArmoireJesterCapNotes": "The bells on this hat might distract your opponents, but they just help you focus. Increases Perception by <%= per %>. Enchanted Armoire: Jester Set (Item 1 of 3).", + "headArmoireMinerHelmetText": "Miner Helmet", + "headArmoireMinerHelmetNotes": "Protect your head from falling tasks! Increases Intelligence by <%= int %>. Enchanted Armoire: Miner Set (Item 1 of 3).", + "headArmoireBasicArcherCapText": "Basic Archer Cap", + "headArmoireBasicArcherCapNotes": "No archer would be complete without a jaunty cap! Increases Perception by <%= per %>. Enchanted Armoire: Basic Archer Set (Item 3 of 3).", "offhand": "shield-hand item", "shieldBase0Text": "No Shield-Hand Equipment", "shieldBase0Notes": "No shield or second weapon.", @@ -653,6 +696,12 @@ "shieldSpecialWinter2016WarriorNotes": "Use this sled to block attacks, or ride it triumphantly into battle! Increases Constitution by <%= con %>. Limited Edition 2015-2016 Winter Gear.", "shieldSpecialWinter2016HealerText": "Pixie Present", "shieldSpecialWinter2016HealerNotes": "Open it open it open it open it open it open it!!!!!!!!! Increases Constitution by <%= con %>. Limited Edition 2015-2016 Winter Gear.", + "shieldSpecialSpring2016RogueText": "Fire Bolas", + "shieldSpecialSpring2016RogueNotes": "You've mastered the ball, the club, and the knife. Now you advance to juggling fire! Woo! Increases Strength <%= str %>. Limited Edition 2016 Spring Gear.", + "shieldSpecialSpring2016WarriorText": "Cheese Wheel", + "shieldSpecialSpring2016WarriorNotes": "You braved fiendish traps to procure this defense-boosting food. Increases Constitution by <%= con %>. Limited Edition 2016 Spring Gear.", + "shieldSpecialSpring2016HealerText": "Floral Buckler", + "shieldSpecialSpring2016HealerNotes": "The April Fool claims this little shield will block Shiny Seeds. Don't believe him. Increases Constitution by <%= con %>. Limited Edition 2016 Spring Gear.", "shieldMystery201601Text": "Resolution Slayer", "shieldMystery201601Notes": "This blade can be used to parry away all distractions. Confers no benefit. January 2016 Subscriber Item.", "shieldMystery301405Text": "Clock Shield", @@ -665,6 +714,8 @@ "shieldArmoireRoyalCaneNotes": "Hooray for the ruler, worthy of song! Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Royal Set (Item 2 of 3).", "shieldArmoireDragonTamerShieldText": "Dragon Tamer Shield", "shieldArmoireDragonTamerShieldNotes": "Distract enemies with this dragon-shaped shield. Increases Perception by <%= per %>. Enchanted Armoire: Dragon Tamer Set (Item 2 of 3).", + "shieldArmoireMysticLampText": "Mystic Lamp", + "shieldArmoireMysticLampNotes": "Light the darkest caves with this mystic lamp! Increases Perception by <%= per %>. Enchanted Armoire: Independent Item.", "back": "Back Accessory", "backBase0Text": "No Back Accessory", "backBase0Notes": "No Back Accessory.", @@ -680,6 +731,8 @@ "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.", + "backMystery201602Text": "Heartbreaker Cape", + "backMystery201602Notes": "With a swish of your cape, your enemies fall before you! Confers no benefit. February 2016 Subscriber Item.", "backSpecialWonderconRedText": "Mighty Cape", "backSpecialWonderconRedNotes": "Swishes with strength and beauty. Confers no benefit. Special Edition Convention Item.", "backSpecialWonderconBlackText": "Sneaky Cape", @@ -726,8 +779,16 @@ "headAccessorySpecialSpring2015MageNotes": "These ears listen keenly, in case somewhere a magician is revealing secrets. Confers no benefit. Limited Edition 2015 Spring Gear.", "headAccessorySpecialSpring2015HealerText": "Green Kitty Ears", "headAccessorySpecialSpring2015HealerNotes": "These cute kitty ears will make others green with envy. Confers no benefit. Limited Edition 2015 Spring Gear.", + "headAccessorySpecialSpring2016RogueText": "Green Dog Ears", + "headAccessorySpecialSpring2016RogueNotes": "With these, you can keep track of tricky Mages even if they turn invisible! Confers no benefit. Limited Edition 2016 Spring Gear.", + "headAccessorySpecialSpring2016WarriorText": "Red Mouse Ears", + "headAccessorySpecialSpring2016WarriorNotes": "To better hear your theme song across clamorous battlefields. Confers no benefit. Limited Edition 2016 Spring Gear.", + "headAccessorySpecialSpring2016MageText": "Yellow Cat Ears", + "headAccessorySpecialSpring2016MageNotes": "These sharp ears can detect the minute hum of ambient Mana, or the muted footfalls of a Rogue. Confers no benefit. Limited Edition 2016 Spring Gear.", + "headAccessorySpecialSpring2016HealerText": "Purple Bunny Ears", + "headAccessorySpecialSpring2016HealerNotes": "They stand like flags above the fray, letting others know where to run for help. Confers no benefit. Limited Edition 2016 Spring Gear.", "headAccessoryBearEarsText": "Bear Ears", - "headAccessoryBearEarsNotes": "These ears make you look like a cuddly bear! Confers no benefit.", + "headAccessoryBearEarsNotes": "These ears make you look like a brave bear! Confers no benefit.", "headAccessoryCactusEarsText": "Cactus Ears", "headAccessoryCactusEarsNotes": "These ears make you look like a prickly cactus! Confers no benefit.", "headAccessoryFoxEarsText": "Fox Ears", @@ -754,6 +815,8 @@ "headAccessoryMystery201510Notes": "These fearsome horns are slightly slimy. Confers no benefit. October 2015 Subscriber Item.", "headAccessoryMystery301405Text": "Headwear Goggles", "headAccessoryMystery301405Notes": "\"Goggles are for your eyes,\" they said. \"Nobody wants goggles that you can only wear on your head,\" they said. Hah! You sure showed them! Confers no benefit. August 3015 Subscriber Item.", + "headAccessoryArmoireComicalArrowText": "Comical Arrow", + "headAccessoryArmoireComicalArrowNotes": "This whimsical item doesn't provide a stat boost, but it sure is good for a laugh! Confers no benefit. Enchanted Armoire: Independent Item.", "eyewear": "Eyewear", "eyewearBase0Text": "No Eyewear", "eyewearBase0Notes": "No Eyewear.", diff --git a/common/locales/en_GB/generic.json b/common/locales/en_GB/generic.json index bbef52262b..6bdefc0429 100644 --- a/common/locales/en_GB/generic.json +++ b/common/locales/en_GB/generic.json @@ -137,6 +137,8 @@ "achievementStressbeastText": "Helped defeat the Abominable Stressbeast during the 2014 Winter Wonderland Event!", "achievementBurnout": "Saviour of the Flourishing Fields", "achievementBurnoutText": "Helped defeat Burnout and restore the Exhaust Spirits during the 2015 Fall Festival Event!", + "achievementBewilder": "Savior of Mistiflying", + "achievementBewilderText": "Helped defeat the Be-Wilder during the 2016 Spring Fling Event!", "checkOutProgress": "Check out my progress in Habitica!", "cardReceived": "Received a card!", "cardReceivedFrom": "<%= cardType %> from <%= userName %>", @@ -175,5 +177,6 @@ "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!" + "achievementShare": "I earned a new achievement in Habitica!", + "orderBy": "Order By <%= item %>" } \ No newline at end of file diff --git a/common/locales/en_GB/groups.json b/common/locales/en_GB/groups.json index e579a2d651..21c72afa57 100644 --- a/common/locales/en_GB/groups.json +++ b/common/locales/en_GB/groups.json @@ -1,5 +1,5 @@ { - "tavern": "Tavern", + "tavern": "Tavern Chat", "innCheckOut": "Check Out of Inn", "innCheckIn": "Rest in the Inn", "innText": "You're resting in the Inn! While checked-in, your Dailies won't hurt you at the day's end, but they will still refresh every day. Be warned: If you are participating in a Boss Quest, the Boss will still damage you for your party mates' missed Dailies unless they are also in the Inn! Also, your own damage to the Boss (or items collected) will not be applied until you check out of the Inn.", @@ -101,7 +101,7 @@ "inbox": "Inbox", "abuseFlag": "Report violation of Community Guidelines", "abuseFlagModalHeading": "Report <%= name %> for violation?", - "abuseFlagModalBody": "Are you sure you want to report this post? You should ONLY report a post that violates the <%= firstLinkStart %>Community Guidelines<%= linkEnd %> and/or <%= secondLinkStart %>Terms of Service<%= linkEnd %>. Inappropriately reporting a post is a violation of the Community Guidelines and may give you an infraction. Appropriate reasons to flag a post include but are not limited to:


", + "abuseFlagModalBody": "Are you sure you want to report this post? You should ONLY report a post that violates the <%= firstLinkStart %>Community Guidelines<%= linkEnd %> and/or <%= secondLinkStart %>Terms of Service<%= linkEnd %>. Inappropriately reporting a post is a violation of the Community Guidelines and may give you an infraction. Appropriate reasons to flag a post include but are not limited to:

", "abuseFlagModalButton": "Report Violation", "abuseReported": "Thank you for reporting this violation. The moderators have been notified.", "abuseAlreadyReported": "You have already reported this message.", @@ -147,5 +147,9 @@ "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 %>Communit 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.", + "partyUpName": "Party Up", + "partyOnName": "Party On", + "partyUpAchievement": "Joined a Party with another person! Have fun battling monsters and supporting each other.", + "partyOnAchievement": "Joined a Party with at least four people! Enjoy your increased accountability as you unite with your friends to vanquish your foes!" } \ No newline at end of file diff --git a/common/locales/en_GB/limited.json b/common/locales/en_GB/limited.json index 5e108f4a2d..fdb9f1dc51 100644 --- a/common/locales/en_GB/limited.json +++ b/common/locales/en_GB/limited.json @@ -67,6 +67,10 @@ "witchyWizardSet": "Witchy Wizard (Mage)", "mummyMedicSet": "Mummy Medic (Healer)", "vampireSmiterSet": "Vampire Smiter (Rogue)", + "bewareDogSet": "Beware Dog (Warrior)", + "magicianBunnySet": "Magician's Bunny (Mage)", + "comfortingKittySet": "Comforting Kitty (Healer)", + "sneakySqueakerSet": "Sneaky Squeaker (Rogue)", "fallEventAvailability": "Available until 31 October", "winterEventAvailability": "Available until 31 December" } \ No newline at end of file diff --git a/common/locales/en_GB/npc.json b/common/locales/en_GB/npc.json index 28d56198d2..0409eabdc3 100644 --- a/common/locales/en_GB/npc.json +++ b/common/locales/en_GB/npc.json @@ -35,7 +35,7 @@ "amazonInstructions": "Click the button to pay using Amazon Payments", "paymentMethods": "Purchase using", "classGear": "Class Gear", - "classGearText": "First: don't panic! Your old gear is in your inventory, and you're now wearing your apprentice <%= klass %> equipment. Wearing your class's gear grants you a 50% bonus to stats. However, feel free to switch back to your old gear.", + "classGearText": "First: don't panic! Your old gear is in your inventory, and you're now wearing the apprentice equipment of your new class. Wearing your class's gear grants you a 50% bonus to stats. However, feel free to switch back to your old gear.", "classStats": "These are your class's stats; they affect the game-play. Each time you level up, you get one point to allocate to a particular stat. Hover over each stat for more information.", "autoAllocate": "Auto Allocate", "autoAllocateText": "If 'automatic allocation' is ticked, your avatar gains stats automatically based on your tasks' attributes, which you can find in TASK > Edit > Advanced > Attributes. Eg, if you hit the gym often, and your 'Gym' Daily is set to 'Physical', you'll gain Strength automatically.", @@ -45,7 +45,7 @@ "moreClass": "For more information on the class-system, see", "tourWelcome": "Welcome to Habitica! This is your To-Do list. Tick off a task to proceed!", "tourExp": "Great job! Ticking off a task gives you Experience and Gold!", - "tourDailies": "This column is for Daily tasks. To proceed, enter a task you should do every day! Sample Dailies: Make Bed, Floss, Check Work Email", + "tourDailies": "This column is for Daily tasks. To proceed, enter a task you should do every day! Sample Dailies: Make Bed, Floss, Check Work Email", "tourCron": "Splendid! Your Dailies will reset every day.", "tourHP": "Watch out! If you don't complete a Daily by midnight, it will hurt you!", "tourHabits": "This column is for good and bad Habits that you do many times a day! To proceed, click the pencil to edit the names, then click the check mark to save.", diff --git a/common/locales/en_GB/pets.json b/common/locales/en_GB/pets.json index 59c4d7da4a..f69cbc3b93 100644 --- a/common/locales/en_GB/pets.json +++ b/common/locales/en_GB/pets.json @@ -19,6 +19,7 @@ "orca": "Orca", "royalPurpleGryphon": "Royal Purple Gryphon", "phoenix": "Phoenix", + "bumblebee": "Bumblebee", "rarePetPop1": "Click the gold paw to learn more about how you can obtain this rare pet through contributing to Habitica!", "rarePetPop2": "How to Get this Pet!", "potion": "<%= potionType %> Potion", diff --git a/common/locales/en_GB/quests.json b/common/locales/en_GB/quests.json index 85695d3000..4f2dc684e8 100644 --- a/common/locales/en_GB/quests.json +++ b/common/locales/en_GB/quests.json @@ -38,7 +38,7 @@ "bossDmg2": "Only participants will fight the boss and share in the quest loot.", "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)...", "bossDmg2Broken": "Only participants will fight the boss and share in the quest loot...", - "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": "Complete Dailies and To-Dos and score positive Habits to damage the World Boss! Incomplete Dailies fill the Rage Bar. When the Rage 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...", "bossColl1": "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.", "bossColl2": "Only participants can collect items and share in the quest loot.", diff --git a/common/locales/en_GB/questscontent.json b/common/locales/en_GB/questscontent.json index 2c381011e6..1c5ed37730 100644 --- a/common/locales/en_GB/questscontent.json +++ b/common/locales/en_GB/questscontent.json @@ -59,7 +59,7 @@ "questSpiderDropSpiderEgg": "Spider (Egg)", "questSpiderUnlockText": "Unlocks purchasable spider eggs in the Market", "questVice1Text": "Vice, Part 1: Free Yourself of the Dragon's Influence", - "questVice1Notes": "

They say there lies a terrible evil in the caverns of Mt. Habitica. A monster whose presence twists the wills of the strong heroes of the land, turning them towards bad habits and laziness! The beast is a grand dragon of immense power and comprised of the shadows themselves: Vice, the treacherous Shadow Wyrm. Brave Habiteers, stand up and defeat this foul beast once and for all, but only if you believe you can stand against its immense power.

Vice Part 1:

How can you expect to fight the beast if it already has control over you? Don't fall victim to laziness and vice! Work hard to fight against the dragon's dark influence and dispel his hold on you!

", + "questVice1Notes": "

They say there lies a terrible evil in the caverns of Mt. Habitica. A monster whose presence twists the wills of the strong heroes of the land, turning them towards bad habits and laziness! The beast is a grand dragon of immense power and comprised of the shadows themselves: Vice, the treacherous Shadow Wyrm. Brave Habiteers, stand up and defeat this foul beast once and for all, but only if you believe you can stand against its immense power.

Vice Part 1:

How can you expect to fight the beast if it already has control over you? Don't fall victim to laziness and vice! Work hard to fight against the dragon's dark influence and dispel its hold on you!

", "questVice1Boss": "Vice's Shade", "questVice1DropVice2Quest": "Vice Part 2 (Scroll)", "questVice2Text": "Vice, Part 2: Find the Lair of the Wyrm", @@ -74,30 +74,30 @@ "questVice3DropDragonEgg": "Dragon (Egg)", "questVice3DropShadeHatchingPotion": "Shade Hatching Potion", "questMoonstone1Text": "The Moonstone Chain, Part 1: The Moonstone Chain", - "questMoonstone1Notes": "

A terrible affliction has struck Habiticans. Bad Habits thought long-dead are rising back up with a vengeance. Dishes lie unwashed, textbooks linger unread, and procrastination runs rampant!


You track some of your own returning Bad Habits to the Swamps of Stagnation and discover the culprit: the ghostly Necromancer, Recidivate. You rush in, weapons swinging, but they slide through her specter uselessly.


\"Don’t bother,\" she hisses with a dry rasp. \"Without a chain of moonstones, nothing can harm me – and master jeweler @aurakami scattered all the moonstones across Habitica long ago!\" Panting, you retreat... but you know what you must do.

", + "questMoonstone1Notes": "A terrible affliction has struck Habiteers. Bad Habits thought long-dead are rising back up with a vengeance. Dishes lie unwashed, textbooks linger unread, and procrastination runs rampant!

You track some of your own returning Bad Habits to the Swamps of Stagnation and discover the culprit: the ghostly Necromancer, Recidivate. You rush in, weapons swinging, but they slide through her spectre uselessly.

\"Don’t bother,\" she hisses with a dry rasp. \"Without a chain of moonstones, nothing can harm me – and master jeweller @aurakami scattered all the moonstones across Habitica long ago!\" Panting, you retreat... but you know what you must do.", "questMoonstone1CollectMoonstone": "Moonstones", "questMoonstone1DropMoonstone2Quest": "The Moonstone Chain Part 2: Recidivate the Necromancer (Scroll)", "questMoonstone2Text": "The Moonstone Chain, Part 2: Recidivate The Necromancer", - "questMoonstone2Notes": "

The brave weaponsmith @Inventrix helps you fashion the enchanted moonstones into a chain. You’re ready to confront Recidivate at last, but as you enter the Swamps of Stagnation, a terrible chill sweeps over you.


Rotting breath whispers in your ear. \"Back again? How delightful...\" You spin and lunge, and under the light of the moonstone chain, your weapon strikes solid flesh. \"You may have bound me to the world once more,\" Recidivate snarls, \"but now it is time for you to leave it!\"

", + "questMoonstone2Notes": "The brave weaponsmith @Inventrix helps you fashion the enchanted moonstones into a chain. You’re ready to confront Recidivate at last, but as you enter the Swamps of Stagnation, a terrible chill sweeps over you.

Rotting breath whispers in your ear. \"Back again? How delightful...\" You spin and lunge, and under the light of the moonstone chain, your weapon strikes solid flesh. \"You may have bound me to the world once more,\" Recidivate snarls, \"but now it is time for you to leave it!\"", "questMoonstone2Boss": "The Necromancer", "questMoonstone2DropMoonstone3Quest": "The Moonstone Chain Part 3: Recidivate Transformed (Scroll)", "questMoonstone3Text": "The Moonstone Chain, Part 3: Recidivate Transformed", - "questMoonstone3Notes": "

Recidivate crumples to the ground, and you strike at her with the moonstone chain. To your horror, Recidivate seizes the gems, eyes burning with triumph.


\"Foolish creature of flesh!\" she shouts. \"These moonstones will restore me to a physical form, true, but not as you imagined. As the full moon waxes from the dark, so too does my power flourish, and from the shadows I summon the specter of your most feared foe!\"


A sickly green fog rises from the swamp, and Recidivate’s body writhes and contorts into a shape that fills you with dread – the undead body of Vice, horribly reborn.

", - "questMoonstone3Completion": "

Your breath comes hard and sweat stings your eyes as the undead Wyrm collapses. The remains of Recidivate dissipate into a thin grey mist that clears quickly under the onslaught of a refreshing breeze, and you hear the distant, rallying cries of Habiticans defeating their Bad Habits for once and for all.


@Baconsaur the beast master swoops down on a gryphon. \"I saw the end of your battle from the sky, and I was greatly moved. Please, take this enchanted tunic – your bravery speaks of a noble heart, and I believe you were meant to have it.\"

", + "questMoonstone3Notes": "Recidivate crumples to the ground, and you strike at her with the moonstone chain. To your horror, Recidivate seizes the gems, eyes burning with triumph.

\"Foolish creature of flesh!\" she shouts. \"These moonstones will restore me to a physical form, true, but not as you imagined. As the full moon waxes from the dark, so too does my power flourish, and from the shadows I summon the spectre of your most feared foe!\"

A sickly green fog rises from the swamp, and Recidivate’s body writhes and contorts into a shape that fills you with dread – the undead body of Vice, horribly reborn.", + "questMoonstone3Completion": "Your breath comes hard and sweat stings your eyes as the undead Wyrm collapses. The remains of Recidivate dissipate into a thin grey mist that clears quickly under the onslaught of a refreshing breeze, and you hear the distant, rallying cries of Habiticans defeating their Bad Habits for once and for all.

@Baconsaur the beast master swoops down on a gryphon. \"I saw the end of your battle from the sky, and I was greatly moved. Please, take this enchanted tunic – your bravery speaks of a noble heart, and I believe you were meant to have it.\" ", "questMoonstone3Boss": "Necro-Vice", "questMoonstone3DropRottenMeat": "Rotten Meat (Food)", "questMoonstone3DropZombiePotion": "Zombie Hatching Potion", "questGoldenknight1Text": "The Golden Knight, Part 1: A Stern Talking-To", - "questGoldenknight1Notes": "

The Golden Knight has been getting on poor Habiticans' cases. Didn't do all of your Dailies? Ticked off a negative Habit? She will use this as a reason to harass you about how you should follow her example. She is the shining example of a perfect Habitican, and you are naught but a failure. Well, that is not nice at all! Everyone makes mistakes. They should not have to be met with such negativity for it. Perhaps it is time you gather some testimonies from hurt Habiticans and give the Golden Knight a stern talking-to!

", + "questGoldenknight1Notes": "The Golden Knight has been getting on poor Habiticans' cases. Didn't do all of your Dailies? Checked off a negative Habit? She will use this as a reason to harass you about how you should follow her example. She is the shining example of a perfect Habitican, and you are naught but a failure. Well, that is not nice at all! Everyone makes mistakes. They should not have to be met with such negativity for it. Perhaps it is time you gather some testimonies from hurt Habiticans and give the Golden Knight a stern talking-to!", "questGoldenknight1CollectTestimony": "Testimonies", "questGoldenknight1DropGoldenknight2Quest": "The Golden Knight Chain Part 2: Gold Knight (Scroll)", "questGoldenknight2Text": "The Golden Knight, Part 2: Gold Knight", - "questGoldenknight2Notes": "

Armed with hundreds of Habitican's testimonies, you finally confront the Golden Knight. You begin to recite the Habitican's complaints to her, one by one. \"And @Pfeffernusse says that your constant bragging-\" The knight raises her hand to silence you and scoffs, \"Please, these people are merely jealous of my success. Instead of complaining, they should simply work as hard as I! Perhaps I shall show you the power you can attain through diligence such as mine!\" She raises her morningstar and prepares to attack you!

", + "questGoldenknight2Notes": "Armed with hundreds of Habitican's testimonies, you finally confront the Golden Knight. You begin to recite the Habitcan's complaints to her, one by one. \"And @Pfeffernusse says that your constant bragging-\" The knight raises her hand to silence you and scoffs, \"Please, these people are merely jealous of my success. Instead of complaining, they should simply work as hard as I! Perhaps I shall show you the power you can attain through diligence such as mine!\" She raises her morningstar and prepares to attack you!", "questGoldenknight2Boss": "Gold Knight", "questGoldenknight2DropGoldenknight3Quest": "The Golden Knight Chain Part 3: The Iron Knight (Scroll)", "questGoldenknight3Text": "The Golden Knight, Part 3: The Iron Knight", - "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 crueller than I could ever be. If he isn't stopped he'll destroy us all. Here, use my morningstar and halt the Iron Knight!\"

", - "questGoldenknight3Completion": "

With a satisfying clang, the Iron Knight falls to his knees and slumps over. \"You are quite strong,\" he pants. \"I have been humbled, today.\" The Golden Knight approaches you and says, \"Thank you. I believe we have gained some humility from our encounter with you. I will speak with my father and explain the complaints against us. Perhaps, we should begin apologising to the other Habiticans.\" She mulls over in thought before turning back to you. \"Here: as our gift to you, I want you to keep my morningstar. It is yours now.\"

", + "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!\"", + "questGoldenknight3Completion": "With a satisfying clang, the Iron Knight falls to his knees and slumps over. \"You are quite strong,\" he pants. \"I have been humbled, today.\" The Golden Knight approaches you and says, \"Thank you. I believe we have gained some humility from our encounter with you. I will speak with my father and explain the complaints against us. Perhaps, we should begin apologizing to the other Habiticans.\" She mulls over in thought before turning back to you. \"Here: as our gift to you, I want you to keep my morningstar. It is yours now.\"", "questGoldenknight3Boss": "The Iron Knight", "questGoldenknight3DropHoney": "Honey (Food)", "questGoldenknight3DropGoldenPotion": "Golden Hatching Potion", @@ -112,7 +112,7 @@ "questEggHuntCollectPlainEgg": "Plain Eggs", "questEggHuntDropPlainEgg": "Plain Egg", "questDilatoryText": "The Dread Drag'on of Dilatory", - "questDilatoryNotes": "

We should have heeded the warnings.


Dark shining eyes. Ancient scales. Massive jaws, and flashing teeth. We've awoken something horrifying from the crevasse: the Dread Drag'on of Dilatory! Screaming Habiticans fled in all directions when it reared out of the sea, its terrifyingly long neck extending hundreds of feet out of the water as it shattered windows with its searing roar.


\"This must be what dragged Dilatory down!\" yells Lemoness. \"It wasn't the weight of the neglected tasks - the Dark Red Dailies just attracted its attention!\"


\"It's surging with magical energy!\" @Baconsaur cries. \"To have lived this long, it must be able to heal itself! How can we defeat it?\"


Why, the same way we defeat all beasts - with productivity! Quickly, Habitica, band together and strike through your tasks, and all of us will battle this monster together. (There's no need to abandon previous quests - we believe in your ability to double-strike!) It won't attack us individually, but the more Dailies we skip, the closer we get to triggering its Neglect Strike - and I don't like the way it's eyeing the Tavern....

", + "questDilatoryNotes": "We should have heeded the warnings.

Dark shining eyes. Ancient scales. Massive jaws, and flashing teeth. We've awoken something horrifying from the crevasse: the Dread Drag'on of Dilatory! Screaming Habiticans fled in all directions when it reared out of the sea, its terrifyingly long neck extending hundreds of feet out of the water as it shattered windows with its searing roar.

\"This must be what dragged Dilatory down!\" yells Lemoness. \"It wasn't the weight of the neglected tasks - the Dark Red Dailies just attracted its attention!\"

\"It's surging with magical energy!\" @Baconsaur cries. \"To have lived this long, it must be able to heal itself! How can we defeat it?\"

Why, the same way we defeat all beasts - with productivity! Quickly, Habiticans, band together and strike through your tasks, and all of us will battle this monster together. (There's no need to abandon previous quests - we believe in your ability to double-strike!) It won't attack us individually, but the more Dailies we skip, the closer we get to triggering its Neglect Strike - and I don't like the way it's eyeing the Tavern....", "questDilatoryBoss": "The Dread Drag'on of Dilatory", "questDilatoryBossRageTitle": "Neglect Strike", "questDilatoryBossRageDescription": "When this bar has filled up, the Dread Drag'on of Dilatory will unleash great havoc on Habitica's terrain", @@ -142,7 +142,7 @@ "questAtom3Boss": "The Laundromancer", "questAtom3DropPotion": "Base Hatching Potion", "questOwlText": "The Night-Owl", - "questOwlNotes": "The Tavern light is lit 'til dawn
Until one eve the glow is gone!
How can we see for our all-nighters?
@Twitching cries, \"I need some fighters!
See that Night-Owl, starry foe?
Fight with haste and do not slow!
We'll drive its shadow from our door,
And make the night shine bright once more!\"", + "questOwlNotes": "The Tavern light is lit 'til dawn
Until one eve the glow is gone!
How can we see for our all-nighters?
@Twitching cries, \"I need some fighters!
See that Night-Owl, starry foe?
Fight with haste and do not slow!
We'll drive its shadow from our door,
And make the night shine bright once more!\"", "questOwlCompletion": "The Night-Owl fades before the dawn,
But even so, you feel a yawn.
Perhaps it's time to get some rest?
Then on your bed, you see a nest!
A Night-Owl knows it can be great
To finish work and stay up late,
But your new pets will softly peep
To tell you when it's time to sleep.", "questOwlBoss": "The Night-Owl", "questOwlDropOwlEgg": "Owl (Egg)", @@ -291,5 +291,22 @@ "questMonkeyCompletion": "You did it! No bananas for those fiends today. Overwhelmed by your diligence, the monkeys flee in panic. \"Look,\" says @Misceo. \"They left a few eggs behind.\"

@Leephon grins. \"Maybe a well-trained pet monkey can help you as much as the wild ones hinder you!\"", "questMonkeyBoss": "Monstrous Mandrill", "questMonkeyDropMonkeyEgg": "Monkey (Egg)", - "questMonkeyUnlockText": "Unlocks purchasable Monkey eggs in the Market" + "questMonkeyUnlockText": "Unlocks purchasable Monkey eggs in the Market", + "questSnailText": "The Snail of Drudgery Sludge", + "questSnailNotes": "You're excited to begin questing in the abandoned Dungeons of Drudgery, but as soon as you enter, you feel the ground under your feet start to suck at your boots. You look up to the path ahead and see Habiticans mired in slime. @Overomega yells, \"They have too many unimportant tasks and dailies, and they're getting stuck on things that don't matter! Pull them out!\"

\"You need to find the source of the ooze,\" @Pfeffernusse agrees, \"or the tasks that they cannot accomplish will drag them down forever!\"

Pulling out your weapon, you wade through the gooey mud.... and encounter the fearsome Snail of Drudgery Sludge.", + "questSnailCompletion": "You bring your weapon down on the great Snail's shell, cracking it in two, releasing a flood of water. The slime is washed away, and the Habiticans around you rejoice. \"Look!\" says @Misceo. \"There's a small group of snail eggs in the remnants of the muck.\"", + "questSnailBoss": "Snail of Drudgery Sludge", + "questSnailDropSnailEgg": "Snail (Egg)", + "questSnailUnlockText": "Unlocks purchasable Snail eggs in the Market", + "questBewilderText": "The Be-Wilder", + "questBewilderNotes": "The party begins like any other.

The appetizers are excellent, the music is swinging, and even the dancing elephants have become routine. Habiticans laugh and frolic amid the overflowing floral centerpieces, happy to have a distraction from their least-favorite tasks, and the April Fool whirls among them, eagerly providing an amusing trick here and a witty twist there.

As the Mistiflying clock tower strikes midnight, the April Fool leaps onto the stage to give a speech.

“Friends! Enemies! Tolerant acquaintances! Lend me your ears.” The crowd chuckles as animal ears sprout from their heads, and they pose with their new accessories.

“As you know,” the Fool continues, “my confusing illusions usually only last a single day. But I’m pleased to announce that I’ve discovered a shortcut that will guarantee us non-stop fun, without having to deal with the pesky weight of our responsibilities. Charming Habiticans, meet my magical new friend... the Be-Wilder!”

Lemoness pales suddenly, dropping her hors d'oeuvres. “Wait! Don’t trust--”

But suddenly mists are pouring into the room, glittering and thick, and they swirl around the April Fool, coalescing into cloudy feathers and a stretching neck. The crowd is speechless as an monstrous bird unfolds before them, its wings shimmering with illusions. It lets out a horrible screeching laugh.

“Oh, it has been ages since a Habitican has been foolish enough to summon me! How wonderful it feels, to have a tangible form at last.”

Buzzing in terror, the magic bees of Mistiflying flee the floating city, which sags from the sky. One by one, the brilliant spring flowers wither up and wisp away.

“My dearest friends, why so alarmed?” crows the Be-Wilder, beating its wings. “There’s no need to toil for your rewards any more. I’ll just give you all the things that you desire!”

A rain of coins pours from the sky, hammering into the ground with brutal force, and the crowd screams and flees for cover. “Is this a joke?” Baconsaur shouts, as the gold smashes through windows and shatters roof shingles.

PainterProphet ducks as lightning bolts crackle overhead, and fog blots out the sun. “No! This time, I don’t think it is!”

Quickly, Habiticans, don’t let this World Boss distract us from our goals! Stay focused on the tasks that you need to complete so we can rescue Mistiflying -- and hopefully, ourselves.", + "questBewilderCompletion": "The Be-Wilder is DEFEATED!

We've done it! The Be-Wilder lets out a ululating cry as it twists in the air, shedding feathers like falling rain. Slowly, gradually, it coils into a cloud of sparkling mist. As the newly-revealed sun pierces the fog, it burns away, revealing the coughing, mercifully human forms of Bailey, Matt, Alex.... and the April Fool himself.

Mistiflying is saved!

The April Fool has enough shame to look a bit sheepish. “Oh, hm,” he says. “Perhaps I got a little…. carried away.”

The crowd mutters. Sodden flowers wash up on sidewalks. Somewhere in the distance, a roof collapses with a spectacular splash.

“Er, yes,” the April Fool says. “That is. What I meant to say was, I’m dreadfully sorry.” He heaves a sigh. “I suppose it can’t all be fun and games, after all. It might not hurt to focus occasionally. Maybe I’ll get a head start on next year’s pranking.”

Redphoenix coughs meaningfully.

“I mean, get a head start on this year’s spring cleaning!” the April Fool says. “Nothing to fear, I’ll have Habit City in spit-shape soon. Luckily nobody is better than I at dual-wielding mops.”

Encouraged, the marching band starts up.

It isn’t long before all is back to normal in Habit City. Plus, now that the Be-Wilder has evaporated, the magical bees of Mistiflying bustle back to work, and soon the flowers are blooming and the city is floating once more.

As Habiticans cuddle the magical fuzzy bees, the April Fool’s eyes light up. “Oho, I’ve had a thought! Why don’t you all keep some of these fuzzy Bee Pets and Mounts? It’s a gift that perfectly symbolizes the balance between hard work and sweet rewards, if I’m going to get all boring and allegorical on you.” He winks. “Besides, they don’t have stingers! Fool’s honor.”", + "questBewilderCompletionChat": "`The Be-Wilder is DEFEATED!`\n\nWe've done it! The Be-Wilder lets out a ululating cry as it twists in the air, shedding feathers like falling rain. Slowly, gradually, it coils into a cloud of sparkling mist. As the newly-revealed sun pierces the fog, it burns away, revealing the coughing, mercifully human forms of Bailey, Matt, Alex.... and the April Fool himself.\n\n`Mistiflying is saved!`\n\nThe April Fool has enough shame to look a bit sheepish. “Oh, hm,” he says. “Perhaps I got a little…. carried away.”\n\nThe crowd mutters. Sodden flowers wash up on sidewalks. Somewhere in the distance, a roof collapses with a spectacular splash.\n\n“Er, yes,” the April Fool says. “That is. What I meant to say was, I’m dreadfully sorry.” He heaves a sigh. “I suppose it can’t all be fun and games, after all. It might not hurt to focus occasionally. Maybe I’ll get a head start on next year’s pranking.”\n\nRedphoenix coughs meaningfully.\n\n“I mean, get a head start on this year’s spring cleaning!” the April Fool says. “Nothing to fear, I’ll have Habit City in spit-shape soon. Luckily nobody is better than I at dual-wielding mops.”\n\nEncouraged, the marching band starts up.\n\nIt isn’t long before all is back to normal in Habit City. Plus, now that the Be-Wilder has evaporated, the magical bees of Mistiflying bustle back to work, and soon the flowers are blooming and the city is floating once more.\n\nAs Habiticans cuddle the magical fuzzy bees, the April Fool’s eyes light up. “Oho, I’ve had a thought! Why don’t you all keep some of these fuzzy Bee Pets and Mounts? It’s a gift that perfectly symbolizes the balance between hard work and sweet rewards, if I’m going to get all boring and allegorical on you.” He winks. “Besides, they don’t have stingers! Fool’s honor.”", + "questBewilderBossRageTitle": "Beguilement Strike", + "questBewilderBossRageDescription": "When this gauge fills, The Be-Wilder will unleash its Beguilement Strike on Habitica!", + "questBewilderDropBumblebeePet": "Bumblebee (Pet)", + "questBewilderDropBumblebeeMount": "Bumblebee (Mount)", + "questBewilderBossRageMarket": "`The Be-Wilder uses BEGUILEMENT STRIKE!`\n\nOh no! Despite our best efforts, we've gotten distracted by the Be-Wilder’s charming illusions and have forgotten to do some of our Dailies! With a cackling cry, the shining bird beats its wings, raising a swarm of mist around Alex the Merchant. When the fog clears, he has been possessed! “Have some free samples!” he shouts gleefully, and begins to hurl exploding eggs and potions at fleeing Habiticans. Not the most favorable of sales, to be sure.\n\nHurry! Let's stay focused on our Dailies to defeat this monster before it possesses someone else.", + "questBewilderBossRageStables": "`The Be-Wilder uses BEGUILEMENT STRIKE!`\n\nAhh!!! Once again the Be-Wilder has dazzled us into neglecting our Dailies, and now it has attacked Matt the Beast Master! With a swirl of mist, Matt transforms into a terrifying winged creature, and all the pets and mounts howl sadly in their stables. Quickly, stay focused on your tasks to defeat this dastardly distraction!", + "questBewilderBossRageBailey": "`The Be-Wilder uses BEGUILEMENT STRIKE!`\n\nLook out! In the middle of reporting the news, Bailey the Town Crier has been possessed by the Be-Wilder! She lets out an evil, uninformative screech as she rises into the air. Now how will we know what’s going on?\n\nDon't give up... we're so close to defeating this bothersome bird for once and for all!" } \ No newline at end of file diff --git a/common/locales/en_GB/settings.json b/common/locales/en_GB/settings.json index 17d721e1b1..a4c58379d9 100644 --- a/common/locales/en_GB/settings.json +++ b/common/locales/en_GB/settings.json @@ -102,7 +102,7 @@ "invitedParty": "Invited To Party", "invitedGuild": "Invited To Guild", "importantAnnouncements": "Your account is inactive", - "weeklyRecaps": "Summaries of your account activity in the past week", + "weeklyRecaps": "Summaries of your account activity in the past week (Note: this is currently disabled due to performance issues, but we hope to have this back up and sending e-mails again soon!)", "questStarted": "Your Quest has Begun", "invitedQuest": "Invited to Quest", "kickedGroup": "Kicked from group", diff --git a/common/locales/en_GB/subscriber.json b/common/locales/en_GB/subscriber.json index eec4e2ff7c..06980ccf1f 100644 --- a/common/locales/en_GB/subscriber.json +++ b/common/locales/en_GB/subscriber.json @@ -30,7 +30,7 @@ "cancelSub": "Cancel Subscription", "canceledSubscription": "Cancelled Subscription", "adminSub": "Administrator Subscriptions", - "morePlans": "More Plans
Coming Soon", + "morePlans": "More Plans
Coming Soon", "organizationSub": "Private Organisation", "organizationSubText": "Members of the organisation participate outside of Habitica proper, providing focus for your participants.", "hostingType": "Hosting Type", @@ -97,6 +97,8 @@ "mysterySet201511": "Wood Warrior Set", "mysterySet201512": "Winter Flame Set", "mysterySet201601": "Champion of Resolution Set", + "mysterySet201602": "Heartbreaker Set", + "mysterySet201603": "Lucky Clover Set", "mysterySet301404": "Steampunk Standard Set", "mysterySet301405": "Steampunk Accessories Set", "mysterySetwondercon": "Wondercon", diff --git a/common/locales/es/backgrounds.json b/common/locales/es/backgrounds.json index 11f5450db0..33ec8d95ce 100644 --- a/common/locales/es/backgrounds.json +++ b/common/locales/es/backgrounds.json @@ -58,81 +58,81 @@ "backgroundSnowyPinesNotes": "Refúgiate entre pinos nevados.", "backgrounds022015": "SET 9: Lanzado en febrero de 2015", "backgroundBlacksmithyText": "Forjador", - "backgroundBlacksmithyNotes": "Trabaja en la forja.", + "backgroundBlacksmithyNotes": "Trabajo en la forja", "backgroundCrystalCaveText": "Cueva de Cristal", "backgroundCrystalCaveNotes": "Explora la Cueva de Cristal.", - "backgroundDistantCastleText": "Castillo distante", + "backgroundDistantCastleText": "Castillo Distante", "backgroundDistantCastleNotes": "Defiende el Castillo Distante.", "backgrounds032015": "SET 10: Lanzado en marzo de 2015", - "backgroundSpringRainText": "Lluvia de primavera", - "backgroundSpringRainNotes": "Baila bajo la lluvia de primavera.", + "backgroundSpringRainText": "Lluvia de Primavera", + "backgroundSpringRainNotes": "Baila bajo la Lluvia de Primavera.", "backgroundStainedGlassText": "Vidriera", - "backgroundStainedGlassNotes": "Admira estas vidrieras.", - "backgroundRollingHillsText": "Colinas Onduladas", - "backgroundRollingHillsNotes": "Retoza por las Colinas Onduladas.", + "backgroundStainedGlassNotes": "Admira algunas vidrieras.", + "backgroundRollingHillsText": "Colinas Ondulantes", + "backgroundRollingHillsNotes": "Corretea por las Colinas Ondulantes.", "backgrounds042015": "SET 11: Lanzado en abril de 2015", "backgroundCherryTreesText": "Cerezos", - "backgroundCherryTreesNotes": "Admira los cerezos en flor.", - "backgroundFloralMeadowText": "Campo Florido", - "backgroundFloralMeadowNotes": "Ve de picnic en un Campo Florido.", + "backgroundCherryTreesNotes": "Admira los Cerezos en flor.", + "backgroundFloralMeadowText": "Prado Floreciente", + "backgroundFloralMeadowNotes": "Ve de picnic a un Prado Floreciente.", "backgroundGumdropLandText": "País de las Gominolas", "backgroundGumdropLandNotes": "Mordisquea el paisaje del País de las Gominolas.", "backgrounds052015": "SET 12: Lanzado en mayo de 2015", "backgroundMarbleTempleText": "Templo de Mármol", "backgroundMarbleTempleNotes": "Posa frente a un Templo de Mármol.", - "backgroundMountainLakeText": "Lago de la Montaña", - "backgroundMountainLakeNotes": "Mójate los pies en el Lago de la Montaña.", + "backgroundMountainLakeText": "Lago de Montaña", + "backgroundMountainLakeNotes": "Mete los pies en el Lago de Montaña.", "backgroundPagodasText": "Pagodas", - "backgroundPagodasNotes": "Escala a lo alto de Pagodas.", + "backgroundPagodasNotes": "Escala a lo alto de las Pagodas.", "backgrounds062015": "SET 13: Lanzado en junio del 2015", "backgroundDriftingRaftText": "Balsa a la Deriva", "backgroundDriftingRaftNotes": "Rema una Balsa a la Deriva.", - "backgroundShimmeryBubblesText": "Burbujas Relucientes", - "backgroundShimmeryBubblesNotes": "Flota a través del mar de Burbujas Relucientes.", - "backgroundIslandWaterfallsText": "Cascadas de la Isla", - "backgroundIslandWaterfallsNotes": "Picnic cerca de las Cascadas de la Isla", + "backgroundShimmeryBubblesText": "Burbujas Temblorosas", + "backgroundShimmeryBubblesNotes": "Flota a través del mar de Burbujas Temblorosas.", + "backgroundIslandWaterfallsText": "Cascadas de Isla", + "backgroundIslandWaterfallsNotes": "Picnic cerca de las Cascadas de Isla", "backgrounds072015": "SET 14: Lanzado en Julio del 2015", - "backgroundDilatoryRuinsText": "Ruinas de Dilatoria", - "backgroundDilatoryRuinsNotes": "Sumérgete en las Ruinas de Dilatoria.", + "backgroundDilatoryRuinsText": "Ruinas Tardías", + "backgroundDilatoryRuinsNotes": "Sumérgete en las Ruinas Tardías.", "backgroundGiantWaveText": "Ola Gigante", - "backgroundGiantWaveNotes": "¡Surfea la Ola Gigante!", + "backgroundGiantWaveNotes": "¡Surfea una Ola Gigante!", "backgroundSunkenShipText": "Barco Hundido", - "backgroundSunkenShipNotes": "Explora el Barco Hundido.", + "backgroundSunkenShipNotes": "Explora un Barco Hundido.", "backgrounds082015": "SET 15: Lanzado en Agosto del 2015", "backgroundPyramidsText": "Pirámides", "backgroundPyramidsNotes": "Admirar las Pirámides ", - "backgroundSunsetSavannahText": "Puesta del Sol en La Sabana", - "backgroundSunsetSavannahNotes": "Acecha a través de la Puesta Del Sol de Sabana", - "backgroundTwinklyPartyLightsText": "Luces Brillantes de Fiesta", - "backgroundTwinklyPartyLightsNotes": "Bailar abajo de las Luces Brillantes de Fiesta", + "backgroundSunsetSavannahText": "Ocaso de la Sabana", + "backgroundSunsetSavannahNotes": "Acecha a través del Ocaso de la Sabana.", + "backgroundTwinklyPartyLightsText": "Luces Parpadeantes de Fiesta", + "backgroundTwinklyPartyLightsNotes": "Bailar abajo de las Luces Parpadeantes de Fiesta.", "backgrounds092015": "SET 16: lanzado en septiembre del 2015", "backgroundMarketText": "Mercado de Habitica", "backgroundMarketNotes": "Compra en el Mercado de Habitica.", "backgroundStableText": "Establo de Habitica", - "backgroundStableNotes": "Cuida a las monturas del Establo de Habitica.", + "backgroundStableNotes": "Atender monturas en el Establo de Habitica.", "backgroundTavernText": "Taberna de Habitica", "backgroundTavernNotes": "Visita la Taberna de Habitica.", "backgrounds102015": "SET 17: lanzado en octobre del 2015", - "backgroundHarvestMoonText": "Luna de cosecha", - "backgroundHarvestMoonNotes": "Charla bajo la Luna de Cosecha", - "backgroundSlimySwampText": "Pantano Musgoso", - "backgroundSlimySwampNotes": "Cruza a través del Pantano musgoso", - "backgroundSwarmingDarknessText": "La Oscuridad de Enjambre", - "backgroundSwarmingDarknessNotes": "Temblar en la Oscuridad de Enjambre", + "backgroundHarvestMoonText": "Luna LLena", + "backgroundHarvestMoonNotes": "Charla bajo la Luna LLena.", + "backgroundSlimySwampText": "Pantano Pringoso", + "backgroundSlimySwampNotes": "Cruza a través del Pantano Pringoso", + "backgroundSwarmingDarknessText": "Oscuridad Rezumbante", + "backgroundSwarmingDarknessNotes": "Temblar en la Oscuridad Rezumbante", "backgrounds112015": "SET 18: Lanzado en Noviembre del 2015", "backgroundFloatingIslandsText": "Islas Flotantes", "backgroundFloatingIslandsNotes": "Salta a través de las Islas Flotantes", - "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", + "backgroundNightDunesText": "Dunas Nocturnas", + "backgroundNightDunesNotes": "Camina tranquilamente a través de las Dunas Nocturnas", + "backgroundSunsetOasisText": "Ocaso en el Oasis", + "backgroundSunsetOasisNotes": "Contempla el Ocaso en el Oasis", "backgrounds122015": "Set 19: Lanzado en Diciembre del 2015", "backgroundAlpineSlopesText": "Laderas Alpinas", "backgroundAlpineSlopesNotes": "Esquía en las Laderas Alpinas", "backgroundSnowySunriseText": "Amanecer Nevado", "backgroundSnowySunriseNotes": "Contempla el Amanecer Nevado", "backgroundWinterTownText": "Pueblo Invernal", - "backgroundWinterTownNotes": "Muévete afanosamente a través del pueblo invernal.\n", + "backgroundWinterTownNotes": "Adentrarse en el Pueblo Invernal.\n", "backgrounds012016": "SET 20: Lanzado en Enero 2016", "backgroundFrozenLakeText": "Lago Congelado", "backgroundFrozenLakeNotes": "Patinar en un Lago Congelado", @@ -140,11 +140,25 @@ "backgroundSnowmanArmyNotes": "Liderar un Ejercito de Hombres de Nieve", "backgroundWinterNightText": "Noche de Invierno", "backgroundWinterNightNotes": "Mirar las estrellas de una Noche de Invierno", - "backgrounds022016": "SET 21: Released February 2016", - "backgroundBambooForestText": "Bamboo Forest", - "backgroundBambooForestNotes": "Stroll through the Bamboo Forest.", - "backgroundCozyLibraryText": "Cozy Library", - "backgroundCozyLibraryNotes": "Read in the Cozy Library.", - "backgroundGrandStaircaseText": "Grand Staircase", - "backgroundGrandStaircaseNotes": "Stride down the Grand Staircase." + "backgrounds022016": "SET 21: lanzado en febrero del 2016", + "backgroundBambooForestText": "Bosque de Bambú", + "backgroundBambooForestNotes": "Pasea por el Bosque de Bambú.", + "backgroundCozyLibraryText": "Biblioteca Acogedora", + "backgroundCozyLibraryNotes": "Lee en la Biblioteca Acogedora.", + "backgroundGrandStaircaseText": "Gran Escalinata", + "backgroundGrandStaircaseNotes": "Desciende por la Gran Escalinata.", + "backgrounds032016": "SET 22: lanzado en marzo del 2016", + "backgroundDeepMineText": "Mina Profunda", + "backgroundDeepMineNotes": "Encuentra metales preciosos en esta Mina Profunda.", + "backgroundRainforestText": "Selva Tropical", + "backgroundRainforestNotes": "Adéntrate en la Selva Tropical.", + "backgroundStoneCircleText": "Círculo de Piedras", + "backgroundStoneCircleNotes": "Lanza hechizos en un Círculo de Piedras.", + "backgrounds042016": "SET 23: Released April 2016", + "backgroundArcheryRangeText": "Archery Range", + "backgroundArcheryRangeNotes": "Practice on the Archery Range.", + "backgroundGiantFlowersText": "Giant Flowers", + "backgroundGiantFlowersNotes": "Frolic atop Giant Flowers.", + "backgroundRainbowsEndText": "End of the Rainbow", + "backgroundRainbowsEndNotes": "Discover gold at the End of the Rainbow." } \ No newline at end of file diff --git a/common/locales/es/challenge.json b/common/locales/es/challenge.json index f497c6b2f8..6c4b3453c5 100644 --- a/common/locales/es/challenge.json +++ b/common/locales/es/challenge.json @@ -33,7 +33,7 @@ "challengeTagPop": "Los Desafíos aparecen en la lista de etiquetas y en los consejos de tarea. Así que, aunque el título debería ser descriptivo, también se necesita una «abreviatura». Por ejemplo, «Perder 5 kilos en 3 meses» se puede convertir en «-5 kg» (pulsar en «?» proveerá más información).", "challengeDescr": "Descripción", "prize": "Premio", - "prizePop": "Si es posible para alguien 'ganar' tu desafío, puedes, opcionalmente, recompensar a dicho ganador con un premio en Gemas. El máximo número de Gemas que puedes entregar es el número de Gemas que tú posees (más el número de Gemas del Gremio, si tú creaste el Gremio de este desafío). Nota: este premio no puede ser cambiado más adelante.", + "prizePop": "Si es posible para alguien 'ganar' tu desafío, puedes, opcionalmente, recompensar a dicho ganador con un premio en Gemas. El máximo número de Gemas que puedes entregar es el número de Gemas que tú posees (más el número de Gemas del Gremio, si tú creaste el Gremio de este desafío). Nota: este premio no puede ser cambiado más adelante. ", "prizePopTavern": "Si es posible 'ganar' tu desafío, puedes premiar al ganador con Gemas. Máximo = número de Gemas que posees. Nota: este premio no puede ser cambiado más adelante, y no te será reembolsado si el Desafío es cancelado.", "publicChallenges": "Mínimo 1 Gema para desafíos públicos (ayuda a prevenir el spam, de verdad que sí).", "officialChallenge": "Desafío oficial de Habitica", @@ -59,7 +59,7 @@ "challengeNotEnoughGems": "No tienes suficientes Gemas para publicar este Desafío.", "noPermissionEditChallenge": "No tienes permiso para editar este desafío", "noPermissionDeleteChallenge": "No tienes permiso para eliminar este desafío", - "noPermissionCloseChallenge": "No tienes permiso para cerrar este desafío", + "noPermissionCloseChallenge": "No tienes permiso para cerrar este desafío o reto.", "congratulations": "Felicidades!", "hurray": "Muy bien!", "noChallengeOwner": "sin dueño", diff --git a/common/locales/es/character.json b/common/locales/es/character.json index e632f2fddb..ac5d398b79 100644 --- a/common/locales/es/character.json +++ b/common/locales/es/character.json @@ -1,7 +1,7 @@ { "statsAch": "Estadísticas y Logros", "profile": "Perfil", - "avatar": "Avatar", + "avatar": "Personalizar avatar", "other": "Otro", "fullName": "Nombre Completo", "displayName": "Nombre de Usuario", @@ -34,6 +34,7 @@ "beard": "Barba", "mustache": "Bigote", "flower": "Flor", + "wheelchair": "Wheelchair", "basicSkins": "Pieles Básicas", "rainbowSkins": "Pieles Arcoiris", "pastelSkins": "Pieles pastel", @@ -83,7 +84,7 @@ "allocateInt": "Puntos asignados a Inteligencia:", "allocateIntPop": "Añadir un punto a Inteligencia", "noMoreAllocate": "Ahora que has alcanzado el nivel 100, no ganarás más puntos de atributo. Puedes seguir subiendo de nivel o empezar una nueva aventura desde el nivel 1 con la Orbe de renacimiento, ya disponible gratis en el Mercado.", - "stats": "Estadísticas", + "stats": "Atributos del avatar", "strength": "Fuerza", "strengthText": "La fuerza aumenta la probabilidad de conseguir «golpes críticos» aleatorios y el Oro, la Experiencia y la probabilidad de conseguir botín al asestarlos. También ayuda a hacer daño a los monstruos jefe.", "constitution": "Constitución", @@ -136,7 +137,7 @@ "respawn": "¡Reaparecer!", "youDied": "¡Has muerto!", "dieText": "Has perdido un Nivel, todo tu Oro y una pieza de equipamiento al azar. ¡Levántate Habiteer e inténtalo otra vez! ¡Ataca esos Hábitos negativos, mantente atento para cumplir las tareas Diarias y mantén a la muerte a raya con una Poción de Salud cuando falles!", - "sureReset": "¿Estás seguro? Esto deshará la clase de tu personaje y los puntos que hayas asignado (los recibirás todos nuevamente), cuesta 3 gemas.", + "sureReset": "¿Seguro? Se restablecerán la clase y los puntos asignados a tu personaje (que recuperarás y podrás volver a asignar), y te costará 3 gemas.", "purchaseFor": "¿Comprar por <%= cost %> Gemas?", "notEnoughMana": "No hay suficiente Maná.", "invalidTarget": "Objetivo inválido", @@ -160,5 +161,8 @@ "str": "FUE", "con": "CON", "per": "PER", - "int": "INT" + "int": "INT", + "showQuickAllocation": "Mostrar asignación de puntos", + "hideQuickAllocation": "Ocultar asignación de puntos", + "quickAllocationLevelPopover": "Con cada nivel, ganas un punto que puedes asignar al atributo que elijas. Puedes hacerlo de forma manual o dejar que el juego decida por ti con una de las opciones de asignación automática que encontrarás en Usuario -> Estadísticas." } \ No newline at end of file diff --git a/common/locales/es/communityguidelines.json b/common/locales/es/communityguidelines.json index 823a7211a3..286faf71c2 100644 --- a/common/locales/es/communityguidelines.json +++ b/common/locales/es/communityguidelines.json @@ -29,7 +29,7 @@ "commGuidePara013": "En una comunidad tan grande como Habitica los usuarios vienen y van, a veces un moderador necesita bajar su manto de noble y relajarse. Los siguientes son los Moderadores emérito. Ellos ya no actúan con el poder de un Moderador, ¡pero nos gustaría seguir honrando su trabajo!", "commGuidePara014": "Moderadores emérito:", "commGuideHeadingPublicSpaces": "Espacios Públicos en Habítica", - "commGuidePara015": "Habitica tiene dos tipos de espacios sociales: publicos, y privados. Espacios publicos incluyen la Taberna, los Gremios Publicos, el GitHub, el Trello, y la Wiki. Los espacios privados tiene los Gremios Privados, el chat de grupo, y mensajes privados.", + "commGuidePara015": "En Habitica hay dos tipos de espacios para socializar: los públicos y los privados. Los públicos incluyen la Taberna, los gremios públicos, GitHub, Trello y la Wiki. Los espacios privados incluyen los gremios privados, el chat del grupo y los mensajes privados. Todos los nombres de usuario deben cumplir las normas de los espacios públicos. Si quieres cambiar tu nombre de usuario, ve a Usuario > Perfil en el sitio web y haz clic en el botón \"Editar\".", "commGuidePara016": "Al recorrer los espacios públicos de Habitica, hay algunas reglas generales para mantener a todo el mundo seguro y feliz. ¡Deberían ser sencillas para aventureros como tú!", "commGuidePara017": " Respetaros los unos a los otros. Se cortés, amable, amigable, y útil. Recuerda: Los Habititante son de muchos antecedentes diferentes y han tenido experiencias diferentes. ¡Eso es parte de lo que haze Habitica tan guay! Formar una comunidad significa respetar y celebrar nuestras diferencias y nuestras similitudes. Aqui hay algunas formas faciles de ser respertar a otros:", "commGuideList02A": "Obedece todos los Términos y Condiciones.", @@ -40,14 +40,14 @@ "commGuideList02F": "Cumple de inmediato con cualquier petición del Moderador de cesar un discurso o moverlo al Rincón del Fondo. Palabras últimas, quejas finales, y puntadas conclusivas deben ser dichos (con cortesía) a su \"mesa\" en el Rincón del Fondo, si está permitido.", "commGuideList02G": "Tome tiempo para reflexionar en vez de responder con enojo si alguien te avise que algo que dijiste o hiciste le hizo incomodo. Hay mucha fuerza en poder disculparse sinceramente con alguien. Si te sentís que fue inapropriada la forma en que te respondieron, póngate en contacto con un moderador en vez de públicamente llamarlo al cabo.", "commGuideList02H": "Las conversaciones polémicas o que causan divisiones deben ser comunicadas a los moderadores. Si notas que una conversación se calienta, se vuelve excesivamente emocional o hiriente, deja de involucrarte. En vez de ello, envía un e-mail a leslie@habitica.com para hacérnoslo saber. Es nuestro trabajo mantenerte a salvo.", - "commGuideList02I": "No hagas spam. Spamear puede incluir, pero no está limitado a ello: publicar el mismo comentario o pregunta en multiples lugares, publicar enlaces sin explicación o contexto, publicar mensajes sin sentido, o publicar muchos mensajes a la vez. Pedir gemas o una suscripción repetidamente puede considerarse también como spam.", - "commGuidePara019": "En lugares privados, usuarios tienen más libertad para conversar sobre cualquier tema, sin embargo no pueden violar los Términos y Condiciones, incluyendo publicar contenidos discriminatorios, violentos, o amenazantes.", + "commGuideList02I": "No envíes spam. Se entiende por spam, entre otros: publicar el mismo comentario o la misma pregunta en varios lugares, publicar enlaces sin explicación ni contexto, publicar mensajes sin sentido y publicar muchos mensajes seguidos. También se considera spam pedir gemas o una suscripción en cualquiera de los espacios de chat o a través de mensajes privados.", + "commGuidePara019": "En los espacios privados, los usuarios tienen más libertad para hablar de los temas que prefieran, pero tampoco pueden infringir los Términos y Condiciones: entre otras cosas, no pueden publicar ningún contenido discriminatorio, violento ni amenazante. Ten en cuenta que, dado que los nombres de los desafíos aparecen en el perfil público del ganador, TODOS los nombres de desafío deben cumplir las normas de los espacios públicos, aunque aparezcan en un espacio privado.", "commGuidePara020": "los Mensajes Privados (MPs) tienen algunas reglas adicionales. Si alguien te ha bloqueado, no lo contactes por otro lugar para pedir que te desbloquee. Adicionalmente, no debes mandar MPs a alguien para pedirle ayuda (porque las respuestas públicas en cuestiones de soporte son útiles para la comunidad). Finalmente, no mandes a nadie MPs pidiendo un regalo de gemas o una suscripción, puesto que puede ser considerado spam.", "commGuidePara021": "Aunque, algunos espacios públicos de habitica tienen sus normas adicionales.", "commGuideHeadingTavern": "La Taberna", "commGuidePara022": "La Taberna es el lugar principal de los Habiticanos para socializar. Daniel el Tabernero mantiene la limpieza, y con gusto Lemoness te evocará una limonada mientras te sientas y converssas. Solo ten en cuenta...", "commGuidePara023": "La conversación suele incluir charlas informales y consejos de mejorar la productividad o la vida.", - "commGuidePara024": "Porque el chat de la Taberna solo puede acomodar 200 mensajes, no es un lugar bueno para conversaciones excesivas, especialmente las que son delicadas (ej. política, religión, depresión, si se debe prohibir la caza de trasgos, etc.). Se debe llevar estas conversaciones a un gremio pertinente o al Rincón Trasero (más información ajabo).", + "commGuidePara024": "Porque el chat de la Taberna solo puede acomodar 200 mensajes, no es un lugar bueno para conversaciones excesivas, especialmente las que son delicadas (ej. política, religión, depresión, si se debe prohibir la caza de trasgos, etc.). Se debe llevar estas conversaciones a un gremio pertinente o al Rincón Trasero (más información abajo).", "commGuidePara027": "No converses sobre nada adictiva en la Taberna. Mucha gente usan Habitica para intentar dejar sus hábitos malos. Escuchar a otros hablando de sustancias adictivas/ilegales puede hacer más difícil su intento! Ten respeto por tus compañeros de la Taberna, y ten en cuenta esto. Incluye, pero no exclusivamente: fumar, alcohol, pornografía, juegos de apuesto, y uso/abuso de drogas.", "commGuideHeadingPublicGuilds": "Gremios Públicos", "commGuidePara029": "Gremios públicos son como la Taberna, menos que en vez de centrarse sobre conversación general, tiene un tema específico. Charla publica del gremio se debe enfocar en su tema. Por ejemplo, podría ser que miembros del gremo Wordsmiths se enojan si la conversación de repente enfoca en jardinería en vez de escritura, y puede ser que un gremio de aficionados de dragones no tiene interés en decifrar runas antiguas. Algunos gremios son menos exijentes que otros, pero en general, quédate con el tema!", diff --git a/common/locales/es/content.json b/common/locales/es/content.json index 8d15d135b2..b4a393ca00 100644 --- a/common/locales/es/content.json +++ b/common/locales/es/content.json @@ -31,7 +31,7 @@ "dropEggCactusAdjective": "un Espinoso", "dropEggBearCubText": "Cachorro de oso", "dropEggBearCubMountText": "Oso", - "dropEggBearCubAdjective": "un Mimoso", + "dropEggBearCubAdjective": "un valiente", "questEggGryphonText": "Grifo", "questEggGryphonMountText": "Grifo", "questEggGryphonAdjective": "digno", @@ -46,7 +46,7 @@ "questEggEggAdjective": "un colorido", "questEggRatText": "Rata", "questEggRatMountText": "Rata", - "questEggRatAdjective": "una sucia", + "questEggRatAdjective": "un sociable", "questEggOctopusText": "Pulpo", "questEggOctopusMountText": "Pulpo", "questEggOctopusAdjective": "un Resbaloso", @@ -107,9 +107,12 @@ "questEggSabretoothText": "tigre dientes de sable", "questEggSabretoothMountText": "tigre dientes de sable", "questEggSabretoothAdjective": "un feroz", - "questEggMonkeyText": "Monkey", - "questEggMonkeyMountText": "Monkey", - "questEggMonkeyAdjective": "a mischievous", + "questEggMonkeyText": "Mono", + "questEggMonkeyMountText": "Mono", + "questEggMonkeyAdjective": "un travieso", + "questEggSnailText": "Caracol", + "questEggSnailMountText": "Caracol", + "questEggSnailAdjective": "un lento pero conciso", "eggNotes": "Encuentra una poción de eclosión para verter en este huevo y eclosionará en <%= eggAdjective(locale) %> <%= eggText(locale) %>.", "hatchingPotionBase": "Base", "hatchingPotionWhite": "Blanco", diff --git a/common/locales/es/contrib.json b/common/locales/es/contrib.json index 58b735543f..15f1dc317d 100644 --- a/common/locales/es/contrib.json +++ b/common/locales/es/contrib.json @@ -28,11 +28,11 @@ "helped": "Ayudó al Crecimiento de Habit", "helpedText1": "Ayudó a que Habitica creciera completando", "helpedText2": "esta encuesta.", - "hall": "Salón", + "hall": "Salón de los Héroes", "contribTitle": "Título de Colaborador (por ejemplo: «Herrero»)", "contribLevel": "Nivel Contribuidor", "contribHallText": "1-7 es para los contribuidores normales, 8 para los moderadores y 9 para el Staff. Esto determina que objetos, mascotas y monturas están disponibles. También determina el color de la etiqueta del nombre. Los niveles 8 y 9 tienen automáticamente el estatus de administrador.", - "hallHeroes": "Salón de Héroes", + "hallContributors": "Salón de los Colaboradores", "hallPatrons": "Salón de Patrocinadores", "rewardUser": "Recompensar Usuario", "UUID": "UUID", @@ -60,5 +60,5 @@ "blurbGuildsPage": "Los gremios son grupos de conversación centrados en intereses comunes y creados por y para los jugadores. Echa un vistazo a la lista y únete a los gremios que te interesen.", "blurbChallenges": "Los jugadores pueden crear desafíos. Si te unes a un desafío, las tareas que contiene se añadirán a tu panel de tareas. Y si ganas el desafío, obtendrás un logro y, muchas veces, ¡gemas de premio!", "blurbHallPatrons": "Este es el Salón de Patrocinadores, donde honramos a los nobles aventureros que colaboraron en el primer Kickstarter de Habitica. ¡Les damos las gracias por haber hecho posible Habitica!", - "blurbHallHeroes": "Este es el Salón de Héroes, donde se honra a los colaboradores del código abierto de Habitica. Por sus códigos, diseños, música, redacción o, simplemente, por ayudar, han recibido gemas, equipos exclusivos y prestigiosos títulos. ¡Tú también puedes colaborar con Habitica! Más información, aquí. " + "blurbHallContributors": "Este es el Salón de los Colaboradores, donde se honra a quienes han colaborado en el código libre de Habitica. Con su labor de programación, arte, música, escritura o, simplemente, su ayuda, han obtenido gemas, objetos exclusivos y prestigiosos títulos. ¡Tú también puedes colaborar con Habitica! Más información, aquí." } \ No newline at end of file diff --git a/common/locales/es/faq.json b/common/locales/es/faq.json index 7c151a62fd..54210932db 100644 --- a/common/locales/es/faq.json +++ b/common/locales/es/faq.json @@ -19,26 +19,26 @@ "iosFaqAnswer5": "¡La mejor manera es invitarles a un Grupo contigo! Los Grupos pueden iniciar misiones, luchar contra monstruos y lanzar hechizos para apoyaros unos a otros. Ve a Menu > Grupos y haz clic en \"Crear un Nuevo Grupo\" si no tienes un Grupo. Luego pincha en la Lista de Miembros y elige Invitar en la esquina superior derecha para invitar a tus amigos introduciendo su Número de Usuario (una cadena de números y letras que ellos pueden encontrar bajo Ajustes > Detalles de la cuenta en la app, y en Ajustes > API en la web). En la web también puedes invitar a tus amigos vía email, que añadiremos a la app en una futura actualización.\n\nEn la web, tú y tus amigos podéis tambien uniros a Gremios, que son Salas de Chat públicas. ¡Los Gremios se añadirán a la app en futuras actualizaciones!", "webFaqAnswer5": "La mejor manera es invitarlos a formar un grupo contigo, en Social > Grupo. Los grupos pueden participar en misiones, combatir monstruos y usar habilidades para ayudarse unos a otros. También podéis uniros juntos a un gremio (Social > Gremios). Los gremios son salas de chat centradas en un interés o un objetivo común, y pueden ser públicos o privados. Puedes formar parte de todos los gremios que quieras, pero solamente puedes unirte a un grupo.\n

\n Para ver más detalles, consulta las páginas de la wiki sobre los [grupos](http://habitrpg.wikia.com/wiki/Party) y los [gremios](http://habitrpg.wikia.com/wiki/Guilds).", "faqQuestion6": "¿Cómo puedo encontrar una mascota o una montura?", - "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.)", + "iosFaqAnswer6": "En nivel 3, ganas accesso a . (Todos los jugadores comienzan como Guerreros por defecto). Cada Clase tiene distintas opciones de equipamiento, distintas habilidades que pueden usar a partir del nivel 11, y distintas ventajas. Los guerreros pueden hacerle daño fácilmente a los Jefes, resistir más daño de sus tareas, y ayudar a que su Equipo se haga más fuerte. Los magos también pueden hacerle mucho daño a los Jefes, y subir rápidamente de nivel y restaurar la maná de su equipo. Los Pícaros son los que más oro ganan y más botines encuentran, y pueden ayudar a que su equipo también lo haga. Finalmente, los Sanadores pueden curarse a ellos mismos y a su equipo. \n", + "webFaqAnswer6": "En el nivel 3 desbloquearás el Sistema de Botines. Cada vez que completes una tarea, tendrás una chance aleatoria de recibir un huevo, una poción de eclosión o un alimento. Éstos serán guardados en Inventario > Mercado.\n

\nPara obtener una mascota necesitarás un huevo y una poción de eclosión. ¡Haz clic en el huevo para determinar la especie que quieres obtener, y luego elige una poción de eclosión para definir su color! Ve a Inventario > Mascotas y haz clic en ella para equiparla.\n

\nTambién puedes hacer que tus Mascotas crezcan hasta convertirse en Monturas alimentándolas desde Inventario > Mascotas. ¡Cliquea en una Mascota y luego selecciona un alimento del menú a la derecha! Tendrás que alimentar a una mascota muchas veces para que pueda convertirse en Montura, pero si descubres cuál es su comida favorita, crecerá más rápido. Utiliza el método de ensayo y error, o [ve los spoilers aquí](http://habitica.wikia.com/wiki/Food#Food_Preferences). Una vez que tengas una Montura, ve a Inventario > Monturas y haz clic en ella para equiparla.\n

\nAdemás puedes obtener huevos de Mascotas de Misión al completar ciertas Misiones. (Lee abajo para saber más sobre Misiones.)", "faqQuestion7": "¿Cómo me convierto en Guerrero, Mago, Pícaro o Sanador?", "iosFaqAnswer7": "En nivel 10, puedes elegir convertirte en Guerrero, Mago, Pícaro o Sanador. (Todos los jugadores comienzan como Guerreros por defecto). Cada Clase tiene distintas opciones de equipamiento, distintas habilidades que pueden usar a partir del nivel 11, y distintas ventajas. Los guerreros pueden hacerle daño fácilmente a los Jefes, resistir más daño de sus tareas, y ayudar a que su Equipo se haga más fuerte. Los magos también pueden hacerle mucho daño a los Jefes, y subir rápidamente de nivel y restaurar la maná de su equipo. Los Pícaros son los que más oro ganan y más botines encuentran, y pueden ayudar a que su equipo también lo haga. Finalmente, los Sanadores pueden curarse a ellos mismos y a su equipo. \n\nSi no quieres elegir una Clase inmediatamente - por ejemplo, si todavía estás trabajando para comprar todo el equipamiento de tu clase actual - puedes hacer clic en \"Decidir más tarde\" y elegir más tarde en Menú > Elegir Clase. ", - "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.", + "webFaqAnswer7": "En el nivel 10, puedes elegir convertirte en Guerrero, Mago, Pícaro o Sanador. (Todos los jugadores comienzan como Guerreros por defecto.) Cada Clase tiene distintas opciones de equipamiento, distintas Habilidades que pueden usar a partir del nivel 11, y distintas ventajas. Los Guerreros pueden hacer daño fácilmente a los Jefes, resistir más daño de sus tareas y ayudar a que su equipo sea más fuerte. Los Magos también pueden hacer daño a los Jefes con facilidad, además de subir rápidamente de nivel y restaurar la Maná de su equipo. Los Pícaros son los que más oro obtienen y más botines encuentran, y pueden ayudar a que su equipo también lo haga. Finalmente, los Sanadores pueden curarse a ellos mismos y a los miembros de su equipo.\n

\nSi no quieres elegir una Clase inmediatamente -- por ejemplo, si todavía estás trabajando para comprar todo el equipamiento de tu clase actual -- puedes hacer clic en \"No usar\" para no utilizar el Sistema de Clases, y reactivarlo más tarde desde Usuario > Estadísticas.", "faqQuestion8": "Cual es la barra estadística azul que aparece en la parte de arrriba después de el nivel 10", - "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.", + "iosFaqAnswer8": "La barra azul que apareció cuando llegaste al nivel 10 y elegiste una Clase es tu barra de Maná. A medida que sigas subiendo de nivel, vas a desbloquear Habilidades especiales que requieren Maná para su uso. Cada Clase tiene diferentes Habilidades, las cuales aparecen después del nivel 11 en Menú > Habilidades. A diferencia de tu barra de Salud, tu barra de Maná no se resetea cuando subes de nivel. En lugar de eso, obtienes Maná cuando completas buenos Hábitos, Diarias y Pendientes, y la pierdes cuando sucumbes a los malos Hábitos. También ganas algo de Maná por la noche -- cuantas más Diarias completes, más Maná ganarás.", + "webFaqAnswer8": "La barra azul que apareció cuando llegaste al nivel 10 y elegiste una Clase es tu barra de Maná. A medida que sigas subiendo de nivel, vas a desbloquear Habilidades especiales que requieren Maná para su uso. Cada Clase tiene diferentes Habilidades, las cuales aparecen después del nivel 11 en una sección especial de la columna de Recompensas. A diferencia de tu barra de Salud, tu barra de Maná no se resetea cuando subes de nivel. En lugar de eso, obtienes Maná cuando completas buenos Hábitos, Diarias y Pendientes, y la pierdes cuando sucumbes a los malos Hábitos. También ganas algo de Maná por la noche -- cuantas más Diarias completes, más Maná ganarás.", "faqQuestion9": "¿Cómo peleo con los monstruos y hago misiones?", "iosFaqAnswer9": "Primero, necesitas unirse o iniciar un grupo (ve encima). ", - "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.", + "webFaqAnswer9": "Primero, necesitas crear o unirte a un equipo (desde Social > Equipo). Aunque puedes luchar contra monstruos solo, te recomendamos que juegues en grupo, porque así las misiones serán más fáciles. ¡Además, tener un amigo alentándote cuando completas tus tareas es muy motivador!\n

\nLuego necesitarás un Pergamino de Misión, los cuales son guardados en Inventario > Misiones. Hay tres formas de conseguir un pergamino:\n

\n- Cuando invites a gente a tu equipo, ¡serás recompensado con el Pergamino de la Basilista!\n- En el nivel 15 recibes una Serie de Misiones, es decir, tres misiones vinculadas. Más Series de Misiones serán desbloqueadas en los niveles 30, 40 y 60 respectivamente.\n- Puedes comprar Misiones en la Página de Misiones (Inventario > Misiones) con Oro y Gemas.\n

\nPara luchar contra el Jefe o recolectar ítems para una Misión de Recolección, sólo completa tus tareas normalmente, y su daño será computado por la noche. (Puede que sea necesario volver a cargar la página para ver una reducción en la barra de Salud del Jefe.) Si estás luchando contra un Jefe y no completaste alguna Diaria, el Jefe le hará daño a tu equipo al mismo tiempo que tú le haces daño a él.\n

\nA partir del nivel 11, los Magos y los Guerreros obtendrán Habilidades que les permiten hacerle daño adicional al Jefe, por lo cual éstas son excelentes clases para elegir en el nivel 10 si quieres ser un peso pesado.", "faqQuestion10": "¿Que son gemas, y como puedo obtener ellas?", - "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!", + "iosFaqAnswer10": "Las gemas pueden ser compradas con dinero real haciendo clic en el ícono de la gema en la cabecera. Cuando la gente compra gemas, nos están ayudando a mantener funcionando el sitio. ¡Estamos muy agradecidos por su apoyo!\n\nAdemás de comprar gemas directamente, hay otras tres formas en las que los jugadores pueden obtenerlas:\n\n* Gana un Desafío creado por otro jugador en el [sitio web](https://habitica.com) en el menú Social > Desafíos. (¡Incorporaremos los Desafíos a la app en una actualización futura!)\n* Suscríbete en el [sitio web](https://habitica.com/#/options/settings/subscription) y desbloquea la capacidad de comprar un cierto número de gemas por mes.\n* Contribuye con tus habilidades al proyecto Habitica. Echa un vistazo a esta página en la wiki para más detalles: [Contribuir a Habitica](http://habitica.wikia.com/wiki/Contributing_to_Habitica).\n\nTen en cuenta que los artículos comprados con gemas no ofrecen ninguna ventaja estadística, ¡por lo que los jugadores igual pueden hacer uso de la app sin ellos!", + "webFaqAnswer10": "Las Gemas pueden ser [compradas con dinero real](https://habitica.com/#/options/settings/subscription), aunque los [suscriptores](https://habitica.com/#/options/settings/subscription) las pueden comprar con Oro. Cuando la gente se suscribe o compra Gemas, nos están ayudando a mantener funcionando el sitio. ¡Estamos muy agradecidos por su apoyo!\n

\nAdemás de comprar Gemas directamente o de volverse suscriptores, hay otras dos formas en las que los jugadores pueden obtenerlas:\n

\n* Gana un Desafío creado por otro jugador en el menú Social > Desafíos.\n* Contribuye con tus habilidades al proyecto Habitica. Echa un vistazo a esta página en la wiki para más detalles: [Contribuir a Habitica](http://habitica.wikia.com/wiki/Contributing_to_Habitica).\n

\nTen en cuenta que los artículos comprados con Gemas no ofrecen ninguna ventaja estadística, ¡por lo que los jugadores igual pueden hacer uso del sitio sin ellos!", "faqQuestion11": "Como reportó un bug o solicitó una característica ", "iosFaqAnswer11": "Puedes reportar un bug, solicitar una característica, o ", "webFaqAnswer11": "Los informes de errores se recogen en GitHub. Ve a [Ayuda > Notificar un error] (https://github.com/HabitRPG/habitrpg/issues/2760) y sigue las instrucciones. No te preocupes, ¡los tendrás arreglados pronto!\n

\nLas solicitudes de características se recogen en Trello. Ve a [Ayuda > Solicitar una característica](https://trello.com/c/odmhIqyW/440-read-first-table-of-contents) y sigue las instrucciones. ¡Ta-da!", "faqQuestion12": "¿Cómo puedo combatir un jefe de mundo?", - "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 or on the [Wiki FAQ](http://habitica.wikia.com/wiki/FAQ), 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 or on the [Wiki FAQ](http://habitica.wikia.com/wiki/FAQ), come ask in the [Newbies Guild](https://habitica.com/#/options/groups/guilds/5481ccf3-5d2d-48a9-a871-70a7380cee5a)! We're happy to help." + "iosFaqAnswer12": "Los Jefes Globales son monstruos especiales que aparecen en la Taberna. Cuando esto ocurre, todos los usuarios activos están automáticamente peleando contra el Jefe, y sus tareas y habilidades dañarán al Jefe como de costumbre. \n\nPuedes estar en una Misión normal al mismo tiempo. Tus tareas y habilidades contarán tanto contra el Jefe Global como contra el Jefe o la Misión de Recolección en tu Equipo.\n\nUn Jefe Global no te hará daño a ti ni a tu cuenta de ninguna forma. En vez de eso, tiene una Barra de Ira que se va llenando cuando los usuarios no completan sus Diarias. Si la Barra de Ira se llena, el Jefe atacará a uno de los Personajes No Jugadores del sitio y su imagen cambiará. \n\nPuedes leer más sobre [Jefes Globales pasados](http://habitica.wikia.com/wiki/World_Bosses) en la wiki.", + "webFaqAnswer12": "Los Jefes Globales son monstruos especiales que aparecen en la Taberna. Cuando esto ocurre, todos los usuarios activos están automáticamente peleando contra el Jefe, y sus tareas y habilidades dañarán al Jefe como de costumbre. \n

\nPuedes estar en una Misión normal al mismo tiempo. Tus tareas y habilidades contarán tanto contra el Jefe Global como contra el Jefe o la Misión de Recolección en tu Equipo.\n

\nUn Jefe Global no te hará daño a ti ni a tu cuenta de ninguna forma. En vez de eso, tiene una Barra de Ira que se va llenando cuando los usuarios no completan sus Diarias. Si la Barra de Ira se llena, el Jefe atacará a uno de los Personajes No Jugadores del sitio y su imagen cambiará. \n

\nPuedes leer más sobre [Jefes Globales pasados](http://habitica.wikia.com/wiki/World_Bosses) en la wiki.", + "iosFaqStillNeedHelp": "Si tienes alguna pregunta que no esté en la lista o en las [preguntas frecuentes de la Wiki](http://habitica.wikia.com/wiki/FAQ), ven a preguntar al chat de la Taberna, en Menu > Social > Taberna. ¡Estaremos encantados de ayudar!", + "webFaqStillNeedHelp": "Si tienes alguna pregunta que no esté en esta lista o en las [preguntas frecuentes de la Wiki](http://habitica.wikia.com/wiki/FAQ), ven a preguntar al Gremio [The Newbies] (https://habitica.com/#/options/groups/guilds/5481ccf3-5d2d-48a9-a871-70a7380cee5a)! ¡Estaremos encantados de ayudar!" } \ No newline at end of file diff --git a/common/locales/es/front.json b/common/locales/es/front.json index 58f70e5e4e..2ba8eb581d 100644 --- a/common/locales/es/front.json +++ b/common/locales/es/front.json @@ -124,7 +124,7 @@ "motivate1": "Motívate para hacer cualquier cosa.", "motivate2": "Organízate. Motívate. Obtén Oro", "passConfirm": "Confirmar Contraseña", - "passMan": "In case you are using a password manager (like 1Password) and have problems logging in, try typing your username and password manually.", + "passMan": "Si estás usando un gestor de contraseñas (como 1Password) y tienes problemas para iniciar sesión, prueba a escribir tu nombre de usuario y contraseña de forma manual.", "password": "Contraseña", "playButton": "Jugar", "playButtonFull": "Jugar Habitica", @@ -165,7 +165,7 @@ "teams": "Equipos", "terms": "Términos y Condiciones", "testimonialHeading": "Lo que dice la gente...", - "localStorageTryFirst": "If you are experiencing problems with Habitica, click the button below to clear local storage for this website (other websites will not be affected). You will need to log in again after doing this, so first be sure that you know your log-in details, which can be found at Settings -> <%= linkStart %>Site<%= linkEnd %>.", + "localStorageTryFirst": "Si tienes algún problema con Habitica, haz clic en el botón siguiente para borrar el almacenamiento local de este sitio web (esta acción no afectará a los demás sitios web). Después de hacerlo, tendrás que iniciar sesión otra vez: asegúrate de tener los datos de inicio de sesión, que puedes consultar en Ajustes -> <%= linkStart %>Sitio<%= linkEnd %>.", "localStorageTryNext": "Si el problema persiste, <%= linkStart %>informa de un error<%= linkEnd %> si aún no lo has hecho.", "localStorageClearing": "Borrando almacenamiento local", "localStorageClearingExplanation": "Se está borrando el almacenamiento local del navegador. La sesión se cerrará y volverás a la página de inicio. Espera, por favor.", @@ -195,7 +195,7 @@ "landingCopy3": "Únete a las más de <%= userCount %> personas que se divierten al mismo tiempo que mejoran sus vidas.", "alreadyHaveAccount": "Ya tengo una cuenta!", "getStartedNow": "Empieza ahora!", - "altAttrNavLogo": "Habitica home", + "altAttrNavLogo": "Inicio de Habitica", "altAttrLifehacker": "Lifehacker", "altAttrNewYorkTimes": "The New York Times", "altAttrMakeUseOf": "MakeUseOf", diff --git a/common/locales/es/gear.json b/common/locales/es/gear.json index 2b62366cdb..b65be33894 100644 --- a/common/locales/es/gear.json +++ b/common/locales/es/gear.json @@ -1,4 +1,5 @@ { + "set": "Juego", "weapon": "arma", "weaponBase0Text": "Sin arma", "weaponBase0Notes": "Sin arma.", @@ -115,7 +116,7 @@ "weaponSpecialSpring2015WarriorText": "Porra de Hueso", "weaponSpecialSpring2015WarriorNotes": "Es una auténtica Porra de Hueso para auténticos y fieros cahorritos, no es para nada uno de esos mordedores que te podrían dar los Hechiceros Estacionales porque, ¿quién es un buen chico? ¿Quiéeen es un buen chico? ¡¡Tú!! ¡¡Tú eres un buen chico!! Aumenta la fuerza en <%= str %>. Equipamiento de Primavera 2015 Edición Limitada", "weaponSpecialSpring2015MageText": "Varita de Mago", - "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": "Conjúrate una zanahoria con esta sofisticada varita. Incrementa la Inteligencia por <%= int %> y Percepción por <%= per %>. Equipamiento de Edición Limitada de Primavera 2015.", "weaponSpecialSpring2015HealerText": "Cascabel de Gato", "weaponSpecialSpring2015HealerNotes": "Cuando lo ondeas, hace un click tan fascinante que mantendría a CUALQUIERA entretenido por horas. Aumenta la Inteligencia en <%= int %>. Equipamiento de Primavera 2015, Edición Limitada", "weaponSpecialSummer2015RogueText": "Coral de Fuego", @@ -126,22 +127,30 @@ "weaponSpecialSummer2015MageNotes": "En las joyas de este báculo, brilla tenuemente un poder secreto. Suma <%= int %> de inteligencia y <%= per %> de percepción. Equipo de Edición Limitada, verano del 2015.", "weaponSpecialSummer2015HealerText": "Varita de las Olas", "weaponSpecialSummer2015HealerNotes": "Evita que te marees en el mar y, además, que sientas mareo. Suma <%= int %> de inteligencia. Equipo de Edición Limitada, verano del 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.", + "weaponSpecialFall2015RogueText": "Hacha de Bati-Batalla", + "weaponSpecialFall2015RogueNotes": "Las Pendientes aterradoras se encogen de miedo ante el batido de este hacha. Incrementa la Fuerza por <%= str %>. Equipamiento de Edición Limitada de Otoño 2015.", "weaponSpecialFall2015WarriorText": "Tabla de madera", - "weaponSpecialFall2015WarriorNotes": "Great for elevating things in cornfields and/or smacking tasks. Increases Strength by <%= str %>. Limited Edition 2015 Autumn Gear.", + "weaponSpecialFall2015WarriorNotes": "Excelente para elevar cosas en los maizales y/o abofetear a tus tareas. Incrementa la Fuerza por <%= str %>. Equipamiento de Edición Limitada de Otoño 2015.", "weaponSpecialFall2015MageText": "Hilo Encantado", - "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.", + "weaponSpecialFall2015MageNotes": "¡Una poderosa Bruja de la Aguja puede controlar este hilo encantado sin siquiera tocarlo! Incrementa la Inteligencia por <%= int %> y la Percepción por <%= per %>. Equipamiento de Edición Limitada de Otoño 2015.", + "weaponSpecialFall2015HealerText": "Poción de Cieno de Pantano", + "weaponSpecialFall2015HealerNotes": "¡Preparada a la perfección! Ahora sólo tienes que convencerte de beberla. Incrementa la Inteligencia por <%= int %>. Equipamiento de Edición Limitada de Otoño 2015.", "weaponSpecialWinter2016RogueText": "Taza de chocolate", - "weaponSpecialWinter2016RogueNotes": "Warming drink, or boiling projectile? You decide... Increases Strength by <%= str %>. Limited Edition 2015-2016 Winter Gear.", - "weaponSpecialWinter2016WarriorText": "Sturdy Shovel", - "weaponSpecialWinter2016WarriorNotes": "Shovel overdue tasks out of the way! Increases Strength by <%= str %>. Limited Edition 2015-2016 Winter Gear.", - "weaponSpecialWinter2016MageText": "Sorcerous Snowboard", - "weaponSpecialWinter2016MageNotes": "Your moves are so sick, they must be magic! Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2015-2016 Winter Gear.", - "weaponSpecialWinter2016HealerText": "Confetti Cannon", - "weaponSpecialWinter2016HealerNotes": "WHEEEEEEEEEE!!!!!!! HAPPY WINTER WONDERLAND!!!!!!!! Increases Intelligence by <%= int %>. Limited Edition 2015-2016 Winter Gear.", + "weaponSpecialWinter2016RogueNotes": "¿Bebida caliente, o proyectil ardiente? Tú decides... Incrementa la Fuerza por <%= str %>. Equipamiento de Edición Limitada de Invierno 2015-2016.", + "weaponSpecialWinter2016WarriorText": "Pala Robusta", + "weaponSpecialWinter2016WarriorNotes": "¡Palea a las tareas vencidas fuera de tu camino! Incrementa la Fuerza por <%= str %>. Equipamiento de Edición Limitada de Invierno 2015-2016.", + "weaponSpecialWinter2016MageText": "Tabla de Snowboard Hechizada", + "weaponSpecialWinter2016MageNotes": "¡Tus movimientos son tan geniales que debe ser magia! Incrementa la Inteligencia por <%= int %> y la Percepción por <%= per %>. Equipamiento de Edición Limitada de Invierno 2015-2016.", + "weaponSpecialWinter2016HealerText": "Cañón de confeti", + "weaponSpecialWinter2016HealerNotes": "¡¡¡¡¡¡¡WIIIIIIIIIIIIIIIII!!!!!!! ¡¡¡¡¡¡¡FELIZ WINTER WONDERLAND!!!!!!! Incrementa la Inteligencia por <%= int %>. Equipamiento de Edición Limitada de Invierno 2015-2016.", + "weaponSpecialSpring2016RogueText": "Bolas de Fuego", + "weaponSpecialSpring2016RogueNotes": "You've mastered the ball, the club, and the knife. Now you advance to juggling fire! Awoo! Increases Strength by <%= str %>. Limited Edition 2016 Spring Gear.", + "weaponSpecialSpring2016WarriorText": "Cheese Mallet", + "weaponSpecialSpring2016WarriorNotes": "Nadie tiene tantos amigos como el ratón con tiernos quesos. Incrementa la Fuerza en <%= str %>. Equipamiento de Edición Limitada de Primavera 2016.", + "weaponSpecialSpring2016MageText": "Staff of Bells", + "weaponSpecialSpring2016MageNotes": "Abra-cat-abra! So dazzling, you might mesmerize yourself! Ooh... it jingles... Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2016 Spring Gear.", + "weaponSpecialSpring2016HealerText": "Varita de Flor de Primavera", + "weaponSpecialSpring2016HealerNotes": "With a wave and a wink, you bring the fields and forests into bloom! Or bop troublesome mice on the head. Increases Intelligence by <%= int %>. Limited Edition 2016 Spring Gear.", "weaponMystery201411Text": "Horca de Banquete", "weaponMystery201411Notes": "Clávasela a tus enemigos o ataca tus comidas favoritas - ¡esta horca versátil vale para todo! No confiere ningún beneficio. Artículo de suscriptor de noviembre 2014.", "weaponMystery201502Text": "Báculo Reluciente Alado del Amor y También de la Verdad", @@ -157,25 +166,29 @@ "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": "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": "Aunque parezca modesta, esta espada ha creado muchos héroes míticos. Incrementa la Percepción y la Fuerza por <%= attrs %> cada una. Armario Encantado: Conjunto de Toga Dorada (Artículo 3 de 3).", "weaponArmoireIronCrookText": "Cayado 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": "Martillada ferozmente a partir de hierro, este cayado de hierro es bueno para arrear ovejas. Incrementa la Percepción y la Fuerza por <%= attrs %> cada una. Armario Encantado: Conjunto de Hierro con Cuernos (Artículo 3 de 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 <%= per %>, Constitution by <%= con %>, and Strength by <%= str %>. Enchanted Armoire: Independent Item.", - "weaponArmoireGlowingSpearText": "Glowing Spear", - "weaponArmoireGlowingSpearNotes": "This spear hypnotizes wild tasks so you can attack them. Increases Strength by <%= str %>. Enchanted Armoire: Independent Item.", - "weaponArmoireBarristerGavelText": "Barrister Gavel", - "weaponArmoireBarristerGavelNotes": "Order! Increases Strength and Constitution by <%= attrs %> each. Enchanted Armoire: Barrister Set (Item 3 of 3).", - "weaponArmoireJesterBatonText": "Jester Baton", - "weaponArmoireJesterBatonNotes": "With a wave of your baton and some witty repartee, even the most complicated situations become clear. Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Jester Set (Item 3 of 3).", + "weaponArmoireBatWandNotes": "¡Esta varita puede convertir a cualquier tarea en un murciélago! Agítala en el aire y ve cómo se van volando. Incrementa la Inteligencia por <%= int %> y la Percepción por <%= per %>. Armario Encantado: Artículo Independiente.", + "weaponArmoireShepherdsCrookText": "Cayado de Pastor", + "weaponArmoireShepherdsCrookNotes": "Útil para arrear grifos. Incrementa la Constitución por <%= con %>. Armario Encantado: Conjunto de Pastor (Artículo 1 de 3).", + "weaponArmoireCrystalCrescentStaffText": "Báculo de Cristal Creciente", + "weaponArmoireCrystalCrescentStaffNotes": "¡Invoca el poder de la luna en cuarto creciente con este báculo resplandeciente! Incrementa la Inteligencia y la Fuerza por <%= attrs %> cada una. Armario Encantado: Conjunto de Cristal Creciente (Artículo 3 de 3).", + "weaponArmoireBlueLongbowText": "Arco largo azul", + "weaponArmoireBlueLongbowNotes": "Prepara... Apunta... ¡Fuego! Este arco tiene un gran alcance. Incrementa la Percepción por <%= per %>, la Constitución por <%= con %> y la Fuerza por <%= str %>. Armario Encantado: Artículo Independiente.", + "weaponArmoireGlowingSpearText": "Lanza Resplandeciente", + "weaponArmoireGlowingSpearNotes": "Esta lanza hipnotiza a las tareas salvajes para que puedas atacarlas. Incrementa la Fuerza por <%= str %>. Armario Encantado: Artículo Independiente.", + "weaponArmoireBarristerGavelText": "Martillo de Juez", + "weaponArmoireBarristerGavelNotes": "¡Orden! Incrementa la Fuerza y la Constitución por <%= attrs %> cada una. Armario Encantado: Conjunto de Juez (Artículo 3 de 3).", + "weaponArmoireJesterBatonText": "Bastón de Bufón", + "weaponArmoireJesterBatonNotes": "Con una sacudida de tu bastón y una conversación ingeniosa, hasta las situaciones más complicadas se pueden calmar. Incrementa la Inteligencia y la Percepción por <%= attrs %> cada una. Armario Encantado: Conjunto de Bufón (Artículo 3 de 3).", + "weaponArmoireMiningPickaxText": "Pico de Minero", + "weaponArmoireMiningPickaxNotes": "Obtén la cantidad máxima de oro que puedas de tus tareas! Aumenta Percepción <%= per %>. Armario Encantado: Kit del Minero (Objeto 3 de 3).", + "weaponArmoireBasicLongbowText": "Basic Longbow", + "weaponArmoireBasicLongbowNotes": "A serviceable hand-me-down bow. Increases Strength by <%= str %>. Enchanted Armoire: Basic Archer Set (Item 1 of 3).", "armor": "armadura", "armorBase0Text": "Ropa normal", "armorBase0Notes": "Ropa normal. No otorga ningún beneficio.", @@ -212,7 +225,7 @@ "armorHealer1Text": "Túnica de acólito", "armorHealer1Notes": "Prenda que muestra humildad y propósito. Aumenta constitución en <%= con %>", "armorHealer2Text": "Túnica de médico", - "armorHealer2Notes": "Llevada por aquellos dedicados a atender a los heridos en batalla. Aumenta la constitución en <%= int %>", + "armorHealer2Notes": "Llevada por aquellos dedicados a atender a los heridos en batalla. Aumenta la constitución en <%= con %>.", "armorHealer3Text": "Manto del defensor", "armorHealer3Notes": "Concentra la magia del sanador en si mismo para evadir el daño. Aumenta la constitución en <%= con %>", "armorHealer4Text": "Manto del médico", @@ -239,10 +252,10 @@ "armorSpecialBirthdayNotes": "¡Feliz Cumpleaños, Habitica! Vístete con esta Ropa Absurda de Fiesta para celebrar este maravilloso día. No confiere ningún beneficio.", "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.", - "armorSpecialBirthday2016Text": "Ridiculous Party Robes", - "armorSpecialBirthday2016Notes": "Happy Birthday, Habitica! Wear these Ridiculous Party Robes to celebrate this wonderful day. Confers no benefit.", + "armorSpecialBirthday2016Text": "Túnica Ridícula de Fiesta", + "armorSpecialBirthday2016Notes": "¡Feliz Cumpleaños, Habitica! Usa esta Túnica Ridícula de Fiesta para celebrar este maravilloso día. No otorga ningún beneficio.", "armorSpecialGaymerxText": "Armadura de Guerrero del Arco Iris", - "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.", + "armorSpecialGaymerxNotes": "Con motivo de la celebración por la Conferencia GaymerX, ¡esta armadura especial está decorada con un radiante y colorido estampado arco iris! GaymerX es una convención de juegos que celebra a la gente LGBTQ y a los videojuegos, y está abierta a todo el público.", "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.", @@ -307,6 +320,14 @@ "armorSpecialWinter2016MageNotes": "Todo buen mago sabe protegerse bien del viento invernal. Suma <%= int %> de inteligencia. Edición limitada, invierno 2015-2016.", "armorSpecialWinter2016HealerText": "Capa de hada festiva", "armorSpecialWinter2016HealerNotes": "Las hadas festivas se envuelven en sus alas corporales para protegerse y usan las alas de la cabeza para aprovechar el viento de cara. Así, vuelan por Habitica a velocidades de hasta 160 km/h, entregando regalos y cubriendo a todos de confetti. Vamos, graciosísimas. Suma <%= con %> de constitución. Edición limitada, invierno 2015-2016.", + "armorSpecialSpring2016RogueText": "Canine Camo Suit", + "armorSpecialSpring2016RogueNotes": "A clever pup knows to choose a brighter guise for concealment when everything is green and vibrant. Increases Perception by <%= per %>. Limited Edition 2016 Spring Gear.", + "armorSpecialSpring2016WarriorText": "Correo Poderoso", + "armorSpecialSpring2016WarriorNotes": "Though you be but little, you are fierce! Increases Constitution by <%= con %>. Limited Edition 2016 Spring Gear.", + "armorSpecialSpring2016MageText": "Grand Malkin Robes", + "armorSpecialSpring2016MageNotes": "Brightly colored, so you won't be mistaken for a necromouser. Increases Intelligence by <%= int %>. Limited Edition 2016 Spring Gear.", + "armorSpecialSpring2016HealerText": "Fluffy Bunny Breeches", + "armorSpecialSpring2016HealerNotes": "Hippity hop! Bound from hill to hill, healing those in need. Increases Constitution by <%= con %>. Limited Edition 2016 Spring Gear.", "armorMystery201402Text": "Túnica de Mensajero", "armorMystery201402Notes": "Reluciente y fuerte, esta túnica tiene muchos bolsillos para llevar cartas. No proporciona ningún beneficio. Artículo de suscriptor de febrero 2014.", "armorMystery201403Text": "Armadura del Caminante del Bosque", @@ -341,6 +362,8 @@ "armorMystery201511Notes": "Si tenemos en cuenta que esta armadura se ha tallado a partir de un tronco mágico directamente, resulta sorprendentemente cómoda. No aporta ningún beneficio. Artículo del suscriptor de septiembre del 2015.", "armorMystery201512Text": "Armadura de fuego frío", "armorMystery201512Notes": "¡Reúne a las heladas llamas del invierno! No aporta ningún beneficio. Artículo del suscriptor de diciembre del 2015.", + "armorMystery201603Text": "Lucky Suit", + "armorMystery201603Notes": "This suit is sewn from thousands of four-leafed clovers! Confers no benefit. March 2016 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", @@ -359,14 +382,18 @@ "armorArmoireShepherdRobesNotes": "Tejido con una tela fresca y transpirable, perfecta para una jornada de calor arreando grifos en el desierto. Suma <%= attrs %> de fuerza y <%= attrs %> de percepción. Ropero Encantado: conjunto de pastor (artículo 2 de 3).", "armorArmoireRoyalRobesText": "Ropa real", "armorArmoireRoyalRobesNotes": "Qué buen gobernante, que gobierna de la mañana a la noche. Suma <%= attrs %> de constitución, de inteligencia y de percepción. Ropero Encantado: conjunto real (artículo 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).", - "armorArmoireDragonTamerArmorText": "Dragon Tamer Armor", - "armorArmoireDragonTamerArmorNotes": "This tough armor is impenetrable to flame. Increases Constitution by <%= con %>. Enchanted Armoire: Dragon Tamer Set (Item 3 of 3).", - "armorArmoireBarristerRobesText": "Barrister Robes", - "armorArmoireBarristerRobesNotes": "Very serious and stately. Increases Constitution by <%= con %>. Enchanted Armoire: Barrister Set (Item 2 of 3).", - "armorArmoireJesterCostumeText": "Jester Costume", - "armorArmoireJesterCostumeNotes": "Tra-la-la! Despite the look of this costume, you are no fool. Increases Intelligence by <%= int %>. Enchanted Armoire: Jester Set (Item 2 of 3).", + "armorArmoireCrystalCrescentRobesText": "Túnica de Cristal Creciente", + "armorArmoireCrystalCrescentRobesNotes": "Esta túnica mágica es luminiscente durante la noche. Incrementa la Constitución y la Percepción por <%= attrs %> cada una. Armario Encantado: Conjunto de Cristal Creciente (Artículo 2 de 3).", + "armorArmoireDragonTamerArmorText": "Armadura del Domador del Dragón", + "armorArmoireDragonTamerArmorNotes": "Esta armadura resistente es impenetrable a las llamas. Incrementa la Constitución por <%= con %>. Armario Encantado: Conjunto de Domador de Dragones (Artículo 3 de 3).", + "armorArmoireBarristerRobesText": "Túnica de Juez", + "armorArmoireBarristerRobesNotes": "Muy seria y majestuosa. Incrementa la Constitución por <%= con %>. Armario Encantado: Conjunto de Juez (Artículo 2 de 3).", + "armorArmoireJesterCostumeText": "Disfraz de bufón", + "armorArmoireJesterCostumeNotes": "¡Tra-la-la! A pesar del aspecto de este disfraz, no eres un bufón. Incrementa la Inteligencia por <%= int %>. Armario Encantado: Conjunto de Bufón (Artículo 2 de 3).", + "armorArmoireMinerOverallsText": "Overoles de Minero", + "armorArmoireMinerOverallsNotes": "Pueden parecer usados, pero han sido hechizados para repeler la suciedad. Aumenta la Constitución <%= con %>. Armario encantado: Kit del Minero (Objeto 2 de 3).", + "armorArmoireBasicArcherArmorText": "Basic Archer Armor", + "armorArmoireBasicArcherArmorNotes": "This camouflaged vest lets you slip unnoticed through the forests. Increases Perception by <%= per %>. Enchanted Armoire: Basic Archer Set (Item 2 of 3).", "headgear": "cubrecabeza", "headBase0Text": "Sin casco", "headBase0Notes": "Sin equipo de cabeza.", @@ -478,26 +505,34 @@ "headSpecialSummer2015MageNotes": "Entre los hilos de este pañuelo, brilla un poder oculto. Suma <%= per %> de percepción. Equipo de edición limitada, verano de 2015.", "headSpecialSummer2015HealerText": "Gorro de marinero", "headSpecialSummer2015HealerNotes": "Con tu gorro de marinero bien ajustado a la cabeza, puedes navegar hasta los mares más tempestuosos. Suma <%= int %> de inteligencia. Equipo de edición limitada, verano de 2015.", - "headSpecialFall2015RogueText": "Bat-tle Wings", - "headSpecialFall2015RogueNotes": "Echolocate your enemies with this powerful helm! Increases Perception by <%= per %>. Limited Edition 2015 Autumn Gear.", + "headSpecialFall2015RogueText": "Alas de Bati-Batalla", + "headSpecialFall2015RogueNotes": "¡Utiliza la ecolocación para ubicar a tus enemigos con este poderoso yelmo! Incrementa la Percepción por <%= per %>. Equipamiento de Edición Limitada de Otoño 2015.", "headSpecialFall2015WarriorText": "Sombrero de Espantapájaros", - "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": "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.", - "headSpecialNye2015Text": "Ridiculous Party Hat", - "headSpecialNye2015Notes": "You've received a Ridiculous Party Hat! Wear it with pride while ringing in the New Year! Confers no benefit.", - "headSpecialWinter2016RogueText": "Cocoa Helm", - "headSpecialWinter2016RogueNotes": "The protective scarf on this cozy helm is only removed to sip warm winter beverages. Increases Perception by <%= per %>. Limited Edition 2015-2016 Winter Gear.", - "headSpecialWinter2016WarriorText": "Snowman Cap", - "headSpecialWinter2016WarriorNotes": "Brr! This mighty helm is truly powerful... until it melts. Increases Strength by <%= str %>. Limited Edition 2015-2016 Winter Gear.", - "headSpecialWinter2016MageText": "Snowboarder Hood", - "headSpecialWinter2016MageNotes": "Keeps the snow out of your eyes while you're casting spells. Increases Perception by <%= per %>. Limited Edition 2015-2016 Winter Gear.", - "headSpecialWinter2016HealerText": "Fairy Wing Helm", - "headSpecialWinter2016HealerNotes": "Thesewingsfluttersoquicklythattheyblur! Increases Intelligence by <%= int %>. Limited Edition 2015-2016 Winter Gear.", + "headSpecialFall2015WarriorNotes": "Todos querrían este sombrero--si tan sólo tuvieran un cerebro. Incrementa la Fuerza por <%= str %>. Equipamiento de Edición Limitada de Otoño 2015.", + "headSpecialFall2015MageText": "Sombrero Cosido", + "headSpecialFall2015MageNotes": "Cada puntada en este sombrero aumenta su poder. Incrementa la Percepción por <%= per %>. Equipamiento de Edición Limitada de Otoño 2015.", + "headSpecialFall2015HealerText": "Sombrero de Rana", + "headSpecialFall2015HealerNotes": "Este es un sombrero extremadamente serio que sólo es digno de los más avanzados fabricantes de pociones. Incrementa la Inteligencia por <%= int %>. Equipamiento de Edición Limitada de Otoño 2015.", + "headSpecialNye2015Text": "Sombrero Ridículo de Fiesta", + "headSpecialNye2015Notes": "¡Has recibido un Sombrero Ridículo de Fiesta! ¡Lúcelo con orgullo mientras festejas el Año Nuevo! No otorga ningún beneficio.", + "headSpecialWinter2016RogueText": "Casco de cacao", + "headSpecialWinter2016RogueNotes": "La bufanda protectora de este cómodo yelmo sólo se puede sacar para beber calentitas bebidas invernales. Incrementa la Percepción por <%= per %>. Equipamiento de Edición Limitada de Invierno 2015-2016.", + "headSpecialWinter2016WarriorText": "Gorra de muñeco de nieve", + "headSpecialWinter2016WarriorNotes": "¡Brr! Este fuerte yelmo es realmente poderoso... hasta que se derrite. Incrementa la Fuerza por <%= str %>. Equipamiento de Edición Limitada de Invierno 2015-2016.", + "headSpecialWinter2016MageText": "Capucha de Esquiador de Snowboard", + "headSpecialWinter2016MageNotes": "Mantiene la nieve fuera de tus ojos mientras conjuras hechizos. Incrementa la Percepción por <%= per %>. Equipamiento de Edición Limitada de Invierno 2015-2016.", + "headSpecialWinter2016HealerText": "Yelmo con Alas de Hada", + "headSpecialWinter2016HealerNotes": "¡Estasalasbatentanrápidoqueniseven! Aumenta la Inteligencia en <%= int %>. Equipo de Invierno Edición Limitada 2015-2016.", + "headSpecialSpring2016RogueText": "Good Doggy Mask", + "headSpecialSpring2016RogueNotes": "Aww, what a cute puppy! Come here and let me pet your head. ...Hey, where did all my Gold go? Increases Perception by <%= per %>. Limited Edition 2016 Spring Gear.", + "headSpecialSpring2016WarriorText": "Mouse Guard Helm", + "headSpecialSpring2016WarriorNotes": "Never again shall you be bopped on the head! Let them try! Increases Strength by <%= str %>. Limited Edition 2016 Spring Gear.", + "headSpecialSpring2016MageText": "Grand Malkin Hat", + "headSpecialSpring2016MageNotes": "Apparel to set you above the mere alley-mages of the world. Increases Perception by <%= per %>. Limited Edition 2016 Spring Gear.", + "headSpecialSpring2016HealerText": "Blossom Diadem", + "headSpecialSpring2016HealerNotes": "It glints with the potential of new life ready to burst forth. Increases Intelligence by <%= int %>. Limited Edition 2016 Spring Gear.", "headSpecialGaymerxText": "Casco de Guerrero de Arco Iris", - "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.", + "headSpecialGaymerxNotes": "Con motivo de la celebración por la Conferencia GaymerX, ¡este casco especial está decorado con un radiante y colorido estampado arco iris! GaymerX es una convención de juegos que celebra a la gente LGBTQ y a los videojuegos, y está abierta a todo el público.", "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", @@ -519,13 +554,17 @@ "headMystery201508Text": "Gorro de guepardo", "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.", - "headMystery201512Text": "Winter Flame", - "headMystery201512Notes": "These flames burn cold with pure intellect. Confers no benefit. December 2015 Subscriber Item.", - "headMystery201601Text": "Helm of True Resolve", - "headMystery201601Notes": "Stay resolute, brave champion! Confers no benefit. January 2016 Subscriber Item.", + "headMystery201509Notes": "Esto ES una máscara, ¿no? No aporta ningún beneficio. Artículo de suscriptor de septiembre del 2015.", + "headMystery201511Text": "Corona de Troncos", + "headMystery201511Notes": "Cuenta el número de anillos para saber qué edad tiene esta corona. No otorga ningún beneficio. Artículo de Suscriptor de Noviembre 2015.", + "headMystery201512Text": "Llama invernal", + "headMystery201512Notes": "Estas llamas queman con la frialdad del intelecto puro. No aporta ningún beneficio. Artículo del suscriptor de diciembre del 2015.", + "headMystery201601Text": "Yelmo de Resolución Verdadera", + "headMystery201601Notes": "¡No abandones tu determinación, valiente campeón! No otorga ningún beneficio. Artículo de Suscriptor de Enero 2016.", + "headMystery201602Text": "Capucha de Rompecorazones", + "headMystery201602Notes": "Esconde tu identidad de todos tus admiradores. No otorga ningún beneficio. Artículo de suscriptor de febrero de 2016.", + "headMystery201603Text": "Lucky Hat", + "headMystery201603Notes": "This top hat is a magical good-luck charm. Confers no benefit. March 2016 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", @@ -543,7 +582,7 @@ "headArmoireBlueHairbowText": "Lazo azul", "headArmoireBlueHairbowNotes": "Este bonito lazo rojo te hará perspicaz, fuerte e inteligente. Suma <%= per %> de percepción, <%= con %> de constitución y <%= int %> de inteligencia. Ropero Encantado: artículo independiente.", "headArmoireRoyalCrownText": "Corona real", - "headArmoireRoyalCrownNotes": "Hooray for the ruler, mighty and strong! Increases Strength by <%= str %>. Enchanted Armoire: Royal Set (Item 1 of 3).", + "headArmoireRoyalCrownNotes": "¡Viva el líder, poderoso y fuerte! Incrementa la Fuerza por <%= str %>. Armario Encantado: Conjunto Real (Artículo 1 de 3).", "headArmoireGoldenLaurelsText": "Corona de laurel dorado", "headArmoireGoldenLaurelsNotes": "Esta corona de laurel dorado recompensa a quienes han logrado vencer a sus malos hábitos. Suma <%= attrs %> de percepción y <%= attrs %> de constitución. Ropero Encantado: conjunto de toga dorada (artículo 2 de 3).", "headArmoireHornedIronHelmText": "Casco de hierro enastado", @@ -555,21 +594,25 @@ "headArmoirePlagueDoctorHatText": "Sombrero de médico de la peste negra", "headArmoirePlagueDoctorHatNotes": "El auténtico sombrero de los médicos que combatieron la peste negra de la procrastinación. Suma <%= str %> de fuerza, <%= int %> de inteligencia y <%= con %> de constitución. Ropero Encantado: conjunto de médico de la peste negra (artículo 1 de 3).", "headArmoireBlackCatText": "Sombrero de Gato Negro", - "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": "Este sombrero negro está... ronroneando. Y agitando su cola. Y ¿respirando? Sí, es sólo un gato durmiendo sobre tu cabeza. Incrementa la Inteligencia y la Percepción por <%= attrs %> cada una. Armario Encantado: Artículo Independiente.", "headArmoireOrangeCatText": "Sombrero de Gato Naranja", - "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).", - "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).", - "headArmoireDragonTamerHelmText": "Dragon Tamer Helm", - "headArmoireDragonTamerHelmNotes": "You look exactly like a dragon. The perfect camouflage... Increases Intelligence by <%= int %>. Enchanted Armoire: Dragon Tamer Set (Item 1 of 3).", - "headArmoireBarristerWigText": "Barrister Wig", - "headArmoireBarristerWigNotes": "This bouncy wig is enough to frighten away even the fiercest foe. Increases Strength by <%= str %>. Enchanted Armoire: Barrister Set (Item 1 of 3).", - "headArmoireJesterCapText": "Jester Cap", - "headArmoireJesterCapNotes": "The bells on this hat might distract your opponents, but they just help you focus. Increases Perception by <%= per %>. Enchanted Armoire: Jester Set (Item 1 of 3).", + "headArmoireOrangeCatNotes": "Este sombrero naranja está... ronroneando. Y agitando su cola. Y ¿respirando? Sí, es sólo un gato durmiendo sobre tu cabeza. Incrementa la Fuerza y la Constitución por <%= attrs %> cada una. Armario Encantado: Artículo Independiente.", + "headArmoireBlueFloppyHatText": "Azul sombrero flojo", + "headArmoireBlueFloppyHatNotes": "Se han cosido muchos hechizos en este sombrero simple, dándole un brillante color azul. Incrementa la Constitución, la Inteligencia y la Percepción por <%= attrs %> cada una. Armario Encantado: Artículo Independiente.", + "headArmoireShepherdHeaddressText": "Tocado de Pastor", + "headArmoireShepherdHeaddressNotes": "A veces a los grifos que arreas les gusta masticar este tocado, pero de todas formas te hace parecer más inteligente. Incrementa la Inteligencia por <%= int %>. Armario Encantado: Conjunto de Pastor (Artículo 3 de 3).", + "headArmoireCrystalCrescentHatText": "Sombrero de Cristal Creciente", + "headArmoireCrystalCrescentHatNotes": "El diseño de este sombrero crece y mengua con las fases de la luna. Incrementa la Inteligencia y la Percepción por <%= attrs %> cada una. Armario Encantado: Conjunto de Cristal Creciente (Artículo 1 de 3).", + "headArmoireDragonTamerHelmText": "Yelmo del Domador del Dragón", + "headArmoireDragonTamerHelmNotes": "Te ves exactamente igual que un dragón. El camuflaje perfecto... Incrementa la Inteligencia por <%= int %>. Armario Encantado: Conjunto de Domador de Dragones (Artículo 1 de 3).", + "headArmoireBarristerWigText": "Peluca de Juez", + "headArmoireBarristerWigNotes": "Esta peluca que rebota es suficiente para ahuyentar incluso al enemigo más feroz. Incrementa la Fuerza por <%= str %>. Armario Encantado: Conjunto de Juez (Artículo 1 de 3).", + "headArmoireJesterCapText": "Gorro de bufón", + "headArmoireJesterCapNotes": "Los cascabeles de este gorro pueden distraer a tus oponentes, pero a ti sólo te ayudan a concentrarte. Incrementa la Percepción por <%= per %>. Armario Encantado: Conjunto de Bufón (Artículo 1 de 3).", + "headArmoireMinerHelmetText": "Casco de Minero", + "headArmoireMinerHelmetNotes": "Protege tu cabeza de las tareas que te están cayendo! Aumenta la Inteligencia <%= int %>. Armario Encantado: Kit del Minero (Objeto 1 de 3).", + "headArmoireBasicArcherCapText": "Basic Archer Cap", + "headArmoireBasicArcherCapNotes": "No archer would be complete without a jaunty cap! Increases Perception by <%= per %>. Enchanted Armoire: Basic Archer Set (Item 3 of 3).", "offhand": "objeto para la mano del escudo", "shieldBase0Text": "Sin equipamiento en la mano del escudo", "shieldBase0Notes": "Sin escudo o arma secundaria.", @@ -641,30 +684,38 @@ "shieldSpecialSummer2015WarriorNotes": "Este escudo, confeccionado por los artesanos de Dilatoria a partir de metales abisales, brilla como la arena y el mar. Suma <%= con %> de constitución. Equipo de edición limitada, verano de 2015.", "shieldSpecialSummer2015HealerText": "Escudo robusto", "shieldSpecialSummer2015HealerNotes": "Con este escudo, puedes aporrear a las ratas de las cloacas. Suma <%= con %> de constitución. Artículo de Edición Limitada, verano del 2015.", - "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.", + "shieldSpecialFall2015RogueText": "Hacha de Bati-Batalla", + "shieldSpecialFall2015RogueNotes": "Las Pendientes aterradoras se encogen de miedo ante el batido de este hacha. Incrementa la Fuerza por <%= str %>. Equipamiento de Edición Limitada de Otoño 2015.", + "shieldSpecialFall2015WarriorText": "Bolsa de Alpiste", + "shieldSpecialFall2015WarriorNotes": "Es cierto que deberías ESPANTAR a los pájaros, ¡pero hacer amigos no tiene nada de malo! Incrementa la Constitución por <%= con %>. Equipamiento de Edición Limitada de Otoño 2015.", + "shieldSpecialFall2015HealerText": "Palo para Revolver", + "shieldSpecialFall2015HealerNotes": "¡Este palo puede revolver cualquier cosa sin derretirse, disolverse o prenderse fuego! También puede usarse para hincárselo ferozmente a las tareas enemigas. Incrementa la Constitución por <%= con %>. Equipamiento de Edición Limitada de Otoño 2015.", "shieldSpecialWinter2016RogueText": "Taza de chocolate", - "shieldSpecialWinter2016RogueNotes": "Warming drink, or boiling projectile? You decide... Increases Strength by <%= str %>. Limited Edition 2015-2016 Winter Gear.", - "shieldSpecialWinter2016WarriorText": "Sled Shield", - "shieldSpecialWinter2016WarriorNotes": "Use this sled to block attacks, or ride it triumphantly into battle! Increases Constitution by <%= con %>. Limited Edition 2015-2016 Winter Gear.", - "shieldSpecialWinter2016HealerText": "Pixie Present", - "shieldSpecialWinter2016HealerNotes": "Open it open it open it open it open it open it!!!!!!!!! Increases Constitution by <%= con %>. Limited Edition 2015-2016 Winter Gear.", - "shieldMystery201601Text": "Resolution Slayer", - "shieldMystery201601Notes": "This blade can be used to parry away all distractions. Confers no benefit. January 2016 Subscriber Item.", + "shieldSpecialWinter2016RogueNotes": "¿Bebida caliente, o proyectil ardiente? Tú decides... Incrementa la Fuerza por <%= str %>. Equipamiento de Edición Limitada de Invierno 2015-2016.", + "shieldSpecialWinter2016WarriorText": "Escudo de Trineo", + "shieldSpecialWinter2016WarriorNotes": "Utiliza este trineo para bloquear ataques, ¡o deslízate con él hacia la batalla! Incrementa la Constitución por <%= con %>. Equipamiento de Edición Limitada de Invierno 2015-2016.", + "shieldSpecialWinter2016HealerText": "Regalo de Hada", + "shieldSpecialWinter2016HealerNotes": "¡¡¡¡¡¡¡¡¡Ábrelo ábrelo ábrelo ábrelo ábrelo ábrelo!!!!!!!!! Incrementa la Constitución por <%= con %>. Equipamiento de Edición Limitada de Invierno 2015-2016.", + "shieldSpecialSpring2016RogueText": "Bolas de Fuego", + "shieldSpecialSpring2016RogueNotes": "You've mastered the ball, the club, and the knife. Now you advance to juggling fire! Awoo! Increases Strength <%= str %>. Limited Edition 2016 Spring Gear.", + "shieldSpecialSpring2016WarriorText": "Cheese Wheel", + "shieldSpecialSpring2016WarriorNotes": "You braved fiendish traps to procure this defense-boosting food. Increases Constitution by <%= con %>. Limited Edition 2016 Spring Gear.", + "shieldSpecialSpring2016HealerText": "Floral Buckler", + "shieldSpecialSpring2016HealerNotes": "The April Fool claims this little shield will block Shiny Seeds. Don't believe him. Increases Constitution by <%= con %>. Limited Edition 2016 Spring Gear.", + "shieldMystery201601Text": "Destructora de Resoluciones", + "shieldMystery201601Notes": "Esta espada se puede usar para desviar a todas las distracciones. No otorga ningún beneficio. Artículo de Suscriptor de Enero 2016.", "shieldMystery301405Text": "Escudo Reloj", "shieldMystery301405Notes": "¡El tiempo está de tu parte con este imponente escudo reloj! No confiere ningún beneficio. Equipo de suscriptor Junio 3015.", "shieldArmoireGladiatorShieldText": "Escudo de gladiador", "shieldArmoireGladiatorShieldNotes": "Para ser gladiador... bueno, eso, que basta con que aporrees al enemigo con tu escudo. Suma <%= con %> de constitución y <%= str %> de fuerza. Ropero Encantado: conjunto de gladiador (artículo 3 de 3).", "shieldArmoireMidnightShieldText": "Escudo de Medianoche", - "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).", - "shieldArmoireDragonTamerShieldText": "Dragon Tamer Shield", - "shieldArmoireDragonTamerShieldNotes": "Distract enemies with this dragon-shaped shield. Increases Perception by <%= per %>. Enchanted Armoire: Dragon Tamer Set (Item 2 of 3).", + "shieldArmoireMidnightShieldNotes": "¡Este escudo se vuelve más poderoso justo a la medianoche! Incrementa la Constitución por <%= con %> y la Fuerza por <%= str %>. Armario Encantado: Artículo Independiente.", + "shieldArmoireRoyalCaneText": "Bastón Real", + "shieldArmoireRoyalCaneNotes": "¡Viva el líder, digno de ser mencionado en canciones! Incrementa la Constitución, la Inteligencia y la Percepción por <%= attrs %> cada una. Armario Encantado: Conjunto Real (Artículo 2 de 3).", + "shieldArmoireDragonTamerShieldText": "Escudo de Domador de Dragones", + "shieldArmoireDragonTamerShieldNotes": "Distrae a tus enemigos con este escudo con forma de dragón. Incrementa la Percepción por <%= per %>. Armario Encantado: Conjunto de Domador de Dragones (Artículo 2 de 3).", + "shieldArmoireMysticLampText": "Lámpara Mística", + "shieldArmoireMysticLampNotes": "Ilumina las cuevas más oscuras con esta lámpara mística! Aumenta Percepción <%= per %>. Armario Encantado: Objeto Independiente.", "back": "Accesorio en la Espalda", "backBase0Text": "Sin Accesorio en la Espalda", "backBase0Notes": "Sin Accesorio en la Espalda", @@ -678,8 +729,10 @@ "backMystery201504Notes": "Bzzz, bzzz, bzzz! Vuela de tarea en tarea. No otorga beneficios. Item de suscriptores de Abril 2015", "backMystery201507Text": "Tabla de surf guay", "backMystery201507Notes": "¡Surfea sobre las Mareas del Esmero y domina las olas de la Bahía Vagancia! No aporta ningún beneficio. Artículo del suscriptor de julio del 2015.", - "backMystery201510Text": "Goblin Tail", - "backMystery201510Notes": "Prehensile and powerful! Confers no benefit. October 2015 Subscriber Item.", + "backMystery201510Text": "Cola de Trasgo", + "backMystery201510Notes": "¡Prensil y poderosa! No otorga ningún beneficio. Artículo de Suscriptor de Octubre 2015.", + "backMystery201602Text": "Capa de Rompecorazones", + "backMystery201602Notes": "Con un movimiento de tu capa, ¡tus enemigos caen a tus pies! No otorga ningún beneficio. Artículo de suscriptor de febrero de 2016.", "backSpecialWonderconRedText": "Capa del poder", "backSpecialWonderconRedNotes": "Castañea con fuerza y belleza. No confiere beneficio. Artículo Edición Especial Convención.", "backSpecialWonderconBlackText": "Capa Sigilosa", @@ -726,8 +779,16 @@ "headAccessorySpecialSpring2015MageNotes": "Estas orejas escuchan atentamente, en el caso de que algún mago esté revelando algún secreto. No confieren ningún beneficio. Equipamiento de Primavera 2015 Edición limitada", "headAccessorySpecialSpring2015HealerText": "Orejas de Gatito Verdes", "headAccessorySpecialSpring2015HealerNotes": "Estas adorables orejas harán que los demás se pongan verdes de envidia. No otorga ningún beneficio. Equipamiento de Verano Edición Limitada del 2015.", + "headAccessorySpecialSpring2016RogueText": "Green Dog Ears", + "headAccessorySpecialSpring2016RogueNotes": "With these, you can keep track of tricky Mages even if they turn invisible! Confers no benefit. Limited Edition 2016 Spring Gear.", + "headAccessorySpecialSpring2016WarriorText": "Orejas de Ratón Rojas", + "headAccessorySpecialSpring2016WarriorNotes": "To better hear your theme song across clamorous battlefields. Confers no benefit. Limited Edition 2016 Spring Gear.", + "headAccessorySpecialSpring2016MageText": "Orejas de Gato Amarillas", + "headAccessorySpecialSpring2016MageNotes": "Estas puntiagudas orejas pueden detectar el insignificante zumbido del Mana ambiente, o las silenciosas pisadas de un Pícaro. No confiere ningún beneficio. Equipamiento Edición Limitada de Primavera 2016.", + "headAccessorySpecialSpring2016HealerText": "Orejas de Conejito Moradas", + "headAccessorySpecialSpring2016HealerNotes": "They stand like flags above the fray, letting others know where to run for help. Confers no benefit. Limited Edition 2016 Spring Gear.", "headAccessoryBearEarsText": "Orejas de oso", - "headAccessoryBearEarsNotes": "Con estas orejas, parecerás un oso muy achuchable. No aportan ningún beneficio.", + "headAccessoryBearEarsNotes": "¡Estas orejas te hacen parecer un oso valiente! No confiere ningún beneficio.", "headAccessoryCactusEarsText": "Orejas de cactus", "headAccessoryCactusEarsNotes": "¡Estas orejas te hacen parecer un cactus espinoso! No confiere ningún beneficio", "headAccessoryFoxEarsText": "Orejas de Zorro", @@ -750,10 +811,12 @@ "headAccessoryMystery201409Notes": "Estas poderosas astas cambian de color con las hojas. No otorga ningún beneficio. Artículo de Suscriptor de Septiembre del 2014", "headAccessoryMystery201502Text": "Alas del Pensamiento", "headAccessoryMystery201502Notes": "¡Deja volar tu imaginación! No otorga ningún beneficio. Artículo de suscriptor de febrero 2015.", - "headAccessoryMystery201510Text": "Goblin Horns", - "headAccessoryMystery201510Notes": "These fearsome horns are slightly slimy. Confers no benefit. October 2015 Subscriber Item.", + "headAccessoryMystery201510Text": "Cuernos de Trasgo", + "headAccessoryMystery201510Notes": "Estos cuernos aterradores son ligeramente babosos. No otorgan ningún beneficio. Artículo de Suscriptor de Octubre 2015.", "headAccessoryMystery301405Text": "Gafas para la Cabeza", "headAccessoryMystery301405Notes": "\"Las gafas son para los ojos\" dijeron, \"Nadie quiere gafas que solo se puedan llevar en la cabeza\" dijeron. ¡Ja! ¡Demuéstrales que eso no es así! No confiere ningún beneficio. Artículo de suscriptor de agosto de 3015.", + "headAccessoryArmoireComicalArrowText": "Comical Arrow", + "headAccessoryArmoireComicalArrowNotes": "This whimsical item doesn't provide a stat boost, but it sure is good for a laugh! Confers no benefit. Enchanted Armoire: Independent Item.", "eyewear": "Gafas", "eyewearBase0Text": "Sin Gafas.", "eyewearBase0Notes": "Sin Gafas.", diff --git a/common/locales/es/generic.json b/common/locales/es/generic.json index 357bd6650d..67b8c43724 100644 --- a/common/locales/es/generic.json +++ b/common/locales/es/generic.json @@ -10,9 +10,9 @@ "titleProfile": "Perfil", "titleInbox": "Bandeja", "titleTavern": "Taberna", - "titleParty": "Fiesta", + "titleParty": "Grupo", "titleHeroes": "Salón de los Héroes", - "titlePatrons": "Hall of Patrons", + "titlePatrons": "Salón de Patrocinadores", "titleGuilds": "Gremios", "titleChallenges": "Desafíos", "titleDrops": "Mercado", @@ -48,7 +48,7 @@ "market": "Mercado", "subscriberItem": "Objeto Misterioso", "newSubscriberItem": "Nuevo Objeto Misterioso", - "subscriberItemText": "Each month, subscribers will receive a mystery item. This is usually released about one week before the end of the month. See the wiki's 'Mystery Item' page for more information.", + "subscriberItemText": "Cada mes, los suscriptores reciben un objeto misterioso, que se suele publicar una semana antes de cada fin de mes, aproximadamente. Para más información, consulta la página de la wiki sobre los objetos misteriosos.", "all": "Todo", "none": "Ninguno", "or": "O", @@ -90,12 +90,12 @@ "achievementDilatory": "Salvador de Dilatoria", "achievementDilatoryText": "¡Ayudó a derrotar al Dread Drag'on de Dilatoria durante el evento Summer Splash del 2014!", "costumeContest": "Participante disfrazado", - "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!", + "costumeContestText": "Ha participado en el Concurso de Disfraces de Habitoween. Puedes ver algunas de las candidaturas en el blog de Habitica.", + "costumeContestTextPlural": "Ha participado en <%= number %> concursos de disfraces de Habitoween. Mira algunas de las candidaturas en el blog de Habitica.", "memberSince": "- Miembro desde", "lastLoggedIn": "- Última conexión", "notPorted": "Esta función no se ha traido del sitio original", - "buyThis": "Comprarás este <%= text %> con <%= price %> de tus <%= gems %> Gemas?", + "buyThis": "¿Comprar este <%= text %> con <%= price %> de tus <%= gems %> Gemas?", "noReachServer": "Error en la conexión al servidor, intentalo más tarde.", "errorUpCase": "ERROR:", "newPassSent": "Nueva contraseña enviada.", @@ -116,7 +116,7 @@ "audioTheme_luneFoxTheme": "Tema LuneFox", "askQuestion": "Hacer una Pregunta", "reportBug": "Notificar un error", - "HabiticaWiki": "The Habitica Wiki", + "HabiticaWiki": "La Wiki de Habitica", "HabiticaWikiFrontPage": "http://habitica.wikia.com/wiki/Habitica_Wiki", "contributeToHRPG": "Contribuir con Habitica", "overview": "Resumen para Nuevos Usuarios", @@ -137,6 +137,8 @@ "achievementStressbeastText": "¡Ayudó a derrotar a la Abominable Bestia del Estrés durante el evento Winter Wonderland de 2014!", "achievementBurnout": "Salvador de los Campos Florecientes", "achievementBurnoutText": "¡Ayudó a derrotar al Burnout y restaurar los Espíritus del Cansancio durante el evento Fall Festival de 2015!", + "achievementBewilder": "Savior of Mistiflying", + "achievementBewilderText": "Helped defeat the Be-Wilder during the 2016 Spring Fling Event!", "checkOutProgress": "¡Comprobar mi progreso en Habitica!", "cardReceived": "¡Recibiste una tarjeta!", "cardReceivedFrom": "<%= cardType %> de <%= userName %>", @@ -158,22 +160,23 @@ "thankyou3": "Estoy muy agradecido - ¡gracias!", "thankyouCardAchievementTitle": "Agradablemente Agradecido", "thankyouCardAchievementText": "¡Gracias por las gracias! Envió o recibió <%= cards %> tarjetas de agradecimiento.", - "birthdayCard": "Birthday Card", - "birthdayCardExplanation": "You both receive the Birthday Bonanza achievement!", - "birthdayCardNotes": "Send a birthday card to a party member.", - "birthday0": "Happy birthday to you!", - "birthdayCardAchievementTitle": "Birthday Bonanza", - "birthdayCardAchievementText": "Many happy returns! Sent or received <%= cards %> birthday cards.", + "birthdayCard": "Tarjeta de cumpleaños", + "birthdayCardExplanation": "Ambos recibís el logro Prosperidad Cumpleañera", + "birthdayCardNotes": "Enviar una tarjeta de cumpleaños a un miembro del grupo.", + "birthday0": "¡Feliz cumpleaños!", + "birthdayCardAchievementTitle": "Prosperidad Cumpleañera", + "birthdayCardAchievementText": "¡Que cumplas muchos más! Ha enviado o recibido <%= cards %> felicitaciones de cumpleaños.", "streakAchievement": "¡Has obtenido un logro de racha!", "firstStreakAchievement": "Racha de 21 días", "streakAchievementCount": "<%= streaks %> rachas de 21 días", "twentyOneDays": "¡Has completado tus Tareas Diarias durante 21 días seguidos!", "dontBreakStreak": "Excelente trabajo. ¡No estropees la racha!", "dontStop": "¡No te detengas ahora!", - "levelUpShare": "Me apunté en Habitica para mejorar mis hábitos en la vida real!", + "levelUpShare": "¡Subí de nivel en Habitica al mejorar en mis hábitos en la vida real!", "questUnlockShare": "¡He desbloqueado una nueva misión en 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": "¡He conseguido una nueva mascota cumpliendo tareas en el mundo real!", + "raisePetShare": "¡He convertido a una mascota en montura cumpliendo tareas en el mundo real!", "wonChallengeShare": "¡He ganado un desafío en Habitica!", - "achievementShare": "¡He obtenido un nuevo logro en Habitica!" + "achievementShare": "¡He obtenido un nuevo logro en Habitica!", + "orderBy": "Ordenar por <%= item %>" } \ No newline at end of file diff --git a/common/locales/es/groups.json b/common/locales/es/groups.json index 3bf25fdd7f..ec48b1265e 100644 --- a/common/locales/es/groups.json +++ b/common/locales/es/groups.json @@ -1,5 +1,5 @@ { - "tavern": "Taberna", + "tavern": "Chat de la Taberna", "innCheckOut": "Dejar la Posada", "innCheckIn": "Descansar en la Posada", "innText": "¡Estás descansando en la Posada! Mientras sigas en ella, tus tareas diarias no te causarán daños al final del día, pero seguirán restableciéndose cada día. Por otra parte, ten cuidado: si estás participando en alguna misión contra un jefe, el jefe seguirá haciéndote daño cuando tus compañeros de grupo no cumplan sus tareas diarias, a menos que ellos también estén en la Posada. Además, el daño que provoques al jefe (o los objetos que recopiles) no tendrá efecto hasta que salgas de la Posada.", @@ -101,7 +101,7 @@ "inbox": "Bandeja de entrada", "abuseFlag": "Notificación de violación de las normas de la comunidad", "abuseFlagModalHeading": "¿Notificar a <%= name %> por infracción?", - "abuseFlagModalBody": "Are you sure you want to report this post? You should ONLY report a post that violates the <%= firstLinkStart %>Community Guidelines<%= linkEnd %> and/or <%= secondLinkStart %>Terms of Service<%= linkEnd %>. Inappropriately reporting a post is a violation of the Community Guidelines and may give you an infraction. Appropriate reasons to flag a post include but are not limited to:


", + "abuseFlagModalBody": "Estás seguro/a de que quieres denunciar este mensaje? SOLO deberías denunciar un mensaje que viole las <%= firstLinkStart %> Normas de la Comunidad <%= linkEnd %> y/o los <%= secondLinkStart %> Términos de Servicio <%= linkEnd %>. Denunciar inapropiadamente un mensaje es una violación de las Normas de la Comunidad y puede provocarte una infracción. Razones apropiadas para señalar un mensaje incluyen pero no están limitadas a:

.", "abuseFlagModalButton": "Informar de una infracción", "abuseReported": "Gracias por notificar esta infracción. Los moderadores han sido informados.", "abuseAlreadyReported": "Ya has notificado este mensaje.", @@ -134,7 +134,7 @@ "sendGiftSubscription": "<%= months %> Mes(es): $<%= price %> USD", "battleWithFriends": "Combate monstruos con amigos", "startPartyWithFriends": "¡Forma un grupo con tus amigos!", - "startAParty": "Introduce un Grupo", + "startAParty": "Crear un Grupo", "addToParty": "Añade alguien a tu grupo", "likePost": "¡Haz clic aquí si te gusta esta publicación!", "partyExplanation1": "¡Juega a Habitica con tus amigos y aprende a ser responsable!", @@ -147,5 +147,9 @@ "partyChatEmpty": "El chat de este grupo está vacío. Escribe un mensaje en el cuadro de arriba para romper el hielo.", "guildChatEmpty": "El chat de este gremio está vacío. Escribe un mensaje en el cuadro de arriba para empezar una conversación.", "possessiveParty": "Grupo de <%= name %>", - "requestAcceptGuidelines": "Si quieres publicar mensajes en la Taberna o en el chat de algún grupo o gremio, lee primero las <%= linkStart %>Normas de la Comunidad<%= linkEnd %> y, a continuación, haz clic en el botón de abajo para indicar que las aceptas." + "requestAcceptGuidelines": "Si quieres publicar mensajes en la Taberna o en el chat de algún grupo o gremio, lee primero las <%= linkStart %>Normas de la Comunidad<%= linkEnd %> y, a continuación, haz clic en el botón de abajo para indicar que las aceptas.", + "partyUpName": "¡Ese grupo!", + "partyOnName": "¡Toma grupo!", + "partyUpAchievement": "Se unió a un grupo con otra persona. Pasadlo bien luchando contra monstruos y apoyándoos mutuamente.", + "partyOnAchievement": "Se unió a un grupo con cuatro personas o más. Disfrutad de lo responsables que sois entre todos y venced a vuestros enemigos con la ayuda de vuestros amigos." } \ No newline at end of file diff --git a/common/locales/es/limited.json b/common/locales/es/limited.json index c180915613..40d473d0f4 100644 --- a/common/locales/es/limited.json +++ b/common/locales/es/limited.json @@ -30,18 +30,18 @@ "seasonalShopClosedText": "¡La Tienda Estacional está actualmente cerrada! ¡No sé dónde está ahora la Hechicera Estacional, pero seguro que vuelve durante la próxima Grand Gala!", "seasonalShopText": "¡¡ Bienvenido a la tienda de temporada !! Estamos almacenando bienes para la Temporada de Primavera Edición Estacional en este momento. Todo lo que hay aquí estará disponible para comprar durante el evento Spring Fling cada año, pero no abrimos hasta el 30 de Abril, así que asegúrate de abastecerte ahora, ¡o tendrás que esperar un año para poder comprar estos artículos de nuevo!", "seasonalShopSummerText": "¡¡Te damos la bienvenida a la Tienda Estacional!! Actualmente, tenemos en el almacén diversos artículos de la Edición de Temporada estival. Todo lo que ves aquí se puede comprar durante el Salpicón Veraniego que se celebra cada año. Solamente estaremos abiertos hasta el 31 de julio: si quieres algo, agénciatelo cuanto antes o ¡tendrás que esperar un año entero!", - "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!", - "seasonalShopWinterText": "Welcome to the Seasonal Shop!! We're stocking winter Seasonal Edition goodies at the moment. Everything here will be available to purchase during the Winter Wonderland event each year, but we're only open until January 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*", + "seasonalShopFallText": "¡¡Bienvenido a la Tienda Estacional!! Nos estamos abasteciendo de bienes de Edición Estacional de otoño. Todo aquí estará disponible para comprar durante el evento Festival de Otoño cada año, pero la tienda sólo está abierta hasta el 31 de octubre, así que asegúrate de abastecerte ahora, ¡o tendrás que esperar un año para comprar estos artículos de nuevo!", + "seasonalShopWinterText": "¡¡Bienvenido a la Tienda Estacional!! Nos estamos abasteciendo de bienes de Edición Estacional de invierno. Todo aquí estará disponible para comprar durante el evento Winter Wonderland cada año, pero la tienda sólo está abierta hasta el 31 de enero, así que asegúrate de abastecerte ahora, ¡o tendrás que esperar un año para comprar estos artículos de nuevo!", + "seasonalShopFallTextBroken": "Ah... Bienvenido a la Tienda Estacional... Nos estamos abasteciendo de bienes de Edición Estacional de otoño, o algo así... Todo aquí estará disponible para comprar durante el evento Festival de Otoño cada año, pero la tienda sólo está abierta hasta el 31 de octubre... Supongo que deberías asegurarte de abastecerte ahora, o tendrás que esperar... y esperar... y esperar... *ahh*", "seasonalShopRebirth": "Si has usado la Orbe de Renacimiento, puedes volver a comprar este equipo en la columna Recompensas. Al principio, solamente podrás comprar los artículos de la clase que tengas en ese momento (la predeterminada es Guerrero), pero no temas: puedes conseguir los artículos de las demás clases si cambias de clase.", "candycaneSet": "Bastón de Caramelo (Mago)", "skiSet": "Ski-asesino (Ladrón)", "snowflakeSet": "Copo de nieve (Sanador)", "yetiSet": "Domador de Yetis (Guerrero)", "northMageSet": "Mago del Norte (Mago)", - "icicleDrakeSet": "Icicle Drake (Rogue)", - "soothingSkaterSet": "Soothing Skater (Healer)", - "gingerbreadSet": "Gingerbread Warrior (Warrior)", + "icicleDrakeSet": "Bestia de Hielo (Pícaro)", + "soothingSkaterSet": "Patinador Relajante (Sanador)", + "gingerbreadSet": "Guerrero de Pan de Jengibre (Guerrero)", "toAndFromCard": "Para: <%= toName %>, De: <%= fromName %>", "nyeCard": "Carta de Nuevo Año", "nyeCardExplanation": "Por celebrar el año nuevo juntos, ¡ambos recibís la insignia \"Viejos Conocidos\"!", @@ -67,6 +67,10 @@ "witchyWizardSet": "Hechicero mágico (Mago)", "mummyMedicSet": "Médico Momia (Sanador)", "vampireSmiterSet": "Cazavampiros (Pícaro)", + "bewareDogSet": "Perro Cuidadoso (Guerrero)", + "magicianBunnySet": "Conejo de Hechicero (Mago)", + "comfortingKittySet": "Gatito Reconfortante (Sanador)", + "sneakySqueakerSet": "Chirriador Escurridizo (Pícaro)", "fallEventAvailability": "Disponible hasta el 31 de octubre", "winterEventAvailability": "Disponible hasta el 31 de diciembre" } \ No newline at end of file diff --git a/common/locales/es/messages.json b/common/locales/es/messages.json index 018e44e682..5774aaf4e1 100644 --- a/common/locales/es/messages.json +++ b/common/locales/es/messages.json @@ -19,8 +19,8 @@ "messageAlreadyPet": "Ya tienes esa mascota, ¡intenta una combinación diferente!", "messageHatched": "¡Tu huevo ha eclosionado! Visita tu establo para equipar a tu mascota.", "messageNotEnoughGold": "No tienes suficiente Oro", - "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 %>.", + "messageTwoHandedEquip": "Para empuñar <%= twoHandedText %> se necesitan dos manos, así que te has quitado <%= offHandedText %>.", + "messageTwoHandedUnequip": "Para empuñar <%= twoHandedText %> se necesitan dos manos, así que te has quitado ese objeto al ponerte <%= offHandedText %>.", "messageDropFood": "¡Has encontrado <%= dropArticle %><%= dropText %>! <%= dropNotes %>", "messageDropEgg": "¡Has encontrado un huevo de <%= dropText %>! <%= dropNotes %>", "messageDropPotion": "¡Has encontrado una pocion de eclosión de <%= dropText %>! <%= dropNotes %>", @@ -39,9 +39,9 @@ "messageAuthEmailTaken": "El correo electrónico ya está en uso", "messageAuthNoUserFound": "No se encontró el usuario.", "messageAuthMustBeLoggedIn": "Debes estar identificado.", - "messageAuthMustIncludeTokens": "You must include a token and uid (user id) in your request", + "messageAuthMustIncludeTokens": "Debes incluir un token y un UID (identificador de usuario) en la solicitud", "messageGroupNotFound": "Grupo no encontrado o no tienes acceso.", - "messageGroupAlreadyInParty": "Ya estás en una fiesta, intenta actualizando la página.", + "messageGroupAlreadyInParty": "Ya estás en una grupo, intenta actualizando la página.", "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!", @@ -50,7 +50,7 @@ "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.", + "messageGroupChatAdminClearFlagCount": "¡Sólo un administrador puede borrar la cuenta!", + "messageUserOperationProtected": "la ruta <%= operation %> no se guardó porque es una ruta protegida.", "messageUserOperationNotFound": "<%= operation %> no encontrado" } \ No newline at end of file diff --git a/common/locales/es/npc.json b/common/locales/es/npc.json index b294db5174..b8b2481a26 100644 --- a/common/locales/es/npc.json +++ b/common/locales/es/npc.json @@ -35,17 +35,17 @@ "amazonInstructions": "Haz click en el botón para pagar con Amazon Payments", "paymentMethods": "Comprar con", "classGear": "Equipo de clase", - "classGearText": "Primero: ¡No te preocupes! Tu equipo viejo está en tu inventario y ahora llevas tu equipamiento de aprendiz de <%= klass %>. Llevar el equipo de tu clase te da un bonus del 50% a tus atributos. Sin embargo, eres libre de ponerte tu antiguo equipo.", + "classGearText": "Antes que nada, no te preocupes. El equipamiento que tenías está en tu inventario y ahora llevas el equipo de aprendiz de tu nueva clase. Si llevas objetos pertenecientes a tu clase, obtendrás una bonificación del 50% en tus estadísticas. Pero, si quieres, puedes volver a usar el equipamiento anterior sin ningún problema.", "classStats": "Éstas son las estadísticas de tu clase; afectan al gameplay. Cada vez que subas de nivel obtendrás un punto para asignar a una estadística en concreto. Mueve el puntero sobre cada estadística para más información.", "autoAllocate": "Asignación Automática", "autoAllocateText": "Si 'distribución automática' está seleccionado, tu avatar gana estadísticas automáticamente basado en los atributos de sus tareas, que puedes encontrar en TAREA > Editar > Avanzado > Atributos Por ejemplo, si haces ejercicio con frecuencia, y si tu Diaria de 'Ejercicio' está fijado en 'Físico', vas a ganar Fuerza automáticamente.", "spells": "Hechizos", - "spellsText": "Ahora podrás desvelar hechizos especificos a tu clase. El primero se desvela a nivel 11. Tu maná se rellena 10 puntos al día, mas 1 punto para cada completado", + "spellsText": "Ahora podrás desbloquear hechizos especificos para tu clase. El primero se desbloquea a nivel 11. Tu maná se rellena 10 puntos al día, mas 1 punto por cada completado", "toDo": "Tarea Pendiente", "moreClass": "Para mas información sobre el sistema de clase, mira en", "tourWelcome": "¡Bienvenido a Habitica! Esta es tu lista de Tareas Pendientes. ¡Tacha alguna tarea realizada para continuar!", "tourExp": "¡Buen trabajo! ¡Tachar tareas te da Experiencia y Oro!", - "tourDailies": "Esta columna es para las tareas Diarias. Para continuar, ¡pon una tarea que debas hacer todos los días! Ejemplo de tareas Diarias: Hacer la cama, Usar Hilo Dental, Comprobar Emails del Trabajo", + "tourDailies": "Esta columna es la de las tareas diarias. Para continuar, añade una tarea que debas hacer todos los días. Ejemplos de tareas diarias: hacer la cama, usar hilo dental o consultar el correo del trabajo", "tourCron": "¡Espléndido! Tus Tareas Diarias se restaurarán cada día.", "tourHP": "¡Atención! Si no completas tus Tareas Diarias antes de medianoche, ¡te dañarán!", "tourHabits": "¡Esta columna es para los buenos y malos hábitos que haces varias veces al día! Para continuar haz click al lápiz para editar los nombres, después haz click en el tick para guardarlo.", diff --git a/common/locales/es/pets.json b/common/locales/es/pets.json index a775e146e1..dfa62ceefa 100644 --- a/common/locales/es/pets.json +++ b/common/locales/es/pets.json @@ -19,7 +19,8 @@ "orca": "Orca", "royalPurpleGryphon": "Grifo real morado", "phoenix": "Fénix", - "rarePetPop1": "Haz clic en la pata dorada para saber cómo puedes conseguir esta mascota contribuyendo con Habitica.", + "bumblebee": "Bumblebee", + "rarePetPop1": "¡Haz clic en la pata dorada para saber cómo puedes conseguir esta mascota contribuyendo con Habitica!", "rarePetPop2": "¡Como Obtener Esta Mascota!", "potion": "Poción <%= potionType %>", "egg": "Huevo de <%= eggType %>", @@ -40,7 +41,7 @@ "stableBeastMasterProgress": "Progreso como domador de bestias: <%= number %> mascotas encontradas", "beastAchievement": "¡Has ganado el logro \"Maestro de Bestias\" por conseguir todas las mascotas!", "beastMasterName": "Domador de bestias", - "beastMasterText": "Has found all 90 pets (incredibly difficult, congratulate this user!)", + "beastMasterText": "Ha encontrado las 90 mascotas. (Increíblemente difícil, ¡felicita a este usuario!)", "beastMasterText2": "y ha soltado a sus mascotas <%= count %> veces en total", "mountMasterProgress": "Progreso como maestro de monturas", "stableMountMasterProgress": "Progreso como maestro de monturas: <%= number %> monturas domadas", diff --git a/common/locales/es/quests.json b/common/locales/es/quests.json index a92733689e..f8452787ab 100644 --- a/common/locales/es/quests.json +++ b/common/locales/es/quests.json @@ -25,7 +25,7 @@ "rejected": "Rechazado", "pending": "Pendiente", "questStart": "Una vez todos los miembros hayan aceptado o rechazado, la misión comenzará. Solo aquellos que hicieron click en \"aceptar\" podrán participar en la misión y recibir los premios. Si algún miembro queda pendiente durante mucho tiempo (¿inactivo?), el dueño de la misión puede empezar ésta sin que éstos hayan hecho click en \"Empezar\". El dueño de la misión también puede cancelar ésta y volver a obtener el pergamino de la misión haciendo click 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": "Cuando todos los miembros han aceptado o rechazado la invitación, la misión comienza... Solamente podrán participar en ella y recibir los botines quienes hayan hecho clic en \"Aceptar\". Si los miembros tardan demasiado en responder (tal vez hayan dejado de usar Habitica), el propietario de la misión puede iniciarla sin ellos haciendo clic en \"Comenzar\". El propietario también puede cancelar la misión y recuperar su pergamino haciendo clic en \"Cancelar\".", "begin": "Comenzar", "bossHP": "Salud del Jefe", "bossStrength": "Fuerza del Jefe", @@ -36,13 +36,13 @@ "itemsToCollect": "Objetos por recoger", "bossDmg1": "Cada tarea Diaria y Pendiente y cada Hábito positivo que completes hacen daño al jefe. Hazle más daño con tareas más rojas o con Paliza Brutal y Llamarada. El jefe herirá a cada participante en la misión por cada tarea Diaria que te saltes (multiplicada por la Fuerza del jefe) además del daño habitual, así que ¡protege la salud de tu grupo completando tus tareas Diarias! Todos los daños sufridos y causados por un jefe son aplicados por cron (tu cambio de día).", "bossDmg2": "Solo los participantes pelearan contra el jefe y compartiran el botín de la misió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": "Todas las tareas diarias y pendientes, así como los hábitos positivos, hacen daño al jefe. Puedes hacerle más daño cuanto más roja es la tarea, y utilizando Golpe brutal o Estallido de llamas. El jefe causará daños a cada participante de la misión por cada tarea diaria que no hayáis cumplido (multiplicadas por la fuerza del jefe) además del daño que recibís habitualmente: para que todos sigáis sanos, cumplid las tareas diarias. Todos los daños causados y sufridos por un jefe se aplican en el cron (el cambio de día del usuario).", "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...", + "tavernBossInfo": "Complete Dailies and To-Dos and score positive Habits to damage the World Boss! Incomplete Dailies fill the Rage Bar. When the Rage 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 tus tareas diarias y pendientes, y cumple tus hábitos positivos para herir al jefe mundial. Las tareas diarias que no se cumplan aumentarán la Barra de golpes de cansancio. Cuando esa barra se llene, el jefe mundial atacará a un PNJ. Los jefes mundiales nunca provocan ningún daño a jugadores sueltos. Solamente cuentan las tareas de los usuarios activos que no estén descansando en la Taberna.", "bossColl1": "Para conseguir objetos de misión, haz tus tareas. Los objetos de misión aparecen como los demás; sin embargo, no los verás hasta el día siguiente, en ese momento todo lo que hayais encontrado se pondrá en común.", "bossColl2": "Solo los participantes pueden coger objetos y su parte 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 recibir objetos, cumple tus tareas positivas. Los objetos de las misiones se obtienen igual que los objetos convencionales, con una diferencia: no verás este tipo de botín hasta el día siguiente, cuando se haga el recuento de todo lo que habéis encontrado.", "bossColl2Broken": "Solo los participantes pueden coger objetos y su parte del botín de la misión...", "abort": "Abandonar", "leaveQuest": "Abandonar la misión", @@ -70,7 +70,7 @@ "sureAbort": "¿Estás seguro que quieres abandonar esta misión? Abortará para todos los componentes del grupo y todo progreso se perderá. El pergamino de la misión volverá a su dueño.", "doubleSureAbort": "¿Estás totalmente seguro? ¡Asegurate de que no te vayan a odiar para siempre!", "questWarning": "Si nuevos miembros se unen al equipo antes de que comience la misión, también recibirán una invitación. Sin embargo, una vez que la misión ha comenzado, nuevos miembros no se pueden unir a la misión.", - "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": "Si nuevos miembros se unen al grupo antes de que comience la misión, también recibirán una invitación... Sin embargo, una vez que la misión ha comenzado, ningún miembro nuevo se puede unir a la misión...", "bossRageTitle": "Ira", "bossRageDescription": "¡Cuando esta barra se llene, el jefe desatará un ataque especial!", "startAQuest": "EMPRENDER UNA MISIÓN", @@ -78,5 +78,5 @@ "whichQuestStart": "¿Qué misión quieres emprender?", "getMoreQuests": "Conseguir más misiones", "unlockedAQuest": "¡Has desbloqueado una misión!", - "leveledUpReceivedQuest": "You leveled up to Level <%= level %> and received a quest scroll!" + "leveledUpReceivedQuest": "¡Has subido a Nivel <%= level %> y has recibido un pergamino de misión!" } \ No newline at end of file diff --git a/common/locales/es/questscontent.json b/common/locales/es/questscontent.json index f5accf4308..2efa073a8d 100644 --- a/common/locales/es/questscontent.json +++ b/common/locales/es/questscontent.json @@ -1,11 +1,11 @@ { "questEvilSantaText": "Santa Trampero", - "questEvilSantaNotes": "You hear agonized roars deep in the icefields. You follow the growls - punctuated by the sound of cackling - to a clearing in the woods, where you see a fully-grown polar bear. She's caged and shackled, fighting for her life. Dancing atop the cage is a malicious little imp wearing a castaway costume. Vanquish Trapper Santa, and save the beast!", - "questEvilSantaCompletion": "Trapper Santa squeals in anger, and bounces off into the night. The grateful she-bear, through roars and growls, tries to tell you something. You take her back to the stables, where Matt Boch the Beast Master listens to her tale with a gasp of horror. She has a cub! He ran off into the icefields when mama bear was captured.", + "questEvilSantaNotes": "Escuchas rugidos lastimeros en las profundidades de los campos de hielo. Sigues los gruñidos - interrumpidos por carcajadas - hasta un claro en el bosque, donde ves una osa polar adulta. Está enjaulada y encadenada, luchando por su vida. Bailando encima de la jaula se encuentra un diablillo malicioso vestido como un náufrago. Vence a Santa Trampero ¡y salva a la bestia!", + "questEvilSantaCompletion": "Santa Trampero chilla furioso y se adentra en la noche saltando. La osa agradecida intenta decirte algo mediante rugidos y gruñidos. La llevas de vuelta a los establos, donde Matt Boch, el Maestro de las Bestias, escucha su historia con un soplido de horror. ¡La osa tiene un cachorro! Éste escapó hacia los campos de hielo cuando mamá osa fue capturada.", "questEvilSantaBoss": "Santa Trampero", "questEvilSantaDropBearCubPolarMount": "Oso Polar (Montura)", "questEvilSanta2Text": "Encuentra al Cachorro", - "questEvilSanta2Notes": "When Trapper Santa captured the polar bear mount, her cub ran off into the icefields. You hear twig-snaps and snow crunch through the crystalline sound of the forest. Paw prints! You start racing to follow the trail. Find all the prints and broken twigs, and retrieve the cub!", + "questEvilSanta2Notes": "El cachorro de mamá osa se escapó a los campos de hielo cuando ella fue capturada por el trampero. Escucháis las ramitas partirse y el crugido de la nieve a través del cristalino sonido del bosque. ¡Huellas de patas! Empezais a correr siguiendo el rastro. ¡Encuentra todas las huellas y las ramitas rotas, y recupera a su cachorro!", "questEvilSanta2Completion": "¡Has encontrado al cachorro! Te hará copañía para siempre", "questEvilSanta2CollectTracks": "Huellas", "questEvilSanta2CollectBranches": "Ramitas Rotas", @@ -36,7 +36,7 @@ "questRatUnlockText": "Desbloquear la compra de huevos de rata en el Mercado", "questOctopusText": "La llamada de Octothulu", "questOctopusNotes": "@Urse, un escribano joven con los ojos desorbitados, ha pedido ayuda para explorar una cueva misteriosa en la orilla del mar. Entre las pozas crepúsculo se alza una enorme puerta de estalactitas y estalagmitas. Cuando te acercas a la puerta, un remolino oscuro comienza a girar en su base. Miras fijamente con asombro como un dragón-calamar se eleva a través de las fauces. \"La semilla pegajosa de las estrellas ha despertado\", ruge @Urse locamente. \"Después de vigintilliones de años, el gran Octothulu está suelto otra vez, y devorando por placer!\"", - "questOctopusCompletion": "With a final blow, the creature slips away into the whirlpool from which it came. You cannot tell if @Urse is happy with your victory or saddened to see the beast go. Wordlessly, your companion points to three slimy, gargantuan eggs in a nearby tidepool, set in a nest of gold coins. \"Probably just octopus eggs,\" you say nervously. As you return home, @Urse frantically scribbles in a journal and you suspect this is not the last time you will hear of the great Octothulu.", + "questOctopusCompletion": "Con un golpe final, la criatura se escapa en el remolino de la que procede. No se puede saber siUrse es feliz con su victoria o la tristeza de ver la marcha bestia. Sin palabras, su compañero apunta a tres huevos viscosos, gigantescos en una poza cercana, ubicada en un nido de monedas de oro. \"Probablemente sólo huevos de pulpo,\" dicen que con nerviosismo. Al regresar a casa,Urse garabatea frenéticamente en una revista y se sospeche que esta no es la última vez que se oye de la gran Octothulu.", "questOctopusBoss": "Octothulu", "questOctopusDropOctopusEgg": "Pulpo (Huevo)", "questOctopusUnlockText": "Desbloquear la compra de huevos de pulpo en el Mercado", @@ -59,45 +59,45 @@ "questSpiderDropSpiderEgg": "Araña (Huevo)", "questSpiderUnlockText": "Desbloquear la compra de huevos de araña en el Mercado", "questVice1Text": "Vicio, Parte 1: Libérate de la Influencia del Dragón", - "questVice1Notes": "

Dicen que un terrible mal habita en las cavernas del Monte Habitica. Un monstruo cuya presencia distorsiona la voluntad de los fuertes héroes del reino, volviéndolos hacia malos hábitos y pereza! La bestia es un gran dragón de inmenso poder, compuesto de las mismísimas sombras: Vicio, el traicionero Wyrm de Sombras. Valientes Habiteros, levántense y derroten a esta bestia inmunda de una vez por todas, pero solo si creen que puedan enfrentarse a su inmenso poder

Vicio Parte 1:

¿Como esperas luchar contra la bestia si ya tiene control sobre ti? ¡No seas la victima de la pereza y el vicio! ¡Trabaja duro para enfrentarte a la influencia obscura del dragón y disipar su poder sobre ti!

", + "questVice1Notes": "

Dicen que allí descansa un terrible diablo en las cavernas del Monte Habitica. ¡Un monstruo cuya presencia retuerce la voluntad de los fuertes héroes de la tierra, volviéndolos hacia malos hábitos y pereza! La bestia es un gran dragón de inmenso poder y compuesto de las mismísimas sombras: Vicio, el traicionero Wyrm de las Sombras. Los valientes Habitantes, se levantan y derrotan a esta repugnante bestia de una vez por todas, pero solo si crees que puedes soportar su inmenso poder.

Vicio Parte 1:

¿Cómo puedes pretender luchar contra la bestia si ya te controla? ¡No caigas víctima de la pereza y el vicio! ¡Trabaja duro para luchar contra la oscura influencia del dragón y desvanece su control sobre ti!

", "questVice1Boss": "Sombra de Vice", "questVice1DropVice2Quest": "Vice Parte 2 (Pergamino)", - "questVice2Text": "Vice, Part 2: Find the Lair of the Wyrm", + "questVice2Text": "Vicio, Parte 2: Encuentra la Guarida del Wyrm", "questVice2Notes": "Con la influencia de Vice sobre ti disipada, sientes de vuelta una oleada de fuerza que no sabías que tenías. Confiados en vosotros mismos y en vuestra capacidad para resistir la influencia de Wyrm, tu grupo se abre camino al Monte Habitica. Te acercas a la entrada de las cavernas de la montaña y paras. Jirones de sombras, casi como niebla, se retuercen en la abertura. Es casi imposible ver nada delante de ti. La luz de vuestras linternas parece terminar abruptamente donde comienzan las sombras. Se dice que sólo la luz mágica puede penetrar la bruma infernal del dragón. Si puedes encontrar suficientes cristales de luz, podrías abrirte camino hacia él.", "questVice2CollectLightCrystal": "Cristales de Luz", "questVice2DropVice3Quest": "Vice Parte 3 (Pergamino)", - "questVice3Text": "Vice, Part 3: Vice Awakens", + "questVice3Text": "Vicio, Parte 3: Vicio Se Despierta", "questVice3Notes": "Tras mucho esfuerzo, tu grupo a descubierto la guarida de Vice. El enorme monstruo observa a tu grupo con desaprovación. Una sombra se retuerce a tu alrededor, y una voz susurra en tu interior... \"¿Más necios de Habitica que intentan pararme? Encantador..., hubiera sido más inteligente no haber venido.\" El escamado titán alza su cabeza y se prepara para atacar. ¡Es tu oportunidad!¡Da lo mejor de tí y derrota a Vice de una vez por todas!", "questVice3Completion": "Las sombras se disipan de la caverna y un silencio férreo cae. ¡Vaya, lo habéis conseguido! ¡Habéis derrotado Vice! Tú y tu partido podéis por fin respirar tranquilos. Disfrutad de vuestra victoria, valientes Habiteers, pero recordad las lecciones que habéis aprendido al combatir a Vice y seguid adelante. ¡Todavía hay Hábitos por hacer y males potencialmente peores que conquistar!", "questVice3Boss": "Vice, el Wyrm Sombrío", "questVice3DropWeaponSpecial2": "La vara del Dragón de Stephen Weber", "questVice3DropDragonEgg": "Dragón (Huevo)", "questVice3DropShadeHatchingPotion": "Poción de eclosión sombría.", - "questMoonstone1Text": "The Moonstone Chain, Part 1: The Moonstone Chain", - "questMoonstone1Notes": "

Una terrible sufrimiento ha golpeados a los Habiticans. Los Malos Habits pensaron que los muertos están volviendo a la vida en busca de venganza. Los platos se quedan sin lavar,los libros de texto permanecen sin leer,y la procastinación huye como alma que lleva el diablo!


Sigues el rastro de algunos de tus", + "questMoonstone1Text": "La Cadena de Piedra Lunar, Parte 1: La Cadena de Piedra Lunar", + "questMoonstone1Notes": "A terrible affliction has struck Habiticans. Bad Habits thought long-dead are rising back up with a vengeance. Dishes lie unwashed, textbooks linger unread, and procrastination runs rampant!

You track some of your own returning Bad Habits to the Swamps of Stagnation and discover the culprit: the ghostly Necromancer, Recidivate. You rush in, weapons swinging, but they slide through her specter uselessly.

\"Don’t bother,\" she hisses with a dry rasp. \"Without a chain of moonstones, nothing can harm me – and master jeweler @aurakami scattered all the moonstones across Habitica long ago!\" Panting, you retreat... but you know what you must do.", "questMoonstone1CollectMoonstone": "Piedras Lunares", "questMoonstone1DropMoonstone2Quest": "La Cadena de la Piedra Lunar Parte 2: Haz Retroceder al Nigromante (Pergamino)", - "questMoonstone2Text": "The Moonstone Chain, Part 2: Recidivate The Necromancer", - "questMoonstone2Notes": "

El bravo herrero @Inventrix te ayuda a engarzar las piedras lunares encantadas en una cadena. Por fin estás preparado para enfrentarte a Reincidencia, pero al entrar en el Pantano del Estancamiento, un escalofrío terrible recorre tu cuerpo.


Un aliento podrido susurra en tu oreja. \"Aquí de nuevo? Encantador....\" Te giras y atacas, y bajo la luz de la cadena de piedras lunares, tu arma se hunde en carne sólida. \"Puedes haberme atado a este mundo una vez más\" suelta Reincidencia, \"¡pero ha llegado la hora de que tú lo abandones!\"

", + "questMoonstone2Text": "La Cadena de la Piedra Lunar Parte 2: Haz Retroceder al Nigromante", + "questMoonstone2Notes": "The brave weaponsmith @Inventrix helps you fashion the enchanted moonstones into a chain. You’re ready to confront Recidivate at last, but as you enter the Swamps of Stagnation, a terrible chill sweeps over you.

Rotting breath whispers in your ear. \"Back again? How delightful...\" You spin and lunge, and under the light of the moonstone chain, your weapon strikes solid flesh. \"You may have bound me to the world once more,\" Recidivate snarls, \"but now it is time for you to leave it!\"", "questMoonstone2Boss": "El nigromante", "questMoonstone2DropMoonstone3Quest": "La Cadena de la Piedra Lunar Parte 3: Retraso Trasformado (Pergamino)", - "questMoonstone3Text": "The Moonstone Chain, Part 3: Recidivate Transformed", - "questMoonstone3Notes": "

Reincidencia cae al suelo y tú la atacas con la cadena de piedras lunares. Horrorizado contemplas cómo Reincidencia agarra las gemas con una mirada triunfal.


\"¡Estúpida criatura de carne!\" grita. \"Estas piedras lunares me restauraran a una forma física, cierto, pero no como tú imaginabas. De la forma en que la luna llena se alimenta de la oscuridad, también así mi poder crece, y de las sombras ¡invoco el espectro del enemigo que más temes!\"


Una niebla verde nauseabunda se eleva desde el pantano, y el cuerpo de Reincidencia se retuerce y contorsiona para adaptarse a una silueta que te llena del peor de los miedos – el cuerpo no-muerto de Vicio, renacido para tu horror.

", - "questMoonstone3Completion": "

Te cuesta respirar y el sudor escuece tus ojos mientras Wyrm el no-muerto se derrumba. Los restos de Reincidencia se disipan en una fina niebla gris que desaparece rápidamente bajo la embestida de una refrescante brisa, y oyes los distantes gritos de guerra de los Habiticanos derrotando sus Malos Hábitos de una vez por todas.

\n

@Baconsaur, el maestro de las bestias, se abalanza sobre un grifo. \"Vi el final de vuestra batalla desde el cielo y quedé muy conmovido. Por favor, toma esta túnica encantada – tu valentía habla de un corazón noble, y pienso que estabas destinado a tenerla.\"

", + "questMoonstone3Text": "La Cadena de Piedra Lunar, Parte 3: Reincidencia Transformada", + "questMoonstone3Notes": "Recidivate crumples to the ground, and you strike at her with the moonstone chain. To your horror, Recidivate seizes the gems, eyes burning with triumph.

\"Foolish creature of flesh!\" she shouts. \"These moonstones will restore me to a physical form, true, but not as you imagined. As the full moon waxes from the dark, so too does my power flourish, and from the shadows I summon the specter of your most feared foe!\"

A sickly green fog rises from the swamp, and Recidivate’s body writhes and contorts into a shape that fills you with dread – the undead body of Vice, horribly reborn.", + "questMoonstone3Completion": "Your breath comes hard and sweat stings your eyes as the undead Wyrm collapses. The remains of Recidivate dissipate into a thin grey mist that clears quickly under the onslaught of a refreshing breeze, and you hear the distant, rallying cries of Habiticans defeating their Bad Habits for once and for all.

@Baconsaur the beast master swoops down on a gryphon. \"I saw the end of your battle from the sky, and I was greatly moved. Please, take this enchanted tunic – your bravery speaks of a noble heart, and I believe you were meant to have it.\"", "questMoonstone3Boss": "Necro-Vicio", "questMoonstone3DropRottenMeat": "Carne podrida (Comida)", "questMoonstone3DropZombiePotion": "Poción de eclosión Zombie", "questGoldenknight1Text": "El Caballero Dorado, Parte 1: Una Conversación con Stern.", - "questGoldenknight1Notes": "

El Caballero Dorado ha estado atosigando a los pobres Habitacans ¿No has cumplido todas tus tareas Diarias? ¿Desmarcado un Hábito negativo? Ella usará estos agumentos para hostigarte sobre como deberías seguir su ejemplo. Ella es la muestra brillante de un Habitacan perfecto y tú eres tan solo un fracaso. ¡Bueno, eso no esta bien para nada! Todo el mundo comete errores. Ellos no deberían tener que recibir esa muestra de pesimismo por ello. ¡Quizás sea el momento de reunir algunos testimonios de los afligidos Habitacans y darle al Caballero Dorado su merecido escarmiento!

", + "questGoldenknight1Notes": "The Golden Knight has been getting on poor Habiticans' cases. Didn't do all of your Dailies? Checked off a negative Habit? She will use this as a reason to harass you about how you should follow her example. She is the shining example of a perfect Habitican, and you are naught but a failure. Well, that is not nice at all! Everyone makes mistakes. They should not have to be met with such negativity for it. Perhaps it is time you gather some testimonies from hurt Habiticans and give the Golden Knight a stern talking-to!", "questGoldenknight1CollectTestimony": "Testimonios", - "questGoldenknight1DropGoldenknight2Quest": "The Golden Knight Chain Part 2: Gold Knight (Scroll)", + "questGoldenknight1DropGoldenknight2Quest": "La Cadena de la Dama de Oro Parte 2: Dama de Oro (Pergamino)", "questGoldenknight2Text": "El Caballero Dorado, Parte 2: Caballero Dorado", - "questGoldenknight2Notes": "

Armado con el testimonio de cientos de Habitacans, finalmente confrontas al Caballero Dorado. Así comienzas a recitar las quejas de los Habitacans hacia ella, una por una. \"Y @Pfeffernusse dice que tu constante fanfarronería-\" El Caballero alza su mano para silenciarte y se mofa, \"Por favor, esa gente está simplemente celosa de mis hazañas. ¡En lugar de quejarse, deberían simplemente esforzarse tanto como yo! ¡Quizás debería mostrarte todo el poder que se puede logar con una diligencia como la mía!\" ¡Levanta su lucero del alba y se dispone a atacarte!

", + "questGoldenknight2Notes": "Armed with hundreds of Habitican's testimonies, you finally confront the Golden Knight. You begin to recite the Habitcan's complaints to her, one by one. \"And @Pfeffernusse says that your constant bragging-\" The knight raises her hand to silence you and scoffs, \"Please, these people are merely jealous of my success. Instead of complaining, they should simply work as hard as I! Perhaps I shall show you the power you can attain through diligence such as mine!\" She raises her morningstar and prepares to attack you!", "questGoldenknight2Boss": "Caballero de Oro", "questGoldenknight2DropGoldenknight3Quest": "La Cadena del Caballero Dorado Parte 3: El Caballero de Hierro (Pergamino)", "questGoldenknight3Text": "El Caballero Dorado, Parte 3: El Caballero de Hierro", - "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!\"

", - "questGoldenknight3Completion": "

Con un satisfactorio ruido metálico, el Caballero de Hierro cae sobre sus rodillas y se desploma. \"Eres bastante fuerte,\" jadea. \"Me siento honrado, hoy.\" El Caballero Dorado se te acerca y dice, \"Gracias. Creo que nuestro encuentro me ha traído algo de humildad. Hablaré con mi padre y le explicaré las quejas que habían hacia nosotros. Quizás, deberíamos empezar a disculparnos a los otros Habitacans\" Ella sopesa antes de darse la vuelta hacia ti. \"Toma: como regalo, quiero que te quedes mi lucero del alba. Es toda tuya ahora.\"

", + "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!\"", + "questGoldenknight3Completion": "With a satisfying clang, the Iron Knight falls to his knees and slumps over. \"You are quite strong,\" he pants. \"I have been humbled, today.\" The Golden Knight approaches you and says, \"Thank you. I believe we have gained some humility from our encounter with you. I will speak with my father and explain the complaints against us. Perhaps, we should begin apologizing to the other Habiticans.\" She mulls over in thought before turning back to you. \"Here: as our gift to you, I want you to keep my morningstar. It is yours now.\"", "questGoldenknight3Boss": "El Caballero de Hierro", "questGoldenknight3DropHoney": "Miel (Comida)", "questGoldenknight3DropGoldenPotion": "Poción de Eclosión Dorado", @@ -112,7 +112,7 @@ "questEggHuntCollectPlainEgg": "Huevos lisos", "questEggHuntDropPlainEgg": "Huevo liso", "questDilatoryText": "El Aterrador Drag'on de la Dilación", - "questDilatoryNotes": "

Deberíamos haber hecho caso a las advertencias.


Brillantes ojos oscuros. Antiguas escamas. Enormes mandíbulas, y centelleantes dientes. Hemos despertado algo horrible desde la grieta: El Aterrador Drag'on de la Dilación! Gritando, los Habiticanos huyen en todas direcciones cuando emerge del oceano, su terriblemente largo cuello se extiende cientos de metros fuera del agua mientras destroza las ventanas con su abrasador rugido.


\"Esto debe ser lo que tiraba de Dilación hacia abajo!\" aulla Lemoness. \"No era el peso de las tareas sin hacer - ¡Las Tareas Diarias Rojas están atrayendo su atención!


\"Se está imbuyendo de energía mágica!\" @Baconsaur llora. \"Para haber sobrevivido tanto tiempo, tiene que ser capaz de curarse a si mismo! Como podríamos vencerlo?\"


Porque, de la misma manera que derrotamos a todas las bestias - siendo más productivos! Rápido, Habiticanos, uníos y atacadlo a través de vuestras tareas, y todos nosotros lucharemos contra este monstruo, JUNTOS! (No hay necesidad de abandonar las Quests anteriores - creemos en tu habilidad para combatir en dos frentes!) No nos atacará individualmente, pero cuantas más Diarias dejemos, más cerca estaremos de que disparare su Ataque de Negligencia - y no me gusta el modo en que está mirando a la Taberna...

", + "questDilatoryNotes": "We should have heeded the warnings.

Dark shining eyes. Ancient scales. Massive jaws, and flashing teeth. We've awoken something horrifying from the crevasse: the Dread Drag'on of Dilatory! Screaming Habiticans fled in all directions when it reared out of the sea, its terrifyingly long neck extending hundreds of feet out of the water as it shattered windows with its searing roar.

\"This must be what dragged Dilatory down!\" yells Lemoness. \"It wasn't the weight of the neglected tasks - the Dark Red Dailies just attracted its attention!\"

\"It's surging with magical energy!\" @Baconsaur cries. \"To have lived this long, it must be able to heal itself! How can we defeat it?\"

Why, the same way we defeat all beasts - with productivity! Quickly, Habitica, band together and strike through your tasks, and all of us will battle this monster together. (There's no need to abandon previous quests - we believe in your ability to double-strike!) It won't attack us individually, but the more Dailies we skip, the closer we get to triggering its Neglect Strike - and I don't like the way it's eyeing the Tavern....", "questDilatoryBoss": "El Aterrador Drag'on de la Dilación", "questDilatoryBossRageTitle": "Ataque de Negligencia", "questDilatoryBossRageDescription": "Cuando esta barra se complete, el Aterrador Drag'on de la Dilación desatará un inmenso castigo sobre las tierras de Habítica", @@ -140,9 +140,9 @@ "questAtom3Notes": "Con un rugido ensordecedor y cinco deliciosos tipos de queso rezumando de su boca, el Monstruo Snackless se hace trizas. \"¡CÓMO TE ATREVES!\" resuena una voz desde las profundidades de la superficie del agua. Un figura abrigada, de color azul, emerge a la superficie del lago, portando una escobilla del váter mágica. Ropa mugrienta comienza a salir a borbotones a la superficie del lago. \"¡Soy el Lavadomante!\" proclama enfadado. \"Qué osadía - lavaste mis preciados platos sucios, destruiste mi mascota y te presentas ante mis dominios con tan limpios atuendos. ¡Prepárate a empaparte de la ira de mi magia anti-lavado!\"", "questAtom3Completion": "¡El malvado Lavadomante ha sido derrotado! Ropa limpia cae apilada alrededor tuya. Las cosas se ven mucho mejor ahora por aquí. Mientras empiezas a caminar con tu recién pulida armadura, un destello metálico atrae tu atención y tu mirada recae sobre un resplandeciente yelmo. El propietario original de este brillante objeto puede ser desconocido, pero al ponértelo, sientes la acogedora presencia de un espíritu generoso. Una pena que no le etiquetaran un nombre.", "questAtom3Boss": "El Lavadomante", - "questAtom3DropPotion": "Base Hatching Potion", + "questAtom3DropPotion": "Poción de Eclosión Básica", "questOwlText": "La Lechuza", - "questOwlNotes": "La luz de la Taberna queda encendida hasta el amanecer
\n¡Hasta una víspera donde su brillo se fue!
\n¿Cómo vamos a ver durante toda la madrugada?
\n@Twitching grita, \"¡Necesitaremos algún camarada!\"
\n¿Ves esa rutilante Lechuza enemiga?
\n¡Lucha con prisa y no te deprimas!
\n¡Conseguiremos deshacernos de toda esta oscuridad,
\nY poder hacer que la noche vuelva a brillar una vez más!\"", + "questOwlNotes": "The Tavern light is lit 'til dawn
Until one eve the glow is gone!
How can we see for our all-nighters?
@Twitching cries, \"I need some fighters!
See that Night-Owl, starry foe?
Fight with haste and do not slow!
We'll drive its shadow from our door,
And make the night shine bright once more!\"", "questOwlCompletion": "Junto al amanecer la Lechuza desaparece,
\nMas tan solo un bostezo en tu cara acontece.
\n¿Quizás sea la hora de un descanso bien merecido?
\nPero al llegar a tu cama, ¡vislumbras un nido!
\nUna Lechuza bien conoce cómo ser atenta
\nPara acabar la tarea y mantenerte alerta,
\nPero tus nuevas mascotas piarán suavemente
\nY así recordarte cuando en tu catre habrás de meterte.", "questOwlBoss": "La Lechuza", "questOwlDropOwlEgg": "Búho (Huevo)", @@ -164,8 +164,8 @@ "questStressbeastBossRageBailey": "`¡La Abominable Bestia del Estrés usó GOLPE DE ESTRÉS!`\n\n¡El aumento repentino de estrés cura a la Abominable Bestia del Estrés!\n\n¡¡Ahhh!! ¡Nuestras Tareas Diarias sin completar han hecho que la Abominable Bestia del Estrés se vuelva más histérica que nunca y recupere parte de su vida! Bailey la Pregonera se puso a avisar a los ciudadanos para que se pusieran a salvo, ¡y ahora la despiadada bestia le ha cogido la mano! Mírala, valientemente informando sobre las noticias mientras la Bestia del Estrés la balancea brutalmente ... ¡Seamos dignos de su valentía siendo tan productivos como nos sea posible para salvar a nuestros PNJs!", "questStressbeastBossRageGuide": "`¡La Abominable Bestia del Estrés usó GOLPE DE ESTRÉS!`\n\n¡El aumento repentino de estrés cura a la Abominable Bestia del Estrés!\n\n¡Fíjate! ¡El guía Justin está corriendo alrededor de los tobillos de la Abominable Bestia del Estrés mientras grita trucos para ser más productivo y así intentar distraerla! La Abominable Bestia del Estrés está pisoteando fuerte de la rabia, y parece como si se estuviera agotando de verdad. Dudo que tenga energía suficiente para dar otro golpe. ¡No te rindas... estamos a poco de derrotarla!", "questStressbeastDesperation": "`¡La Abominable Bestia del Estrés ha llegado a 500k de salud! ¡La Abominable Bestia del Estrés usó Defensa Desesperada!´\n\n¡Casi lo hemos conseguido, Habiticans! ¡Con agilidad y Tareas Diarias, hemos reducido una pizca la salud de la Bestia del Estrés a 500k! La criatura ruge y cae en desesperación, la rabia aumenta más rápido que nunca. Bailey y Matt gritan del terror cuando empieza a moverse alrededor con esa paz aterrorizante, levantando a su paso una tormenta de nieve cegadora que hace que sea más difícil acertar.\n\nTendremos que esforzarnos el doble, pero no te desanimes - esto es señal de que la Bestia del Estrés sabe que va a ser derrotada. ¡No te rindas ahora!", - "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.\"", + "questStressbeastCompletion": "¡La Abominable Bestia del Estrés ha sido DERROTADA!

¡Lo logramos! Con un rugido final la Abominable Bestia del Estrés se disipa en una nube de nieve. Las copos de nieve brillan a través del aire mientras los Habiticanos vitorean y abrazan a sus mascotas y monturas. ¡Nuestros animales y nuestros PNJs están a salvo una vez más!

¡Stoïkalm se ha salvado!

SabreCat le habla suavemente a un pequeño dientes de sable. \"Por favor, ve a buscar a los ciudadanos de las Estepas de Stoïkalm y tráelos a nosotros,\" dice. Varias horas más tarde, el dientes de sable regresa con una manada de jinetes de mamut siguiéndolo lentamente detrás. Reconoces al jinete a la cabeza como Lady Glacial, líder de Stoïkalm.

\"Poderosos Habiticanos,\" dice, \"Mis ciudadanos y yo les debemos el más profundo agradecimiento, y las más sinceras disculpas. En un esfuerzo por proteger nuestras Estepas de la agitación, empezamos a desterrar en secreto a todo nuestro estrés hacia las montañas heladas. ¡No teníamos idea de que con las generaciones se convertiría en la Abominable Bestia del Estrés que vieron! Cuando se soltó, nos dejó atrapados en su lugar a todos en las montañas y arrasó con nuestros queridos animales.\" Su triste mirada sigue el caer de la nieve. \"Pusimos a todos en riesgo con nuestra necedad. Tengan por seguro que en el futuro nos acercaremos a ustedes con nuestros problemas antes de que nuestros problemas se acerquen a ustedes\".

Ella se vuelve hacia donde @Baconsaur abraza a unos mamuts bebé. \"Les hemos traído a sus animales una ofrenda de alimentos para disculparnos por asustarlos, y como símbolo de confianza, vamos a dejar algunas de nuestras mascotas y monturas con ustedes. Sabemos que van cuidar bien de ellos.\"", + "questStressbeastCompletionChat": "`¡La Abominable Bestia del Estrés ha sido DERROTADA!`\n\n¡Lo logramos! Con un rugido final la Abominable Bestia del Estrés se disipa en una nube de nieve. Las copos de nieve brillan a través del aire mientras los Habiticanos vitorean y abrazan a sus mascotas y monturas. ¡Nuestros animales y nuestros PNJs están a salvo una vez más!\n\n`¡Stoïkalm se ha salvado!`\n\nSabreCat le habla suavemente a un pequeño dientes de sable. \"Por favor, ve a buscar a los ciudadanos de las Estepas de Stoïkalm y tráelos a nosotros,\" dice. Varias horas más tarde, el dientes de sable regresa con una manada de jinetes de mamut siguiéndolo lentamente detrás. Reconoces al jinete a la cabeza como Lady Glacial, líder de Stoïkalm.\n\n\"Poderosos Habiticanos,\" dice, \"Mis ciudadanos y yo les debemos el más profundo agradecimiento, y las más sinceras disculpas. En un esfuerzo por proteger nuestras Estepas de la agitación, empezamos a desterrar en secreto a todo nuestro estrés hacia las montañas heladas. ¡No teníamos idea de que con las generaciones se convertiría en la Abominable Bestia del Estrés que vieron! Cuando se soltó, nos dejó atrapados en su lugar a todos en las montañas y arrasó con nuestros queridos animales.\" Su triste mirada sigue el caer de la nieve. \"Pusimos a todos en riesgo con nuestra necedad. Tengan por seguro que en el futuro nos acercaremos a ustedes con nuestros problemas antes de que nuestros problemas se acerquen a ustedes\".\n\nElla se vuelve hacia donde @Baconsaur abraza a unos mamuts bebé. \"Les hemos traído a sus animales una ofrenda de alimentos para disculparnos por asustarlos, y como símbolo de confianza, vamos a dejar algunas de nuestras mascotas y monturas con ustedes. Sabemos que van cuidar bien de ellos.\"", "questTRexText": "Rey de los Dinosaurios", "questTRexNotes": "Ahora que las criaturas ancestrales las Estepas de Stoïkalm están vagando a través de toda Habitica, @Urse ha decidido adopotar un Tiranosaurio adulto. ¿Qué podría salir mal?

Todo.", "questTRexCompletion": "El dinosaurio salvaje finalmente para su alboroto y se calma para hacer amigos con los gallos gigantes. @Urse sonríe de oreja a oreja. \"¡No son mascotas tan terribles, después de todo! Sólo necesitan un poco de disciplina. Aquí, toma unos huevos Tiranosaurio por ti mismo.\"", @@ -191,105 +191,122 @@ "questBunnyCompletion": "Con una última estocada, el conejo asesino cae al suelo. Una neblina centelleante emerge de su cuerpo transformándola en un pequeño conejito... nada parecido a cruel bestia a la que te encaraste hace un momento. Moviendo su nariz desaparece saltando, dejando atrás algunos huevos. @Gully se ríe. \"El Monte Procrastinación tiene su manera de hacer que los más retos pequeños se vean infranqueables. Recojamos esos huevos y marchémonos a casa.\"", "questBunnyDropBunnyEgg": "Conejo (Huevo)", "questBunnyUnlockText": "Desbloquear la compra de huevos de conejo en el Mercado", - "questSlimeText": "The Jelly Regent", - "questSlimeNotes": "As you work on your tasks, you notice you are moving slower and slower. \"It's like walking through molasses,\" @Leephon grumbles. \"No, like walking through jelly!\" @starsystemic says. \"That slimy Jelly Regent has slathered his stuff all over Habitica. It's gumming up the works. Everybody is slowing down.\" You look around. The streets are slowly filling with clear, colorful ooze, and Habiticans are struggling to get anything done. As others flee the area, you grab a mop and prepare for battle!", - "questSlimeBoss": "Jelly Regent", - "questSlimeCompletion": "With a final jab, you trap the Jelly Regent in an over-sized donut, rushed in by @Overomega, @LordDarkly, and @Shaner, the quick-thinking leaders of the pastry club. As everyone is patting you on the back, you feel someone slip something into your pocket. It’s the reward for your sweet success: three Marshmallow Slime eggs.", + "questSlimeText": "La Jalea Regente", + "questSlimeNotes": "Mientras te ocupas de tus tareas, te das cuenta de que te estás moviendo más y más lento. \"Es como caminar a través de melaza,\" se queja @Leephon. \"¡No, como atravesar jalea!\" dice @starsystemic. \"Esa babosa Jalea Regente ha untado su sustancia por toda Habitica. Está arruinando los trabajos. Todo el mundo se está volviendo más lento.\" Tú miras alrededor. Las calles se están llenando de a poco con un cieno claro y colorido, y los Habiticanos están luchando para poder terminar algo. Mientras otros huyen del área, ¡tú agarras un trapeador y te preparas para la batalla!", + "questSlimeBoss": "Jalea Regente", + "questSlimeCompletion": "Con un golpe final, atrapas a la Jalea Regente en una dona demasiado grande que te fue alcanzada por @Overomega, @LordDarkly y @Shaner, los líderes con reflejos rápidos del club de pastelería. Mientras todos te dan palmadas en la espalda, sientes a alguien poner discretamente algo en tu bolsillo. Es la recompensa por tu dulce éxito: tres huevos de Baba de Malvavisco.", "questSlimeDropSlimeEgg": "Limo de Malvavisco (Huevo)", "questSlimeUnlockText": "Desbloquear la compra de huevos de limo en el Mercado", - "questSheepText": "The Thunder Ram", - "questSheepNotes": "As you wander the rural Taskan countryside with friends, taking a \"quick break\" from your obligations, you find a cozy yarn shop. You are so absorbed in your procrastination that you hardly notice the ominous clouds creep over the horizon. \"I've got a ba-a-a-ad feeling about this weather,\" mutters @Misceo, and you look up. The stormy clouds are swirling together, and they look a lot like a... \"We don't have time for cloud-gazing!\" @starsystemic shouts. \"It's attacking!\" The Thunder Ram hurtles forward, slinging bolts of lightning right at you!", - "questSheepBoss": "Thunder Ram", - "questSheepCompletion": "Impressed by your diligence, the Thunder Ram is drained of its fury. It launches three huge hailstones in your direction, and then fades away with a low rumble. Upon closer inspection, you discover that the hailstones are actually three fluffy eggs. You gather them up, and then stroll home under a blue sky.", + "questSheepText": "Carnero de Trueno", + "questSheepNotes": "Mientras deambulas por las campiñas de Taskan con tus amigos, tomando un \"rápido descanso\" de tus obligaciones, encuentras una acogedora tienda de estambre. Estás tan sumergido en tu procrastinación que apenas te das cuenta de las siniestras nubes que cubren el cielo. \"Tengo un ma-a-al presentimiento de este clima\", balbucea @Misceo mientras miras hacia arriba. Las tempestuosas nubes se arremolinan y se parecen mucho a un... \"¡No tenemos tiempo para mirar nubes!\" grita @starsystemic. \"¡Está atacando!\" ¡El Carnero del Trueno se abalanza, lanzando rayos hacia ti!", + "questSheepBoss": "Carnero de Trueno", + "questSheepCompletion": "La furia del Carnero del Trueno merma cuando éste queda impresionado por tu diligencia. La criatura lanza granizo en tu dirección, y luego se desvanece con un retumbo grave. Al inspeccionar más de cerca, descubres que las piedras de granizo son en realidad tres huevos suaves y esponjosos. Los recoges, y luego caminas tranquilamente a casa debajo de un cielo azul.", "questSheepDropSheepEgg": "Oveja (Huevo)", "questSheepUnlockText": "Desbloquear la compra de huevos de oveja en el Mercado", "questKrakenText": "El Kraken del Inkompleto", - "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!\"", + "questKrakenNotes": "Es un día cálido y soleado mientras navegas a través de la Bahía Inkompleta, pero tus pensamientos están llenos de preocupaciones sobre todo lo que aún te queda por hacer. Pareciera que apenas terminas una tarea, otra brota de la nada, y luego otra...

De pronto el bote da una horrible sacudida, ¡y tentáculos babosos emergen del agua por todas partes! \"¡Estamos siendo atacados por el Kraken de Inkompleta!\" grita Wolvenhalo.

\"¡Rápido!\" te llama Lemoness. \"¡Derriba la mayor cantidad de tentáculos que puedas antes de que otros se alzen y tomen su lugar!\"", "questKrakenBoss": "El Kraken del Inkompleto", - "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": "Mientras el Kraken huye, varios huevos flotan hacia la superficie del agua. Lemoness los examina, y su recelo se transforma en placer. \"¡Huevos de sepia!\" dice. \"Aquí tienes, tómalos como recompensa por todo lo que has completado.\"", "questKrakenDropCuttlefishEgg": "Sepia (Huevo)", "questKrakenUnlockText": "Desbloquear la compra de huevos de sepia en el Mercado", - "questWhaleText": "Wail of the Whale", - "questWhaleNotes": "You arrive at the Diligent Docks, hoping to take a submarine to watch the Dilatory Derby. Suddenly, a deafening bellow forces you to stop and cover your ears. \"Thar she blows!\" cries Captain @krazjega, pointing to a huge, wailing whale. \"It's not safe to send out the submarines while she's thrashing around!\"

\"Quick,\" calls @UncommonCriminal. \"Help me calm the poor creature so we can figure out why she's making all this noise!\"", - "questWhaleBoss": "Wailing Whale", - "questWhaleCompletion": "After much hard work, the whale finally ceases her thunderous cry. \"Looks like she was drowning in waves of negative habits,\" @zoebeagle explains. \"Thanks to your consistent effort, we were able to turn the tides!\" As you step into the submarine, several whale eggs bob towards you, and you scoop them up.", + "questWhaleText": "El lamento de la Ballena", + "questWhaleNotes": "Llegas a los Muelles Diligentes, esperando abordar un submarino para ver el Derby de Dilatoria. De pronto, un bramido ensordecedor te obliga a detenerte y tapar tus oídos. \"¡Por allí resopla!\" grita el Capitán @krazjega, señalando a una enorme ballena que se lamenta. \"¡No es seguro enviar a los submarinos mientras ella está dando vueltas!\"

\"Rápido,\" dice @UncommonCriminal. \"¡Ayúdenme a calmar a esta pobre criatura así podemos averiguar por qué está haciendo todo este ruido!\"", + "questWhaleBoss": "Ballena Llorando", + "questWhaleCompletion": "Luego de un arduo trabajo, la ballena finalmente cesa su llanto estruendoso. \"Parece que estaba ahogándose en olas de hábitos negativos,\" explica @zoebeagle. \"¡Gracias a tu consistente esfuerzo hemos podido cambiar el curso de la situación!\" Mientras entras al submarino, varios huevos de ballena flotan hacia ti, y tú los recoges.", "questWhaleDropWhaleEgg": "Ballena (Huevo)", "questWhaleUnlockText": "Desbloquear la compra de huevos de ballena en el Mercado", - "questDilatoryDistress1Text": "Dilatory Distress, Part 1: Message in a Bottle", - "questDilatoryDistress1Notes": "A message in a bottle arrived from the newly rebuilt city of Dilatory! It reads: \"Dear Habiticans, we need your help once again. Our princess has disappeared and the city is under siege by some unknown watery demons! The mantis shrimps are holding the attackers at bay. Please aid us!\" To make the long journey to the sunken city, one must be able to breathe water. Fortunately, the alchemists @Benga and @hazel can make it all possible! You only have to find the proper ingredients.", - "questDilatoryDistress1Completion": "You don the the finned armor and swim to Dilatory as quickly as you can. The merfolk and their mantis shrimp allies have managed to keep the monsters outside the city for the moment, but they are losing. No sooner are you within the castle walls than the horrifying siege descends!", + "questDilatoryDistress1Text": "Peligro en Dilatoria, Parte 1: Mensaje en una Botella", + "questDilatoryDistress1Notes": "¡Un mensaje en una botella llegó desde la recientemente reconstruida ciudad de Dilatoria! Dice: \"Queridos Habiticanos, necesitamos su ayuda una vez más. ¡Nuestra princesa ha desaparecido y la ciudad está bajo asedio de unos demonios acuáticos desconocidos! Las mantis marinas están manteniendo a raya a los atacantes. ¡Por favor ayúdennos!\" Para efectuar el largo viaje a la ciudad sumergida, uno debe tener la capacidad de respirar agua. ¡Por suerte, los alquimistas @Benga y @hazel pueden hacerlo todo posible! Sólo tienes que encontrar los ingredientes adecuados.", + "questDilatoryDistress1Completion": "Te pones la armadura con aletas y nadas a Dilatoria lo más rápido que puedes. Los tritones y sirenas y sus aliadas, las mantis marinas, han logrado mantener a los monstruos fuera de la ciudad por el momento, pero están perdiendo. Acabas de entrar al castillo ¡cuando el espeluznante asedio desciende!", "questDilatoryDistress1CollectFireCoral": "Coral de Fuego", "questDilatoryDistress1CollectBlueFins": "Aletas Azules", - "questDilatoryDistress1DropArmor": "Finned Oceanic Armor (Armor)", - "questDilatoryDistress2Text": "Dilatory Distress, Part 2: Creatures of the Crevasse", - "questDilatoryDistress2Notes": "The siege can be seen from miles away: thousands of disembodied skulls rushing through a portal in the crevasse walls and making their way towards Dilatory.

When you meet King Manta in his war room, his eyes seem sunken, and his face is worried. \"My daughter Adva disappeared into the Dark Crevasse just before this siege began. Please find her and bring her back home safely! I will lend you my Fire Coral Circlet to aid you. If you succeed, it is yours.\"", - "questDilatoryDistress2Completion": "You vanquish the nightmarish horde of skulls, but you feel no closer to finding Adva. You speak to @Kiwibot, the royal tracker, to see if she has any ideas. \"The mantis shrimps that defend the city must have seen Adva escape,\" @Kiwibot says. \"Try following them into the Dark Crevasse.\"", + "questDilatoryDistress1DropArmor": "Armadura Oceánica con Aletas (Armadura)", + "questDilatoryDistress2Text": "Peligro en Dilatoria, Parte 2: Criaturas de la Grieta", + "questDilatoryDistress2Notes": "Los atacantes pueden verse desde kilómetros de distancia: miles de calaveras incorpóreas avanzando rápidamente a través de un portal en las paredes de la grieta y moviéndose hacia Dilatoria.

Cuando conoces al Rey Manta en su sala de guerra, sus ojos parecen hundidos, y su rostro se ve preocupado. \"Mi hija Adva desapareció en la Grieta Oscura justo antes de que este asedio comenzara. Por favor, ¡encuéntrala y tráela de vuelta a casa sana y salva! Te prestaré mi Diadema de Coral de Fuego para que te ayude. Si tienes éxito, es tuya.\"", + "questDilatoryDistress2Completion": "Vences a la horripilante horda de calaveras, pero no te sientes más cerca de encontrar a Adva. Hablas con @Kiwibot, la rastreadora real, para ver si ella tiene alguna idea. \"Las mantis marinas que defienden la ciudad deben haber visto a Adva escapar,\" dice @Kiwibot. \"Intenta seguirlas hasta el interior de la Grieta Oscura.\"", "questDilatoryDistress2Boss": "Enjambre de Carabelas Aquaticas", - "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!", - "questDilatoryDistress2RageEffect": "`Water Skull Swarm uses SWARM RESPAWN!`\n\nEmboldened by their victories, more skulls pour forth from the crevasse, bolstering the swarm!", - "questDilatoryDistress2DropSkeletonPotion": "Skeleton Hatching Potion", - "questDilatoryDistress2DropCottonCandyBluePotion": "Cotton Candy Blue Hatching Potion", - "questDilatoryDistress2DropHeadgear": "Fire Coral Circlet (Headgear)", - "questDilatoryDistress3Text": "Dilatory Distress, Part 3: Not a Mere Maid", + "questDilatoryDistress2RageTitle": "Regeneración de Enjambre", + "questDilatoryDistress2RageDescription": "Regeneración de Enjambre: Esta barra se va llenando cuando no completas tus Diarias. Cuando se llene completamente, ¡el Enjambre de Calaveras Acuáticas sanará el 30% de su salud restante!", + "questDilatoryDistress2RageEffect": "`¡El Enjambre de Calaveras Acuáticas usa REGENERACIÓN DE ENJAMBRE!`\n\n¡Incentivadas por sus victorias, más calaveras salen de la grieta, fortaleciendo al enjambre!", + "questDilatoryDistress2DropSkeletonPotion": "Poción de eclosión esquelética.", + "questDilatoryDistress2DropCottonCandyBluePotion": "Poción de eclosión Azul Algodón de Azúcar.", + "questDilatoryDistress2DropHeadgear": "Diadema de coral de fuego (equipo de cabeza)", + "questDilatoryDistress3Text": "Peligro en Dilatoria, Parte 3: No Sólo una Simple Doncella", "questDilatoryDistress3Notes": "Sigues las gambas predicadoras al fondo de la Grieta, y descubres una fortaleza submarina. La Princesa Adva, acompañada por más calaveras aguadas, te espera en el salón principal. \"Mi padre te ha enviado, ¿verdad? Dile que me niego a volver. Me basta estar aquí y practicar mi sorceria. ¡Sal immediatamente, o sufrirás la cólera de la nueva reina del océano!\" Adva parece muy obstinada, pero mientras que habla percibes un pendiente rubí y extraño colgando de su cuello que brilla siniestramente... ¿Quizás sus delirios cesarían al romperlo?", "questDilatoryDistress3Completion": "Finalmente, llegas a arrancar el pendiente encantado del cuello de Adva y lo tiras fuera. Adva se coge de la cabeza. \"¿Donde estoy?¿Qué pasó aquí?\" Después de escuchar tu historia, frunce su ceño. \"Este pendiente me lo dió una embajadora extraña - una mujer llamada 'Tzina'. ¡No me acuerdo nada después de eso!\"

De vuelta a la Dilación, Manta esta lleno de alegría. \"¡Déjame recompensarte con este tridente y escudo! Los pedí de @aiseant y @starsystemic como regalo para Adva, pero... preferiría no dejarle con armas por ahora.\"", - "questDilatoryDistress3Boss": "Adva, the Usurping Mermaid", + "questDilatoryDistress3Boss": "Adva, la Sirena Usurpadora", "questDilatoryDistress3DropFish": "Pescado (Comida)", - "questDilatoryDistress3DropWeapon": "Trident of Crashing Tides (Weapon)", - "questDilatoryDistress3DropShield": "Moonpearl Shield (Shield-Hand Item)", - "questCheetahText": "Such a Cheetah", - "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!\"", + "questDilatoryDistress3DropWeapon": "Tridente de Mareas Tempestuosas (Arma)", + "questDilatoryDistress3DropShield": "Escudo de Perla Lunar (Artículo Adicional)", + "questCheetahText": "Como un Guepardo", + "questCheetahNotes": "Mientras realizas una caminata a través de la Sabana Sloensteadi con tus amigos @PainterProphet, @tivaquinn, @Unruly Hyena, y @Crawford, te sobresaltas al ver a un Guepardo pasar corriendo con un nuevo Habiticano atrapado entre sus mandíbulas. Bajo las patas abrasadoras del Guepardo, las tareas son consumidas por el fuego como si estuvieran completas -- ¡antes de que alguien tenga la chance de realmente terminarlas! El Habiticano te ve y grita, \"¡Por favor, ayúdenme! Este Guepardo me está haciendo aumentar de nivel demasiado rápido, pero no estoy logrando hacer nada. Quiero disminuir la velocidad y disfrutar el juego. ¡Hagan que se detenga!\" Tú recuerdas cariñosamente tus propios días como novato, ¡y estás seguro de que tienes que ayudar al principiante deteniendo al Guepardo!", + "questCheetahCompletion": "El nuevo Habiticano está respirando con dificultad luego del recorrido desenfrenado, pero te agradece a ti y a tus amigos por su ayuda. \"Me alegra que el Guepardo no vaya a poder atrapar a nadie más. Pero sí dejó algunos huevos de Guepardo para nosotros, ¡así que quizás podríamos criarlos y convertirlos en mascotas más confiables!\"", "questCheetahBoss": "Guepardo", "questCheetahDropCheetahEgg": "Guepardo (Huevo)", "questCheetahUnlockText": "Desbloquear la compra de huevos de guepardo en el Mercado", - "questHorseText": "Ride the Night-Mare", - "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", + "questHorseText": "Monta a la Pesadi-Yegua", + "questHorseNotes": "Mientras te relajas en la Taberna con @beffymaroo y @JessicaChase, la charla se transforma en un amistoso alarde sobre tus logros en tus aventuras. Orgulloso de tus hazañas, y quizás dejándote llevar un poco, fanfarroneas sobre cómo puedes domar a cualquier tarea que encuentras. Un desconocido próximo a ti se da vuelta a mirarte y sonríe. Uno de sus ojos brilla cuando te invita a probar lo que dices montando a su caballo.\nMientras todos se dirigen hacia los establos, @UncommonCriminal murmura, \"El que mucho abarca poco aprieta. Eso no es un caballo - ¡es una Pesadi-Yegua!\" Viendo cómo sus pezuñas dan pisotones, comienzas a arrepentirte de tus palabras...", + "questHorseCompletion": "Requiere de todas tus habilidades, pero finalmente el caballo pisotea con algunas de sus pezuñas y te acaricia el hombro con el hocico antes de dejarte montarlo. Tú cabalgas brevemente pero de forma orgullosa alrededor del terreno de la Taberna mientras tus amigos te aclaman. El desconocido te muestra una gran sonrisa.\n\"¡Veo que no era un alarde vacío! Tu determinación es realmente impresionante. Toma estos huevos para criar tus propios caballos, y quizás algún día nos encontremos de nuevo.\" Tú agarras los huevos, el extraño inclina su sombrero... y desaparece.", + "questHorseBoss": "Pesadi-Yegua", "questHorseDropHorseEgg": "Caballo (Huevo)", - "questHorseUnlockText": "Unlocks purchasable Horse eggs in the Market", - "questBurnoutText": "Burnout and the Exhaust Spirits", - "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", + "questHorseUnlockText": "Desbloquear la compra de huevos de caballo en el Mercado", + "questBurnoutText": "Burnout y los Espíritus Consumidos", + "questBurnoutNotes": "Es ya bien pasada la medianoche, tranquila y sofocante, cuando Redphoenix y el capitán scout Kiwibot aparecen súbitamente cruzando las puertas de la ciudad. \"¡Tenemos que evacuar todos los edificios de madera!\" grita Redphoenix. \"¡Rápido!\"

Kiwibot se sujeta de la pared mientras recobra el aliento. \"¡Está drenando a la gente y conviertiéndola en Espíritus Consumidos! Por eso todo estaba demorado. Allí es adonde la gente desaparecida ha ido. ¡Es él quien ha estado robando su energía!\"

\"¿'Él'?\" pregunta Lemoness.

Y en ese momento el calor toma forma.

Se alza desde la tierra en una masa nebulosa y serpenteante, y el aire se satura de olor a humo y azufre. Llamas reptan a través del suelo fundido y se contorsionan formando extremidades, retorciéndose hacia alturas espeluznantes. Ojos ardientes se abren repentinamente, y la criatura deja escapar una carcajada profunda y chispeante.

Kiwibot murmura una única palabra.

\"Burnout.\"", + "questBurnoutCompletion": "¡Burnout es DERROTADO!

Con un gran, suave suspiro, Burnout gradualmente libera la energía ardiente que alimentaba su fuego. Mientras el monstruo silenciosamente se convierte en cenizas, su energía robada centellea en el aire, rejuveneciendo a los Espíritus Consumidos y devolviéndolos a sus formas originales.

Ian, Daniel y la Hechicera Estacional festejan mientras los Habiticanos se apuran a recibirlos, y todos los ciudadanos desaparecidos de los Campos Florecientes abrazan a sus amigos y a sus familias. ¡El último Espíritu Consumido se transforma en la mismísima Parca Alegre!

\"¡Miren!\" murmura @Baconsaur, al tiempo que las cenizas comienzan a brillar. ¡Lentamente, se convierten en cientos de fénix resplandecientes!

Una de las aves radiantes se posa sobre el brazo esquelético de la Parca Alegre, y ella le sonríe. \"Ha pasado ya bastante tiempo desde que tuve el privilegio exquisito de ver un fénix en los Campos Florecientes,\" dice. \"Aunque dados los hechos recientes, debo decir, ¡esto es extremadamente apropiado!\"

Su tono se vuelve serio, aunque (naturalmente) su sonrisa persiste. \"Somos conocidos por ser muy trabajadores aquí, pero también lo somos por nuestros banquetes y festividades. Es bastante irónico, supongo, que mientras nos esforzábamos para planear una fiesta espectacular, nos rehusamos a permitirnos un tiempo de ocio. ¡Desde luego no volveremos a cometer el mismo error dos veces!\"

La Parca Alegre aplaude. \"Ahora - ¡a celebrar!\"", + "questBurnoutCompletionChat": "`¡Burnout es DERROTADO!`\n\nCon un gran, suave suspiro, Burnout gradualmente libera la energía ardiente que alimentaba su fuego. Mientras el monstruo silenciosamente se convierte en cenizas, su energía robada centellea en el aire, rejuveneciendo a los Espíritus Consumidos y devolviéndolos a sus formas originales.\n\nIan, Daniel y la Hechicera Estacional festejan mientras los Habiticanos se apuran a recibirlos, y todos los ciudadanos desaparecidos de los Campos Florecientes abrazan a sus amigos y a sus familias. ¡El último Espíritu Consumido se transforma en la mismísima Parca Alegre!\n\n\"¡Miren!\" murmura @Baconsaur, al tiempo que las cenizas comienzan a brillar. ¡Lentamente, se convierten en cientos de fénix resplandecientes!\n\nUna de las aves radiantes se posa sobre el brazo esquelético de la Parca Alegre, y ella le sonríe. \"Ha pasado ya bastante tiempo desde que tuve el privilegio exquisito de ver un fénix en los Campos Florecientes,\" dice. \"Aunque dados los hechos recientes, debo decir, ¡esto es extremadamente apropiado!\"\n\nSu tono se vuelve serio, aunque (naturalmente) su sonrisa persiste. \"Somos conocidos por ser muy trabajadores aquí, pero también lo somos por nuestros banquetes y festividades. Es bastante irónico, supongo, que mientras nos esforzábamos para planear una fiesta espectacular, nos rehusamos a permitirnos un tiempo de ocio. ¡Desde luego no volveremos a cometer el mismo error dos veces!\"\n\nLa Parca Alegre aplaude. \"Ahora - ¡a celebrar!\"\n\nTodos los Habiticanos reciben:\n\nFénix (Mascota)\nFénix (Montura)\nLogro: Salvador de los Campos Florecientes\nCaramelo Básico\nCaramelo de Vainilla\nCaramelo de Arena\nCaramelo de Canela\nCaramelo de Chocolate\nCaramelo Podrido\nCaramelo Rosa Agrio\nCaramelo Azul Agrio\nCaramelo de Miel", "questBurnoutBoss": "Burnout", - "questBurnoutBossRageTitle": "Exhaust Strike", - "questBurnoutBossRageDescription": "When this gauge fills, Burnout will unleash its Exhaust Strike on Habitica!", + "questBurnoutBossRageTitle": "Ataque Consumidor", + "questBurnoutBossRageDescription": "¡Cuando esta barra se llene, Burnout desatará su Ataque Consumidor sobre Habitica!", "questBurnoutDropPhoenixPet": "Fénix (Mascota)", "questBurnoutDropPhoenixMount": "Fénix (Montura)", - "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.\"", + "questBurnoutBossRageQuests": "`¡Burnout usa ATAQUE CONSUMIDOR!`\n\n¡Oh, no! A pesar de nuestros mejores esfuerzos, hemos dejado que algunas Diarias se nos escaparan, ¡y ahora Burnout está hinchado de energía! Con un rugido chispeante, envuelve a Ian, el Maestro de las Misiones, en una explosión de fuego espectral. Mientras pergaminos de misión caídos arden, el humo se disipa, ¡y puedes ver que Ian ha sido drenado de energía y convertido en un Espíritu Consumido a la deriva!\n\nSolamente vencer a Burnout puede romper el hechizo y devolver a nuestro querido Maestro de las Misiones. ¡Mantengamos a nuestras Diarias bajo control y derrotemos a este monstruo antes de que ataque de nuevo!", + "questBurnoutBossRageSeasonalShop": "`¡Burnout usa ATAQUE CONSUMIDOR!`\n\n¡¡¡Ahh!!! ¡Nuestras Diarias incompletas han alimentado las llamas de Burnout, y ahora tiene suficiente energía para atacar de nuevo! El monstruo deja escapar un chorro de llamas espectrales que chamuscan la Tienda Estacional. Te horrorizas al ver que la alegre Hechicera Estacional ha sido transformada en un triste Espíritu Consumido.\n\n¡Tenemos que rescatar a nuestros PNJs! ¡Rápido, Habiticanos, completen sus tareas y derroten a Burnout antes de que ataque una tercera vez!", + "questBurnoutBossRageTavern": "`¡Burnout usa ATAQUE CONSUMIDOR!`\n\nMuchos Habiticanos han estado escondiéndose de Burnout en la Taberna, ¡pero ya no más! Con un aullido chirriante, Burnout rastrilla la Taberna con sus manos blancas y ardientes. Mientras los clientes de la Taberna huyen, ¡Daniel es atrapado por Burnout, y se transforma en un Espíritu Consumido justo delante de ti!\n \nEste impetuoso horror se ha extendido demasiado tiempo. No se rindan... ¡estamos tan cerca de vencer a Burnout de una vez por todas! ", + "questFrogText": "Pantano de la Rana de Desorden", + "questFrogNotes": "Mientras tú y tus amigos se esfuerzan para atravesar las Ciénagas del Estancamiento, @starsystemic señala un gran cartel. \"No te desvíes del camino -- si puedes.\"

\"¡Seguramente no es difícil!\" dice @RosemonkeyCT. \"Es ancho y está despejado.\"

Pero al continuar, notan que el camino es gradualmente invadido por el lodo de la ciénaga, entremezclado desordenadamente con pedazos azules de desechos, hasta que seguir avanzando se vuelve imposible.

Mientras miras alrededor, preguntándote cómo se transformó en un desastre, @Jon Arjinborn grita, \"¡Cuidado!\" Una rana furiosa salta desde el lodo, cubierta con ropa sucia y encendida por un fuego azul. ¡Van a tener que derrotar a esta venenosa Rana Desastrosa para continuar!", + "questFrogCompletion": "La rana se hunde en el lodo, derrotada. Mientras se escabulle, el cieno azul se disipa, despejando el camino.

Posados en el medio del sendero se encuentran tres huevos inmaculados. \"¡Se pueden ver incluso los pequeños renacuajos a través de la cubierta transparente!\" dice @Breadstrings. \"Tomen, deberían quedárselos.\"", "questFrogBoss": "Rana de Desorden", "questFrogDropFrogEgg": "Rana (Huevo)", "questFrogUnlockText": "Desbloquear la compra de huevos de rana en el Mercado", "questSnakeText": "La Serpiente de Distracción", - "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.", + "questSnakeNotes": "Para vivir en las Dunas de la Distracción hay que tener un alma resistente. El árido desierto es difícilmente un lugar productivo, y las dunas centelleantes han hecho que muchos viajeros se perdieran. Sin embargo, algo está asustando incluso a los lugareños. La arena ha estado desplazándose y dando vuelta pueblos enteros. Los residentes dicen que un monstruo con un cuerpo enorme y serpentino se encuentra al acecho debajo de la arena, y ofrecen una recompensa para quienquiera que los ayude a encontrarlo y detenerlo. Los aclamados encantadores de serpientes @EmeraldOx y @PainterProphet han accedido a ayudarte a atraer a la bestia. ¿Puedes detener a la Serpiente de la Distracción?", + "questSnakeCompletion": "Con ayuda de los encantadores destierras a la Serpiente de la Distracción. Aunque te alegra haber asistido a los habitantes de las Dunas, no puedes evitar sentirte un poco triste por tu enemigo caído. Mientras contemplas la vista, @LordDarkly se dirige a ti. \"¡Gracias! No es mucho, pero espero que esto pueda expresar nuestra gratitud.\" Te da un poco de Oro y... ¡algunos huevos de Serpiente! Volverás a ver a ese animal majestuoso, después de todo.", "questSnakeBoss": "Serpiente de Distracción", "questSnakeDropSnakeEgg": "Serpiente (Huevo)", "questSnakeUnlockText": "Desbloquear la compra de huevos de serpiente en el Mercado", - "questUnicornText": "Convincing the Unicorn Queen", - "questUnicornNotes": "Conquest Creek has become muddied, destroying Habit City's fresh water supply! Luckily, @Lukreja knows an old legend that claims that a unicorn's horn can purify the foulest of waters. Together with your intrepid guide @UncommonCriminal, you hike through the frozen peaks of the Meandering Mountains. Finally, at the icy summit of Mount Habitica itself, you find the Unicorn Queen amid the glittering snows. \"Your pleas are compelling,\" she tells you. \"But first you must prove that you are worthy of my aid!\"", - "questUnicornCompletion": "Impressed by your diligence and strength, the Unicorn Queen at last agrees that your cause is worthy. She allows you to ride on her back as she soars to the source of Conquest Creek. As she lowers her golden horn to the befouled waters, a brilliant blue light rises from the water’s surface. It is so blinding that you are forced to close your eyes. When you open them a moment later, the unicorn is gone. However, @rosiesully lets out a cry of delight: the water is now clear, and three shining eggs rest at the creek’s edge.", + "questUnicornText": "Persuadiendo a la Reina Unicornio", + "questUnicornNotes": "¡El Arroyo de la Conquista se ha vuelto turbio, destruyendo el suministro de agua potable de Ciudad Hábito! Afortunadamente, @Lukreja conoce una leyenda antigua que asegura que el cuerno de un unicornio puede purificar hasta las aguas más sucias. Acompañado por tu intrépido guía @UncommonCriminal, caminas entre las cumbres heladas de las Montañas Serpenteantes. Finalmente, en la cima congelada del mismísimo Monte Habitica, encuentras a la Reina Unicornio en medio de la nieve brillante. \"Tus súplicas son convincentes,\" te dice. \"¡Pero antes debes probar que eres digno de mi ayuda!\"", + "questUnicornCompletion": "Impresionada por tu diligencia y tu fuerza, la Reina Unicornio finalmente coincide en que tu causa es noble. Te deja montar sobre su lomo al tiempo que despega hacia la fuente del Arroyo de la Conquista. Mientras baja su cuerno dorado hacia las sucias aguas, una luz azul brillante se eleva desde la superficie de las mismas. Es tan enceguecedora que te obliga a cerrar los ojos. Cuando los abres un momento después, la unicornio se ha ido. Sin embargo, @rosiesully deja escapar un grito de alegría: el agua se ha vuelto clara, y tres huevos relucientes se posan sobre la orilla del arroyo.", "questUnicornBoss": "La Reina de Unicornio", "questUnicornDropUnicornEgg": "Unicornio (Huevo)", "questUnicornUnlockText": "Desbloquear la compra de huevos de unicornio en el Mercado", - "questSabretoothText": "The Sabre Cat", - "questSabretoothNotes": "A roaring monster is terrorizing Habitica! The creature stalks through the wilds and woods, then bursts forth to attack before vanishing again. It's been hunting innocent pandas and frightening the flying pigs into fleeing their pens to roost in the trees. @Inventrix and @icefelis explain that the Zombie Sabre Cat was set free while they were excavating in the ancient, untouched ice-fields of the Stoikalm Steppes. \"It was perfectly friendly at first – I don't know what happened. Please, you have to help us recapture it! Only a champion of Habitica can subdue this prehistoric beast!\"", - "questSabretoothCompletion": "After a long and tiring battle, you wrestle the Zombie Sabre Cat to the ground. As you are finally able to approach, you notice a nasty cavity in one of its sabre teeth. Realising the true cause of the cat's wrath, you're able to get the cavity filled by @Fandekasp, and advise everyone to avoid feeding their friend sweets in future. The Sabre Cat flourishes, and in gratitude, its tamers send you a generous reward – a clutch of sabretooth eggs!", - "questSabretoothBoss": "Zombie Sabre Cat", + "questSabretoothText": "El Dientes de sable", + "questSabretoothNotes": "¡Un monstruo está aterrorizando a Habitica con sus rugidos! La criatura acecha en los bosques, y luego se abalanza para atacar antes de desvanecerse nuevamente. Ha estado cazando pandas inocentes y asustando a los cerdos voladores, los cuales huyen de sus corrales y se posan en los árboles. @Inventrix y @icefelis explican que el Dientes de Sable Zombi fue liberado mientras excavaban en los antiguos, intactos campos de hielo de las Estepas de Stoïkalm. \"Al principio era perfectamente amistoso – no sé qué pasó. Por favor, ¡debes ayudarnos a capturarlo de vuelta! ¡Sólo un campeón de Habitica puede dominar a esta bestia prehistórica!\"", + "questSabretoothCompletion": "Luego de una larga y agotadora batalla, logras inmovilizar al Dientes de Sable Zombi. Cuando por fin te puedes acercar, notas una fea caries en uno de sus dientes de sable. Dándote cuenta de la verdadera causa de su furia, consigues que @Fandekasp arregle la caries, y les aconsejas a todos que no le den muchos dulces a su amigo en el futuro. El Dientes de Sable se alza fortalecido, y en agradecimiento, sus domadores te envían una generosa recompensa – ¡algunos huevos de Dientes de Sable!", + "questSabretoothBoss": "Dientes de sable zombie", "questSabretoothDropSabretoothEgg": "El Tigre Dientes de Sable (Huevo)", "questSabretoothUnlockText": "Desbloquear la compra de huevos de tigres dientes de sable en el Mercado", - "questMonkeyText": "Monstrous Mandrill and the Mischief Monkeys", - "questMonkeyNotes": "The Sloensteadi Savannah is being torn apart by the Monstrous Mandrill and his Mischief Monkeys! They shriek loudly enough to drown out the sound of approaching deadlines, encouraging everyone to avoid their duties and keep monkeying around. Alas, plenty of people ape this bad behavior. If no one stops these primates, soon everyone's tasks will be as red as the Monstrous Mandrill's face!

\"It will take a dedicated adventurer to resist them,\" says @yamato.

\"Quick, let's get this monkey off everyone's backs!\" @Oneironaut yells, and you charge into battle.", - "questMonkeyCompletion": "You did it! No bananas for those fiends today. Overwhelmed by your diligence, the monkeys flee in panic. \"Look,\" says @Misceo. \"They left a few eggs behind.\"

@Leephon grins. \"Maybe a well-trained pet monkey can help you as much as the wild ones hinder you!\"", - "questMonkeyBoss": "Monstrous Mandrill", - "questMonkeyDropMonkeyEgg": "Monkey (Egg)", - "questMonkeyUnlockText": "Unlocks purchasable Monkey eggs in the Market" + "questMonkeyText": "El Mandril Monstruoso y los Monos Traviesos", + "questMonkeyNotes": "¡La Sabana Sloensteadi está siendo destruida por el Mandril Monstruoso y sus Monos Maliciosos! Aúllan lo suficientemente fuerte como para ahogar el sonido de las fechas límites que se aproximan, alentando a todos a evadir sus obligaciones y seguir procrastinando. Cielos, mucha gente está imitando esta mala conducta. ¡Si nadie detiene a estos primates, muy pronto las tareas de todo el mundo se volverán tan rojas como la cara del Mandril Monstruoso!

\"Sólo un aventurero dedicado podrá resistirse a ellos,\" dice @yamato.

\"¡Rápido, hagamos que este mono deje de molestar a todos!\" grita @Oneironaut, y tú te preparas para la batalla.", + "questMonkeyCompletion": "¡Lo lograste! Esos diablillos no conseguirán bananas hoy. Agobiados por tu diligencia, los monos huyen llenos de pánico. \"Miren,\" dice @Misceo. \"Han dejado algunos huevos.\"

@Leephon sonríe. \"¡Quizás un mono mascota bien entrenado pueda ayudarte tanto como los salvajes te estorban!\"", + "questMonkeyBoss": "Mandril Monstruoso", + "questMonkeyDropMonkeyEgg": "Mono (Huevo)", + "questMonkeyUnlockText": "Desbloquea la compra de huevos de mono en el Mercado", + "questSnailText": "The Snail of Drudgery Sludge", + "questSnailNotes": "You're excited to begin questing in the abandoned Dungeons of Drudgery, but as soon as you enter, you feel the ground under your feet start to suck at your boots. You look up to the path ahead and see Habiticans mired in slime. @Overomega yells, \"They have too many unimportant tasks and dailies, and they're getting stuck on things that don't matter! Pull them out!\"

\"You need to find the source of the ooze,\" @Pfeffernusse agrees, \"or the tasks that they cannot accomplish will drag them down forever!\"

Pulling out your weapon, you wade through the gooey mud.... and encounter the fearsome Snail of Drudgery Sludge.", + "questSnailCompletion": "You bring your weapon down on the great Snail's shell, cracking it in two, releasing a flood of water. The slime is washed away, and the Habiticans around you rejoice. \"Look!\" says @Misceo. \"There's a small group of snail eggs in the remnants of the muck.\"", + "questSnailBoss": "Snail of Drudgery Sludge", + "questSnailDropSnailEgg": "Caracol (Huevo)", + "questSnailUnlockText": "Desbloquea la compra de huevos de Caracol en el Mercado", + "questBewilderText": "The Be-Wilder", + "questBewilderNotes": "The party begins like any other.

The appetizers are excellent, the music is swinging, and even the dancing elephants have become routine. Habiticans laugh and frolic amid the overflowing floral centerpieces, happy to have a distraction from their least-favorite tasks, and the April Fool whirls among them, eagerly providing an amusing trick here and a witty twist there.

As the Mistiflying clock tower strikes midnight, the April Fool leaps onto the stage to give a speech.

“Friends! Enemies! Tolerant acquaintances! Lend me your ears.” The crowd chuckles as animal ears sprout from their heads, and they pose with their new accessories.

“As you know,” the Fool continues, “my confusing illusions usually only last a single day. But I’m pleased to announce that I’ve discovered a shortcut that will guarantee us non-stop fun, without having to deal with the pesky weight of our responsibilities. Charming Habiticans, meet my magical new friend... the Be-Wilder!”

Lemoness pales suddenly, dropping her hors d'oeuvres. “Wait! Don’t trust--”

But suddenly mists are pouring into the room, glittering and thick, and they swirl around the April Fool, coalescing into cloudy feathers and a stretching neck. The crowd is speechless as an monstrous bird unfolds before them, its wings shimmering with illusions. It lets out a horrible screeching laugh.

“Oh, it has been ages since a Habitican has been foolish enough to summon me! How wonderful it feels, to have a tangible form at last.”

Buzzing in terror, the magic bees of Mistiflying flee the floating city, which sags from the sky. One by one, the brilliant spring flowers wither up and wisp away.

“My dearest friends, why so alarmed?” crows the Be-Wilder, beating its wings. “There’s no need to toil for your rewards any more. I’ll just give you all the things that you desire!”

A rain of coins pours from the sky, hammering into the ground with brutal force, and the crowd screams and flees for cover. “Is this a joke?” Baconsaur shouts, as the gold smashes through windows and shatters roof shingles.

PainterProphet ducks as lightning bolts crackle overhead, and fog blots out the sun. “No! This time, I don’t think it is!”

Quickly, Habiticans, don’t let this World Boss distract us from our goals! Stay focused on the tasks that you need to complete so we can rescue Mistiflying -- and hopefully, ourselves.", + "questBewilderCompletion": "The Be-Wilder is DEFEATED!

We've done it! The Be-Wilder lets out a ululating cry as it twists in the air, shedding feathers like falling rain. Slowly, gradually, it coils into a cloud of sparkling mist. As the newly-revealed sun pierces the fog, it burns away, revealing the coughing, mercifully human forms of Bailey, Matt, Alex.... and the April Fool himself.

Mistiflying is saved!

The April Fool has enough shame to look a bit sheepish. “Oh, hm,” he says. “Perhaps I got a little…. carried away.”

The crowd mutters. Sodden flowers wash up on sidewalks. Somewhere in the distance, a roof collapses with a spectacular splash.

“Er, yes,” the April Fool says. “That is. What I meant to say was, I’m dreadfully sorry.” He heaves a sigh. “I suppose it can’t all be fun and games, after all. It might not hurt to focus occasionally. Maybe I’ll get a head start on next year’s pranking.”

Redphoenix coughs meaningfully.

“I mean, get a head start on this year’s spring cleaning!” the April Fool says. “Nothing to fear, I’ll have Habit City in spit-shape soon. Luckily nobody is better than I at dual-wielding mops.”

Encouraged, the marching band starts up.

It isn’t long before all is back to normal in Habit City. Plus, now that the Be-Wilder has evaporated, the magical bees of Mistiflying bustle back to work, and soon the flowers are blooming and the city is floating once more.

As Habiticans cuddle the magical fuzzy bees, the April Fool’s eyes light up. “Oho, I’ve had a thought! Why don’t you all keep some of these fuzzy Bee Pets and Mounts? It’s a gift that perfectly symbolizes the balance between hard work and sweet rewards, if I’m going to get all boring and allegorical on you.” He winks. “Besides, they don’t have stingers! Fool’s honor.”", + "questBewilderCompletionChat": "`The Be-Wilder is DEFEATED!`\n\nWe've done it! The Be-Wilder lets out a ululating cry as it twists in the air, shedding feathers like falling rain. Slowly, gradually, it coils into a cloud of sparkling mist. As the newly-revealed sun pierces the fog, it burns away, revealing the coughing, mercifully human forms of Bailey, Matt, Alex.... and the April Fool himself.\n\n`Mistiflying is saved!`\n\nThe April Fool has enough shame to look a bit sheepish. “Oh, hm,” he says. “Perhaps I got a little…. carried away.”\n\nThe crowd mutters. Sodden flowers wash up on sidewalks. Somewhere in the distance, a roof collapses with a spectacular splash.\n\n“Er, yes,” the April Fool says. “That is. What I meant to say was, I’m dreadfully sorry.” He heaves a sigh. “I suppose it can’t all be fun and games, after all. It might not hurt to focus occasionally. Maybe I’ll get a head start on next year’s pranking.”\n\nRedphoenix coughs meaningfully.\n\n“I mean, get a head start on this year’s spring cleaning!” the April Fool says. “Nothing to fear, I’ll have Habit City in spit-shape soon. Luckily nobody is better than I at dual-wielding mops.”\n\nEncouraged, the marching band starts up.\n\nIt isn’t long before all is back to normal in Habit City. Plus, now that the Be-Wilder has evaporated, the magical bees of Mistiflying bustle back to work, and soon the flowers are blooming and the city is floating once more.\n\nAs Habiticans cuddle the magical fuzzy bees, the April Fool’s eyes light up. “Oho, I’ve had a thought! Why don’t you all keep some of these fuzzy Bee Pets and Mounts? It’s a gift that perfectly symbolizes the balance between hard work and sweet rewards, if I’m going to get all boring and allegorical on you.” He winks. “Besides, they don’t have stingers! Fool’s honor.”", + "questBewilderBossRageTitle": "Beguilement Strike", + "questBewilderBossRageDescription": "When this gauge fills, The Be-Wilder will unleash its Beguilement Strike on Habitica!", + "questBewilderDropBumblebeePet": "Bumblebee (Pet)", + "questBewilderDropBumblebeeMount": "Bumblebee (Mount)", + "questBewilderBossRageMarket": "`The Be-Wilder uses BEGUILEMENT STRIKE!`\n\nOh no! Despite our best efforts, we've gotten distracted by the Be-Wilder’s charming illusions and have forgotten to do some of our Dailies! With a cackling cry, the shining bird beats its wings, raising a swarm of mist around Alex the Merchant. When the fog clears, he has been possessed! “Have some free samples!” he shouts gleefully, and begins to hurl exploding eggs and potions at fleeing Habiticans. Not the most favorable of sales, to be sure.\n\nHurry! Let's stay focused on our Dailies to defeat this monster before it possesses someone else.", + "questBewilderBossRageStables": "`The Be-Wilder uses BEGUILEMENT STRIKE!`\n\nAhh!!! Once again the Be-Wilder has dazzled us into neglecting our Dailies, and now it has attacked Matt the Beast Master! With a swirl of mist, Matt transforms into a terrifying winged creature, and all the pets and mounts howl sadly in their stables. Quickly, stay focused on your tasks to defeat this dastardly distraction!", + "questBewilderBossRageBailey": "`The Be-Wilder uses BEGUILEMENT STRIKE!`\n\nLook out! In the middle of reporting the news, Bailey the Town Crier has been possessed by the Be-Wilder! She lets out an evil, uninformative screech as she rises into the air. Now how will we know what’s going on?\n\nDon't give up... we're so close to defeating this bothersome bird for once and for all!" } \ No newline at end of file diff --git a/common/locales/es/rebirth.json b/common/locales/es/rebirth.json index 994a9efd87..6bbcbbb300 100644 --- a/common/locales/es/rebirth.json +++ b/common/locales/es/rebirth.json @@ -12,7 +12,7 @@ "rebirthInList2": "Los Desafíos, Gremios, y Grupos permanecen.", "rebirthInList3": "Las gemas, los niveles de patrocinador y los niveles de colaborador permanecen.", "rebirthInList4": "Objetos conseguidos por Gemas o botines (como mascotas y monturas) permanecen, pero no tienes acceso a ellos hasta que los desbloquees.", - "rebirthInList5": "Limited edition equipment you've purchased can be repurchased, even if its event has ended. To repurchase class-specific equipment, you must first change to the correct class.", + "rebirthInList5": "El equipamiento de edición limitada que compraste se puede comprar de nuevo, incluso si su evento ya finalizó. Para volver a comprar equipamiento específico de clase, primero debes cambiarte a la clase correcta.", "rebirthEarnAchievement": "¡También recibirás un Logro por haber empezado una nueva aventura!", "beReborn": "Renacer", "rebirthAchievement": "¡Has comenzado una nueva aventura! Este es Renacimiento <%= number %> para ti, y el Nivel más alto que has conseguido es <%= level %>. Para apilar este Logro, ¡empieza tu aventura siguiente después de haber conseguido un nivel más alto!", diff --git a/common/locales/es/settings.json b/common/locales/es/settings.json index 02a80f9995..254586733a 100644 --- a/common/locales/es/settings.json +++ b/common/locales/es/settings.json @@ -10,7 +10,7 @@ "newTaskEditPop": "Con esta opción marcada, las nuevas tareas se abrirán inmediatamente para poder añadirles detalles como comentarios o etiquetas.", "dailyDueDefaultView": "En la columna Tareas diarias, mostrar de forma predeterminada la pestaña Por vencer", "dailyDueDefaultViewPop": "Si esta opción está activada, la columna Tareas diarias mostrará la pestaña Por vencer en lugar de Todo", - "reverseChatOrder": "Show chat messages in reverse order", + "reverseChatOrder": "Mostrar mensajes del chat en orden inverso", "startCollapsed": "Las listas de etiquetas no se muestran automáticamente", "startCollapsedPop": "Con esta opción marcada, la lista de etiquetas estará escondida al abrir la tarea para editarla.", "startAdvCollapsed": "Las opciones avanzadas de las tareas no se abren automáticamente", @@ -102,20 +102,20 @@ "invitedParty": "Invitado al Grupo", "invitedGuild": "Invitado al Gremio", "importantAnnouncements": "Tu cuenta está inactiva", - "weeklyRecaps": "Resúmenes de la actividad de tu cuenta en la última semana", + "weeklyRecaps": "Resumen de la actividad de tu cuenta durante la última semana. (Nota: Esta función está deshabilitada en estos momentos por problemas de rendimiento, pero esperamos poder restablecerla y enviar correos de nuevo muy pronto).", "questStarted": "Tu Misión ha Comenzado", "invitedQuest": "Invitado a Misión", "kickedGroup": "Expulsado del grupo", "remindersToLogin": "Recordatorios para revisar Habitica", - "subscribeUsing": "Subscribe using", + "subscribeUsing": "Suscríbete usando", "unsubscribedSuccessfully": "¡Desuscrito con éxito!", "unsubscribedTextUsers": "Te has desuscrito con éxito de todos los emails de Habitica. Puedes activar únicamente los emails que quieras recibir en los ajustes (requiere login).", "unsubscribedTextOthers": "No volverá a recibir ningún mail de Habitica.", "unsubscribeAllEmails": "Marca para Desuscribirte de Notificaciones de Correo Electrónico", "unsubscribeAllEmailsText": "Al marcar esta casilla, certifico que entiendo que al desuscribirme de todos las notificaciones por correo electrónico, Habitica no va a poder nunca notificarme vía email sobre cambios importantes en el sitio o mi cuenta.", "correctlyUnsubscribedEmailType": "Suscripción denegada correctamente desde el email \"<%= emailType %>\".", - "subscriptionRateText": "Recurring $<%= price %> USD every <%= months %> months", - "recurringText": "recurring", + "subscriptionRateText": "$<%= price %> USD recurrentes cada <%= months %> meses", + "recurringText": "recurrentes", "benefits": "Beneficios", "coupon": "Cupón", "couponPlaceholder": "Introduce Código de Cupón", @@ -128,26 +128,26 @@ "displayInviteToPartyWhenPartyIs1": "Mostrar el botón \"Invitar al equipo\" cuando el equipo tiene 1 miembro.", "saveCustomDayStart": "Guardar inicio de día personalizado", "registration": "Registro", - "addLocalAuth": "Add local authentication:", - "generateCodes": "Generate Codes", - "generate": "Generate", + "addLocalAuth": "Agregar autenticación local:", + "generateCodes": "Generar códigos", + "generate": "Generar", "getCodes": "Obtener Códigos", "webhooks": "Webhooks", - "enabled": "Enabled", - "webhookURL": "Webhook URL", + "enabled": "Habilitado", + "webhookURL": "URL del Webhook", "add": "Añadir", - "buyGemsGoldCap": "Cap raised to <%= amount %>", - "mysticHourglass": "<%= amount %> Mystic Hourglass", - "mysticHourglassText": "Mystic Hourglasses allow purchasing a previous month's Mystery Item set.", - "purchasedPlanId": "Recurring $<%= price %> USD each <%= months %> Month(s) (<%= plan %>)", - "purchasedPlanExtraMonths": "You have <%= months %> months of extra subscription credit.", - "consecutiveSubscription": "Consecutive Subscription", - "consecutiveMonths": "Consecutive Months:", - "gemCapExtra": "Gem Cap Extra:", - "mysticHourglasses": "Mystic Hourglasses:", + "buyGemsGoldCap": "Tope aumentado a <%= amount %>", + "mysticHourglass": "<%= amount %> Reloj de Arena Místico", + "mysticHourglassText": "Los Relojes de Arena Místicos permiten comprar un Conjunto de Artículos Misteriosos de un mes previo.", + "purchasedPlanId": "$<%= price %> USD recurrentes cada <%= months %> mes(es) (<%= plan %>)", + "purchasedPlanExtraMonths": "Tienes <%= months %> meses de crédito de subscripción extra.", + "consecutiveSubscription": "Suscripción consecutiva", + "consecutiveMonths": "Meses consecutivos:", + "gemCapExtra": "Extra del tope de gemas:", + "mysticHourglasses": "Relojes de Arena Místicos:", "paypal": "PayPal", - "amazonPayments": "Amazon Payments", + "amazonPayments": "Pagos con Amazon", "timezone": "Zona horaria", - "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." + "timezoneUTC": "Habitica usa la zona horaria de tu PC, que es: <%= utc %>", + "timezoneInfo": "Si esa zona horaria es incorrecta, primero actualiza esta página usando el botón de actualizar de tu navegador para asegurar que Habitica tiene la información más reciente. Si sigue siendo incorrecta, ajusta la zona horaria en tu PC y luego actualiza la página una vez más.

Si usas Habitica en otras PCs o dispositivos móviles, la zona horaria tiene que ser la misma en todos ellos. Si tus Diarias se han estado reiniciando en el horario incorrecto, repite esta prueba en todas las otras PCs y en el navegador de tus dispositivos móviles." } \ No newline at end of file diff --git a/common/locales/es/subscriber.json b/common/locales/es/subscriber.json index e210462f4e..d49f938b66 100644 --- a/common/locales/es/subscriber.json +++ b/common/locales/es/subscriber.json @@ -3,12 +3,12 @@ "subscriptions": "Suscripciones", "subDescription": "Comprar Joyas con Oro", "buyGemsGold": "Comprar Gemas con oro", - "buyGemsGoldText": "Alejandro el Negociante le venderá Joyas por <%= gemCost %> por joya. Su carga mensual tiene un de <%= gemLimit %> Joyas por mes. Sin embargo, esta tapa aumente cada mes por 5 Joyas por cada tres meses de suscripción consecutiva hasta 50 Joyas máximo por mes.", - "retainHistory": "Retain additional history entries", - "retainHistoryText": "Makes completed To-Dos and task history available for longer.", + "buyGemsGoldText": "Alejandro el Mercader le venderá Joyas por <%= gemCost %> por joya. Sus envíos mensuales tienen un límite de <%= gemLimit %> Joyas por mes. Sin embargo, este límite aumenta cada mes en 5 Joyas por cada tres meses de suscripción consecutiva, ¡hasta un máximo de 50 Joyas al mes!", + "retainHistory": "Retener entradas adicionales al historial", + "retainHistoryText": "Hace que las tareas completadas y el historial de tareas estén disponibles durante más tiempo.", "doubleDrops": "Duplica la cantidad de botines diarios", "doubleDropsText": "¡Completa tu establo más rápido!", - "mysteryItem": "Ítemes exclusivos cada mes", + "mysteryItem": "Artículos mensuales exclusivos", "mysteryItemText": "Cada mes, recibirás un artículo de adorno exclusivo para tu avatar. Ademas, por cada tres meses consecutivos de suscripción, los misteriosos viajeros del tiempo te permitirán acceder a artículos de adorno del pasado (¡y del futuro!).", "supportDevs": "Apoya a los desarrolladores", "supportDevsText": "Tu suscripción mantiene la prosperidad de Habitica y ayuda a costear el desarrollo de nuevas características. ¡Muchas gracias por tu generosidad!", @@ -30,7 +30,7 @@ "cancelSub": "Cancelar suscripción", "canceledSubscription": "Suscripciones canceladas", "adminSub": "Suscripciones de administradores", - "morePlans": "Mas planes...
Próximamente", + "morePlans": "Más planes
próximamente", "organizationSub": "Organización Privada", "organizationSubText": "Miembros de tu organización participan fuera de Habitica propio, enfocando tus participantes.", "hostingType": "Tipo de Alojamiento", @@ -47,9 +47,9 @@ "timeSupportText": "Nosotros proporcionaremos soporte para entrenamiento, instalación, y requerimientos de nuevas características.", "gameFeatures": "Características del Juego", "gold2Gem": "Gemas se compran con oro.", - "gold2GemText": "Members will be able to purchase Gems with gold, meaning none of your participants need to buy anything with real money.", - "infiniteGem": "Infinite leader Gems", - "infiniteGemText": "We will provide the organization leaders with as many Gems as they need, for things like challenge prizes, guild-creation, etc.", + "gold2GemText": "Los miembros tendrán la habilidad de comprar gemas con oro, lo cual significa que ninguno de los participantes necesitará comprar con dinero real.", + "infiniteGem": "Gemas ilimitadas de líder", + "infiniteGemText": "Vamos a proporcionar los líderes de la organización con las gemas que necesiten, para cosas como premios de desafíos, creación de gremios, etc.", "notYetPlan": "Plan no esta disponible, pero clic para mandarnos un mensaje y te mantenemos actualizado.", "contactUs": "Póngase en Contacto", "checkout": "Tramitar Pedido", @@ -60,12 +60,12 @@ "subGemPop": "Puesto que te suscribes a Habitica puedes comprar un número de Gemas cada mes usando Oro. Puedes ver cuantas Gemas tienes disponibles para comprar en la esquina del icono Gema.", "subGemName": "Gemas de suscriptor", "freeGemsTitle": "Ganar joyas gratis", - "maxBuyGems": "You have bought all the Gems you can this month. More will become available within the first three days of next month. Thanks for subscribing!", + "maxBuyGems": "\nHas comprado todas las gemas que podías este mes. Habrá más disponibles durante los tres primeros días del próximo mes. ¡Gracias por suscribirte!", "buyGemsAllow1": "Se puede comprar", "buyGemsAllow2": "más joyas este mes", "purchaseGemsSeparately": "Comprar Joyas Addicionales", "subFreeGemsHow": "Jugadores de Habitica pueden ganar Joyas gratis al cumplir retos que confieren premios de Joyas o como un premio para contribuyentes por ayudar el desarollo de Habitica. ", - "seeSubscriptionDetails": "Go to Settings > Subscription to see your subscription details!", + "seeSubscriptionDetails": "Ir a Configuración > Subscripción para ver los detalles de tu subscripción!", "timeTravelers": "Viajeros del tiempo", "timeTravelersTitleNoSub": "<%= linkStartTyler %>Tyler<%= linkEnd %> y <%= linkStartVicky %>Vicky<%= linkEnd %>", "timeTravelersTitle": "Misteriosos viajeros del tiempo", @@ -96,7 +96,9 @@ "mysterySet201510": "Conjunto del Duende Enastado", "mysterySet201511": "Conjunto del Guerrero de Madera", "mysterySet201512": "Conjunto de la Llama Invernal", - "mysterySet201601": "Champion of Resolution Set", + "mysterySet201601": "Juego de Campeón de Resoluciones", + "mysterySet201602": "Conjunto de Rompecorazones", + "mysterySet201603": "Lucky Clover Set", "mysterySet301404": "El Conjunto Steampunk", "mysterySet301405": "Accesorios Steampunk", "mysterySetwondercon": "Wondercon", diff --git a/common/locales/es_419/backgrounds.json b/common/locales/es_419/backgrounds.json index 2b142dae99..f5d780abea 100644 --- a/common/locales/es_419/backgrounds.json +++ b/common/locales/es_419/backgrounds.json @@ -140,11 +140,25 @@ "backgroundSnowmanArmyNotes": "Dirige a un ejército de muñecos de nieve.", "backgroundWinterNightText": "Noche Invernal", "backgroundWinterNightNotes": "Mira las estrellas en una noche invernal.", - "backgrounds022016": "SET 21: Released February 2016", - "backgroundBambooForestText": "Bamboo Forest", - "backgroundBambooForestNotes": "Stroll through the Bamboo Forest.", - "backgroundCozyLibraryText": "Cozy Library", - "backgroundCozyLibraryNotes": "Read in the Cozy Library.", - "backgroundGrandStaircaseText": "Grand Staircase", - "backgroundGrandStaircaseNotes": "Stride down the Grand Staircase." + "backgrounds022016": "CONJUNTO 21: Lanzado en febrero 2016", + "backgroundBambooForestText": "Bosque de Bambú", + "backgroundBambooForestNotes": "Pasea por el bosque de bambú.", + "backgroundCozyLibraryText": "Biblioteca Acogedora", + "backgroundCozyLibraryNotes": "Lee en la biblioteca acogedora.", + "backgroundGrandStaircaseText": "Gran Escalera", + "backgroundGrandStaircaseNotes": "Baja a zancadas por la gran escalera.", + "backgrounds032016": "CONJUNTO 22: Lanzado en marzo 2016", + "backgroundDeepMineText": "Mina Profunda ", + "backgroundDeepMineNotes": "Encuentra metales preciosos en una mina profunda.", + "backgroundRainforestText": "Selva ", + "backgroundRainforestNotes": "Aventúrate en una selva.", + "backgroundStoneCircleText": "Círculo de Piedras", + "backgroundStoneCircleNotes": "Conjura hechizos en un círculo de piedras.", + "backgrounds042016": "SET 23: Released April 2016", + "backgroundArcheryRangeText": "Archery Range", + "backgroundArcheryRangeNotes": "Practice on the Archery Range.", + "backgroundGiantFlowersText": "Giant Flowers", + "backgroundGiantFlowersNotes": "Frolic atop Giant Flowers.", + "backgroundRainbowsEndText": "End of the Rainbow", + "backgroundRainbowsEndNotes": "Discover gold at the End of the Rainbow." } \ No newline at end of file diff --git a/common/locales/es_419/character.json b/common/locales/es_419/character.json index 40628ce209..3d366e3409 100644 --- a/common/locales/es_419/character.json +++ b/common/locales/es_419/character.json @@ -1,10 +1,10 @@ { "statsAch": "Estadísticas y Logros", "profile": "Perfil", - "avatar": "Avatar", + "avatar": "Personalizar Avatar", "other": "Otro", "fullName": "Nombre completo", - "displayName": "Nombre de usuario", + "displayName": "Nombre para mostrar", "displayPhoto": "Foto", "displayBlurb": "Sobre mí", "displayBlurbPlaceholder": "Por favor, preséntate", @@ -34,6 +34,7 @@ "beard": "Barba", "mustache": "Bigote", "flower": "Flor", + "wheelchair": "Wheelchair", "basicSkins": "Pieles básicas", "rainbowSkins": "Pieles arco iris", "pastelSkins": "Pieles pastel", @@ -83,7 +84,7 @@ "allocateInt": "Puntos asignados a Inteligencia:", "allocateIntPop": "Añadir un punto a Inteligencia", "noMoreAllocate": "Ahora que has alcanzado el nivel 100, ya no ganarás más Puntos de Atributo. Puedes seguir subiendo de nivel, o empezar una nueva aventura desde el nivel 1 utilizando la Esfera de Renacimiento, que ahora se encuentra disponible gratuitamente en el Mercado.", - "stats": "Estadísticas", + "stats": "Estadísticas del Avatar", "strength": "Fuerza", "strengthText": "La Fuerza aumenta la probabilidad de conseguir \"golpes críticos\" aleatorios y el Oro, la Experiencia y la probabilidad de conseguir botín al asestarlos. También ayuda a hacer daño a los monstruos jefe.", "constitution": "Constitución", @@ -136,7 +137,7 @@ "respawn": "¡Reaparecer!", "youDied": "¡Has muerto!", "dieText": "Has perdido un Nivel, todo tu Oro, y una pieza de Equipamiento al azar. ¡Levántate Habitero e inténtalo otra vez! ¡Domina esos Hábitos negativos, mantente atento para cumplir las Diarias y mantén a la muerte a raya con una Poción de Salud cuando flaqueas!", - "sureReset": "¿Estás seguro? Esto reiniciará la clase de tu personaje y los puntos que hayas asignado (los recibirás todos para reasignarlos) y cuesta 3 gemas.", + "sureReset": "¿Estás seguro? Esto reiniciará la clase de tu personaje y los puntos que hayas asignado (los recuperarás todos para reasignarlos), y cuesta 3 gemas.", "purchaseFor": "¿Comprar por <%= cost %> Gemas?", "notEnoughMana": "No tienes maná suficiente.", "invalidTarget": "Objetivo inválido", @@ -160,5 +161,8 @@ "str": "FUE", "con": "CON", "per": "PER", - "int": "INT" + "int": "INT", + "showQuickAllocation": "Mostrar asignación de estadísticas", + "hideQuickAllocation": "Ocultar asignación de estadísticas", + "quickAllocationLevelPopover": "Con cada nivel consigues un punto para asignar a un atributo de tu elección. Lo puedes asignar manualmente o dejar que el juego decida por ti usando una de las opciones de Asignación Automática que se encuentran en Usuario -> Estadísticas." } \ No newline at end of file diff --git a/common/locales/es_419/communityguidelines.json b/common/locales/es_419/communityguidelines.json index fcb7848493..46e79d17c0 100644 --- a/common/locales/es_419/communityguidelines.json +++ b/common/locales/es_419/communityguidelines.json @@ -29,7 +29,7 @@ "commGuidePara013": "En una comunidad tan grande como Habitica los usuarios vienen y van, a veces un moderador necesita bajar su manto de noble y relajarse. Los siguientes son los Moderadores emérito. Ellos ya no actúan con el poder de un Moderador, ¡pero nos gustaría seguir honrando su trabajo!", "commGuidePara014": "Moderadores emérito:", "commGuideHeadingPublicSpaces": "Espacios públicos en Habitica", - "commGuidePara015": "Habitica tiene dos tipos de espacios sociales: públicos, y privados. Los espacios públicos incluyen la Taberna, Gremios públicos, GitHub, Trello y la Wiki. Los espacios privados son los Gremios Privados, el chat del Grupo y los Mensajes Privados.", + "commGuidePara015": "Habitica tiene dos tipos de espacios sociales: públicos y privados. Los espacios públicos incluyen la Taberna, los Gremios Públicos, GitHub, Trello y la Wiki. Los espacios privados son los Gremios Privados, el chat de equipo y los Mensajes Privados. Todos los nombres para mostrar deben cumplir con las normas de los espacios públicos. Para cambiar tu nombre para mostrar, ve a Usuario > Perfil en el sitio web y haz clic en el botón \"Editar\".", "commGuidePara016": "Cuando navegues los espacios públicos en Habitica, existen algunas reglas generales para mantener la seguridad de todos. ¡Estas deberían ser sencillas para aventureros como tu!", "commGuidePara017": "Respétense mutuamente. Sé cortés, amable, amigable y servicial. Recuerda: los Habiticanos vienen de toda clase de entornos y han tenido experiencias extremadamente diversas. ¡Esto es parte de lo que hace a Habitica tan genial! Construir una comunidad significa respetar y celebrar nuestras diferencias así como también nuestras similitudes. Éstas son algunas formas fáciles de respetarnos los unos a los otros:", "commGuideList02A": "Obedece todos los Términos y condiciones", @@ -40,8 +40,8 @@ "commGuideList02F": "Obedece inmediatamente cualquier solicitud de un Mod para terminar con una discusión o moverla a la Trastienda. Últimas palabras, réplicas finales y ocurrencias concluyentes deberían ser intercambiadas (de forma educada) en tu \"mesa\" en la Trastienda, si te lo permiten.", "commGuideList02G": "Tóma el tiempo de reflexionar en lugar de responder con enojo si alguien te indica que algo que dijiste o hiciste lo hizo sentirse incómodo. El poder disculparse sinceramente demuestra una gran fortaleza. Si sientes que la manera en la que te respondió fue inapropiada, contacta a un Mod en vez de confrontarlo públicamente.", "commGuideList02H": "Conversaciones divisivas y/o conflictivas deberán ser denunciadas a los mods. Si sientes que una conversación se está volviendo intensa, demasiado emocional o hiriente, deja de dialogar. En vez de eso, manda un email a leslie@habitica.com para informarnos del asunto. Protegerte es nuestro trabajo.", - "commGuideList02I": "No hagas Spam. Spamear puede incluir, pero no está limitado a: publicar el mismo contenido o pregunta en múltiples sitios, publicar links sin explicación o contexto, publicar mensajes sin sentido, o publicar muchos mensajes seguidos. El rogar repetidamente por gemas o una suscripción tambien puede ser considerarse spam.", - "commGuidePara019": "En espacios privados, los usuarios tienen mayor libertad para discutir sobre cualquier tema que gusten, pero aún así no deben violar los Términos y condiciones, incluyendo publicar cualquier contenido discriminatorio, violento o amenazador.", + "commGuideList02I": "No hagas Spam. Spamear puede incluir, pero no está limitado a: publicar el mismo contenido o pregunta en múltiples sitios, publicar links sin explicación o contexto, publicar mensajes sin sentido, o publicar muchos mensajes seguidos. El rogar por gemas o una suscripción en cualquiera de los espacios de chat o vía Mensaje Privado también se considera spam.", + "commGuidePara019": "En espacios privados, los usuarios tienen mayor libertad para discutir sobre cualquier tema que prefieran, pero aún así no deben violar los Términos y Condiciones, incluyendo publicar cualquier contenido discriminatorio, violento o amenazador. Ten en cuenta que, debido a que los nombres de los Desafíos aparecen en el perfil público del ganador, TODOS los nombres de los Desafíos deben obedecer las normas de los espacios públicos, incluso aunque aparezcan en un espacio privado.", "commGuidePara020": "Los Mensajes Privados (MPs) tienen algunas normas adicionales. Si alguien te ha bloqueado, no lo contactes en otro lugar para pedirle que te desbloquee. Además, no debes enviar MPs a alguien para solicitar soporte (dado que las respuestas públicas de soporte son útiles para la comunidad). Finalmente, no envíes a MPs a nadie rogando por un regalo de gemas o una suscripción, ya que puede ser considerado como spam.", "commGuidePara021": "Más aún, algunos espacios públicos en Habitica tienen sus normas adicionales", "commGuideHeadingTavern": "La Taberna", diff --git a/common/locales/es_419/content.json b/common/locales/es_419/content.json index 0840cba9c9..baf6125fd8 100644 --- a/common/locales/es_419/content.json +++ b/common/locales/es_419/content.json @@ -31,7 +31,7 @@ "dropEggCactusAdjective": "un espinoso", "dropEggBearCubText": "Cachorro de Oso", "dropEggBearCubMountText": "Oso", - "dropEggBearCubAdjective": "un adorable", + "dropEggBearCubAdjective": "un valiente", "questEggGryphonText": "Grifo", "questEggGryphonMountText": "Grifo", "questEggGryphonAdjective": "un orgulloso", @@ -46,7 +46,7 @@ "questEggEggAdjective": "un colorido", "questEggRatText": "Rata", "questEggRatMountText": "Rata", - "questEggRatAdjective": "una sucia", + "questEggRatAdjective": "una sociable", "questEggOctopusText": "Pulpo", "questEggOctopusMountText": "Pulpo", "questEggOctopusAdjective": "un resbaladizo", @@ -107,9 +107,12 @@ "questEggSabretoothText": "Dientes de Sable", "questEggSabretoothMountText": "Dientes de Sable", "questEggSabretoothAdjective": "un feroz", - "questEggMonkeyText": "Monkey", - "questEggMonkeyMountText": "Monkey", - "questEggMonkeyAdjective": "a mischievous", + "questEggMonkeyText": "Mono", + "questEggMonkeyMountText": "Mono", + "questEggMonkeyAdjective": "un travieso", + "questEggSnailText": "Caracol", + "questEggSnailMountText": "Caracol", + "questEggSnailAdjective": "un lento pero firme", "eggNotes": "Encuentra una poción de eclosión para verter sobre este huevo y se convertirá en <%= eggAdjective(locale) %> <%= eggText(locale) %>.", "hatchingPotionBase": "Básic@", "hatchingPotionWhite": "Blanc@", diff --git a/common/locales/es_419/contrib.json b/common/locales/es_419/contrib.json index e06668e5e2..0d6d42820c 100644 --- a/common/locales/es_419/contrib.json +++ b/common/locales/es_419/contrib.json @@ -28,11 +28,11 @@ "helped": "Ayudó con el crecimiento de Habit", "helpedText1": "Ayudó a mejorar Habitica completando", "helpedText2": "esta encuesta.", - "hall": "Salón", + "hall": "Salón de Héroes", "contribTitle": "Título de colaborador (p ej, \"Herrero\")", "contribLevel": "Nivel de colaborador", "contribHallText": "1-7 para los colaboradores normales, 8 para moderadores, 9 para el personal. Esto determina cuáles artículos, mascotas y monturas están disponibles. También determina el color de la etiqueta de nombre. A los de nivel 8 y 9 se les da estatus de administrador automáticamente.", - "hallHeroes": "Salón de Héroes", + "hallContributors": "Salón de Colaboradores", "hallPatrons": "Salón de Patrocinadores", "rewardUser": "Recompensar usuario", "UUID": "UUID", @@ -60,5 +60,5 @@ "blurbGuildsPage": "Los Gremios son salas de chat con temas de interés común creados por jugadores para jugadores. ¡Echa un vistazo a la lista y únete a los Gremios que te interesen!", "blurbChallenges": "Los Desafíos son creados por los usuarios. Al unirte a un Desafío éste añadirá tareas a tu cuenta, ¡y si ganas el Desafío obtendrás un logro y algunas veces gemas!", "blurbHallPatrons": "Éste es el Salón de Patrocinadores, donde honramos a los nobles aventureros que apoyaron al Kickstarter original de Habitica. ¡Les agradecemos por ayudarnos a dar vida a Habitica!", - "blurbHallHeroes": "Éste es el Salón de los Héroes, donde los colaboradores del código abierto de Habitica son honrados. Ya sea a través de código, arte, música, escritura o solamente ayudando, ellos han ganado gemas, equipamiento exclusivo, y prestigiosos títulos . ¡Tú también puedes contribuir! Averigua más aquí. " + "blurbHallContributors": "Éste es el Salón de Colaboradores, donde los colaboradores del código abierto de Habitica son honrados. Ya sea a través de código, arte, música, escritura o simplemente ayudando, ellos han obtenido gemas, equipamento exclusivo y títulos prestigiosos. ¡Tú también puedes contribuir! Averigua más aquí. " } \ No newline at end of file diff --git a/common/locales/es_419/faq.json b/common/locales/es_419/faq.json index b14a16fef0..ff59500975 100644 --- a/common/locales/es_419/faq.json +++ b/common/locales/es_419/faq.json @@ -39,6 +39,6 @@ "faqQuestion12": "¿Cómo peleo contra un Jefe Global?", "iosFaqAnswer12": "Los Jefes Globales son monstruos especiales que aparecen en la Taberna. Cuando esto ocurre, todos los usuarios activos están automáticamente peleando contra el Jefe, y sus tareas y habilidades dañarán al Jefe como de costumbre. \n\nPuedes estar en una Misión normal al mismo tiempo. Tus tareas y habilidades contarán tanto contra el Jefe Global como contra el Jefe o la Misión de Recolección en tu Equipo.\n\nUn Jefe Global no te hará daño a ti ni a tu cuenta de ninguna forma. En vez de eso, tiene una Barra de Ira que se va llenando cuando los usuarios no completan sus Diarias. Si la Barra de Ira se llena, el Jefe atacará a uno de los Personajes No Jugadores del sitio y su imagen cambiará. \n\nPuedes leer más sobre [Jefes Globales pasados](http://habitica.wikia.com/wiki/World_Bosses) en la wiki.", "webFaqAnswer12": "Los Jefes Globales son monstruos especiales que aparecen en la Taberna. Cuando esto ocurre, todos los usuarios activos están automáticamente peleando contra el Jefe, y sus tareas y habilidades dañarán al Jefe como de costumbre. \n

\nPuedes estar en una Misión normal al mismo tiempo. Tus tareas y habilidades contarán tanto contra el Jefe Global como contra el Jefe o la Misión de Recolección en tu Equipo.\n

\nUn Jefe Global no te hará daño a ti ni a tu cuenta de ninguna forma. En vez de eso, tiene una Barra de Ira que se va llenando cuando los usuarios no completan sus Diarias. Si la Barra de Ira se llena, el Jefe atacará a uno de los Personajes No Jugadores del sitio y su imagen cambiará. \n

\nPuedes leer más sobre [Jefes Globales pasados](http://habitica.wikia.com/wiki/World_Bosses) en la wiki.", - "iosFaqStillNeedHelp": "If you have a question that isn't on this list or on the [Wiki FAQ](http://habitica.wikia.com/wiki/FAQ), 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 or on the [Wiki FAQ](http://habitica.wikia.com/wiki/FAQ), come ask in the [Newbies Guild](https://habitica.com/#/options/groups/guilds/5481ccf3-5d2d-48a9-a871-70a7380cee5a)! We're happy to help." + "iosFaqStillNeedHelp": "Si tienes una pregunta que no se encuentra en la lista o en las [Preguntas Frecuentes de la Wiki](http://habitica.wikia.com/wiki/FAQ), ¡pregúntanos en el chat de la Taberna en Menú > Taberna! Estaremos encantados de ayudarte.", + "webFaqStillNeedHelp": "Si tienes una pregunta que no se encuentra en la lista o en las [Preguntas Frecuentes de la Wiki](http://habitica.wikia.com/wiki/FAQ), ¡pregúntanos en el [Gremio de los Novatos](https://habitica.com/#/options/groups/guilds/5481ccf3-5d2d-48a9-a871-70a7380cee5a)! Estaremos encantados de ayudarte." } \ No newline at end of file diff --git a/common/locales/es_419/front.json b/common/locales/es_419/front.json index 6c8032d44f..e4622a1af5 100644 --- a/common/locales/es_419/front.json +++ b/common/locales/es_419/front.json @@ -124,7 +124,7 @@ "motivate1": "Motívate a hacer cualquier cosa.", "motivate2": "Consigue organizarte. Consigue motivarte. Consigue oro.", "passConfirm": "Confirmar contraseña", - "passMan": "In case you are using a password manager (like 1Password) and have problems logging in, try typing your username and password manually.", + "passMan": "Si estás utilizando un gestor de contraseñas (como 1Password) y tienes problemas al iniciar sesión, intenta escribir tu nombre de usuario y contraseña manualmente.", "password": "Contraseña", "playButton": "Jugar", "playButtonFull": "Jugar en Habitica", @@ -165,7 +165,7 @@ "teams": "Equipos", "terms": "Términos y condiciones", "testimonialHeading": "Qué opina la gente...", - "localStorageTryFirst": "If you are experiencing problems with Habitica, click the button below to clear local storage for this website (other websites will not be affected). You will need to log in again after doing this, so first be sure that you know your log-in details, which can be found at Settings -> <%= linkStart %>Site<%= linkEnd %>.", + "localStorageTryFirst": "Si estás experimentando problemas con Habitica, cliquea el botón de abajo para borrar el almacenamiento local de este sitio (no serán afectados otros sitios web). Necesitarás iniciar sesión nuevamente después de hacer esto, así que primero asegúrate de que recuerdas tu información de inicio de sesión, la cual puedes encontrar en Ajustes -> <%= linkStart %>Sitio<%= linkEnd %>.", "localStorageTryNext": "Si el problema persiste, por favor <%= linkStart %>reporta el error<%= linkEnd %> si es que todavía no lo has hecho.", "localStorageClearing": "Borrando almacenamiento local", "localStorageClearingExplanation": "El almacenamiento local de tu navegador está siendo borrado. Tu sesión se cerrará y serás redireccionado a la página de inicio. Por favor espera.", @@ -195,7 +195,7 @@ "landingCopy3": "Súmate a las <%= userCount %> personas divirtiéndose mientras mejoran sus vidas.", "alreadyHaveAccount": "¡Ya tengo una cuenta!", "getStartedNow": "¡Empieza ahora!", - "altAttrNavLogo": "Habitica home", + "altAttrNavLogo": "Página de Inicio de Habitica", "altAttrLifehacker": "Lifehacker", "altAttrNewYorkTimes": "The New York Times", "altAttrMakeUseOf": "MakeUseOf", diff --git a/common/locales/es_419/gear.json b/common/locales/es_419/gear.json index cb028bcd6c..771ec35730 100644 --- a/common/locales/es_419/gear.json +++ b/common/locales/es_419/gear.json @@ -1,4 +1,5 @@ { + "set": "Conjunto", "weapon": "arma", "weaponBase0Text": "Sin arma", "weaponBase0Notes": "Sin arma.", @@ -97,7 +98,7 @@ "weaponSpecialFallRogueText": "Estaca de Plata", "weaponSpecialFallRogueNotes": "Elimina a los muertos vivientes. Además otorga un bonus contra hombres lobo, porque nunca se puede ser demasiado cuidadoso. Incrementa la Fuerza por <%= str %>. Equipamiento de Edición Limitada de Otoño 2014.", "weaponSpecialFallWarriorText": "Garra Acaparadora de Ciencia", - "weaponSpecialFallWarriorNotes": "Esta garra acaparadora es lo más avanzado en tecnología. Aumenta la Fuerza por <%= str %>;. Equipamiento de Edición Limitada de Otoño 2014.", + "weaponSpecialFallWarriorNotes": "Esta garra acaparadora es lo más avanzado en tecnología. Incrementa la Fuerza por <%= str %>;. Equipamiento de Edición Limitada de Otoño 2014.", "weaponSpecialFallMageText": "Escoba Mágica", "weaponSpecialFallMageNotes": "¡Esta escoba encantada vuela más rápido que un dragón! Incrementa la Inteligencia por <%= int %> y la Percepción por <%= per %>. Equipamiento de Edición Limitada de Otoño 2014.", "weaponSpecialFallHealerText": "Varita de Escarabajo", @@ -113,11 +114,11 @@ "weaponSpecialSpring2015RogueText": "Explosivo Chirriante", "weaponSpecialSpring2015RogueNotes": "No dejes que el sonido te engañe - estos explosivos están que arden. Incrementa la Fuerza por <%= str %>. Equipamiento de Edición Limitada de Primavera 2015.", "weaponSpecialSpring2015WarriorText": "Garrote de Hueso", - "weaponSpecialSpring2015WarriorNotes": "Es un auténtico garrote de hueso para auténticos perritos feroces y definitivamente no es un mordedor que te ha dado la Hechicera Estacional 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.", + "weaponSpecialSpring2015WarriorNotes": "Es un auténtico garrote de hueso para auténticos perritos feroces y definitivamente no es un mordedor que te ha dado la Hechicera Estacional porque, ¿quién es un buen perrito? ¿Quiéeen es un buen perrito? ¡Eres tú! ¡¡Tú eres un buen perrito!! Incrementa la Fuerza por <%= str %>. Equipamiento de Edición Limitada de Primavera 2015.", "weaponSpecialSpring2015MageText": "Varita Mágica", "weaponSpecialSpring2015MageNotes": "Conjúrate una zanahoria con esta sofisticada varita. Incrementa la Inteligencia por <%= int %> y Percepción por <%= per %>. Equipamiento de Edición Limitada de Primavera 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.", + "weaponSpecialSpring2015HealerNotes": "Cuando lo agitas, hace un chasquido fascinante que mantendría a CUALQUIERA entretenido durante horas. Incrementa la Inteligencia por <%= int %>. Equipamiento de Edición Limitada de Primavera 2015.", "weaponSpecialSummer2015RogueText": "Coral de Fuego", "weaponSpecialSummer2015RogueNotes": "Este coral de fuego tiene la habilidad de propulsar su veneno a través del agua. Incrementa la Fuerza por <%= str %>. Equipamiento de Edición Limitada de Verano 2015.", "weaponSpecialSummer2015WarriorText": "Pez Espada Solar", @@ -142,6 +143,14 @@ "weaponSpecialWinter2016MageNotes": "¡Tus movimientos son tan geniales que debe ser magia! Incrementa la Inteligencia por <%= int %> y la Percepción por <%= per %>. Equipamiento de Edición Limitada de Invierno 2015-2016.", "weaponSpecialWinter2016HealerText": "Cañón de Confeti", "weaponSpecialWinter2016HealerNotes": "¡¡¡¡¡¡¡WIIIIIIIIIIIIIIIII!!!!!!! ¡¡¡¡¡¡¡FELIZ WINTER WONDERLAND!!!!!!! Incrementa la Inteligencia por <%= int %>. Equipamiento de Edición Limitada de Invierno 2015-2016.", + "weaponSpecialSpring2016RogueText": "Maza de Fuego", + "weaponSpecialSpring2016RogueNotes": "Usted ha dominado el balón, el club, y el cuchillo. Ahora se avanza al malabares con fuego! Awoo! Aumenta la fuerza <% =% str>. Equipamiento de la Primavera, edición limitada 2016.", + "weaponSpecialSpring2016WarriorText": "Maza de Queso", + "weaponSpecialSpring2016WarriorNotes": "Nadie tiene tantos amigos como un ratón con quesos tiernos. Incrementa la Fuerza por <%= str %>. Edición Limitada de Verano 2016.", + "weaponSpecialSpring2016MageText": "Báculo de Campanas", + "weaponSpecialSpring2016MageNotes": "¡Abracadabra! Tan deslumbrante, es posible hipnotizar a ti mismo! Oh ... esto tintinea ... aumenta la Inteligencia por <% = int%> y Percepción por <% =% por>. Equipamiento de la Primavera, edición limitada 2016.", + "weaponSpecialSpring2016HealerText": "Varita de Flores de la Primavera", + "weaponSpecialSpring2016HealerNotes": "Con un ademán de la mano y un guiño, ¡haces florecer los campos y bosques! O golpeas la cabeza de ratones. Incrementa la Inteligencia por <%= int %>. Equipo de Edición limitada de Primavera 2016.", "weaponMystery201411Text": "Horqueta de Banquete", "weaponMystery201411Notes": "Atraviesa a tus enemigos o ataca tu comida favorita - ¡esta horqueta versátil lo hace todo! No otorga ningún beneficio. Artículo de Suscriptor de Noviembre 2014.", "weaponMystery201502Text": "Reluciente Báculo Alado del Amor y También de la Verdad", @@ -172,10 +181,14 @@ "weaponArmoireBlueLongbowNotes": "Prepara... Apunta... ¡Fuego! Este arco tiene un gran alcance. Incrementa la Percepción por <%= per %>, la Constitución por <%= con %> y la Fuerza por <%= str %>. Armario Encantado: Artículo Independiente.", "weaponArmoireGlowingSpearText": "Lanza Resplandeciente", "weaponArmoireGlowingSpearNotes": "Esta lanza hipnotiza a las tareas salvajes para que puedas atacarlas. Incrementa la Fuerza por <%= str %>. Armario Encantado: Artículo Independiente.", - "weaponArmoireBarristerGavelText": "Barrister Gavel", - "weaponArmoireBarristerGavelNotes": "Order! Increases Strength and Constitution by <%= attrs %> each. Enchanted Armoire: Barrister Set (Item 3 of 3).", - "weaponArmoireJesterBatonText": "Jester Baton", - "weaponArmoireJesterBatonNotes": "With a wave of your baton and some witty repartee, even the most complicated situations become clear. Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Jester Set (Item 3 of 3).", + "weaponArmoireBarristerGavelText": "Martillo de Juez", + "weaponArmoireBarristerGavelNotes": "¡Orden! Incrementa la Fuerza y la Constitución por <%= attrs %> cada una. Armario Encantado: Conjunto de Juez (Artículo 3 de 3).", + "weaponArmoireJesterBatonText": "Bastón de Bufón", + "weaponArmoireJesterBatonNotes": "Con una sacudida de tu bastón y una conversación ingeniosa, hasta las situaciones más complicadas se pueden calmar. Incrementa la Inteligencia y la Percepción por <%= attrs %> cada una. Armario Encantado: Conjunto de Bufón (Artículo 3 de 3).", + "weaponArmoireMiningPickaxText": "Pico de Minero", + "weaponArmoireMiningPickaxNotes": "¡Extrae la máxima cantidad de oro de tus tareas! Incrementa la Percepción por <%= per %>. Armario Encantado: Conjunto de Minero (Artículo 3 de 3).", + "weaponArmoireBasicLongbowText": "Basic Longbow", + "weaponArmoireBasicLongbowNotes": "A serviceable hand-me-down bow. Increases Strength by <%= str %>. Enchanted Armoire: Basic Archer Set (Item 1 of 3).", "armor": "armadura", "armorBase0Text": "Ropa Simple", "armorBase0Notes": "Ropa común. No otorga ningún beneficio.", @@ -192,7 +205,7 @@ "armorRogue1Text": "Cuero Engrasado", "armorRogue1Notes": "Armadura de cuero tratada para reducir el ruido. Incrementa la Percepción por <%= per %>.", "armorRogue2Text": "Cuero Negro", - "armorRogue2Notes": "Teñido con tinte oscuro para fundirse en la oscuridad. Aumenta la Percepción por <%= per %>.", + "armorRogue2Notes": "Teñido con tinte oscuro para fundirse en la oscuridad. Incrementa la Percepción por <%= per %>.", "armorRogue3Text": "Chaleco de Camulflaje", "armorRogue3Notes": "Igualmente discreto en mazmorra o desierto. Incrementa la Percepción por <%= per %>.", "armorRogue4Text": "Armadura de Penumbra", @@ -216,7 +229,7 @@ "armorHealer3Text": "Manto Defensor", "armorHealer3Notes": "Dirige la magia propia del sanador a su interior para eludir el daño. Incrementa la Constitución por <%= con %>.", "armorHealer4Text": "Manto de Médico", - "armorHealer4Notes": "Proyecta autoridad y disipa maldiciones. Aumenta la Constitución por <%= con %>.", + "armorHealer4Notes": "Proyecta autoridad y disipa maldiciones. Incrementa la Constitución por <%= con %>.", "armorHealer5Text": "Manto Real", "armorHealer5Notes": "Vestimenta de aquellos que han salvado la vida de reyes. Incrementa la Constitución por <%= con %>.", "armorSpecial0Text": "Armadura de Sombra", @@ -239,8 +252,8 @@ "armorSpecialBirthdayNotes": "¡Feliz Cumpleaños, Habitica! Usa esta Túnica Absurda de Fiesta para celebrar este maravilloso día. No otorga ningún beneficio.", "armorSpecialBirthday2015Text": "Túnica Disparatada de Fiesta", "armorSpecialBirthday2015Notes": "¡Feliz Cumpleaños, Habitica! Usa esta Túnica Disparatada de Fiesta para celebrar este maravilloso día. No otorga ningún beneficio.", - "armorSpecialBirthday2016Text": "Ridiculous Party Robes", - "armorSpecialBirthday2016Notes": "Happy Birthday, Habitica! Wear these Ridiculous Party Robes to celebrate this wonderful day. Confers no benefit.", + "armorSpecialBirthday2016Text": "Túnica Ridícula de Fiesta", + "armorSpecialBirthday2016Notes": "¡Feliz Cumpleaños, Habitica! Usa esta Túnica Ridícula de Fiesta para celebrar este maravilloso día. No otorga ningún beneficio.", "armorSpecialGaymerxText": "Armadura de Guerrero Arco Iris", "armorSpecialGaymerxNotes": "Con motivo de la celebración por la Conferencia GaymerX, ¡esta armadura especial está decorada con un radiante y colorido estampado arco iris! GaymerX es una convención de juegos que celebra a la gente LGBTQ y a los videojuegos, y está abierta a todo el público.", "armorSpecialSpringRogueText": "Traje de Gato Lustroso", @@ -260,7 +273,7 @@ "armorSpecialSummerHealerText": "Cola de Marandero", "armorSpecialSummerHealerNotes": "¡Esta prenda con escamas relucientes transforma a quien la usa en un Marandero real! Incrementa la Constitución por <%= con %>. Equipamiento de Edición Limitada de Verano 2014.", "armorSpecialFallRogueText": "Túnica Rojo Sangre", - "armorSpecialFallRogueNotes": "Vívida. Aterciopelada. Vampírica. Aumenta la Percepción por <%= per %>. Equipamiento de Edición Limitada de Otoño 2014.", + "armorSpecialFallRogueNotes": "Vívida. Aterciopelada. Vampírica. Incrementa la Percepción por <%= per %>. Equipamiento de Edición Limitada de Otoño 2014.", "armorSpecialFallWarriorText": "Guardapolvo de Ciencia", "armorSpecialFallWarriorNotes": "Te protege de derrames de pociones misteriosas. Incrementa la Constitución por <%= con %>. Equipamiento de Edición Limitada de Otoño 2014.", "armorSpecialFallMageText": "Túnica Embrujada", @@ -279,7 +292,7 @@ "armorSpecialSpring2015RogueNotes": "Peluda, suave, e indudablemente no inflamable. Incrementa la Percepción por <%= per %>. Equipamiento de Edición Limitada de Primavera 2015.", "armorSpecialSpring2015WarriorText": "Armadura Cautelosa", "armorSpecialSpring2015WarriorNotes": "Sólo el perrito más fiero tiene permitido ser tan mullidito. Incrementa la Constitución por <%= con %>. Equipamiento de Edición Limitada de Primavera 2015.", - "armorSpecialSpring2015MageText": "Traje de Conejito para Magos", + "armorSpecialSpring2015MageText": "Traje de Conejito de Mago", "armorSpecialSpring2015MageNotes": "¡Tus faldones combinan con tu rabito de algodón! Incrementa la Inteligencia por <%= int %>. Equipamiento de Edición Limitada de Primavera 2015.", "armorSpecialSpring2015HealerText": "Traje de Gato Reconfortante", "armorSpecialSpring2015HealerNotes": "Este suave traje de gato es cómodo, y tan reconfortante como el té de menta. Incrementa la Constitución por <%= con %>. Equipamiento de Edición Limitada de Primavera 2015.", @@ -307,6 +320,14 @@ "armorSpecialWinter2016MageNotes": "El mago más sabio se mantiene bien abrigado en el viento invernal. Incrementa la Inteligencia por <%= int %>. Equipamiento de Edición Limitada de Invierno 2015-2016.", "armorSpecialWinter2016HealerText": "Capa de Hada Festiva", "armorSpecialWinter2016HealerNotes": "Las Hadas Festivas envuelven sus alas corporales alrededor suyo como protección mientras usan las alas de su cabeza para remontar vientos en contra y volar sobre Habitica a velocidades de hasta 100 millas por hora, repartiendo regalos y cubriendo a todos con confeti. Qué gracioso. Incrementa la Constitución por <%= con %>. Equipamiento de Edición Limitada de Invierno 2015-2016.", + "armorSpecialSpring2016RogueText": "Traje de camuflaje canino", + "armorSpecialSpring2016RogueNotes": "Un cachorro inteligente sabe escoger un atuendo más brillante para pasar desapercibido cuando todo es verde y vibrante. Incrementa la Percepción por <%= per %>. Equipamiento de Edición Limitada de Primavera 2016.", + "armorSpecialSpring2016WarriorText": "Cota de malla poderosa", + "armorSpecialSpring2016WarriorNotes": "Though you be but little, you are fierce! Increases Constitution by <%= con %>. Limited Edition 2016 Spring Gear.", + "armorSpecialSpring2016MageText": "Magnífica Túnica Raído", + "armorSpecialSpring2016MageNotes": "Brightly colored, so you won't be mistaken for a necromouser. Increases Intelligence by <%= int %>. Limited Edition 2016 Spring Gear.", + "armorSpecialSpring2016HealerText": "Pantalones de Conejito Mullido", + "armorSpecialSpring2016HealerNotes": "Hippity hop! Bound from hill to hill, healing those in need. Increases Constitution by <%= con %>. Limited Edition 2016 Spring Gear.", "armorMystery201402Text": "Túnica de Mensajero", "armorMystery201402Notes": "Reluciente y fuerte, esta túnica tiene muchos bolsillos para llevar cartas. No otorga ningún beneficio. Artículo de Suscriptor de Febrero 2014.", "armorMystery201403Text": "Armadura de Caminante del Bosque", @@ -341,6 +362,8 @@ "armorMystery201511Notes": "Teniendo en cuenta que esta armadura fue tallada directamente a partir de un tronco mágico, es sorprendentemente cómoda. No otorga ningún beneficio. Artículo de Suscriptor de Noviembre 2015.", "armorMystery201512Text": "Armadura de Fuego Frío", "armorMystery201512Notes": "¡Invoca a las heladas llamas invernales! No otorga ningún beneficio. Artículo de Suscriptor de Diciembre 2015.", + "armorMystery201603Text": "Traje de la Suerte", + "armorMystery201603Notes": "¡El traje está hecho de miles de tréboles de cuatro hojas! No confiere ningún beneficio. Artículo de Suscriptor de Marzo 2016.", "armorMystery301404Text": "Traje Steampunk", "armorMystery301404Notes": "¡Sofisticado y elegante! No otorga ningún beneficio. Artículo de Suscriptor de Febrero 3015.", "armorArmoireLunarArmorText": "Armadura Lunar Relajante", @@ -363,10 +386,14 @@ "armorArmoireCrystalCrescentRobesNotes": "Esta túnica mágica es luminiscente durante la noche. Incrementa la Constitución y la Percepción por <%= attrs %> cada una. Armario Encantado: Conjunto de Cristal Creciente (Artículo 2 de 3).", "armorArmoireDragonTamerArmorText": "Armadura de Domador de Dragones", "armorArmoireDragonTamerArmorNotes": "Esta armadura resistente es impenetrable a las llamas. Incrementa la Constitución por <%= con %>. Armario Encantado: Conjunto de Domador de Dragones (Artículo 3 de 3).", - "armorArmoireBarristerRobesText": "Barrister Robes", - "armorArmoireBarristerRobesNotes": "Very serious and stately. Increases Constitution by <%= con %>. Enchanted Armoire: Barrister Set (Item 2 of 3).", - "armorArmoireJesterCostumeText": "Jester Costume", - "armorArmoireJesterCostumeNotes": "Tra-la-la! Despite the look of this costume, you are no fool. Increases Intelligence by <%= int %>. Enchanted Armoire: Jester Set (Item 2 of 3).", + "armorArmoireBarristerRobesText": "Túnica de Juez", + "armorArmoireBarristerRobesNotes": "Muy seria y majestuosa. Incrementa la Constitución por <%= con %>. Armario Encantado: Conjunto de Juez (Artículo 2 de 3).", + "armorArmoireJesterCostumeText": "Disfraz de Bufón", + "armorArmoireJesterCostumeNotes": "¡Tra-la-la! A pesar del aspecto de este disfraz, no eres un bufón. Incrementa la Inteligencia por <%= int %>. Armario Encantado: Conjunto de Bufón (Artículo 2 de 3).", + "armorArmoireMinerOverallsText": "Overoles de Minero", + "armorArmoireMinerOverallsNotes": "Puede que parezcan usados, pero están encantados para repeler mugre. Incrementan la Constitución por <%= con %>. Armario Encantado: Conjunto de Minero (Artículo 2 de 3).", + "armorArmoireBasicArcherArmorText": "Basic Archer Armor", + "armorArmoireBasicArcherArmorNotes": "This camouflaged vest lets you slip unnoticed through the forests. Increases Perception by <%= per %>. Enchanted Armoire: Basic Archer Set (Item 2 of 3).", "headgear": "equipamiento para la cabeza", "headBase0Text": "Sin yelmo", "headBase0Notes": "Sin equipamiento para la cabeza.", @@ -496,6 +523,14 @@ "headSpecialWinter2016MageNotes": "Mantiene la nieve fuera de tus ojos mientras conjuras hechizos. Incrementa la Percepción por <%= per %>. Equipamiento de Edición Limitada de Invierno 2015-2016.", "headSpecialWinter2016HealerText": "Yelmo con Alas de Hada", "headSpecialWinter2016HealerNotes": "¡Estasalasseagitantanrápidoquesevenborrosas! Incrementa la Inteligencia por <%= int %>. Equipamiento de Edición Limitada de Invierno 2015-2016.", + "headSpecialSpring2016RogueText": "Máscara de Buen Perrito", + "headSpecialSpring2016RogueNotes": "Aww, ¡que perrito mas lindo! Ven aquí, y déjame acariciarte... Hey, ¿A dónde se ha ido mi oro? Incrementa la Percepción por <%= per %>. Equipo de Edición limitada de Primavera 2016.", + "headSpecialSpring2016WarriorText": "Yelmo de Guardia Ratón", + "headSpecialSpring2016WarriorNotes": "¡Nunca más serás golpeado en la cabeza! ¡Deja que lo intenten! Incrementa la Fuerza por <%= str %>. Equipo de Edición limitada de Primavera 2016.", + "headSpecialSpring2016MageText": "Magnífico Sombrero Raído", + "headSpecialSpring2016MageNotes": "Ropas para ponerte por encima de los meros magos callejeros del mundo. Incrementa la Percepción por <%= per %>. Equipo de Edición limitada de Primavera 2016.", + "headSpecialSpring2016HealerText": "Diadema Floreciente", + "headSpecialSpring2016HealerNotes": "Brilla con el potencial de una nueva vida, lista para estallar. Incrementa la Inteligencia por <%= int %>. Equipo de Edición limitada de Primavera 2016.", "headSpecialGaymerxText": "Yelmo de Guerrero Arco Iris", "headSpecialGaymerxNotes": "Con motivo de la celebración por la Conferencia GaymerX, ¡este casco especial está decorado con un radiante y colorido estampado arco iris! GaymerX es una convención de juegos que celebra a la gente LGBTQ y a los videojuegos, y está abierta a todo el público.", "headMystery201402Text": "Yelmo Alado", @@ -524,8 +559,12 @@ "headMystery201511Notes": "Cuenta el número de anillos para saber qué edad tiene esta corona. No otorga ningún beneficio. Artículo de Suscriptor de Noviembre 2015.", "headMystery201512Text": "Llama Invernal", "headMystery201512Notes": "Estas frías llamas arden llenas de puro intelecto. No otorgan ningún beneficio. Artículo de Suscriptor de Diciembre 2015.", - "headMystery201601Text": "Helm of True Resolve", - "headMystery201601Notes": "Stay resolute, brave champion! Confers no benefit. January 2016 Subscriber Item.", + "headMystery201601Text": "Yelmo de la Verdadera Determinación", + "headMystery201601Notes": "¡No abandones tu determinación, valiente campeón! No otorga ningún beneficio. Artículo de Suscriptor de Enero 2016.", + "headMystery201602Text": "Capucha Rompecorazones ", + "headMystery201602Notes": "Protege tu identidad de todos tus admiradores. No otorga ningún beneficio. Artículo de Suscriptor de Febrero 2016. ", + "headMystery201603Text": "Sombrero de la Suerte", + "headMystery201603Notes": "This top hat is a magical good-luck charm. Confers no benefit. March 2016 Subscriber Item.", "headMystery301404Text": "Galera Elegante", "headMystery301404Notes": "¡Una galera elegante para los señores más sofisticados! Artículo de Suscriptor de Enero 3015. No otorga ningún beneficio.", "headMystery301405Text": "Galera Básica", @@ -566,10 +605,14 @@ "headArmoireCrystalCrescentHatNotes": "El diseño de este sombrero crece y mengua con las fases de la luna. Incrementa la Inteligencia y la Percepción por <%= attrs %> cada una. Armario Encantado: Conjunto de Cristal Creciente (Artículo 1 de 3).", "headArmoireDragonTamerHelmText": "Yelmo de Domador de Dragones", "headArmoireDragonTamerHelmNotes": "Te ves exactamente igual que un dragón. El camuflaje perfecto... Incrementa la Inteligencia por <%= int %>. Armario Encantado: Conjunto de Domador de Dragones (Artículo 1 de 3).", - "headArmoireBarristerWigText": "Barrister Wig", - "headArmoireBarristerWigNotes": "This bouncy wig is enough to frighten away even the fiercest foe. Increases Strength by <%= str %>. Enchanted Armoire: Barrister Set (Item 1 of 3).", - "headArmoireJesterCapText": "Jester Cap", - "headArmoireJesterCapNotes": "The bells on this hat might distract your opponents, but they just help you focus. Increases Perception by <%= per %>. Enchanted Armoire: Jester Set (Item 1 of 3).", + "headArmoireBarristerWigText": "Peluca de Juez", + "headArmoireBarristerWigNotes": "Esta peluca que rebota es suficiente para ahuyentar incluso al enemigo más feroz. Incrementa la Fuerza por <%= str %>. Armario Encantado: Conjunto de Juez (Artículo 1 de 3).", + "headArmoireJesterCapText": "Gorro de Bufón", + "headArmoireJesterCapNotes": "Los cascabeles de este gorro pueden distraer a tus oponentes, pero a ti sólo te ayudan a concentrarte. Incrementa la Percepción por <%= per %>. Armario Encantado: Conjunto de Bufón (Artículo 1 de 3).", + "headArmoireMinerHelmetText": "Casco de Minero", + "headArmoireMinerHelmetNotes": "¡Protege tu cabeza de las tareas que caen! Incrementa la Inteligencia por <%= int %>. Armario Encantado: Conjunto de Minero (Artículo 1 de 3).", + "headArmoireBasicArcherCapText": "Basic Archer Cap", + "headArmoireBasicArcherCapNotes": "No archer would be complete without a jaunty cap! Increases Perception by <%= per %>. Enchanted Armoire: Basic Archer Set (Item 3 of 3).", "offhand": "artículo adicional", "shieldBase0Text": "Sin equipamiento adicional", "shieldBase0Notes": "Sin escudo o arma secundaria.", @@ -653,8 +696,14 @@ "shieldSpecialWinter2016WarriorNotes": "Utiliza este trineo para bloquear ataques, ¡o deslízate con él hacia la batalla! Incrementa la Constitución por <%= con %>. Equipamiento de Edición Limitada de Invierno 2015-2016.", "shieldSpecialWinter2016HealerText": "Regalo de Hada", "shieldSpecialWinter2016HealerNotes": "¡¡¡¡¡¡¡¡¡Ábrelo ábrelo ábrelo ábrelo ábrelo ábrelo!!!!!!!!! Incrementa la Constitución por <%= con %>. Equipamiento de Edición Limitada de Invierno 2015-2016.", - "shieldMystery201601Text": "Resolution Slayer", - "shieldMystery201601Notes": "This blade can be used to parry away all distractions. Confers no benefit. January 2016 Subscriber Item.", + "shieldSpecialSpring2016RogueText": "Maza de Fuego", + "shieldSpecialSpring2016RogueNotes": "You've mastered the ball, the club, and the knife. Now you advance to juggling fire! Awoo! Increases Strength <%= str %>. Limited Edition 2016 Spring Gear.", + "shieldSpecialSpring2016WarriorText": "Rueda de Queso", + "shieldSpecialSpring2016WarriorNotes": "You braved fiendish traps to procure this defense-boosting food. Increases Constitution by <%= con %>. Limited Edition 2016 Spring Gear.", + "shieldSpecialSpring2016HealerText": "Floral Buckler", + "shieldSpecialSpring2016HealerNotes": "The April Fool claims this little shield will block Shiny Seeds. Don't believe him. Increases Constitution by <%= con %>. Limited Edition 2016 Spring Gear.", + "shieldMystery201601Text": "Destructora de Resoluciones", + "shieldMystery201601Notes": "Esta espada se puede usar para desviar a todas las distracciones. No otorga ningún beneficio. Artículo de Suscriptor de Enero 2016.", "shieldMystery301405Text": "Escudo Reloj", "shieldMystery301405Notes": "¡El tiempo está de tu lado con este imponente escudo reloj! No otorga ningún beneficio. Artículo de Suscriptor de Junio 3015.", "shieldArmoireGladiatorShieldText": "Escudo de Gladiador", @@ -665,6 +714,8 @@ "shieldArmoireRoyalCaneNotes": "¡Viva el líder, digno de ser mencionado en canciones! Incrementa la Constitución, la Inteligencia y la Percepción por <%= attrs %> cada una. Armario Encantado: Conjunto Real (Artículo 2 de 3).", "shieldArmoireDragonTamerShieldText": "Escudo de Domador de Dragones", "shieldArmoireDragonTamerShieldNotes": "Distrae a tus enemigos con este escudo con forma de dragón. Incrementa la Percepción por <%= per %>. Armario Encantado: Conjunto de Domador de Dragones (Artículo 2 de 3).", + "shieldArmoireMysticLampText": "Lámpara Mística", + "shieldArmoireMysticLampNotes": "¡Ilumina las cuevas más oscuras con esta lámpara mística! Incrementa la Percepción por <%= per %>. Armario Encantado: Artículo Independiente.", "back": "Accesorio para espalda", "backBase0Text": "Sin accesorio para espalda", "backBase0Notes": "Sin accesorio para espalda.", @@ -680,6 +731,8 @@ "backMystery201507Notes": "¡Surfea desde los Muelles Diligentes y remonta las olas en Bahía Inkompleta! No otorga ningún beneficio. Artículo de Suscriptor de Julio 2015.", "backMystery201510Text": "Cola de Duende", "backMystery201510Notes": "¡Prensil y poderosa! No otorga ningún beneficio. Artículo de Suscriptor de Octubre 2015.", + "backMystery201602Text": "Capa Rompecorazones", + "backMystery201602Notes": "Con un movimiento de tu capa, ¡tus enemigos caen ante ti! No otorga ningún beneficio. Artículo de Suscriptor de Febrero 2016. ", "backSpecialWonderconRedText": "Capa Poderosa", "backSpecialWonderconRedNotes": "Ondea sibilante con fuerza y ​belleza. No otorga ningún beneficio. Artículo de Convención de Edición Especial.", "backSpecialWonderconBlackText": "Capa Furtiva", @@ -726,8 +779,16 @@ "headAccessorySpecialSpring2015MageNotes": "Estas orejas escuchan atentamente, en caso de que algún mago esté revelando secretos. No otorgan ningún beneficio. Equipamiento de Edición Limitada de Primavera 2015.", "headAccessorySpecialSpring2015HealerText": "Orejas de Gatito Verdes", "headAccessorySpecialSpring2015HealerNotes": "Estas adorables orejas de gatito pondrán a los demás verdes de envidia. No otorgan ningún beneficio. Equipamiento de Edición Limitada de Primavera 2015.", + "headAccessorySpecialSpring2016RogueText": "Orejas de Perro Verde", + "headAccessorySpecialSpring2016RogueNotes": "With these, you can keep track of tricky Mages even if they turn invisible! Confers no benefit. Limited Edition 2016 Spring Gear.", + "headAccessorySpecialSpring2016WarriorText": "Orejas de Ratón Rojas", + "headAccessorySpecialSpring2016WarriorNotes": "To better hear your theme song across clamorous battlefields. Confers no benefit. Limited Edition 2016 Spring Gear.", + "headAccessorySpecialSpring2016MageText": "Orejas de Gato Amarillas", + "headAccessorySpecialSpring2016MageNotes": "These sharp ears can detect the minute hum of ambient Mana, or the muted footfalls of a Rogue. Confers no benefit. Limited Edition 2016 Spring Gear.", + "headAccessorySpecialSpring2016HealerText": "Orejas de Conejito Violeta", + "headAccessorySpecialSpring2016HealerNotes": "They stand like flags above the fray, letting others know where to run for help. Confers no benefit. Limited Edition 2016 Spring Gear.", "headAccessoryBearEarsText": "Orejas de Oso", - "headAccessoryBearEarsNotes": "¡Estas orejas te hacen parecer un osito cariñoso! No otorgan ningún beneficio.", + "headAccessoryBearEarsNotes": "These ears make you look like a brave bear! Confers no benefit.", "headAccessoryCactusEarsText": "Orejas de Cactus", "headAccessoryCactusEarsNotes": "¡Estas orejas te hacen parecer un cactus espinoso! No otorgan ningún beneficio.", "headAccessoryFoxEarsText": "Orejas de Zorro", @@ -754,6 +815,8 @@ "headAccessoryMystery201510Notes": "Estos cuernos aterradores son ligeramente babosos. No otorgan ningún beneficio. Artículo de Suscriptor de Octubre 2015.", "headAccessoryMystery301405Text": "Gafas para la Cabeza", "headAccessoryMystery301405Notes": "\"Las gafas son para tus ojos\", dijeron. \"Nadie quiere gafas que sólo se puedan usar sobre la cabeza\", dijeron. ¡Ja! ¡Claramente les demostraste que estaban equivocados! No otorgan ningún beneficio. Artículo de Suscriptor de Agosto 3015.", + "headAccessoryArmoireComicalArrowText": "Comical Arrow", + "headAccessoryArmoireComicalArrowNotes": "This whimsical item doesn't provide a stat boost, but it sure is good for a laugh! Confers no benefit. Enchanted Armoire: Independent Item.", "eyewear": "Accesorios para ojos", "eyewearBase0Text": "Sin accesorios para ojos", "eyewearBase0Notes": "Sin accesorios para ojos.", diff --git a/common/locales/es_419/generic.json b/common/locales/es_419/generic.json index e7d1f346db..42c9143178 100644 --- a/common/locales/es_419/generic.json +++ b/common/locales/es_419/generic.json @@ -116,7 +116,7 @@ "audioTheme_luneFoxTheme": "Tema de LuneFox", "askQuestion": "Hacer una pregunta", "reportBug": "Reportar un error", - "HabiticaWiki": "The Habitica Wiki", + "HabiticaWiki": "La Wiki de Habitica", "HabiticaWikiFrontPage": "http://habitica.wikia.com/wiki/Habitica_Wiki", "contributeToHRPG": "Contribuir a Habitica", "overview": "Resumen para nuevos usuarios", @@ -137,6 +137,8 @@ "achievementStressbeastText": "¡Ayudó a vencer a la Abominable Bestia del Estrés durante el Evento Winter Wonderland 2014!", "achievementBurnout": "Salvador de los Campos Florecientes", "achievementBurnoutText": "¡Ayudó a vencer a Burnout y a recuperar a los Espíritus Consumidos durante el Festival de Otoño 2015!", + "achievementBewilder": "Savior of Mistiflying", + "achievementBewilderText": "Helped defeat the Be-Wilder during the 2016 Spring Fling Event!", "checkOutProgress": "¡Echa un vistazo a mi progreso en Habitica!", "cardReceived": "¡Recibiste una tarjeta! ", "cardReceivedFrom": "<%= cardType %> de <%= userName %>", @@ -158,12 +160,12 @@ "thankyou3": "Estoy muy agradecido - ¡gracias!", "thankyouCardAchievementTitle": "Altamente Agradecido", "thankyouCardAchievementText": "¡Gracias por ser agradecido! Envió o recibió <%= cards %> tarjetas de agradecimiento.", - "birthdayCard": "Birthday Card", - "birthdayCardExplanation": "You both receive the Birthday Bonanza achievement!", - "birthdayCardNotes": "Send a birthday card to a party member.", - "birthday0": "Happy birthday to you!", - "birthdayCardAchievementTitle": "Birthday Bonanza", - "birthdayCardAchievementText": "Many happy returns! Sent or received <%= cards %> birthday cards.", + "birthdayCard": "Tarjeta de Cumpleaños", + "birthdayCardExplanation": "¡Ambos reciben el logro Cumpleaños Complaciente!", + "birthdayCardNotes": "Enviar una Tarjeta de Cumpleaños a un compañero de equipo.", + "birthday0": "¡Que los cumplas feliz!", + "birthdayCardAchievementTitle": "Cumpleaños Complaciente", + "birthdayCardAchievementText": "¡Muchas felicidades! Envió o recibió <%= cards %> tarjetas de cumpleaños.", "streakAchievement": "¡Ganaste un logro de racha!", "firstStreakAchievement": "Racha de 21 días", "streakAchievementCount": "<%= userCount %> Rachas de 21 días", @@ -175,5 +177,6 @@ "hatchPetShare": "¡Eclosioné una nueva mascota completando mis tareas de la vida real!", "raisePetShare": "¡Convertí una mascota en montura completando mis tareas de la vida real!", "wonChallengeShare": "¡Gané un desafío en Habitica!", - "achievementShare": "¡Gané un nuevo logro en Habitica!" + "achievementShare": "¡Gané un nuevo logro en Habitica!", + "orderBy": "Ordenar por <%= item %>" } \ No newline at end of file diff --git a/common/locales/es_419/groups.json b/common/locales/es_419/groups.json index 0ae8154026..fbc82cc459 100644 --- a/common/locales/es_419/groups.json +++ b/common/locales/es_419/groups.json @@ -1,5 +1,5 @@ { - "tavern": "Taberna", + "tavern": "Chat de Taberna", "innCheckOut": "Dejar la posada", "innCheckIn": "Descansar en la posada", "innText": "¡Has entrado a descansar en la Posada! Mientras permanezcas aquí tus Diarias no te dañarán al finalizar el día, pero sí se renovarán cada día. Ten cuidado: si estás participando en una Misión contra un Jefe ¡las Diarias incompletas de tus compañeros de equipo te seguirán haciendo daño! Además, tú no dañarás al jefe (ni obtendrás los objetos recolectados) hasta que no hayas salido de la Posada.", @@ -101,7 +101,7 @@ "inbox": "Bandeja de Entrada", "abuseFlag": "Reportar una violación de las Normas de la Comunidad", "abuseFlagModalHeading": "¿Reportar una violación hecha por <%= name %>?", - "abuseFlagModalBody": "¿Estás seguro de que quieres denunciar esta publicación? Deberías denunciar una publicación SÓLO cuando viola las <%= firstLinkStart %>Normas de la Comunidad<%= linkEnd %> y/o los <%= secondLinkStart %>Términos de Servicio<%= linkEnd %>. Denunciar una publicación de manera indebida es una violación de las Normas de la Comunidad y puede resultar en una sanción. Algunas de las razones apropiadas por las cuales denunciar una publicación son:


", + "abuseFlagModalBody": "¿Estás seguro de que quieres denunciar esta publicación? Deberías denunciar una publicación SÓLO cuando viola las <%= firstLinkStart %>Normas de la Comunidad<%= linkEnd %> y/o los <%= secondLinkStart %>Términos de Servicio<%= linkEnd %>. Denunciar una publicación de manera indebida es una violación de las Normas de la Comunidad y puede resultar en una sanción. Algunas de las razones apropiadas por las cuales denunciar una publicación son:

", "abuseFlagModalButton": "Reportar Violación", "abuseReported": "Gracias por reportar esta violación. Los moderadores han sido notificados.", "abuseAlreadyReported": "Ya has reportado este mensaje.", @@ -147,5 +147,9 @@ "partyChatEmpty": "¡El chat de tu equipo está vacío! Escribe un mensaje en el recuadro de arriba para empezar a conversar.", "guildChatEmpty": "¡El chat de este gremio está vacío! Escribe un mensaje en el recuadro de arriba para empezar a conversar.", "possessiveParty": "El Equipo de <%= name %>", - "requestAcceptGuidelines": "Si quieres publicar mensajes en la Taberna o en el chat de un equipo o de un gremio, por favor lee nuestras <%= linkStart %>Normas de la Comunidad<%= linkEnd %> primero y después haz clic en el botón de abajo para indicar que las aceptas." + "requestAcceptGuidelines": "Si quieres publicar mensajes en la Taberna o en el chat de un equipo o de un gremio, por favor lee nuestras <%= linkStart %>Normas de la Comunidad<%= linkEnd %> primero y después haz clic en el botón de abajo para indicar que las aceptas.", + "partyUpName": "Equipados", + "partyOnName": "Equipazo", + "partyUpAchievement": "¡Se unió a un Equipo con otra persona! Diviértanse luchando contra monstruos y apoyándose el uno al otro.", + "partyOnAchievement": "¡Se unió a un Equipo con al menos cuatro personas! ¡Disfruta tu responsabilidad aumentada al unirte con tus amigos para vencer a tus enemigos!" } \ No newline at end of file diff --git a/common/locales/es_419/limited.json b/common/locales/es_419/limited.json index 961ce9eae3..4d8bebc7d9 100644 --- a/common/locales/es_419/limited.json +++ b/common/locales/es_419/limited.json @@ -67,6 +67,10 @@ "witchyWizardSet": "Hechicero Embrujado (Mago)", "mummyMedicSet": "Médico Momia (Sanador)", "vampireSmiterSet": "Aniquilador de Vampiros (Pícaro)", + "bewareDogSet": "Perro Cauteloso (Guerrero)", + "magicianBunnySet": "Conejito de Mago (Mago)", + "comfortingKittySet": "Gatito Reconfortante (Sanador)", + "sneakySqueakerSet": "Chirriador Sigiloso (Pícaro)", "fallEventAvailability": "Disponible hasta el 31 de octubre", "winterEventAvailability": "Disponible hasta el 31 de diciembre" } \ No newline at end of file diff --git a/common/locales/es_419/npc.json b/common/locales/es_419/npc.json index bad46d98e7..02438b1da0 100644 --- a/common/locales/es_419/npc.json +++ b/common/locales/es_419/npc.json @@ -35,7 +35,7 @@ "amazonInstructions": "Haz clic en el botón para pagar mediante Amazon Payments", "paymentMethods": "Comprar usando", "classGear": "Equipamiento de Clase", - "classGearText": "Primero: ¡No te preocupes! Tu equipamiento viejo está en tu inventario, y ahora llevas puesto tu equipamiento de aprendiz de <%= klass %>. Usar el equipamiento de tu clase le da un aumento de 50% a tus estadísticas. Sin embargo, siéntete libre de cambiar de equipamiento cuando quieras.", + "classGearText": "Primero: ¡No desesperes! Tu equipamiento viejo está en tu inventario, y ahora llevas puesto el equipamiento de aprendiz de tu nueva clase. Usar el equipamiento de tu clase le da un aumento del 50% a tus estadísticas. Sin embargo, siéntete libre de cambiar de equipamiento cuando quieras.", "classStats": "Éstas son las estadísticas de tu clase; afectan el estilo de juego. Cada vez que subes de nivel, obtienes un punto para asignarle a alguna estadística en particular. Coloca el cursor sobre cada estadística para más información.", "autoAllocate": "Asignación automática", "autoAllocateText": "Si 'asignación automática' esta seleccionada, tu avatar gana estadísticas automáticamente basándose en los atributos de tus tareas, los cuales puedes encontrar en TAREA > Editar > Avanzado > Atributos. Ej, si vas de menudo al gimnasio, y tu Diaria 'Gym' esta en 'Físico', ganarás Fuerza automáticamente.", @@ -45,7 +45,7 @@ "moreClass": "Para más información sobre el sistema de clases, lee", "tourWelcome": "¡Bienvenido a Habitica! Ésta es tu lista de Pendientes. ¡Marca una tarea para continuar!", "tourExp": "¡Bien hecho! ¡Marcar como realizada una tarea te da Experiencia y Oro!", - "tourDailies": "Esta columna es para tus Diarias. ¡Pon una tarea que debas hacer a diario! Ejemplos de Diarias: Tender la cama, Lavarme los dientes, Revisar e-mail del trabajo", + "tourDailies": "Esta columna es para tus Diarias. ¡Pon una tarea que debas hacer a diario! Ejemplos de Diarias: Tender la cama, Usar hilo dental, Revisar e-mail del trabajo", "tourCron": "¡Maravilloso! Tus Diarias se reiniciarán cada día.", "tourHP": "¡Cuidado! ¡Si no completas una Diaria antes de la medianoche, te lastimará!", "tourHabits": "¡Esta columna es para Hábitos buenos y malos que haces muchas veces por día! Para continuar, haz clic en el lápiz para editar los nombres, y luego cliquea en la marca de verificación para guardar.", diff --git a/common/locales/es_419/pets.json b/common/locales/es_419/pets.json index 87aa6fdb25..07ac2a3999 100644 --- a/common/locales/es_419/pets.json +++ b/common/locales/es_419/pets.json @@ -19,6 +19,7 @@ "orca": "Orca", "royalPurpleGryphon": "Grifo Real Morado", "phoenix": "Fénix", + "bumblebee": "Bumblebee", "rarePetPop1": "¡Haz clic en la pata dorada para aprender más sobre cómo obtener esta mascota rara contribuyendo a Habitica!", "rarePetPop2": "¡Cómo obtener esta mascota!", "potion": "Poción <%= potionType %>", @@ -40,7 +41,7 @@ "stableBeastMasterProgress": "Progreso de Maestro de las Bestias: <%= number %> Mascotas encontradas", "beastAchievement": "¡Has ganado el Logro \"Maestro de las Bestias\" por haber coleccionado todas las mascotas!", "beastMasterName": "Maestro de las Bestias", - "beastMasterText": "Has found all 90 pets (incredibly difficult, congratulate this user!)", + "beastMasterText": "Ha encontrado a las 90 mascotas (extremadamente difícil, ¡felicita a este usuario!)", "beastMasterText2": "y ha liberado a sus mascotas un total de <%= count %> veces.", "mountMasterProgress": "Progreso de Maestro de las Monturas", "stableMountMasterProgress": "Progreso de Maestro de las Monturas: <%= number %> Monturas domadas", diff --git a/common/locales/es_419/quests.json b/common/locales/es_419/quests.json index a064213a97..1ee6a75f9e 100644 --- a/common/locales/es_419/quests.json +++ b/common/locales/es_419/quests.json @@ -38,7 +38,7 @@ "bossDmg2": "Sólo los participantes lucharán contra el Jefe y compartirán el botín de la misión.", "bossDmg1Broken": "Cada Diaria o Pendiente completada y cada Hábito positivo lastima al jefe... Hazle aún más daño con las tareas más rojas o con Golpe Brutal y Explosión de Llamas... El Jefe hará daño a todos los participantes de la misión por cada Diaria que no completes (multiplicada por la Fuerza del jefe) además de tu daño regular, así que mantén a tu grupo sano completando tus Diarias... Todo daño a y de un jefe es aplicado en el cron (tu cambio de día)...", "bossDmg2Broken": "Sólo los participantes lucharán contra el Jefe y compartirán el botín de la misión...", - "tavernBossInfo": "¡Completa Diarias y Pendientes y marca Hábitos positivos para dañar al Jefe Global! Las Diarias incompletas llenan la barra de Ataque Consumidor. Cuando esta barra se llene, el Jefe Global atacará a un PNJ. Un Jefe Global 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.", + "tavernBossInfo": "Complete Dailies and To-Dos and score positive Habits to damage the World Boss! Incomplete Dailies fill the Rage Bar. When the Rage 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 y marca Hábitos positivos para dañar al Jefe Global... Las Diarias incompletas llenan la barra de Ataque Consumidor... Cuando esta barra se llene, el Jefe Global atacará a un PNJ... Un Jefe Global 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 recolectar artículos, haz tus tareas positivas. Los objetos de misiones caen como los objetos normales; sin embargo no verás estos artículos hasta el próximo día, cuando todo lo que encontraste será sumado y aportado al montón.", "bossColl2": "Sólo los participantes pueden recolectar objetos y compartir el botín de la misión.", diff --git a/common/locales/es_419/questscontent.json b/common/locales/es_419/questscontent.json index 2c6a4ee4b4..38bdccad37 100644 --- a/common/locales/es_419/questscontent.json +++ b/common/locales/es_419/questscontent.json @@ -15,51 +15,51 @@ "questGryphonCompletion": "Derrotada, la poderosa bestia se escabulle avergonzada hacia su amo. \"¡Oh, bien hecho, aventureros!\" exclama baconsaur. \"Por favor, tomen algunos de los huevos de la grifo. ¡Estoy seguro de que criarán bien a estos pequeños!\"", "questGryphonBoss": "Grifo de Fuego", "questGryphonDropGryphonEgg": "Grifo (Huevo)", - "questGryphonUnlockText": "Desbloquea huevos de grifo adquiribles en el Mercado", + "questGryphonUnlockText": "Desbloquea huevos de Grifo adquiribles en el Mercado", "questHedgehogText": "La Erizobestia", "questHedgehogNotes": "Los erizos son un curioso grupo de animales. Son unas de las mascotas más cariñosas que un Habitero podría tener. Pero corre el rumor que si les das leche después de la medianoche se vuelven un poco irritables. Y crecen cincuenta veces su tamaño. E Inventrix lo acaba de hacer. Ups.", "questHedgehogCompletion": "¡Tu equipo ha conseguido calmar al erizo! Después de volver a su tamaño normal, se va cojeando hacia sus huevos. Vuelve chillando y empujando algunos de sus huevos hacia ustedes. ¡Esperemos que a estos erizos les guste más la leche!", "questHedgehogBoss": "Erizobestia", "questHedgehogDropHedgehogEgg": "Erizo (Huevo)", - "questHedgehogUnlockText": "Desbloquea huevos de erizo adquiribles en el Mercado", + "questHedgehogUnlockText": "Desbloquea huevos de Erizo adquiribles en el Mercado", "questGhostStagText": "El Espíritu de la Primavera", "questGhostStagNotes": "Ahh, la primavera. La época del año en que el color una vez más comienza a llenar el paisaje. Han quedado atrás el frío y las nevadas de invierno. Donde alguna vez hubo hielo, hay ahora vibrantes plantas llenas de vida. Exquisitas hojas verdes llenan los árboles, el pasto vuelve a su antiguo tono vivo, un arco iris de flores se eleva a lo largo de la llanura, y una blanca niebla mística cubre la tierra... Espera. ¿Niebla mística? \"Oh no,\" Inventrix, dice con aprensión, \"Parece que alguna clase de espíritu es la causa de esta niebla. Ah, y está corriendo rápidamente hacia ti.\"", "questGhostStagCompletion": "El espíritu, aparentemente ileso, baja su nariz hasta el suelo. Una voz tranquilizante envuelve a tu grupo. \"Pido disculpas por mi comportamiento. Es sólo que acabo de despertar de mi sueño, y al parecer mi buen juicio no ha vuelto completamente. Por favor tomen esto como una muestra de mi disculpa\". Un racimo de huevos se materializa sobre el pasto frente al espíritu. Sin decir una palabra, el espíritu se escapa hacia el bosque dejando caer flores a su paso.", "questGhostStagBoss": "Ciervo Fantasma", "questGhostStagDropDeerEgg": "Ciervo (Huevo)", - "questGhostStagUnlockText": "Desbloquea huevos de ciervo adquiribles en el Mercado", + "questGhostStagUnlockText": "Desbloquea huevos de Ciervo adquiribles en el Mercado", "questRatText": "El Rey de las Ratas", "questRatNotes": "¡Basura! Pilas masivas de Diarias sin marcar yacen por toda Habitica. El problema se ha vuelto tan grave que ahora se ven hordas de ratas por todas partes. Ves que @Pandah acaricia a una de las bestias con amor. Ella explica que las ratas son criaturas apacibles que se alimentan de las Diarias sin marcar. El verdadero problema es que las Diarias han caído en las alcantarillas, creando un pozo peligroso que se debe despejar. Al descender a las cloacas, una rata enorme con ojos rojos y dientes amarillos destrozados te ataca, defendiendo su horda. ¿Vas a encogerte de miedo o enfrentarás al legendario Rey de las Ratas?", "questRatCompletion": "Tu último golpe debilita a la gigantesca rata, haciendo que sus ojos cambien a un gris apagado. La bestia se divide en varias ratas pequeñas que salen huyendo de miedo. Ves que @Pandah está de pie detrás de ti, observando a lo que alguna vez fue una poderosa criatura. Ella explica que los ciudadanos de Habitica han sido inspirados por tu valentía y están completando rápidamente sus Diarias. Te advierte que debemos ser vigilantes, porque si bajamos la guardia el Rey de las ratas regresará. Como pago, @Pandah te ofrece varios huevos de rata. Al ver tu expresión de incomodidad, sonríe y te dice: \"Son maravillosas mascotas\".", "questRatBoss": "Rey de las Ratas", "questRatDropRatEgg": "Rata (Huevo)", - "questRatUnlockText": "Desbloquea huevos de rata adquiribles en el Mercado", + "questRatUnlockText": "Desbloquea huevos de Rata adquiribles en el Mercado", "questOctopusText": "La Llamada de Octothulu", "questOctopusNotes": "@Urse, un escribiente joven de mirada salvaje, ha pedido tu ayuda para explorar una cueva misteriosa cerca de la orilla del mar. Entre las marismas crepusculares se encuentra una enorme puerta de estalactitas y estalagmitas. Al acercarte a la puerta, un remolino oscuro comienza a girar en su base. Lo miras fijamente, asombrado, mientras un dragón parecido a un calamar se eleva a través de las fauces. \"El engendro pegajoso de las estrellas ha despertado,\" ruge @Urse intensamente. \"Después de 20 miles de millones de años el gran Octothulu está suelto otra vez, ¡y se encuentra muy hambriento!\"", "questOctopusCompletion": "Con un golpe final, la criatura se desliza hacia el remolino del cual vino. No puedes darte cuenta de si @Urse está feliz por tu victoria o triste por ver a la criatura irse. Sin decir una palabra, tu compañero señala tres enormes y babosos huevos en una marisma cercana, yaciendo en un nido de monedas de oro. \"Es probable que sólo sean huevos de pulpo,\" dices nerviosamente. Mientras vuelves a tu casa, @Urse garabatea frenéticamente en un diario y tú sospechas que ésta no es la última vez que tendrás noticias del gran Octothulu.", "questOctopusBoss": "Octothulu", "questOctopusDropOctopusEgg": "Pulpo (Huevo)", - "questOctopusUnlockText": "Desbloquea huevos de pulpo adquiribles en el Mercado", + "questOctopusUnlockText": "Desbloquea huevos de Pulpo adquiribles en el Mercado", "questHarpyText": "¡Ayuda! ¡Arpía!", "questHarpyNotes": "El valiente aventurero @UncommonCriminal ha desaparecido en el bosque, siguiendo el rastro de un monstruo alado que fue visto varios días atrás. Estás a punto de comenzar una búsqueda cuando un loro herido aterriza en tu brazo, con una fea cicatriz arruinando su hermoso plumaje. Atada a su pata tiene una nota garabateada, explicando que mientras defendía a los loros, @UncommonCriminal fue capturado por una Arpía feroz y necesita desesperadamente de tu ayuda para escapar. ¿Seguirás al loro, vencerás la Arpía, y salvarás a @UncommonCriminal?", "questHarpyCompletion": "Un último golpe logra derrotar a la Arpía, plumas volando en todas direcciones. Después de trepar rápidamente a su nido encuentras a @UncommonCriminal, rodeado de huevos de loro. Formando un equipo, colocan con rapidez a los huevos de vuelta en los nidos cercanos. El loro marcado que te encontró grazna en voz alta, dejando caer varios huevos en tus brazos. \"El ataque de la Arpía ha dejado algunos huevos sin protección,\" explica @UncommonCriminal. \"Parece que te han convertido en un loro honorario.\"", "questHarpyBoss": "Arpía", "questHarpyDropParrotEgg": "Loro (Huevo)", - "questHarpyUnlockText": "Desbloquea huevos de loro adquiribles en el Mercado", + "questHarpyUnlockText": "Desbloquea huevos de Loro adquiribles en el Mercado", "questRoosterText": "Alboroto del Gallo", "questRoosterNotes": "Durante años el granjero @extrajordinary ha usados Gallos como despertador. Pero ahora un Gallo gigante ha aparecido, cacareando más fuerte que cualquier otro – ¡y despertando a todos en Habitica! Los Habiticanos privados de sueño luchan para completar sus tareas diarias. @Pandoro decide que ya es hora de ponerle fin a este problema. \"Por favor, ¿no hay nadie que le pueda enseñar a este Gallo cómo cacarear en voz baja?\" Te ofreces como voluntario, acercándote al Gallo una mañana temprano – pero éste se da vuelta, batiendo sus enormes alas y mostrando sus garras afiladas, y cacarea un grito de batalla.", "questRoosterCompletion": "Con delicadeza y fuerza, has domado a la bestia salvaje. Sus oídos, una vez llenos de plumas y tareas recordadas a medias, ahora están tan claros como el día. Te cacarea en voz baja, acurrucando su pico en tu hombro. Al día siguiente estás listo para irte, pero @EmeraldOx corre hacia ti con una canasta cubierta. \"¡Espera! Cuando entré a la granja esta mañana, el Gallo había empujado éstos contra la puerta donde dormías. Creo que quiere que te los quedes.\" Destapas la canasta y ves tres huevos delicados.", "questRoosterBoss": "Gallo", "questRoosterDropRoosterEgg": "Gallo (Huevo)", - "questRoosterUnlockText": "Desbloquea huevos de gallo adquiribles en el Mercado", + "questRoosterUnlockText": "Desbloquea huevos de Gallo adquiribles en el Mercado", "questSpiderText": "El Arácnido Glacial", "questSpiderNotes": "Mientras el aire empieza a enfriarse, una delicada escarcha comienza a aparecer en las ventanas de los Habiticanos como si fuera telaraña... excepto para @Arcosine, cuyas ventanas están completamente congeladas y no abren por causa de la Araña Helada que ahora vive en su hogar. Oh, cielos.", "questSpiderCompletion": "La Araña Helada se derrumba, dejando una pequeña pila de hielo y algunos de sus sacos de huevos encantados. @Arcosine te las ofrece como recompensa con bastante prisa--¿quizás puedas criar algunas arañas amistosas como mascotas propias?", "questSpiderBoss": "Araña", "questSpiderDropSpiderEgg": "Araña (Huevo)", - "questSpiderUnlockText": "Desbloquea huevos de araña adquiribles en el Mercado", + "questSpiderUnlockText": "Desbloquea huevos de Araña adquiribles en el Mercado", "questVice1Text": "Vicio, Parte 1: Libérate de la Influencia del Dragón", - "questVice1Notes": "

Dicen que yace un terrible mal en las cavernas del Monte Habitica. Un monstruo cuya presencia retuerce la voluntad de los grandes héroes de estas tierras, ¡conduciéndolos a los malos hábitos y a la pereza! La bestia es un gran dragón de inmenso poder y compuesto de las mismísimas sombras. Vicio, el traicionero Guivre Sombrío. Valientes Habiteros, levántense y venzan a esta bestia infame de una vez por todas, pero sólo si creen que pueden mantenerse firmes contra su inmenso poder.

Vicio Parte 1:

¿Cómo puedes pretender enfrentarte a la bestia si ya tiene control sobre ti? ¡No caigas víctima de la pereza y el vicio! ¡Trabaja duro para luchar contra la oscura influencia del dragón y disipar su control sobre ti!

", + "questVice1Notes": "

Dicen que un terrible mal encontrase en las cavernas del Monte Habitica. Un monstruo cuya presencia tuerce la determinación de los fuertes héroes de la tierra, conduciéndolos al camino de los malos hábitos y la pereza! La bestia es un gran dragón de inmenso poder y integrado por sus propias sombras: Vício, el traicionero Guivre Sombrío. Valientes Habiteros, levántense y derroten a esta bestia infame de una vez por todas, pero sólo si usted cree que pueden mantenerse firmes contra su inmenso poder.

Vicio Parte 1:

¿Cómo puedes pretender enfrentarte a la bestia si ya tiene control sobre ti? !No caigas víctima de la pereza y el vicio! !Trabaja duro para luchar contra la oscura influencia del dragón y disipar su control sobre ti!

", "questVice1Boss": "Sombra de Vicio", "questVice1DropVice2Quest": "Vicio Parte 2 (Pergamino)", "questVice2Text": "Vicio, Parte 2: Encuentra la Guarida del Guivre", @@ -74,30 +74,30 @@ "questVice3DropDragonEgg": "Dragón (Huevo)", "questVice3DropShadeHatchingPotion": "Poción de eclosión de Sombra", "questMoonstone1Text": "La Cadena de Piedra Lunar, Parte 1: La Cadena de Piedra Lunar", - "questMoonstone1Notes": "

Una terrible aflicción ha golpeado a los Habiticanos. Malos Hábitos que se creían muertos hace tiempo, se han levantado de nuevo en venganza. Los platos se encuentran sin lavar, los libros de texto permanecen sin leer, ¡y la procrastinación corre sin nadie que la detenga!


Sigues el rastro de algunos de tus propios Malos Hábitos a las Ciénagas del Estancamiento y descubres a la culpable: la fantasmal Necromante, Reincidencia. Te lanzas a atacarla, pero tus armas atraviesan su cuerpo espectral inútilmente.


\"No te molestes,\" susurra con un tono áspero y seco. \"Sin una cadena de piedras lunares, nada puede hacerme daño – ¡y el maestro joyero @aurakami dispersó todas las piedras lunares a través de Habitica hace mucho tiempo!\" Jadeante, te retiras... pero sabes qué es lo que debes hacer.

", + "questMoonstone1Notes": "A terrible affliction has struck Habiticans. Bad Habits thought long-dead are rising back up with a vengeance. Dishes lie unwashed, textbooks linger unread, and procrastination runs rampant!

You track some of your own returning Bad Habits to the Swamps of Stagnation and discover the culprit: the ghostly Necromancer, Recidivate. You rush in, weapons swinging, but they slide through her specter uselessly.

\"Don’t bother,\" she hisses with a dry rasp. \"Without a chain of moonstones, nothing can harm me – and master jeweler @aurakami scattered all the moonstones across Habitica long ago!\" Panting, you retreat... but you know what you must do.", "questMoonstone1CollectMoonstone": "Piedras lunares", "questMoonstone1DropMoonstone2Quest": "La Cadena de Piedra Lunar Parte 2: Reincidencia la Necromante (Pergamino)", "questMoonstone2Text": "La Cadena de Piedra Lunar, Parte 2: Reincidencia la Necromante", - "questMoonstone2Notes": "

El valiente armero @Inventrix te ayuda a dar forma a las piedras lunares encantadas hasta hacerlas una cadena. Estás listo para confrontar finalmente a Reincidencia, pero en cuanto entras a las Ciénagas del Estancamiento, te recorre un terrible escalofrío.


Un soplo hediondo susurra en tu oído. \"¿Has regresado? Qué deleite...\" Giras y atacas, y bajo la luz de la cadena de piedra lunar, tu arma golpea carne sólida. \"Tal vez me hayas atado al mundo una vez más,\" gruñe Reincidencia, \"¡pero ahora es tiempo de que termines!\"

", + "questMoonstone2Notes": "The brave weaponsmith @Inventrix helps you fashion the enchanted moonstones into a chain. You’re ready to confront Recidivate at last, but as you enter the Swamps of Stagnation, a terrible chill sweeps over you.

Rotting breath whispers in your ear. \"Back again? How delightful...\" You spin and lunge, and under the light of the moonstone chain, your weapon strikes solid flesh. \"You may have bound me to the world once more,\" Recidivate snarls, \"but now it is time for you to leave it!\"", "questMoonstone2Boss": "La Necromante", "questMoonstone2DropMoonstone3Quest": "La Cadena de Piedra Lunar Parte 3: Reincidencia Transformada (Pergamino)", "questMoonstone3Text": "La Cadena de Piedra Lunar, Parte 3: Reincidencia Transformada", - "questMoonstone3Notes": "

Reincidencia se desploma al suelo, y la golpeas con tu cadena de piedra lunar. Para tu horror, Reincidencia se apodera de las gemas, sus ojos ardiendo triunfantes.


\"¡Tonta criatura de carne!\" grita. \"Estas piedras lunares me restaurarán a mi forma física, es cierto, pero no como tú imaginaste. A medida que la luna crece en la oscuridad, también crecen mis poderes, ¡y de las sombras convoco al espectro de tu más temido enemigo!\"


Una enfermiza neblina verde se levanta de la ciénaga, y el cuerpo de Reincidencia se retuerce y se contorsiona en una forma que te llena de terror – el cuerpo no-muerto de Vicio, horriblemente renacido.

", - "questMoonstone3Completion": "

Respiras difícilmente y el sudor hace que ardan tus ojos mentras el Guivre colapsa. Los restos de Reincidencia se desvanecen formando una gruesa bruma gris que desaparece rápidamente bajo la ráfaga de una refrescante brisa, y escuchas en la distancia los gritos de multitudes de Habiticanos derrotando a sus Malos Hábitos de una vez por todas.


@Baconsaur, el maestro de las bestias, se abalanza montado en un grifo. \"Vi el final de tu batalla desde el cielo, y fue increíblemente conmovedora. Por favor, toma esta túnica encantada – tu valentía habla de un noble corazón, y creo que estabas destinado a tenerla.\"

", + "questMoonstone3Notes": "Recidivate crumples to the ground, and you strike at her with the moonstone chain. To your horror, Recidivate seizes the gems, eyes burning with triumph.

\"Foolish creature of flesh!\" she shouts. \"These moonstones will restore me to a physical form, true, but not as you imagined. As the full moon waxes from the dark, so too does my power flourish, and from the shadows I summon the specter of your most feared foe!\"

A sickly green fog rises from the swamp, and Recidivate’s body writhes and contorts into a shape that fills you with dread – the undead body of Vice, horribly reborn.", + "questMoonstone3Completion": "Your breath comes hard and sweat stings your eyes as the undead Wyrm collapses. The remains of Recidivate dissipate into a thin grey mist that clears quickly under the onslaught of a refreshing breeze, and you hear the distant, rallying cries of Habiticans defeating their Bad Habits for once and for all.

@Baconsaur the beast master swoops down on a gryphon. \"I saw the end of your battle from the sky, and I was greatly moved. Please, take this enchanted tunic – your bravery speaks of a noble heart, and I believe you were meant to have it.\"", "questMoonstone3Boss": "Necrovicio", "questMoonstone3DropRottenMeat": "Carne podrida (Comida)", "questMoonstone3DropZombiePotion": "Poción de eclosión Zombi", "questGoldenknight1Text": "La Dama de Oro, Parte 1: Un Regaño Severo", - "questGoldenknight1Notes": "

La Dama de Oro ha estado molestando a los pobres Habiticanos. ¿No cumpliste todas tus Diarias? ¿Marcaste un hábito negativo? Ella lo usará como razón para acosarte y decir que tienes que seguir su ejemplo. Ella es el ejemplo brillante de un Habiticano perfecto y tú no eres más que un fracaso. Bueno, ¡eso no es para nada agradable! Todos cometen errores, y no deberían ser tratados con tanta negatividad por ello. ¡Tal vez es hora para reunir unos cuantos testimonios de los Habitacanos ofendidos y darle a la Dama de Oro una severa reprimenda!

", + "questGoldenknight1Notes": "The Golden Knight has been getting on poor Habiticans' cases. Didn't do all of your Dailies? Checked off a negative Habit? She will use this as a reason to harass you about how you should follow her example. She is the shining example of a perfect Habitican, and you are naught but a failure. Well, that is not nice at all! Everyone makes mistakes. They should not have to be met with such negativity for it. Perhaps it is time you gather some testimonies from hurt Habiticans and give the Golden Knight a stern talking-to!", "questGoldenknight1CollectTestimony": "Testimonios", "questGoldenknight1DropGoldenknight2Quest": "La Cadena de la Dama de Oro Parte 2: Dama de Oro (Pergamino)", "questGoldenknight2Text": "La Dama de Oro, Parte 2: Dama de Oro", - "questGoldenknight2Notes": "

Armado con cientos de testimonios de Habiticanos, enfrentas finalmente a la Dama de Oro. Empiezas a recitar las quejas de los Habiticanos, una por una. \"Y @Pfeffernusse dice que tus constantes fanfarronadas-\" Ella alza su mano para silenciarte y se burla, \"Por favor, estas personas simplemente están celosas de mi éxito. En lugar de quejarse, ¡deberían trabajar tan duro como yo! ¡Quizás pueda mostrarte el poder que puedes obtener mediante una diligencia como la mía!\" Entonces levanta su lucero del alba, ¡y se prepara para atacarte!

", + "questGoldenknight2Notes": "Armed with hundreds of Habitican's testimonies, you finally confront the Golden Knight. You begin to recite the Habitcan's complaints to her, one by one. \"And @Pfeffernusse says that your constant bragging-\" The knight raises her hand to silence you and scoffs, \"Please, these people are merely jealous of my success. Instead of complaining, they should simply work as hard as I! Perhaps I shall show you the power you can attain through diligence such as mine!\" She raises her morningstar and prepares to attack you!", "questGoldenknight2Boss": "Dama de Oro", "questGoldenknight2DropGoldenknight3Quest": "La Cadena de la Dama de Oro Parte 3: El Caballero de Hierro (Pergamino)", "questGoldenknight3Text": "La Dama de Oro, Parte 3: El Caballero de Hierro", - "questGoldenknight3Notes": "

@Jon Arinbjorn grita para llamar tu atención. En los momentos siguientes a tu batalla, una nueva figura ha aparecido. Un caballero revestido de hierro teñido de negro se aproxima a ti lentamente con su espada en mano. La Dama de Oro vocifera hacia la figura \"¡Padre, no!\" pero el caballero no parece querer detenerse. Ella se vuelve hacia ti y dice \"Lo siento. He sido una tonta, con un ego demasiado grande para ver lo cruel que he sido. Pero mi padre es aún más cruel de lo que yo jamás podría ser. Si nadie lo detiene nos destruirá a todos. ¡Toma, usa mi lucero del alba y termina con el Caballero de Hierro!\"

", - "questGoldenknight3Completion": "

Con un satisfactorio sonido metálico, el Caballero de Hierro cae de rodillas y se desploma. \"Eres bastante fuerte\", jadea. \"Hoy me han humillado\". La Dama de Oro se acerca a ti y dice: \"Gracias. Creo que hemos ganado algo de humildad al enfrentarnos contigo. Hablaré con mi padre y le explicaré las quejas sobre nosotros. Quizás deberíamos empezar por disculparnos ante los otros Habiticanos\". Se detiene a pensar por un momento antes de volverse nuevamente hacia ti. \"Ten: como obsequio, quiero que te quedes con mi lucero del alba. Es tuyo ahora\".

", + "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!\"", + "questGoldenknight3Completion": "With a satisfying clang, the Iron Knight falls to his knees and slumps over. \"You are quite strong,\" he pants. \"I have been humbled, today.\" The Golden Knight approaches you and says, \"Thank you. I believe we have gained some humility from our encounter with you. I will speak with my father and explain the complaints against us. Perhaps, we should begin apologizing to the other Habiticans.\" She mulls over in thought before turning back to you. \"Here: as our gift to you, I want you to keep my morningstar. It is yours now.\"", "questGoldenknight3Boss": "El Caballero de Hierro", "questGoldenknight3DropHoney": "Miel (Comida)", "questGoldenknight3DropGoldenPotion": "Poción de eclosión Dorada", @@ -112,7 +112,7 @@ "questEggHuntCollectPlainEgg": "Huevos Simples", "questEggHuntDropPlainEgg": "Huevo Simple", "questDilatoryText": "El Temido Drag'on de Dilatoria", - "questDilatoryNotes": "

Debimos haberle hecho caso a las advertencias.


Ojos brillantes oscuros. Escamas prehistóricas. Una mandíbula enorme, y dientes centelleantes. Hemos despertado algo horripilante de la brecha: ¡el Temido Drag'on de Dilatoria! Los Habiticanos huyeron en todas direcciones gritando cuando se alzó del mar, extendiendo su cuello terriblemente largo cientos de metros fuera del agua mientras destruía ventanas con un rugido abrasador.


\"¡Debe ser esto lo que hundió a Dilatoria!\" grita Lemoness. \"No fue el peso de las tareas descuidadas - ¡las Diarias de color rojo oscuro sólo atrajeron su atención!\"


\"¡Se está llenando de energía mágica!\" @Baconsaur grita. \"Al haber vivido tanto tiempo, ¡seguramente puede sanarse! ¿Cómo vamos a vencerlo?\"


Bueno, de la misma manera que acabamos con todas las bestias - ¡con la productividad! Rápido, Habitica, únanse y ataquen a través de sus tareas, todos batallaremos este monstruo juntos. (No tienes que abandonar tus misiones previas - ¡creemos en tu habilidad de atacar al doble!) Él no nos atacará individualmente, pero mientras más Diarias omitimos, más nos acercamos a su Ataque de Negligencia - y no me gusta la manera en que está mirando la Taberna...

", + "questDilatoryNotes": "We should have heeded the warnings.

Dark shining eyes. Ancient scales. Massive jaws, and flashing teeth. We've awoken something horrifying from the crevasse: the Dread Drag'on of Dilatory! Screaming Habiticans fled in all directions when it reared out of the sea, its terrifyingly long neck extending hundreds of feet out of the water as it shattered windows with its searing roar.

\"This must be what dragged Dilatory down!\" yells Lemoness. \"It wasn't the weight of the neglected tasks - the Dark Red Dailies just attracted its attention!\"

\"It's surging with magical energy!\" @Baconsaur cries. \"To have lived this long, it must be able to heal itself! How can we defeat it?\"

Why, the same way we defeat all beasts - with productivity! Quickly, Habitica, band together and strike through your tasks, and all of us will battle this monster together. (There's no need to abandon previous quests - we believe in your ability to double-strike!) It won't attack us individually, but the more Dailies we skip, the closer we get to triggering its Neglect Strike - and I don't like the way it's eyeing the Tavern....", "questDilatoryBoss": "El Temido Drag'on de Dilatoria", "questDilatoryBossRageTitle": "Ataque de Negligencia", "questDilatoryBossRageDescription": "Cuando esta barra se llene, el Temido Drag'on de Dilatoria desatará grandes estragos en el terreno de Habitica", @@ -127,7 +127,7 @@ "questSeahorseCompletion": "El Semental de Mar, ahora domesticado, nada dócilmente a tu lado. \"¡Oh, mira!\" dice Kiwibot. \"Quiere que nosotros cuidemos a sus hijos.\" Ella te da tres huevos. \"Críalos bien,\" te dice. \"¡Estás invitado al Derby de Dilatoria en cualquier momento!\"", "questSeahorseBoss": "Semental de Mar", "questSeahorseDropSeahorseEgg": "Caballito de Mar (Huevo)", - "questSeahorseUnlockText": "Desbloquea huevos de caballito de mar adquiribles en el Mercado", + "questSeahorseUnlockText": "Desbloquea huevos de Caballito de Mar adquiribles en el Mercado", "questAtom1Text": "Ataque de lo Mundano, Parte 1: ¡Desastre de Platos!", "questAtom1Notes": "Llegas a la orilla del Lago Lavado para una relajación bien merecida... ¡Pero el lago está contaminado con platos sucios! ¿Cómo sucedió esto? Bueno, no puedes simplemente permitir que el lago siga en este estado. Sólo hay una cosa que puedes hacer: ¡limpiar los platos y salvar tu lugar de vacaciones! Más vale que encuentres algo de jabón para limpiar este desastre. Mucho jabón...", "questAtom1CollectSoapBars": "Barras de jabón", @@ -140,19 +140,19 @@ "questAtom3Notes": "Con un grito ensordecedor, y cinco deliciosos tipos de queso brotando de su boca, el Monstruo SnackLess se cae a pedazos. \"¡CÓMO TE ATREVES!\" resuena una voz desde debajo de la superficie del agua. Una figura azul con túnica emerge del agua, empuñando un cepillo de baño mágico. Ropa sucia comienza a burbujear a la superficie del lago. \"Soy el Lavadomante!\" anuncia furiosamente. \"Que desfachatez - lavar mis platos maravillosamente sucios, destruir a mi mascota y entrar a mi dominio con ropa tan limpia. ¡Prepárate para sentir la ira empapada de mi magia anti-lavado!\"", "questAtom3Completion": "¡El malvado Lavandomante ha sido vencido! Ropa limpia cae en pilas a tu alrededor. Las cosas se ven mucho mejor por aquí. Mientras comienzas a vadear entre la armadura recién planchada, un centelleo metálico llama tu atención, y tu mirada cae sobre un yelmo resplandeciente. El dueño original de este objeto radiante puede ser desconocido, pero al ponértelo sientes la presencia alentadora de un espíritu generoso. Lástima que no le cosió sus iniciales.", "questAtom3Boss": "El Lavandomante", - "questAtom3DropPotion": "Base Hatching Potion", + "questAtom3DropPotion": "Poción de eclosión Básica", "questOwlText": "El Búho Nocturno", - "questOwlNotes": "La luz de la Taberna queda encendida hasta el amanecer
¡Hasta que una tarde su brillo comienza a desaparecer!
¿Cómo podremos ver en la noche oscura?
@Twitching grita, \"¡Necesito guerreros que luchen con premura!\"
¿Ven a ese Búho Nocturno por las estrellas iluminado?
¡Peleen con valentía hasta que sea derrotado!
A su sombra de nuestra puerta alejaremos
¡y una vez más la noche brillar haremos!", + "questOwlNotes": "The Tavern light is lit 'til dawn
Until one eve the glow is gone!
How can we see for our all-nighters?
@Twitching cries, \"I need some fighters!
See that Night-Owl, starry foe?
Fight with haste and do not slow!
We'll drive its shadow from our door,
And make the night shine bright once more!\"", "questOwlCompletion": "El Búho Nocturno se desvanece antes del amanecer,
Pero aún así, sientes un bostezo emerger.
Quizás sea el momento de tomarse un descanso bien merecido.
Sin embargo, cuando llegas a tu cama, ¡encuentras un nido!
Un Búho Nocturno sabe que no es mala idea
Quedarse despierto hasta tarde y terminar una tarea,
Pero a tus nuevas mascotas piar podrás oír
Porque estarán intentando decirte que es tiempo de dormir.", "questOwlBoss": "El Búho Nocturno", "questOwlDropOwlEgg": "Búho (Huevo)", - "questOwlUnlockText": "Desbloquea huevos de búho adquiribles en el Mercado", + "questOwlUnlockText": "Desbloquea huevos de Búho adquiribles en el Mercado", "questPenguinText": "Un Ave Álgida", "questPenguinNotes": "Aunque es un caluroso día de verano en el sur de Habitica, un extraño frío ha caído sobre el Lago Alegre. Vientos helados y fuertes soplan mientras la orilla del lago empieza a congelarse. Pinchos de hielo salen del suelo, desplazando al pasto y la tierra. @Melynnrose y @Breadstrings corren hacia ti.

\"¡Auxilio!\" dice @Melynnrose. \"Trajimos un pingüino gigante para congelar el lago para que pudiéramos patinar sobre hielo, ¡pero ya nos quedamos sin pescado para darle de comer!\"

\"¡El pingüino se enojó y está usando su aliento helado para congelar todo lo que ve!\" dice @Breadstrings. \"Por favor, ¡tienes que vencerlo antes de que todos terminemos cubiertos de hielo!\" Parece que necesitas que este pingüino se... enfríe.", "questPenguinCompletion": "Al vencer al pingüino, el hielo se derrite. El pingüino gigante se relaja bajo el sol, comiendo de una cubeta de pescado que encontraste por ahí. Al terminar, se va patinando a través del lago, soplando suavemente para crear una superficie de hielo lisa y brillante. ¡Qué ave tan rara! \"Parece que también ha dejado algunos huevos,\" dice @Painter de Cluster.

@Rattify ríe. \"Tal vez estos pingüinos sean un poco más... ¿cool?\"", "questPenguinBoss": "Pingüino Álgido", "questPenguinDropPenguinEgg": "Pingüino (Huevo)", - "questPenguinUnlockText": "Desbloquea huevos de pingüino adquiribles en el Mercado", + "questPenguinUnlockText": "Desbloquea huevos de Pingüino adquiribles en el Mercado", "questStressbeastText": "La Abominable Bestia del Estrés de las Estepas de Stoïkalm", "questStressbeastNotes": "¡Completa Diarias y Pendientes para dañar al Jefe Global! Las Diarias incompletas rellenan la barra de Ataque de Estrés. Cuando la barra de Ataque de Estrés se llene completamente, el Jefe Global atacará a un PNJ. Un Jefe Global jamás dañará a jugadores o cuentas particulares en ninguna forma. Sólo las cuentas activas que no estén descansando en la posada tendrán sus Diarias incompletas computadas.

~*~

Lo primero que escuchamos son los pasos, más lentos y estruendosos que la estampida. Uno a uno, los Habiticanos miramos más allá de nuestras puertas, y nos faltan las palabras.

Todos hemos visto anteriormente a las bestias del estrés, claro - diminutas criaturas feroces que atacan en tiempos difíciles. ¿Pero esto? Esto se alza más alto que los edificios, con garras que pueden destrozar fácilmente a un dragón. La escarcha se balancea sobre su maloliente pelaje, y al tiempo que ruge, heladas ráfagas desgarran los techos de nuestras casas. Un monstruo de esta magnitud jamás fue mencionado salvo en antiguas leyendas.

\"¡Cuidado, Habiticanos!\" grita SabreCat. \"¡Armen barricadas en sus hogares - esta es la mismísima Abominable Bestia del Estrés!\"

\"¡Esa cosa se debió haber formado a partir de siglos de estrés!\" dice Kiwibot, cerrando la puerta de la Taberna y las persianas.

\"Las Estepas de Stoïkalm,\" dice Lemoness, con el rostro sombrío. \"Durante todo este tiempo pensamos que eran tranquilas y despreocupadas, pero deben haber estado escondiendo en secreto su estrés en algún lugar. Con el paso de las generaciones se convirtió en esto, y ahora se ha liberado y las ha atacado - ¡y a nosotros también!\"

Sólo hay una manera de ahuyentar a una Bestia del Estrés, Abominable o no, ¡y es atacándola con Diarias y Pendientes completadas! Unámonos todos y luchemos contra este aterrador enemigo - pero asegúrense de no holgazanear, o nuestras Diarias sin hacer podrían enfurecerlo tanto que arremetería...", "questStressbeastBoss": "La Abominable Bestia del Estrés", @@ -184,37 +184,37 @@ "questRockBoss": "Coloso de Cristal", "questRockCompletion": "Tu diligencia te ha permitido encontrar un camino seguro a través de la montaña viviente. De pie bajo la luz del sol, tu amigo @intune se da cuenta de algo brillante en el suelo cerca de la salida de la cueva. Te inclinas para recogerlo y ves que se trata de una pequeña roca con una veta de oro que la atraviesa. Junto a ella hay otras rocas con formas bastante peculiares. Casi parecen... ¿huevos?", "questRockDropRockEgg": "Roca (Huevo)", - "questRockUnlockText": "Desbloquea huevos de roca adquiribles en el Mercado", + "questRockUnlockText": "Desbloquea huevos de Roca adquiribles en el Mercado", "questBunnyText": "El Conejito Asesino", "questBunnyNotes": "Después de muchos días difíciles, alcanzas la cima del Monte Procrastinación y te sitúas delante de las imponentes puertas de la Fortaleza de la Negligencia. Lees la inscripción en la piedra. \"En el interior reside la criatura que encarna tus mayores temores, la razón de tu inactividad. ¡Golpea la puerta y enfréntate a tu demonio!\" Tiemblas, imaginando el horror que hay dentro, y sientes la necesidad de huir como lo has hecho tantas veces antes. @Draayder te detiene. \"¡Calma, mi amigo! ¡Por fin ha llegado el momento! ¡Debes hacerlo!

Golpeas y las puertas se abren hacia dentro. Desde el interior de la oscuridad oyes un rugido ensordecedor, y entonces sacas tu arma.", "questBunnyBoss": "Conejito Asesino", "questBunnyCompletion": "Con un golpe final el conejo asesino se hunde en el suelo. Una niebla brillante asciende desde su cuerpo mientras se encoge hasta convertirse en un diminuto conejito... para nada como la bestia cruel a la que te enfrentaste tan solo un momento antes. Su nariz se crispa de manera adorable y se va saltando, dejando algunos huevos atrás. @Gully ríe. \"El Monte Procrastinación hace que incluso los desafíos más pequeños parezcan insuperables. Juntemos estos huevos y vayamos a casa.\"", "questBunnyDropBunnyEgg": "Conejito (Huevo)", - "questBunnyUnlockText": "Desbloquea huevos de conejito adquiribles en el Mercado", + "questBunnyUnlockText": "Desbloquea huevos de Conejito adquiribles en el Mercado", "questSlimeText": "La Jalea Regente", "questSlimeNotes": "Mientras te ocupas de tus tareas, te das cuenta de que te estás moviendo más y más lento. \"Es como caminar a través de melaza,\" se queja @Leephon. \"¡No, como atravesar jalea!\" dice @starsystemic. \"Esa babosa Jalea Regente ha untado su sustancia por toda Habitica. Está arruinando los trabajos. Todo el mundo se está volviendo más lento.\" Tú miras alrededor. Las calles se están llenando de a poco con un cieno claro y colorido, y los Habiticanos están luchando para poder terminar algo. Mientras otros huyen del área, ¡tú agarras un trapeador y te preparas para la batalla!", "questSlimeBoss": "Jalea Regente", "questSlimeCompletion": "Con un golpe final, atrapas a la Jalea Regente en una dona demasiado grande que te fue alcanzada por @Overomega, @LordDarkly y @Shaner, los líderes con reflejos rápidos del club de pastelería. Mientras todos te dan palmadas en la espalda, sientes a alguien poner discretamente algo en tu bolsillo. Es la recompensa por tu dulce éxito: tres huevos de Baba de Malvavisco.", "questSlimeDropSlimeEgg": "Baba de Malvavisco (Huevo)", - "questSlimeUnlockText": "Desbloquea huevos de baba adquiribles en el Mercado", + "questSlimeUnlockText": "Desbloquea huevos de Baba adquiribles en el Mercado", "questSheepText": "El Carnero del Trueno", "questSheepNotes": "Mientras deambulas por las campiñas de Taskan con tus amigos, tomando un \"rápido descanso\" de tus obligaciones, encuentras una acogedora tienda de estambre. Estás tan sumergido en tu procrastinación que apenas te das cuenta de las siniestras nubes que cubren el cielo. \"Tengo un ma-a-al presentimiento de este clima\", balbucea @Misceo mientras miras hacia arriba. Las tempestuosas nubes se arremolinan y se parecen mucho a un... \"¡No tenemos tiempo para mirar nubes!\" grita @starsystemic. \"¡Está atacando!\" ¡El Carnero del Trueno se abalanza, lanzando rayos hacia ti!", "questSheepBoss": "Carnero del Trueno", "questSheepCompletion": "La furia del Carnero del Trueno merma cuando éste queda impresionado por tu diligencia. La criatura lanza granizo en tu dirección, y luego se desvanece con un retumbo grave. Al inspeccionar más de cerca, descubres que las piedras de granizo son en realidad tres huevos suaves y esponjosos. Los recoges, y luego caminas tranquilamente a casa debajo de un cielo azul.", "questSheepDropSheepEgg": "Oveja (Huevo)", - "questSheepUnlockText": "Desbloquea huevos de oveja adquiribles en el Mercado", + "questSheepUnlockText": "Desbloquea huevos de Oveja adquiribles en el Mercado", "questKrakenText": "El Kraken de Inkompleta", "questKrakenNotes": "Es un día cálido y soleado mientras navegas a través de la Bahía Inkompleta, pero tus pensamientos están llenos de preocupaciones sobre todo lo que aún te queda por hacer. Pareciera que apenas terminas una tarea, otra brota de la nada, y luego otra...

De pronto el bote da una horrible sacudida, ¡y tentáculos babosos emergen del agua por todas partes! \"¡Estamos siendo atacados por el Kraken de Inkompleta!\" grita Wolvenhalo.

\"¡Rápido!\" te llama Lemoness. \"¡Derriba la mayor cantidad de tentáculos que puedas antes de que otros se alzen y tomen su lugar!\"", "questKrakenBoss": "El Kraken de Inkompleta", "questKrakenCompletion": "Mientras el Kraken huye, varios huevos flotan hacia la superficie del agua. Lemoness los examina, y su recelo se transforma en placer. \"¡Huevos de sepia!\" dice. \"Aquí tienes, tómalos como recompensa por todo lo que has completado.\"", "questKrakenDropCuttlefishEgg": "Sepia (Huevo)", - "questKrakenUnlockText": "Desbloquea huevos de sepia adquiribles en el Mercado", + "questKrakenUnlockText": "Desbloquea huevos de Sepia adquiribles en el Mercado", "questWhaleText": "El Llanto de la Ballena", "questWhaleNotes": "Llegas a los Muelles Diligentes, esperando abordar un submarino para ver el Derby de Dilatoria. De pronto, un bramido ensordecedor te obliga a detenerte y tapar tus oídos. \"¡Por allí resopla!\" grita el Capitán @krazjega, señalando a una enorme ballena que se lamenta. \"¡No es seguro enviar a los submarinos mientras ella está dando vueltas!\"

\"Rápido,\" dice @UncommonCriminal. \"¡Ayúdenme a calmar a esta pobre criatura así podemos averiguar por qué está haciendo todo este ruido!\"", "questWhaleBoss": "Ballena Sollozante", "questWhaleCompletion": "Luego de un arduo trabajo, la ballena finalmente cesa su llanto estruendoso. \"Parece que estaba ahogándose en olas de hábitos negativos,\" explica @zoebeagle. \"¡Gracias a tu consistente esfuerzo hemos podido cambiar el curso de la situación!\" Mientras entras al submarino, varios huevos de ballena flotan hacia ti, y tú los recoges.", "questWhaleDropWhaleEgg": "Ballena (Huevo)", - "questWhaleUnlockText": "Desbloquea huevos de ballena adquiribles en el Mercado", + "questWhaleUnlockText": "Desbloquea huevos de Ballena adquiribles en el Mercado", "questDilatoryDistress1Text": "Peligro en Dilatoria, Parte 1: Mensaje en una Botella", "questDilatoryDistress1Notes": "¡Un mensaje en una botella llegó desde la recientemente reconstruida ciudad de Dilatoria! Dice: \"Queridos Habiticanos, necesitamos su ayuda una vez más. ¡Nuestra princesa ha desaparecido y la ciudad está bajo asedio de unos demonios acuáticos desconocidos! Las mantis marinas están manteniendo a raya a los atacantes. ¡Por favor ayúdennos!\" Para efectuar el largo viaje a la ciudad sumergida, uno debe tener la capacidad de respirar agua. ¡Por suerte, los alquimistas @Benga y @hazel pueden hacerlo todo posible! Sólo tienes que encontrar los ingredientes adecuados.", "questDilatoryDistress1Completion": "Te pones la armadura con aletas y nadas a Dilatoria lo más rápido que puedes. Los tritones y sirenas y sus aliadas, las mantis marinas, han logrado mantener a los monstruos fuera de la ciudad por el momento, pero están perdiendo. Acabas de entrar al castillo ¡cuando el espeluznante asedio desciende!", @@ -286,10 +286,27 @@ "questSabretoothBoss": "Dientes de Sable Zombi", "questSabretoothDropSabretoothEgg": "Dientes de Sable (Huevo)", "questSabretoothUnlockText": "Desbloquea huevos de Dientes de Sable adquiribles en el Mercado", - "questMonkeyText": "Monstrous Mandrill and the Mischief Monkeys", - "questMonkeyNotes": "The Sloensteadi Savannah is being torn apart by the Monstrous Mandrill and his Mischief Monkeys! They shriek loudly enough to drown out the sound of approaching deadlines, encouraging everyone to avoid their duties and keep monkeying around. Alas, plenty of people ape this bad behavior. If no one stops these primates, soon everyone's tasks will be as red as the Monstrous Mandrill's face!

\"It will take a dedicated adventurer to resist them,\" says @yamato.

\"Quick, let's get this monkey off everyone's backs!\" @Oneironaut yells, and you charge into battle.", - "questMonkeyCompletion": "You did it! No bananas for those fiends today. Overwhelmed by your diligence, the monkeys flee in panic. \"Look,\" says @Misceo. \"They left a few eggs behind.\"

@Leephon grins. \"Maybe a well-trained pet monkey can help you as much as the wild ones hinder you!\"", - "questMonkeyBoss": "Monstrous Mandrill", - "questMonkeyDropMonkeyEgg": "Monkey (Egg)", - "questMonkeyUnlockText": "Unlocks purchasable Monkey eggs in the Market" + "questMonkeyText": "El Mandril Monstruoso y los Monos Maliciosos", + "questMonkeyNotes": "¡La Sabana Sloensteadi está siendo destruida por el Mandril Monstruoso y sus Monos Maliciosos! Aúllan lo suficientemente fuerte como para ahogar el sonido de las fechas límites que se aproximan, alentando a todos a evadir sus obligaciones y seguir procrastinando. Cielos, mucha gente está imitando esta mala conducta. ¡Si nadie detiene a estos primates, muy pronto las tareas de todo el mundo se volverán tan rojas como la cara del Mandril Monstruoso!

\"Sólo un aventurero dedicado podrá resistirse a ellos,\" dice @yamato.

\"¡Rápido, hagamos que este mono deje de molestar a todos!\" grita @Oneironaut, y tú te preparas para la batalla.", + "questMonkeyCompletion": "¡Lo lograste! Esos diablillos no conseguirán bananas hoy. Agobiados por tu diligencia, los monos huyen llenos de pánico. \"Miren,\" dice @Misceo. \"Han dejado algunos huevos.\"

@Leephon sonríe. \"¡Quizás un mono mascota bien entrenado pueda ayudarte tanto como los salvajes te estorban!\"", + "questMonkeyBoss": "Mandril Monstruoso", + "questMonkeyDropMonkeyEgg": "Mono (Huevo)", + "questMonkeyUnlockText": "Desbloquea huevos de Mono adquiribles en el Mercado", + "questSnailText": "El Caracol del Cieno de Rutinaria", + "questSnailNotes": "Estás ansioso por empezar una misión en los Calabozos abandonados de Rutinaria, pero apenas entras, sientes que el suelo debajo tuyo comienza a succionar tus botas. Levantas la vista y ves a Habiticanos atrapados en lodo. @Overomega grita, \"¡Tienen demasiadas tareas y diarias insignificantes, y se están atascando en cosas que no importan! ¡Ayúdalos a salir!\"

\"Tienes que encontrar la fuente del lodo,\" coincide @Pfeffernusse, \"¡o las tareas que no puedan completar los hundirán por siempre!\"

Con tu arma en mano, vadeas a través del barro pegajoso... y te encuentras con el temible Caracol del Cieno de Rutinaria.", + "questSnailCompletion": "Descargas un golpe sobre la concha del gran Caracol, partiéndola en dos, soltando un montón de agua. El cieno es arrastrado y lavado por la corriente, y los Habiticanos alrededor tuyo se regocijan. \"¡Miren!\" dice @Misceo. \"Hay un pequeño conjunto de huevos de caracol en los restos del lodo.\"", + "questSnailBoss": "Caracol del Cieno de Rutinaria", + "questSnailDropSnailEgg": "Caracol (Huevo)", + "questSnailUnlockText": "Desbloquea huevos de Caracol adquiribles en el Mercado", + "questBewilderText": "The Be-Wilder", + "questBewilderNotes": "The party begins like any other.

The appetizers are excellent, the music is swinging, and even the dancing elephants have become routine. Habiticans laugh and frolic amid the overflowing floral centerpieces, happy to have a distraction from their least-favorite tasks, and the April Fool whirls among them, eagerly providing an amusing trick here and a witty twist there.

As the Mistiflying clock tower strikes midnight, the April Fool leaps onto the stage to give a speech.

“Friends! Enemies! Tolerant acquaintances! Lend me your ears.” The crowd chuckles as animal ears sprout from their heads, and they pose with their new accessories.

“As you know,” the Fool continues, “my confusing illusions usually only last a single day. But I’m pleased to announce that I’ve discovered a shortcut that will guarantee us non-stop fun, without having to deal with the pesky weight of our responsibilities. Charming Habiticans, meet my magical new friend... the Be-Wilder!”

Lemoness pales suddenly, dropping her hors d'oeuvres. “Wait! Don’t trust--”

But suddenly mists are pouring into the room, glittering and thick, and they swirl around the April Fool, coalescing into cloudy feathers and a stretching neck. The crowd is speechless as an monstrous bird unfolds before them, its wings shimmering with illusions. It lets out a horrible screeching laugh.

“Oh, it has been ages since a Habitican has been foolish enough to summon me! How wonderful it feels, to have a tangible form at last.”

Buzzing in terror, the magic bees of Mistiflying flee the floating city, which sags from the sky. One by one, the brilliant spring flowers wither up and wisp away.

“My dearest friends, why so alarmed?” crows the Be-Wilder, beating its wings. “There’s no need to toil for your rewards any more. I’ll just give you all the things that you desire!”

A rain of coins pours from the sky, hammering into the ground with brutal force, and the crowd screams and flees for cover. “Is this a joke?” Baconsaur shouts, as the gold smashes through windows and shatters roof shingles.

PainterProphet ducks as lightning bolts crackle overhead, and fog blots out the sun. “No! This time, I don’t think it is!”

Quickly, Habiticans, don’t let this World Boss distract us from our goals! Stay focused on the tasks that you need to complete so we can rescue Mistiflying -- and hopefully, ourselves.", + "questBewilderCompletion": "The Be-Wilder is DEFEATED!

We've done it! The Be-Wilder lets out a ululating cry as it twists in the air, shedding feathers like falling rain. Slowly, gradually, it coils into a cloud of sparkling mist. As the newly-revealed sun pierces the fog, it burns away, revealing the coughing, mercifully human forms of Bailey, Matt, Alex.... and the April Fool himself.

Mistiflying is saved!

The April Fool has enough shame to look a bit sheepish. “Oh, hm,” he says. “Perhaps I got a little…. carried away.”

The crowd mutters. Sodden flowers wash up on sidewalks. Somewhere in the distance, a roof collapses with a spectacular splash.

“Er, yes,” the April Fool says. “That is. What I meant to say was, I’m dreadfully sorry.” He heaves a sigh. “I suppose it can’t all be fun and games, after all. It might not hurt to focus occasionally. Maybe I’ll get a head start on next year’s pranking.”

Redphoenix coughs meaningfully.

“I mean, get a head start on this year’s spring cleaning!” the April Fool says. “Nothing to fear, I’ll have Habit City in spit-shape soon. Luckily nobody is better than I at dual-wielding mops.”

Encouraged, the marching band starts up.

It isn’t long before all is back to normal in Habit City. Plus, now that the Be-Wilder has evaporated, the magical bees of Mistiflying bustle back to work, and soon the flowers are blooming and the city is floating once more.

As Habiticans cuddle the magical fuzzy bees, the April Fool’s eyes light up. “Oho, I’ve had a thought! Why don’t you all keep some of these fuzzy Bee Pets and Mounts? It’s a gift that perfectly symbolizes the balance between hard work and sweet rewards, if I’m going to get all boring and allegorical on you.” He winks. “Besides, they don’t have stingers! Fool’s honor.”", + "questBewilderCompletionChat": "`The Be-Wilder is DEFEATED!`\n\nWe've done it! The Be-Wilder lets out a ululating cry as it twists in the air, shedding feathers like falling rain. Slowly, gradually, it coils into a cloud of sparkling mist. As the newly-revealed sun pierces the fog, it burns away, revealing the coughing, mercifully human forms of Bailey, Matt, Alex.... and the April Fool himself.\n\n`Mistiflying is saved!`\n\nThe April Fool has enough shame to look a bit sheepish. “Oh, hm,” he says. “Perhaps I got a little…. carried away.”\n\nThe crowd mutters. Sodden flowers wash up on sidewalks. Somewhere in the distance, a roof collapses with a spectacular splash.\n\n“Er, yes,” the April Fool says. “That is. What I meant to say was, I’m dreadfully sorry.” He heaves a sigh. “I suppose it can’t all be fun and games, after all. It might not hurt to focus occasionally. Maybe I’ll get a head start on next year’s pranking.”\n\nRedphoenix coughs meaningfully.\n\n“I mean, get a head start on this year’s spring cleaning!” the April Fool says. “Nothing to fear, I’ll have Habit City in spit-shape soon. Luckily nobody is better than I at dual-wielding mops.”\n\nEncouraged, the marching band starts up.\n\nIt isn’t long before all is back to normal in Habit City. Plus, now that the Be-Wilder has evaporated, the magical bees of Mistiflying bustle back to work, and soon the flowers are blooming and the city is floating once more.\n\nAs Habiticans cuddle the magical fuzzy bees, the April Fool’s eyes light up. “Oho, I’ve had a thought! Why don’t you all keep some of these fuzzy Bee Pets and Mounts? It’s a gift that perfectly symbolizes the balance between hard work and sweet rewards, if I’m going to get all boring and allegorical on you.” He winks. “Besides, they don’t have stingers! Fool’s honor.”", + "questBewilderBossRageTitle": "Beguilement Strike", + "questBewilderBossRageDescription": "When this gauge fills, The Be-Wilder will unleash its Beguilement Strike on Habitica!", + "questBewilderDropBumblebeePet": "Bumblebee (Pet)", + "questBewilderDropBumblebeeMount": "Bumblebee (Mount)", + "questBewilderBossRageMarket": "`The Be-Wilder uses BEGUILEMENT STRIKE!`\n\nOh no! Despite our best efforts, we've gotten distracted by the Be-Wilder’s charming illusions and have forgotten to do some of our Dailies! With a cackling cry, the shining bird beats its wings, raising a swarm of mist around Alex the Merchant. When the fog clears, he has been possessed! “Have some free samples!” he shouts gleefully, and begins to hurl exploding eggs and potions at fleeing Habiticans. Not the most favorable of sales, to be sure.\n\nHurry! Let's stay focused on our Dailies to defeat this monster before it possesses someone else.", + "questBewilderBossRageStables": "`The Be-Wilder uses BEGUILEMENT STRIKE!`\n\nAhh!!! Once again the Be-Wilder has dazzled us into neglecting our Dailies, and now it has attacked Matt the Beast Master! With a swirl of mist, Matt transforms into a terrifying winged creature, and all the pets and mounts howl sadly in their stables. Quickly, stay focused on your tasks to defeat this dastardly distraction!", + "questBewilderBossRageBailey": "`The Be-Wilder uses BEGUILEMENT STRIKE!`\n\nLook out! In the middle of reporting the news, Bailey the Town Crier has been possessed by the Be-Wilder! She lets out an evil, uninformative screech as she rises into the air. Now how will we know what’s going on?\n\nDon't give up... we're so close to defeating this bothersome bird for once and for all!" } \ No newline at end of file diff --git a/common/locales/es_419/rebirth.json b/common/locales/es_419/rebirth.json index 4ff7d61fbf..a589e7fc01 100644 --- a/common/locales/es_419/rebirth.json +++ b/common/locales/es_419/rebirth.json @@ -12,7 +12,7 @@ "rebirthInList2": "La afiliación a Desafíos, Gremios y Equipos permanece.", "rebirthInList3": "Las Gemas, los niveles de sponsor y los niveles de colaborador permanecen.", "rebirthInList4": "Los objetos conseguidos con Gemas o como botines (como mascotas y monturas) permanecen, pero no tienes acceso hasta que los desbloquees.", - "rebirthInList5": "Limited edition equipment you've purchased can be repurchased, even if its event has ended. To repurchase class-specific equipment, you must first change to the correct class.", + "rebirthInList5": "El equipamiento de edición limitada que compraste se puede comprar de nuevo, incluso si su evento ya finalizó. Para volver a comprar equipamiento específico de clase, primero debes cambiarte a la clase correcta.", "rebirthEarnAchievement": "¡También recibirás un Logro por haber empezado una nueva aventura!", "beReborn": "Renacer", "rebirthAchievement": "¡Has comenzado una nueva aventura! Éste es tu Renacimiento número <%= number %>, y el Nivel más alto que has alcanzado es <%= level %>. Para acumular este Logro, ¡empieza tu aventura siguiente después de haber conseguido un nivel aún más alto!", diff --git a/common/locales/es_419/settings.json b/common/locales/es_419/settings.json index e482bb8526..93a241c488 100644 --- a/common/locales/es_419/settings.json +++ b/common/locales/es_419/settings.json @@ -102,7 +102,7 @@ "invitedParty": "Invitado al Equipo", "invitedGuild": "Invitado al Gremio", "importantAnnouncements": "Tu cuenta está inactiva", - "weeklyRecaps": "Resumen de la actividad de tu cuenta en la última semana", + "weeklyRecaps": "Resúmenes de la actividad de tu cuenta en la última semana (Nota: esta función está deshabilitada en este momento debido a problemas con el funcionamiento, ¡pero esperamos tenerla de vuelta pronto!)", "questStarted": "Tu Misión ha comenzado", "invitedQuest": "Invitado a la Misión", "kickedGroup": "Expulsado del grupo", @@ -140,7 +140,7 @@ "mysticHourglass": "<%= amount %> Reloj de Arena Místico", "mysticHourglassText": "Los Relojes de Arena Místicos permiten comprar un Conjunto de Artículos Misteriosos de un mes previo.", "purchasedPlanId": "$<%= price %> USD recurrentes cada <%= months %> mes(es) (<%= plan %>)", - "purchasedPlanExtraMonths": "You have <%= months %> months of extra subscription credit.", + "purchasedPlanExtraMonths": "Tienes <%= months %> meses de crédito de suscripción extra.", "consecutiveSubscription": "Suscripción consecutiva", "consecutiveMonths": "Meses consecutivos:", "gemCapExtra": "Extra del tope de gemas:", diff --git a/common/locales/es_419/subscriber.json b/common/locales/es_419/subscriber.json index b7fc3d46ba..6ecad3dd2c 100644 --- a/common/locales/es_419/subscriber.json +++ b/common/locales/es_419/subscriber.json @@ -2,11 +2,11 @@ "subscription": "Suscripción", "subscriptions": "Suscripciones", "subDescription": "Compra gemas con oro, obtén objetos misteriosos mensuales, guarda tu historial de progreso, duplica tu máximo de botines diarios, apoya a los desarrolladores. Haz clic para más información.", - "buyGemsGold": "Comprar Gemas con oro", + "buyGemsGold": "Compra Gemas con oro", "buyGemsGoldText": "Alexander el Comerciante te venderá gemas a un costo de <%= gemCost %> oro por gema. Sus envíos mensuales tienen un tope inicial de <%= gemLimit %> gemas por mes, pero este tope aumenta de a 5 gemas por cada tres meses de suscripción continua, ¡hasta un máximo de 50 gemas por mes!", - "retainHistory": "Retain additional history entries", - "retainHistoryText": "Makes completed To-Dos and task history available for longer.", - "doubleDrops": "Límites diarios de botines doblado", + "retainHistory": "Conserva entradas de historial adicionales", + "retainHistoryText": "Hace que tus Pendientes completadas y tu historial de tareas estén disponibles por más tiempo.", + "doubleDrops": "Topes diarios de botines duplicados", "doubleDropsText": "¡Completa tu establo más rápido!", "mysteryItem": "Artículos mensuales exclusivos", "mysteryItemText": "¡Cada mes recibirás un ítem cosmético único para tu avatar! Además, por cada tres meses de suscripción continua, los Misteriosos Viajeros del Tiempo te darán acceso a históricos (¡y futuristas!) ítems cosméticos.", @@ -96,7 +96,9 @@ "mysterySet201510": "Conjunto de Duende con Cuernos", "mysterySet201511": "Conjunto de Guerrero de Madera", "mysterySet201512": "Conjunto de Llama Invernal", - "mysterySet201601": "Champion of Resolution Set", + "mysterySet201601": "Conjunto de Campeón de Resoluciones", + "mysterySet201602": "Conjunto de Rompecorazones", + "mysterySet201603": "Conjunto de Trébol de la Suerte", "mysterySet301404": "Conjunto Steampunk Estándar ", "mysterySet301405": "Conjunto de Accesorios Steampunk", "mysterySetwondercon": "WonderCon", diff --git a/common/locales/fr/backgrounds.json b/common/locales/fr/backgrounds.json index 8177a3a278..b9bd207af0 100644 --- a/common/locales/fr/backgrounds.json +++ b/common/locales/fr/backgrounds.json @@ -1,76 +1,76 @@ { "backgrounds": "Arrière-plans", - "backgrounds062014": "Ensemble 1 : Sorti en Juin 2014", + "backgrounds062014": "Ensemble 1 : Sorti en juin 2014", "backgroundBeachText": "Plage", "backgroundBeachNotes": "Prélassez-vous sur le sable chaud.", "backgroundFairyRingText": "Cercle des Fées", "backgroundFairyRingNotes": "Dansez dans un Cercle des Fées.", "backgroundForestText": "Forêt", "backgroundForestNotes": "Flânez dans une Forêt d'Eté.", - "backgrounds072014": "Ensemble 2 : Sorti en Juillet 2014", + "backgrounds072014": "Ensemble 2 : Sorti en juillet 2014", "backgroundCoralReefText": "Récif de Corail", "backgroundCoralReefNotes": "Nagez au milieu d'un Récif Corallien.", "backgroundOpenWatersText": "Eaux Profondes", "backgroundOpenWatersNotes": "Savourez les Eaux Profondes.", "backgroundSeafarerShipText": "Galion", "backgroundSeafarerShipNotes": "Embarquez à bord d'un Galion.", - "backgrounds082014": "Ensemble 3 : Sorti en Août 2014", + "backgrounds082014": "Ensemble 3 : Sorti en août 2014", "backgroundCloudsText": "Nuages", "backgroundCloudsNotes": "Planez au milieu des Nuages.", "backgroundDustyCanyonsText": "Canyon Poussiéreux", "backgroundDustyCanyonsNotes": "Errez au fond d'un Canyon Poussiéreux.", "backgroundVolcanoText": "Volcan", "backgroundVolcanoNotes": "Réchauffez-vous au cœur d'un Volcan.", - "backgrounds092014": "Ensemble 4 : Sorti en Septembre 2014", + "backgrounds092014": "Ensemble 4 : Sorti en septembre 2014", "backgroundThunderstormText": "Orage", "backgroundThunderstormNotes": "Canalisez la foudre d'un Orage.", "backgroundAutumnForestText": "Forêt d'Automne", "backgroundAutumnForestNotes": "Flânez dans une Forêt d'Automne.", "backgroundHarvestFieldsText": "Champs", "backgroundHarvestFieldsNotes": "Moissonnez vos Champs", - "backgrounds102014": "Ensemble 5 : Sorti en Octobre 2014", + "backgrounds102014": "Ensemble 5 : Sorti en octobre 2014", "backgroundGraveyardText": "Cimetière", "backgroundGraveyardNotes": "Visitez un Cimetière Effrayant", "backgroundHauntedHouseText": "Maison Hantée", "backgroundHauntedHouseNotes": "Faufilez-vous dans une Maison Hantée", "backgroundPumpkinPatchText": "Potager à Citrouilles", "backgroundPumpkinPatchNotes": "Taillez des Lanternes d'Halloween dans un Potager à Citrouilles.", - "backgrounds112014": "Ensemble 6 : Sorti en Novembre 2014", + "backgrounds112014": "Ensemble 6 : Sorti en novembre 2014", "backgroundHarvestFeastText": "Fête de la Moisson", "backgroundHarvestFeastNotes": "Savourez une Fête de la Moisson.", "backgroundStarrySkiesText": "Ciel Étoilé", "backgroundStarrySkiesNotes": "Contemplez le Ciel Étoilé.", "backgroundSunsetMeadowText": "Coucher de Soleil", "backgroundSunsetMeadowNotes": "Admirez le Coucher de Soleil sur une Prairie.", - "backgrounds122014": "Ensemble 7 : Sorti en Décembre 2014", + "backgrounds122014": "Ensemble 7 : Sorti en décembre 2014", "backgroundIcebergText": "Iceberg", "backgroundIcebergNotes": "Dérivez sur un Iceberg.", "backgroundTwinklyLightsText": "Guirlandes Scintillantes Hivernales", "backgroundTwinklyLightsNotes": "Promenez-vous au milieu d'arbres parés de lumières festives.", "backgroundSouthPoleText": "Pôle Sud", "backgroundSouthPoleNotes": "Visitez le Pôle Sud glacial.", - "backgrounds012015": "Ensemble 8 : Sorti en Janvier 2015", + "backgrounds012015": "Ensemble 8 : Sorti en janvier 2015", "backgroundIceCaveText": "Caverne de Glace", "backgroundIceCaveNotes": "Descendez dans une Caverne de Glace.", "backgroundFrigidPeakText": "Pic Glacé", "backgroundFrigidPeakNotes": "Atteignez le sommet d'un Pic Glacé.", "backgroundSnowyPinesText": "Pins Enneigés", "backgroundSnowyPinesNotes": "Réfugiez-vous sous des Pins Enneigés.", - "backgrounds022015": "Ensemble 9 : Sorti en Février 2015", + "backgrounds022015": "Ensemble 9 : Sorti en février 2015", "backgroundBlacksmithyText": "Forge", "backgroundBlacksmithyNotes": "Travaillez dans une Forge.", "backgroundCrystalCaveText": "Grotte de Cristal", "backgroundCrystalCaveNotes": "Explorer une Grotte de Cristal", "backgroundDistantCastleText": "Fort Lointain", "backgroundDistantCastleNotes": "Défendez un Fort Lointain.", - "backgrounds032015": "Ensemble 10 : Sorti en Mars 2015", + "backgrounds032015": "Ensemble 10 : Sorti en mars 2015", "backgroundSpringRainText": "Averse Printanière", "backgroundSpringRainNotes": "Dansez sous une Averse Printanière.", "backgroundStainedGlassText": "Vitraux", "backgroundStainedGlassNotes": "Admirez des Vitraux.", "backgroundRollingHillsText": "Collines", "backgroundRollingHillsNotes": "Gambadez dans les Collines.", - "backgrounds042015": "Ensemble 11 : Sorti en Avril 2015", + "backgrounds042015": "Ensemble 11 : Sorti en avril 2015", "backgroundCherryTreesText": "Cerisiers", "backgroundCherryTreesNotes": "Admirez les Cerisiers en fleurs.", "backgroundFloralMeadowText": "Prairie Fleurie", @@ -84,67 +84,81 @@ "backgroundMountainLakeNotes": "Trempez vos orteils dans un Lac d'Altitude.", "backgroundPagodasText": "Pagodes", "backgroundPagodasNotes": "Grimpez au sommet de Pagodes.", - "backgrounds062015": "Ensemble 13 : Sorti en Juin 2015", + "backgrounds062015": "Ensemble 13 : Sorti en juin 2015", "backgroundDriftingRaftText": "Radeau à la Dérive", "backgroundDriftingRaftNotes": "Pagayez sur un Radeau à la Dérive", "backgroundShimmeryBubblesText": "Bulles Chatoyantes", "backgroundShimmeryBubblesNotes": "Flottez au milieu d'une mer de Bulles Chatoyantes", "backgroundIslandWaterfallsText": "Chutes d'eau Insulaires", "backgroundIslandWaterfallsNotes": "Pique-niquez près des Chutes d'eau Insulaires", - "backgrounds072015": "Ensemble 14 : Sorti en Juillet 2015", + "backgrounds072015": "Ensemble 14 : Sorti en juillet 2015", "backgroundDilatoryRuinsText": "Les Ruines de Dilatoire", "backgroundDilatoryRuinsNotes": "Plongez vers les ruines de Dilatoire.", "backgroundGiantWaveText": "Vague Géante", "backgroundGiantWaveNotes": "Surfez sur une Vague Géante !", "backgroundSunkenShipText": "Épave", "backgroundSunkenShipNotes": "Explorez une Épave.", - "backgrounds082015": "Ensemble 15 : Sorti en Juillet 2015", + "backgrounds082015": "Ensemble 15 : Sorti en juillet 2015", "backgroundPyramidsText": "Pyramides", "backgroundPyramidsNotes": "Admirez les pyramides.", "backgroundSunsetSavannahText": "Coucher de soleil dans la savanne", "backgroundSunsetSavannahNotes": "Épiez le coucher de soleil dans la savanne", "backgroundTwinklyPartyLightsText": "Éclairage Festif Scintillant", "backgroundTwinklyPartyLightsNotes": "Dansez sous un Éclairage Festif Scintillant !", - "backgrounds092015": "Ensemble 16 : Sorti en Septembre 2015", + "backgrounds092015": "Ensemble 16 : Sorti en septembre 2015", "backgroundMarketText": "Marché d'Habitica", "backgroundMarketNotes": "Faites vos courses dans le Marché d'Habitica", "backgroundStableText": "Étable d'Habitica", "backgroundStableNotes": "Prenez soin de vos montures dans l'Etable d'Habitica", "backgroundTavernText": "Taverne d'Habitica", "backgroundTavernNotes": "Visitez la Taverne d'Habitica", - "backgrounds102015": "Ensemble 17 : Sorti en Octobre 2015", + "backgrounds102015": "Ensemble 17 : Sorti en octobre 2015", "backgroundHarvestMoonText": "Lune des Moissons", "backgroundHarvestMoonNotes": "Gloussez sous la Lune des Moissons", "backgroundSlimySwampText": "Marécage Vaseux", "backgroundSlimySwampNotes": "Échinez-vous à traverser un Marais Visqueux", "backgroundSwarmingDarknessText": "Ténèbres Grouillantes", "backgroundSwarmingDarknessNotes": "Frissonnez dans les Ténèbres Grouillantes", - "backgrounds112015": "Ensemble 18: Sorti 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.", - "backgrounds122015": "Ensemble 19 : Sorti en Décembre 2015", + "backgrounds122015": "Ensemble 19 : Sorti en décembre 2015", "backgroundAlpineSlopesText": "Pentes Alpines", "backgroundAlpineSlopesNotes": "Skiez sur les Pentes Alpines.", "backgroundSnowySunriseText": "Lever de Soleil Enneigé", "backgroundSnowySunriseNotes": "Contemplez le Lever de Soleil Enneigé.", "backgroundWinterTownText": "Ville Hivernale", "backgroundWinterTownNotes": "Affairez-vous dans une Ville Hivernale. ", - "backgrounds012016": "Ensemble 20 : Sorti en Janvier 2016", + "backgrounds012016": "Ensemble 20 : Sorti en janvier 2016", "backgroundFrozenLakeText": "Lac Gelé", "backgroundFrozenLakeNotes": "Patinez sur un Lac Gelé.", "backgroundSnowmanArmyText": "Armée de Bonhommes de Neige", - "backgroundSnowmanArmyNotes": "Commandez une Armée de Bonhommes de Neige", + "backgroundSnowmanArmyNotes": "Dirigez une Armée de Bonhommes de Neige", "backgroundWinterNightText": "Nuit d'Hiver", "backgroundWinterNightNotes": "Regardez les étoiles durant une Nuit d'Hiver.", - "backgrounds022016": "SET 21: Released February 2016", - "backgroundBambooForestText": "Bamboo Forest", - "backgroundBambooForestNotes": "Stroll through the Bamboo Forest.", - "backgroundCozyLibraryText": "Cozy Library", - "backgroundCozyLibraryNotes": "Read in the Cozy Library.", - "backgroundGrandStaircaseText": "Grand Staircase", - "backgroundGrandStaircaseNotes": "Stride down the Grand Staircase." + "backgrounds022016": "Ensemble 21 : Sorti en février 2016", + "backgroundBambooForestText": "Forêt de Bambous", + "backgroundBambooForestNotes": "Flânez dans la Forêt de Bambous.", + "backgroundCozyLibraryText": "Bibliothèque Douillette", + "backgroundCozyLibraryNotes": "Lisez dans la Bibliothèque Douillette.", + "backgroundGrandStaircaseText": "Grand Escalier", + "backgroundGrandStaircaseNotes": "Descendez à grands pas le Grand Escalier.", + "backgrounds032016": "Ensemble 22 : Sorti en mars 2016", + "backgroundDeepMineText": "Mine Profonde", + "backgroundDeepMineNotes": "Trouvez des métaux précieux dans une Mine Profonde.", + "backgroundRainforestText": "Forêt Tropicale", + "backgroundRainforestNotes": "Aventurez-vous dans une Forêt Tropicale.", + "backgroundStoneCircleText": "Cercle de Pierres", + "backgroundStoneCircleNotes": "Jetez des sorts dans un Cercle de Pierres.", + "backgrounds042016": "SET 23: Released April 2016", + "backgroundArcheryRangeText": "Archery Range", + "backgroundArcheryRangeNotes": "Practice on the Archery Range.", + "backgroundGiantFlowersText": "Giant Flowers", + "backgroundGiantFlowersNotes": "Frolic atop Giant Flowers.", + "backgroundRainbowsEndText": "End of the Rainbow", + "backgroundRainbowsEndNotes": "Discover gold at the End of the Rainbow." } \ No newline at end of file diff --git a/common/locales/fr/character.json b/common/locales/fr/character.json index a5ed222a3f..9202d8e8a6 100644 --- a/common/locales/fr/character.json +++ b/common/locales/fr/character.json @@ -1,7 +1,7 @@ { "statsAch": "Caractéristiques & Succès", "profile": "Profil", - "avatar": "Avatar", + "avatar": "Personnalisez votre avatar", "other": "Autres", "fullName": "Nom complet", "displayName": "Pseudonyme", @@ -34,6 +34,7 @@ "beard": "Barbe", "mustache": "Moustache", "flower": "Fleur", + "wheelchair": "Wheelchair", "basicSkins": "Peaux de base", "rainbowSkins": "Peaux arc-en-ciel", "pastelSkins": "Peaux Pastel", @@ -67,7 +68,7 @@ "levelUp": "Montée de niveau !", "gainedLevel": "Vous avez passé un niveau !", "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) !", + "fullyHealed": "Vous avez été complètement guéri·e !", "huzzah": "Bravo !", "mana": "Mana", "hp": "Vie", @@ -83,7 +84,7 @@ "allocateInt": "Points alloués en Intelligence :", "allocateIntPop": "Ajouter un point en Intelligence", "noMoreAllocate": "Maintenant que vous avez atteint le niveau 100, vous ne gagnerez plus de Points d'Attribut. Vous pouvez continuer à passer des niveaux ou commencer une nouvelle aventure depuis le niveau 1 en utilisant l'Orbe de Renaissance, disponible gratuitement au Marché dès maintenant.", - "stats": "Caractéristiques", + "stats": "Caractéristiques de l'avatar", "strength": "Force", "strengthText": "La Force augmente les chances de \"coups critiques\" aléatoires et donc les bonus d'or, d'expérience et de gain de butin qui en découlent. Elle aide aussi à infliger des dommages aux boss.", "constitution": "Constitution", @@ -136,7 +137,7 @@ "respawn": "Résurrection !", "youDied": "Vous êtes mort !", "dieText": "Vous avez perdu un Niveau, tout votre Or et une pièce d'Équipement aléatoire. Relevez-vous, Habiticien·ne, et essayez encore ! Mettez un frein à ces Habitudes négatives, complétez vos tâches Quotidiennes avec vigilance et tenez la mort à distance avec une Potion de Santé si vous fléchissez !", - "sureReset": "Êtes-vous sûr ? Ceci réinitialisera la classe de votre personnage et vos points alloués (vous les récupérerez tous pour les ré-allouer) et vous coûtera 3 gemmes.", + "sureReset": "Êtes-vous sûr·e ? Ceci réinitialisera la classe de votre personnage ainsi que vos points alloués (vous les récupérerez tous pour les ré-allouer), et vous coûtera 3 gemmes.", "purchaseFor": "Acheter pour <%= cost %> Gemmes ?", "notEnoughMana": "Pas assez de mana.", "invalidTarget": "Cible invalide", @@ -160,5 +161,8 @@ "str": "FOR", "con": "CON", "per": "PER", - "int": "INT" + "int": "INT", + "showQuickAllocation": "Voir la répartition des statistiques", + "hideQuickAllocation": "Cacher la répartition des statistiques", + "quickAllocationLevelPopover": "Chaque niveau vous rapporte un point que vous pouvez assigner à un attribut de votre choix. Vous pouvez le faire manuellement ou laissez le jeu décider pour vous, en utilisant les options d'Attribution Automatique qui se trouvent dans Utilisateur -> Caractéristiques." } \ No newline at end of file diff --git a/common/locales/fr/communityguidelines.json b/common/locales/fr/communityguidelines.json index ae56102d50..1af81bf66f 100644 --- a/common/locales/fr/communityguidelines.json +++ b/common/locales/fr/communityguidelines.json @@ -29,7 +29,7 @@ "commGuidePara013": "Dans une communauté aussi large que celle d’Habitica, les gens vont et viennent et il arrive parfois qu’un·e Mod doive reposer sa noble charge et se détendre. Les personnes suivantes sont Modérateurs et Modératrices Émérites. Elles n’ont plus en charge la modération, mais nous souhaitons tout de même honorer leur travail !", "commGuidePara014": "Modérateurs et Modératrices Émérites :", "commGuideHeadingPublicSpaces": "Espaces Publics sur Habitica", - "commGuidePara015": "Habitica compte deux sortes d’espaces sociaux : publics et privés. Les espaces publics comprennent la Taverne, les Guildes Publiques, GitHub, Trello et le Wiki. Les espaces privés sont les Guildes Privées, la messagerie d’équipe et les Messages Privés.", + "commGuidePara015": "Habitica compte deux sortes d’espaces sociaux : publics et privés. Les espaces publics comprennent la Taverne, les Guildes Publiques, GitHub, Trello et le Wiki. Les espaces privés sont les Guildes Privées, la messagerie d’équipe et les Messages Privés. Tous les noms affichés doivent se conformer avec les règles des espaces publics. Pour changer votre nom affiché, allez sur le site dans Utilisateur > Profil et cliquez sur le bouton \"Modifier\".", "commGuidePara016": "Lorsque vous naviguez dans les sphères publiques d’Habitica, il y a quelques règles générales à suivre afin que tout le monde se sente bien et heureux. Cela devrait être facile pour des aventuriers comme vous !", "commGuidePara017": "Respectez-vous les uns les autres. Soyez courtois·e, agréable, sympathique, et serviable. Souvenez-vous : les Habiticien·ne·s viennent de tous horizons et ont eu des expériences drastiquement différentes. C’est ce qui rend Habitica si génial ! Construire une communauté implique de respecter et de fêter nos différences tout comme nos points communs. Voici quelques méthodes simples pour se respecter mutuellement :", "commGuideList02A": "Respectez l’ensemble des Conditions d'Utilisation.", @@ -40,8 +40,8 @@ "commGuideList02F": "Obtempérez immédiatement si un Modérateur vous demande de cesser une conversation ou de la déplacer dans l'Arrière-Boutique. Les derniers mots et tirades finales devraient être lancés (courtoisement) à votre \"table\" dans l'Arrière-Boutique, si vous en avez la permission.", "commGuideList02G": "Prenez le temps de la réflexion plutôt que de répondre de manière impulsive si quelqu'un vous dit qu'une de vos propos ou actions l'ont gêné. Il faut une une grande force pour être capable de présenter des excuses sincères. Si vous trouvez qu'une personne vous a répondu de manière inappropriée, contactez un·e Mod plutôt que de l'interpeller en public.", "commGuideList02H": "Les discordes et les contentieux doivent être remontés aux modérateurs. Si vous sentez qu'une conversion s'échauffe, devient trop émotionnelle ou blessante, arrêtez-vous là. A la place, envoyer un courriel à leslie@habitica.com pour porter cela à notre attention. C'est notre travail que de faire de cet endroit un lieu sûr.", - "commGuideList02I": "Ne spammez pas Le spam peut inclure, sans être limité à : poster le même commentaire ou la même demande dans de multiples endroits, poster des liens sans explication ou contexte, poster des messages incohérents, ou poster le même message à la chaîne. Les demandes répétées de gemmes ou d'abonnements peuvent aussi être considérées comme du spam.", - "commGuidePara019": "Dans les espaces privés, une plus grande liberté est accordée pour discuter de ce dont vous avez envie, mais vous êtes toujours soumis aux Conditions d'Utilisation et ne devez pas les enfreindre : pas de contenu discriminatoire, violent ou menaçant.", + "commGuideList02I": "Ne spammez pas Le spam peut inclure, sans être limité à : poster le même commentaire ou la même demande dans de multiples endroits, poster des liens sans explication ou contexte, poster des messages incohérents, ou poster le même message à la chaîne. Les demandes répétées de gemmes ou d'abonnements dans une discussion privée ou publique peuvent aussi être considérées comme du spam.", + "commGuidePara019": "Dans les espaces privés, une plus grande liberté est accordée pour discuter de ce dont vous avez envie, mais vous êtes toujours soumis aux Conditions d'Utilisation, notamment pour le contenu discriminatoire, violent ou menaçant. Notez que, parce que les noms de Défis apparaissent dans le profil public du vainqueur, TOUS les noms de Défis doivent obéir aux règles régissant les espaces publics, même s'ils sont privés.", "commGuidePara020": "Les Message Privés (MP) ont quelques règles additionnelles. Si une personne vous a bloqué, ne la contactez pas par un autre biais pour lui demander de vous débloquer. Vous ne devriez également pas envoyer des MPs à quelqu'un en lui demandant de l'aide (dans la mesure où les réponses publiques aux questions sont utiles à la communauté). Enfin, n'envoyez à personne de messages les priant de vous offrir des gemmes ou un abonnement, ce qui peut être considéré comme du spam.", "commGuidePara021": "De plus, certains lieux publics d’Habitica ont des règles supplémentaires.", "commGuideHeadingTavern": "La Taverne", diff --git a/common/locales/fr/content.json b/common/locales/fr/content.json index 34dd7f9762..3c65cfcbb5 100644 --- a/common/locales/fr/content.json +++ b/common/locales/fr/content.json @@ -31,7 +31,7 @@ "dropEggCactusAdjective": "un piquant", "dropEggBearCubText": "Ourson", "dropEggBearCubMountText": "Ours", - "dropEggBearCubAdjective": "un câlin", + "dropEggBearCubAdjective": "un courageux", "questEggGryphonText": "Griffon", "questEggGryphonMountText": "Griffon", "questEggGryphonAdjective": "un fier", @@ -46,7 +46,7 @@ "questEggEggAdjective": "un coloré", "questEggRatText": "Rat", "questEggRatMountText": "Rat", - "questEggRatAdjective": "un poussiéreux", + "questEggRatAdjective": "un sociable", "questEggOctopusText": "Pieuvre", "questEggOctopusMountText": "Pieuvre", "questEggOctopusAdjective": "une visqueuse", @@ -103,13 +103,16 @@ "questEggSnakeAdjective": "un rampant", "questEggUnicornText": "Licorne", "questEggUnicornMountText": "Licorne ailée", - "questEggUnicornAdjective": "Une magique", + "questEggUnicornAdjective": "une magique", "questEggSabretoothText": "Tigre à dents de sabre", "questEggSabretoothMountText": "Tigre à dents de sabre", "questEggSabretoothAdjective": "un féroce", - "questEggMonkeyText": "Monkey", - "questEggMonkeyMountText": "Monkey", - "questEggMonkeyAdjective": "a mischievous", + "questEggMonkeyText": "Singe", + "questEggMonkeyMountText": "Singe", + "questEggMonkeyAdjective": "un malicieux", + "questEggSnailText": "Escargot", + "questEggSnailMountText": "Escargot", + "questEggSnailAdjective": "Un lent mais régulier", "eggNotes": "Trouvez une potion d’éclosion à verser sur cet œuf et il en sortira <%= eggAdjective(locale) %> <%= eggText(locale) %>.", "hatchingPotionBase": "de Base", "hatchingPotionWhite": "Blanc", diff --git a/common/locales/fr/contrib.json b/common/locales/fr/contrib.json index 4b37549830..f28b96f770 100644 --- a/common/locales/fr/contrib.json +++ b/common/locales/fr/contrib.json @@ -28,11 +28,11 @@ "helped": "A aidé Habit à s'agrandir", "helpedText1": "A aidé Habitica à s'agrandir en remplissant", "helpedText2": "cette enquête.", - "hall": "Panthéon", + "hall": "Panthéon des héros", "contribTitle": "Titre de Contributeur (par exemple, \"Forgeron\")", "contribLevel": "Palier de Contributeur", "contribHallText": "1 à 7 pour les contributeurs normaux, 8 pour les modérateurs, 9 pour l'équipe. Détermine quels objets, familiers et montures sont accessibles. Définit également la couleur de l'étiquette du nom. Les paliers 8 et 9 se voient automatiquement attribuer un statut d'admin.", - "hallHeroes": "Panthéon des Héros", + "hallContributors": "Panthéon des contributeurs", "hallPatrons": "Panthéon des Sponsors", "rewardUser": "Récompenser l'Utilisateur", "UUID": "UUID", @@ -60,5 +60,5 @@ "blurbGuildsPage": "Les Guildes sont des groupes de discussion créés par les joueurs pour les joueurs pour regrouper les personnes autour de leurs centres d'intérêt. Jetez un œil à la liste et rejoignez les Guildes qui vous intéressent !", "blurbChallenges": "Les Défis sont des listes de tâches créées par des membres ! Rejoindre un défi ajoutera ses tâches aux vôtres dans la page des tâches ; gagner un Défi vous fera gagner un succès ainsi que, souvent, des gemmes !", "blurbHallPatrons": "Voici le Panthéon des Sponsors, où nous rendons hommage aux nobles aventuriers qui ont soutenu le Kickstarter original de Habitica. Nous les remercions de nous avoir aidés à donner la vie à Habitica !", - "blurbHallHeroes": "Ceci est le Panthéon des Héros, où tous les contributeurs open-source d'Habitica sont honorés. Que ce soit par du code, de l'art, de la musique, de l'écriture, ou juste de l'aide, ils ont mérité\n des gemmes, de l'équipment exclusif, et des titres prestigieux. Vous pouvez aussi contribuer à Habitica ! Apprenez-en plus ici. " + "blurbHallContributors": "Voici le Panthéon des Contributeurs, où sont honorés tous les contributeurs \"open-source\" d'Habitica. Que ce soit grâce à du code, de l'art, de la musique, de l'écriture ou même simplement de l'aide, ils ont gagné des gemmes, de l'équipement exclusif, et des titres prestigieux. Vous pouvez, vous aussi, contribuer à Habitica ! Apprenez-en plus ici." } \ No newline at end of file diff --git a/common/locales/fr/faq.json b/common/locales/fr/faq.json index e904fd4409..fa9462c45d 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 définirez les tâches que vous voulez faire au quotidien. Ensuite, en effectuant vos tâches dans la vie réelle et que vous les validez, vous gagnerez de l'Expérience et de l'Or. L'or est utilisé pour acheter de l'équipement et certains objets, ainsi que des récompenses personnalisées. L'expérience permet à votre personnage de passer au niveau supérieur et de débloquer des contenus, par exemple les familiers, les compétences et les quêtes ! Pour plus de détails, consultez la présentation pas à pas du jeu sur [Aide > Présentation à l'usage des Nouveaux Utilisateurs] (https://habitica.com/static/overview).", + "webFaqAnswer0": "D'abord, vous définirez les tâches que vous voulez faire au quotidien. Ensuite, en effectuant vos tâches dans la vie réelle et en les validant, vous gagnerez de l'Expérience et de l'Or. L'or est utilisé pour acheter de l'équipement et certains objets, ainsi que des récompenses personnalisées. L'expérience permet à votre personnage de passer au niveau supérieur et de débloquer des contenus, par exemple les familiers, les compétences et les quêtes ! Pour plus de détails, consultez la présentation pas à pas du jeu sur [Aide > Présentation à l'usage des Nouveaux Utilisateurs] (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.", @@ -39,6 +39,6 @@ "faqQuestion12": "Comment combat-on un Boss Mondial?", "iosFaqAnswer12": "Les Boss Mondiaux sont des monstres spéciaux qui apparaissent dans la Taverne. Tous les membres actifs combattent automatiquement le boss : leurs tâches et habiletés blesseront le Boss comme à l'habitude.\n\nVous pouvez également participer à une quête normale en même temps. Vos tâches et habiletés seront pris en compte pour les deux boss : le Boss Mondial et le Boss/Quête de collection de votre équipe.\n\nUn Boss Mondial ne blessera jamais, vous et votre compte, de quelque manière que ce soit. Il a plutôt une Barre de colère qui se remplit lorsque les membres manquent les Quotidiennes. Si la Barre se remplit, il attaque l'un des Personnages non-joueurs du site et son image changera.\n\nPour en savoir plus, visitez la page [Boss Mondiaux précédents](http://habitica.wikia.com/wiki/World_Bosses) du wiki.", "webFaqAnswer12": "Les Boss Mondiaux sont des monstres spéciaux qui apparaissent dans la Taverne. Tous les membres actifs combattent automatiquement le boss : leurs tâches et habiletés blesseront le Boss comme à l'habitude.\n

\nVous pouvez également participer à une quête normale en même temps. Vos tâches et habiletés seront pris en compte pour les deux boss : le Boss Mondial et le Boss/Quête de collection de votre équipe.\n

\nUn Boss Mondial ne blessera jamais, vous et votre compte, de quelque manière que ce soit. Il a plutôt une Barre de colère qui se remplit lorsque les membres manquent les Quotidiennes. Si la Barre se remplit, il attaque l'un des Personnages non-joueurs du site et son image changera.\n

\nPour en savoir plus, visitez la page [Boss Mondiaux précédents](http://habitica.wikia.com/wiki/World_Bosses) du wiki.", - "iosFaqStillNeedHelp": "If you have a question that isn't on this list or on the [Wiki FAQ](http://habitica.wikia.com/wiki/FAQ), 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 or on the [Wiki FAQ](http://habitica.wikia.com/wiki/FAQ), come ask in the [Newbies Guild](https://habitica.com/#/options/groups/guilds/5481ccf3-5d2d-48a9-a871-70a7380cee5a)! We're happy to help." + "iosFaqStillNeedHelp": "Si vous avez une question qui n'est pas dans cette liste ou dans la [FAQ du Wiki](http://fr.habitica.wikia.com/wiki/FAQ), venez la poser dans la Taverne depuis Menu > Taverne ! Nous serions ravis de vous aider.", + "webFaqStillNeedHelp": "Si vous avez une question qui n'est pas dans cette liste ou qui n'est pas dans la [FAQ du Wiki](http://fr.habitica.wikia.com/wiki/FAQ), venez la poser dans la [Guilde des Nouveaux Arrivants](https://habitica.com/#/options/groups/guilds/5481ccf3-5d2d-48a9-a871-70a7380cee5a) ! Nous serons heureux de vous aider." } \ No newline at end of file diff --git a/common/locales/fr/front.json b/common/locales/fr/front.json index aa0614b325..e2b317a149 100644 --- a/common/locales/fr/front.json +++ b/common/locales/fr/front.json @@ -124,7 +124,7 @@ "motivate1": "Motivez-vous à faire tout et n'importe quoi.", "motivate2": "Gagnez en organisation. En motivation. En Or.", "passConfirm": "Confirmer le Mot de passe", - "passMan": "In case you are using a password manager (like 1Password) and have problems logging in, try typing your username and password manually.", + "passMan": "Si vous utilisez un gestionnaire de mots de passe (comme 1Password) et que vous avez des soucis pour vous connecter, essayez d'entrer votre nom d'utilisateur et votre mot de passe manuellement.", "password": "Mot de passe", "playButton": "Jouer", "playButtonFull": "Jouez à Habitica", @@ -165,8 +165,8 @@ "teams": "Équipes", "terms": "Conditions d'Utilisation", "testimonialHeading": "Ce que les gens en disent ...", - "localStorageTryFirst": "If you are experiencing problems with Habitica, click the button below to clear local storage for this website (other websites will not be affected). You will need to log in again after doing this, so first be sure that you know your log-in details, which can be found at Settings -> <%= linkStart %>Site<%= linkEnd %>.", - "localStorageTryNext": "Si le problème persiste, alors <%= linkStart %>reportez un bug<%= linkEnd %> si vous ne l'avez déjà pas fait.", + "localStorageTryFirst": "Si vous rencontrez des problèmes avec Habitica, cliquez sur le bouton ci-dessous pour effacer les cookies et le stockage local de ce site (les autres sites ne seront pas affectés). Vous devrez ensuite vous reconnecter, alors soyez d'abord sûr de connaître vos identifiants, que vous pouvez trouver dans Paramètres -> <%= linkStart %>Site<%= linkEnd %>.", + "localStorageTryNext": "Si le problème persiste, alors <%= linkStart %>signalez un bug<%= linkEnd %> si vous ne l'avez déjà pas fait.", "localStorageClearing": "Effacement du stockage local", "localStorageClearingExplanation": "Les données locales faisant référence à ce site sont en cours d'effacement. Vous allez être déconnecté et redirigé vers la page d'accueil.", "localStorageClear": "Effacer les données locales", @@ -195,7 +195,7 @@ "landingCopy3": "Rejoignez plus de <%= userCount %> personnes qui s'amusent en progressant dans leur vie.", "alreadyHaveAccount": "J'ai déjà un compte !", "getStartedNow": "Commencer maintenant !", - "altAttrNavLogo": "Habitica home", + "altAttrNavLogo": "Page d’accueil d'Habitica", "altAttrLifehacker": "Lifehacker", "altAttrNewYorkTimes": "The New York Times", "altAttrMakeUseOf": "MakeUseOf", @@ -204,20 +204,20 @@ "altAttrFastCompany": "Fast Company", "altAttrKickstarter": "Kickstarter", "altAttrDiscover": "Discover Magazine", - "altAttrFrabjabulous": "Frabjabulous:", - "altAttrAlexandraSo": "_AlexandraSo_:", - "altAttrEvaGantz": "EvaGantz:", - "altAttrSupermouse35": "supermouse35:", - "altAttrAlthaire": "Althaire:", - "altAttrInfH": "InfH:", - "altAttrDreiM": "Drei-M:", - "altAttrKazui": "Kazui:", - "altAttrAutumnesquirrel": "autumnesquirrel:", - "altAttrIrishfeet123": "irishfeet123:", - "altAttrElmi": "Elmi:", - "altAttr16bitFil": "16bitFil:", - "altAttrZelahMeyer": "Zelah Meyer:", - "altAttrSkysailor": "skysailor:", + "altAttrFrabjabulous": "Frabjabulous :", + "altAttrAlexandraSo": "_AlexandraSo_ :", + "altAttrEvaGantz": "EvaGantz :", + "altAttrSupermouse35": "supermouse35 :", + "altAttrAlthaire": "Althaire :", + "altAttrInfH": "InfH :", + "altAttrDreiM": "Drei-M :", + "altAttrKazui": "Kazui :", + "altAttrAutumnesquirrel": "autumnesquirrel :", + "altAttrIrishfeet123": "irishfeet123 :", + "altAttrElmi": "Elmi :", + "altAttr16bitFil": "16bitFil :", + "altAttrZelahMeyer": "Zelah Meyer :", + "altAttrSkysailor": "skysailor :", "altAttrIonic": "Ionic", "altAttrWebstorm": "WebStorm", "altAttrGithub": "GitHub", diff --git a/common/locales/fr/gear.json b/common/locales/fr/gear.json index 5b5f05e43e..e0a16cc80b 100644 --- a/common/locales/fr/gear.json +++ b/common/locales/fr/gear.json @@ -1,4 +1,5 @@ { + "set": "Ensemble", "weapon": "arme", "weaponBase0Text": "Pas d'arme", "weaponBase0Notes": "Pas d'arme.", @@ -71,85 +72,93 @@ "weaponSpecialTridentOfCrashingTidesText": "Trident des Marées Déferlantes", "weaponSpecialTridentOfCrashingTidesNotes": "Confère la capacité de contrôler les poissons et poignarde également violemment vos tâches. Augmente l'Intelligence de <%= int %> points.", "weaponSpecialYetiText": "Lance du Dresseur de Yeti", - "weaponSpecialYetiNotes": "Cette lance permet à son porteur de contrôler n'importe quel yéti. Augmente la Force de <%= str %> points. Équipement en Édition Limitée de l'Hiver 2013-2014.", + "weaponSpecialYetiNotes": "Cette lance permet à son porteur de contrôler n'importe quel yéti. Augmente la Force de <%= str %> points. Équipement en édition limitée de l'hiver 2013-2014.", "weaponSpecialSkiText": "Bâton de Ski-ssassin", - "weaponSpecialSkiNotes": "Une arme capable de détruire des hordes d'ennemis ! Elle permet aussi à son porteur d'effectuer des jolis virages parallèles. Augmente la Force de <%= str %> points. Équipement en Édition Limitée de l'Hiver 2013-2014.", + "weaponSpecialSkiNotes": "Une arme capable de détruire des hordes d'ennemis ! Elle permet aussi à son porteur d'effectuer des jolis virages parallèles. Augmente la Force de <%= str %> points. Équipement en édition limitée de l'hiver 2013-2014.", "weaponSpecialCandycaneText": "Bâton de Sucre d'orge", - "weaponSpecialCandycaneNotes": "Un puissant bâton de mage. Puissamment DÉLICIEUX, en vérité ! Arme à deux mains. Augmente l'Intelligence de <%= int %> points et la Perception de <%= per %>. Équipement en Édition Limitée de l'Hiver 2013-2014.", + "weaponSpecialCandycaneNotes": "Un puissant bâton de mage. Puissamment DÉLICIEUX, en vérité ! Arme à deux mains. Augmente l'Intelligence de <%= int %> points et la Perception de <%= per %>. Équipement en édition limitée de l'hiver 2013-2014.", "weaponSpecialSnowflakeText": "Baguette Flocon de neige", - "weaponSpecialSnowflakeNotes": "Cette baguette brille d'un pouvoir de guérison illimité. Augmente l'Intelligence de <%= int %> points. Équipement en Édition Limitée de l'Hiver 2013-2014.", + "weaponSpecialSnowflakeNotes": "Cette baguette brille d'un pouvoir de guérison illimité. Augmente l'Intelligence de <%= int %> points. Équipement en édition limitée de l'hiver 2013-2014.", "weaponSpecialSpringRogueText": "Griffes-crochet", - "weaponSpecialSpringRogueNotes": "Idéal pour escalader de grands immeubles, mais aussi pour déchirer les carpettes. Augmente la Force de <%= str %> points. Équipement en Édition Limitée du Printemps 2014.", + "weaponSpecialSpringRogueNotes": "Idéal pour escalader de grands immeubles, mais aussi pour déchirer les carpettes. Augmente la Force de <%= str %> points. Équipement en édition limitée du printemps 2014.", "weaponSpecialSpringWarriorText": "Épée Carotte", - "weaponSpecialSpringWarriorNotes": "Cette puissante épée peut facilement trancher les ennemis ! Elle fera également un très bon en-cas au milieu d'un combat. Augmente la Force de <%= str %> points. Équipement en Édition Limitée du Printemps 2014.", + "weaponSpecialSpringWarriorNotes": "Cette puissante épée peut facilement trancher les ennemis ! Elle fera également un très bon en-cas au milieu d'un combat. Augmente la Force de <%= str %> points. Équipement en édition limitée du printemps 2014.", "weaponSpecialSpringMageText": "Bâton de Fromage à Trous", - "weaponSpecialSpringMageNotes": "Seuls les rongeurs les plus coriaces peuvent braver leur faim pour brandir ce puissant bâton. Augmente l'Intelligence de <%= int %> points et la Perception de <%= per %>. Équipement en Édition Limitée du Printemps 2014.", + "weaponSpecialSpringMageNotes": "Seuls les rongeurs les plus coriaces peuvent braver leur faim pour brandir ce puissant bâton. Augmente l'Intelligence de <%= int %> points et la Perception de <%= per %>. Équipement en édition limitée du printemps 2014.", "weaponSpecialSpringHealerText": "Os Ravissant", - "weaponSpecialSpringHealerNotes": "VA CHERCHER ! Augmente l'Intelligence de <%= int %> points. Équipement en Édition Limitée du Printemps 2014.", + "weaponSpecialSpringHealerNotes": "VA CHERCHER ! Augmente l'Intelligence de <%= int %> points. Équipement en édition limitée du printemps 2014.", "weaponSpecialSummerRogueText": "Coutelas de Pirate", - "weaponSpecialSummerRogueNotes": "Arrêtez! Vous allez mettre ces tâches Quotidiennes au supplice de la planche! Augmente la Force de <%= str %> points. Équipement en Édition Limitée de l’Été 2014.", + "weaponSpecialSummerRogueNotes": "Arrêtez! Vous allez mettre ces tâches Quotidiennes au supplice de la planche! Augmente la Force de <%= str %> points. Équipement en édition limitée de l’été 2014.", "weaponSpecialSummerWarriorText": "Tranchoir des Mers", - "weaponSpecialSummerWarriorNotes": "Quelle que soit la liste, il n'est pas une tâche qui se frotterait à cette dangereuse lame ! Augmente la Force de <%= str %> points. Équipement en Édition Limitée de l’Été 2014.", + "weaponSpecialSummerWarriorNotes": "Quelle que soit la liste, il n'est pas une tâche qui se frotterait à cette dangereuse lame ! Augmente la Force de <%= str %> points. Équipement en édition limitée de l’été 2014.", "weaponSpecialSummerMageText": "Récolteur de Varech", - "weaponSpecialSummerMageNotes": "Ce trident est utilisé pour harponner les algues avec efficacité, idéal pour les récoltes de varech extra-productives ! Augmente l'Intelligence de <%= int %> points et la Perception de <%= per %> points. Équipement en Édition Limitée de l’Été 2014.", + "weaponSpecialSummerMageNotes": "Ce trident est utilisé pour harponner les algues avec efficacité, idéal pour les récoltes de varech extra-productives ! Augmente l'Intelligence de <%= int %> points et la Perception de <%= per %> points. Équipement en édition limitée de l’été 2014.", "weaponSpecialSummerHealerText": "Baguette des Bas-Fonds", - "weaponSpecialSummerHealerNotes": "Cette baguette d'aigue-marine et de corail vivant est très attrayante pour les bancs de poissons. Augmente l'Intelligence de <%= int %> points. Équipement en Édition Limitée de l’Été 2014.", + "weaponSpecialSummerHealerNotes": "Cette baguette d'aigue-marine et de corail vivant est très attrayante pour les bancs de poissons. Augmente l'Intelligence de <%= int %> points. Équipement en édition limitée de l’été 2014.", "weaponSpecialFallRogueText": "Pieu en Argent", - "weaponSpecialFallRogueNotes": "Liquide les morts-vivants. Accorde aussi un bonus contre les loup-garous, parce qu'on n'est jamais trop prudent. Augmente la Force de <%= str %> points. Équipement en Édition Limitée de l'Automne 2014.", + "weaponSpecialFallRogueNotes": "Liquide les morts-vivants. Accorde aussi un bonus contre les loup-garous, parce qu'on n'est jamais trop prudent. Augmente la Force de <%= str %> points. Équipement en édition limitée de l'automne 2014.", "weaponSpecialFallWarriorText": "Pince Avide de la Science", - "weaponSpecialFallWarriorNotes": "Cette pince avide est à la pointe de la technologie. Augmente la Force de <%= str %> points. Équipement en Édition Limitée de l'Automne 2014.", + "weaponSpecialFallWarriorNotes": "Cette pince avide est à la pointe de la technologie. Augmente la Force de <%= str %> points. Équipement en édition limitée de l'automne 2014.", "weaponSpecialFallMageText": "Balai Magique", - "weaponSpecialFallMageNotes": "Ce balai enchanté vole plus vite que les dragons ! Augmente l'Intelligence de <%= int %> points et la Perception de <%= per %>. Équipement en Édition Limitée de l'Automne 2014.", + "weaponSpecialFallMageNotes": "Ce balai enchanté vole plus vite que les dragons ! Augmente l'Intelligence de <%= int %> points et la Perception de <%= per %>. Équipement en édition limitée de l'automne 2014.", "weaponSpecialFallHealerText": "Baguette de Scarabée", - "weaponSpecialFallHealerNotes": "Le scarabée qui orne cette baguette protège et guérit son porteur . Augmente l'Intelligence de <%= int %> points. Équipement en Édition Limitée de l'Automne 2014.", + "weaponSpecialFallHealerNotes": "Le scarabée qui orne cette baguette protège et guérit son porteur . Augmente l'Intelligence de <%= int %> points. Équipement en édition limitée de l'automne 2014.", "weaponSpecialWinter2015RogueText": "Stalagmite Gelé", - "weaponSpecialWinter2015RogueNotes": "Vous venez vraiment, sérieusement, absolument, de les ramasser par terre. Augmente la Force de <%= str %> points. Équipement en Édition Limitée de l'Hiver 2014-2015.", + "weaponSpecialWinter2015RogueNotes": "Vous venez vraiment, sérieusement, absolument, de les ramasser par terre. Augmente la Force de <%= str %> points. Équipement en édition limitée de l'hiver 2014-2015.", "weaponSpecialWinter2015WarriorText": "Épée Gélatineuse", - "weaponSpecialWinter2015WarriorNotes": "Cette épée délicieuse attire probablement les monstres... mais ça ne vous fait pas peur ! Augmente la Force de <%= str %> points. Équipement en Édition Limitée de l'Hiver 2014-2015.", + "weaponSpecialWinter2015WarriorNotes": "Cette épée délicieuse attire probablement les monstres... mais ça ne vous fait pas peur ! Augmente la Force de <%= str %> points. Équipement en édition limitée de l'hiver 2014-2015.", "weaponSpecialWinter2015MageText": "Bâton aux Couleurs Hivernales", - "weaponSpecialWinter2015MageNotes": "Ce bâton de cristal illumine et réchauffe le cœur. Augmente l'Intelligence de <%= int %> points et la Perception de <%= per %>. Équipement en Édition Limitée de l'Hiver 2014-2015.", + "weaponSpecialWinter2015MageNotes": "Ce bâton de cristal illumine et réchauffe le cœur. Augmente l'Intelligence de <%= int %> points et la Perception de <%= per %>. Équipement en édition limitée de l'hiver 2014-2015.", "weaponSpecialWinter2015HealerText": "Sceptre Apaisant", - "weaponSpecialWinter2015HealerNotes": "Cette sceptre réchauffe les muscles endoloris et fait disparaître le stress. Augmente l'Intelligence de <%= int %> points. Équipement en Édition Limitée de l'Hiver 2014-2015.", + "weaponSpecialWinter2015HealerNotes": "Cette sceptre réchauffe les muscles endoloris et fait disparaître le stress. Augmente l'Intelligence de <%= int %> points. Équipement en édition limitée de l'hiver 2014-2015.", "weaponSpecialSpring2015RogueText": "Couinement explosif", - "weaponSpecialSpring2015RogueNotes": "Ne vous laissez pas duper par le son - ces explosifs font mal. Augmente la Force de <%= str %> points. Équipement en Édition Limitée du Printemps 2015.", + "weaponSpecialSpring2015RogueNotes": "Ne vous laissez pas duper par le son - ces explosifs font mal. Augmente la Force de <%= str %> points. Équipement en édition limitée du printemps 2015.", "weaponSpecialSpring2015WarriorText": "Matraque en Os", - "weaponSpecialSpring2015WarriorNotes": "C'est une vraie matraque en Os pour chien vraiment féroce, et absolument pas un jouet à mastiquer que la Sorcière Saisonnière vous aurait donné parce que vous êtes un bon toutou. Qui c'est le bon toutou ? C'est vous !!! Vous êtes un bon toutou !!! Augmente la Force de <%= str %> points. Équipement en Édition Limitée du Printemps 2015.", + "weaponSpecialSpring2015WarriorNotes": "C'est une vraie matraque en Os pour chien vraiment féroce, et absolument pas un jouet à mastiquer que la Sorcière Saisonnière vous aurait donné parce que vous êtes un bon toutou. Qui c'est le bon toutou ? C'est vous !!! Vous êtes un bon toutou !!! Augmente la Force de <%= str %> points. Équipement en édition limitée du printemps 2015.", "weaponSpecialSpring2015MageText": "Baguette de Magicien", - "weaponSpecialSpring2015MageNotes": "Faites apparaître une carotte pour vous avec cette baguette distinguée. Augmente l'Intelligence de <%= int %> points et la Perception de <%= per %> points. Équipement en Édition Limitée de l’Été 2015.", + "weaponSpecialSpring2015MageNotes": "Faites apparaître une carotte pour vous avec cette baguette distinguée. Augmente l'Intelligence de <%= int %> points et la Perception de <%= per %> points. Équipement en édition limitée du printemps 2015.", "weaponSpecialSpring2015HealerText": "Hochet de Chat", - "weaponSpecialSpring2015HealerNotes": "Lorsque vous l'agitez, il fait un drôle de cliquetis qui amuserait N'IMPORTE QUI pendant des heures. Augmente l'Intelligence de <%= int %> points. Équipement en Édition Limitée du Printemps 2015.", + "weaponSpecialSpring2015HealerNotes": "Lorsque vous l'agitez, il fait un drôle de cliquetis qui amuserait N'IMPORTE QUI pendant des heures. Augmente l'Intelligence de <%= int %> points. Équipement en édition limitée du printemps 2015.", "weaponSpecialSummer2015RogueText": "Corail Flamboyant", - "weaponSpecialSummer2015RogueNotes": "Cette variété de corail de feu a la capacité de propulser son venin dans l'eau. Augmente la Force de <%= str %> points. Équipement en Édition Limitée de l’Été 2015.", + "weaponSpecialSummer2015RogueNotes": "Cette variété de corail de feu a la capacité de propulser son venin dans l'eau. Augmente la Force de <%= str %> points. Équipement en édition limitée de l’été 2015.", "weaponSpecialSummer2015WarriorText": "Espadon Solaire", - "weaponSpecialSummer2015WarriorNotes": "L'Espadon Solaire est une arme redoutable, sous réserve que l'on puisse l'empêcher de frétiller. Augmente la Force de <%= str %> points. Équipement en Édition Limitée de l’Été 2015.", + "weaponSpecialSummer2015WarriorNotes": "L'Espadon Solaire est une arme redoutable, sous réserve que l'on puisse l'empêcher de frétiller. Augmente la Force de <%= str %> points. Équipement en édition limitée de l’été 2015.", "weaponSpecialSummer2015MageText": "Bâton de Devin", - "weaponSpecialSummer2015MageNotes": "Une puissance cachée luit dans les joyaux de ce bâton. Augmente l'Intelligence de <%= int %> points et la Perception de <%= per %> points. Équipement en Édition Limitée de l’Été 2015.", + "weaponSpecialSummer2015MageNotes": "Une puissance cachée luit dans les joyaux de ce bâton. Augmente l'Intelligence de <%= int %> points et la Perception de <%= per %> points. Équipement en édition limitée de l’été 2015.", "weaponSpecialSummer2015HealerText": "Baguette des Vagues", - "weaponSpecialSummer2015HealerNotes": "Guérit le mal de mer et le mal des mers ! Augmente l'Intelligence de <%= int %> points. Équipement en Édition Limitée de l’Été 2015.", + "weaponSpecialSummer2015HealerNotes": "Guérit le mal de mer et le mal des mers ! Augmente l'Intelligence de <%= int %> points. Équipement en édition limitée de l’été 2015.", "weaponSpecialFall2015RogueText": "Hache de Bat-aille", - "weaponSpecialFall2015RogueNotes": "De redoutables tâches À Faire s'enfuient devant le battement d'ailes de cette hache. Augmente la Force de <%= str %> points. Équipement en Édition Limitée de l'Automne 2015.", + "weaponSpecialFall2015RogueNotes": "De redoutables tâches À Faire s'enfuient devant le battement d'ailes de cette hache. Augmente la Force de <%= str %> points. Équipement en édition limitée de l'automne 2015.", "weaponSpecialFall2015WarriorText": "Planche de Bois", - "weaponSpecialFall2015WarriorNotes": "Parfait pour surélever quelque chose dans un champ de maïs et / ou frapper les tâches. Augmente la Force de <%= str %> points. Équipement en Édition Limitée de l'Automne 2015.", + "weaponSpecialFall2015WarriorNotes": "Parfait pour surélever quelque chose dans un champ de maïs et / ou frapper les tâches. Augmente la Force de <%= str %> points. Équipement en édition limitée de l'automne 2015.", "weaponSpecialFall2015MageText": "Fil enchanté", - "weaponSpecialFall2015MageNotes": "Une puissante Sorcière couturière peut contrôler ce fil enchanté sans même le toucher! Augmente l'Intelligence de <%= int %> points et la Perception de <%= per %> points. Équipement en Édition Limitée de l'Automne 2015.", + "weaponSpecialFall2015MageNotes": "Une puissante Sorcière couturière peut contrôler ce fil enchanté sans même le toucher! Augmente l'Intelligence de <%= int %> points et la Perception de <%= per %> points. Équipement en édition limitée de l'automne 2015.", "weaponSpecialFall2015HealerText": "Potion de Bave des Marais", - "weaponSpecialFall2015HealerNotes": "Brassée à la perfection! Vous n'avez à présent plus qu'à vous convaincre de la boire. Augmente l'Intelligence de <%= int %> points. Équipement en Édition Limitée de l'Automne 2015.", + "weaponSpecialFall2015HealerNotes": "Brassée à la perfection! Vous n'avez à présent plus qu'à vous convaincre de la boire. Augmente l'Intelligence de <%= int %> points. Équipement en édition limitée de l'automne 2015.", "weaponSpecialWinter2016RogueText": "Chocolat chaud", - "weaponSpecialWinter2016RogueNotes": "Boisson chaude ou projectile bouillant ? C'est votre choix... Augmente la Force de <%= str %> points. Équipement en Édition Limitée de l'Hiver 2015-2016.", + "weaponSpecialWinter2016RogueNotes": "Boisson chaude ou projectile bouillant ? C'est votre choix... Augmente la Force de <%= str %> points. Équipement en édition limitée de l'hiver 2015-2016.", "weaponSpecialWinter2016WarriorText": "Pelle Robuste", - "weaponSpecialWinter2016WarriorNotes": "Dégagez les tâches en attente d'un coup de pelle ! Augmente la Force de <%= str %> points. Équipement en Édition Limitée de l'Hiver 2015-2016.", + "weaponSpecialWinter2016WarriorNotes": "Dégagez les tâches en attente d'un coup de pelle ! Augmente la Force de <%= str %> points. Équipement en édition limitée de l'hiver 2015-2016.", "weaponSpecialWinter2016MageText": "Snowboard Sorcier", - "weaponSpecialWinter2016MageNotes": "C'est malade comment tu bouges, voire même magique ! Augmente l'Intelligence de <%= int %> points et la Perception de <%= per %>. Équipement en Édition Limitée de l'Hiver 2015-2016.", + "weaponSpecialWinter2016MageNotes": "Vous bougez tellement bien, ce doit être magique ! Augmente l'Intelligence de <%= int %> points et la Perception de <%= per %>. Équipement en édition limitée de l'hiver 2015-2016.", "weaponSpecialWinter2016HealerText": "Canon à conffetis", - "weaponSpecialWinter2016HealerNotes": "YOUPI !!!!!!! C'EST LE TEMPS DES MERVEILLES D'HIVER !!!!!!!! Augmente l'Intelligence de <%= int %> points. Équipement en Édition Limitée de l'Hiver 2015-2016.", + "weaponSpecialWinter2016HealerNotes": "YOUPI !!!!!!! C'EST LE TEMPS DES MERVEILLES D'HIVER !!!!!!!! Augmente l'Intelligence de <%= int %> points. Équipement en édition limitée de l'hiver 2015-2016.", + "weaponSpecialSpring2016RogueText": "Bolas Enflammés", + "weaponSpecialSpring2016RogueNotes": "Vous maîtrisez les balles, les massues et les couteaux. Maintenant, vous allez pouvoir jongler avec le feu ! Yeah ! Augmente la Force de <%= str %>. Équipement en édition limitée du printemps 2016", + "weaponSpecialSpring2016WarriorText": "Maillet en Fromage", + "weaponSpecialSpring2016WarriorNotes": "Personne n'a autant d'amis que la souris qui a de tendres fromages. Augmente la Force de <%= str %> points. Équipement en édition limitée du printemps 2016.", + "weaponSpecialSpring2016MageText": "Bâton des cloches", + "weaponSpecialSpring2016MageNotes": "Abra-chat-da-bra ! C'est si éblouissant que vous pourriez bien vous être hypnotisé·e vous-même !, Oh... ça tinte... Augmente l'Intelligence de <%= int%> points et la Perception de <%= per%> points. Équipement en édition limitée du printemps 2016.", + "weaponSpecialSpring2016HealerText": "Baguette Fleur de Printemps", + "weaponSpecialSpring2016HealerNotes": "D'un geste et d'un clin d’œil, vous faites fleurir les champs et les forêts ! Ou donnez un coup sur la tête des souris pénibles. Augmente l'Intelligence de <%= int %> points. Équipement en édition limitée du printemps 2016.", "weaponMystery201411Text": "Fourche Festive", - "weaponMystery201411Notes": "Embrochez vos ennemis ou plantez-la dans votre nourriture préférée : cette fourche multi-fonctions peut tout faire ! N'apporte aucun bonus. Équipement d'Abonné de Novembre 2014.", + "weaponMystery201411Notes": "Embrochez vos ennemis ou plantez-la dans votre nourriture préférée : cette fourche multi-fonctions peut tout faire ! N'apporte aucun bonus. Équipement d'abonné·e de novembre 2014.", "weaponMystery201502Text": "Bâton Chatoyant Ailé d'Amour et Aussi de Vérité", - "weaponMystery201502Notes": "Pour les AILES ! Pour l'AMOUR ! Et AUSSI pour la VÉRITÉ ! N'apporte aucun bonus. Équipement d'Abonné de Février 2015.", + "weaponMystery201502Notes": "Pour les AILES ! Pour l'AMOUR ! Et AUSSI pour la VÉRITÉ ! N'apporte aucun bonus. Équipement d'abonné·e de février 2015.", "weaponMystery201505Text": "Lance du Chevalier Vert", - "weaponMystery201505Notes": "Cette lance verte et argent a désarçonné de nombreux adversaires ! N'apporte aucun bonus. Équipement d'Abonné de Mai 2015.", + "weaponMystery201505Notes": "Cette lance verte et argent a désarçonné de nombreux adversaires ! N'apporte aucun bonus. Équipement d'abonné·e de mai 2015.", "weaponMystery301404Text": "Canne Steampunk", - "weaponMystery301404Notes": "Parfaite pour faire un tour en ville. N'apporte aucun bonus. Équipement d'Abonné de Mars 3015.", + "weaponMystery301404Notes": "Parfaite pour faire un tour en ville. N'apporte aucun bonus. Équipement d'abonné·e de mars 3015.", "weaponArmoireBasicCrossbowText": "Arbalète Basique", "weaponArmoireBasicCrossbowNotes": "Cette arbalète peut percer l'armure d'une tâche de très loin ! Augmente la Force de <%= str %> points, la Perception de <%= per %> points et la Constitution de <%= con %>points. Armoire Enchantée : Objet Indépendant.", "weaponArmoireLunarSceptreText": "Sceptre Lunaire Apaisant", @@ -159,7 +168,7 @@ "weaponArmoireMythmakerSwordText": "Epée Mythologique", "weaponArmoireMythmakerSwordNotes": "Bien qu'elle puisse sembler humble, cette épée a formé bien des héros mythiques. Augmente la Perception et la Force de <%= attrs %> points. Armoire Enchantée : Ensemble de la Toge Dorée (Objet 3 sur 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 sur 3).", + "weaponArmoireIronCrookNotes": "Férocement forgé dans le fer, ce crochet en fer est bon pour rassembler les moutons. Augmente la Perception et la Force de <%= attrs %> points chacune. Armoire Enchantée : Ensemble des Cornes de Fer (Objet 3 sur 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", @@ -167,15 +176,19 @@ "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": "Bâton du Croissant de Cristal", - "weaponArmoireCrystalCrescentStaffNotes": "Invoquez le pouvoir du croissant de lune grâce à ce bâton étincelant ! Augmente l'Intelligence et la Force de <%= attrs %> chacun. Armoire Enchantée : Ensemble du Croissant de Cristal (Objet 3 sur 3).", + "weaponArmoireCrystalCrescentStaffNotes": "Invoquez le pouvoir du croissant de lune grâce à ce bâton étincelant ! Augmente l'Intelligence et la Force de <%= attrs %> points chacune. Armoire Enchantée : Ensemble du Croissant de Cristal (Objet 3 sur 3).", "weaponArmoireBlueLongbowText": "Arc Long Bleu", "weaponArmoireBlueLongbowNotes": "Présentez armes... En joue... Feu ! Cet arc à une très grande portée. Augmente la Perception de <%= per %> points, la Constitution de <%= con %> points et la Force de <%= str %> points. Armoire Enchantée : Objet Indépendant.", "weaponArmoireGlowingSpearText": "Lance Rayonnante", "weaponArmoireGlowingSpearNotes": "Cette lance hypnothise les tâches sauvages afin que vous les attaquiez. Augmente la Force de <%= str %> points. Armoire Enchantée : Objet Indépendant.", - "weaponArmoireBarristerGavelText": "Barrister Gavel", - "weaponArmoireBarristerGavelNotes": "Order! Increases Strength and Constitution by <%= attrs %> each. Enchanted Armoire: Barrister Set (Item 3 of 3).", - "weaponArmoireJesterBatonText": "Jester Baton", - "weaponArmoireJesterBatonNotes": "With a wave of your baton and some witty repartee, even the most complicated situations become clear. Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Jester Set (Item 3 of 3).", + "weaponArmoireBarristerGavelText": "Marteau d'Avocat", + "weaponArmoireBarristerGavelNotes": "De l'ordre ! Augmente la Force et la Constitution de <%= attrs %> points chacune. Armoire Enchantée : Ensemble de l'Avocat (Objet 3 sur 3).", + "weaponArmoireJesterBatonText": "Bâton de Bouffon", + "weaponArmoireJesterBatonNotes": "Avec un geste de votre bâton et une répartie saillante, même les situations les plus compliquées deviennent simples. Augmente l'Intelligence et la Perception de <%= attrs %> points chacune. Armoire Enchantée : Ensemble du Bouffon (Objet 3 sur 3).", + "weaponArmoireMiningPickaxText": "Pioche de Minage", + "weaponArmoireMiningPickaxNotes": "Minez la quantité maximale d'or de vos tâches ! Augmente la Perception de <%= per %> points. Armoire Enchantée : Ensemble du Mineur (Objet 3 sur 3).", + "weaponArmoireBasicLongbowText": "Basic Longbow", + "weaponArmoireBasicLongbowNotes": "A serviceable hand-me-down bow. Increases Strength by <%= str %>. Enchanted Armoire: Basic Archer Set (Item 1 of 3).", "armor": "armure", "armorBase0Text": "Habit simple", "armorBase0Notes": "Un vêtement ordinaire. N'apporte aucun avantage.", @@ -228,121 +241,131 @@ "armorSpecialFinnedOceanicArmorText": "Armure Océanique à Nageoire", "armorSpecialFinnedOceanicArmorNotes": "Bien qu'elle soit délicate, cette armure rend votre peau aussi dangereuse à toucher qu'un Corail de Feu. Augmente la Force de <%= str %> points.", "armorSpecialYetiText": "Tunique du Dresseur de Yeti", - "armorSpecialYetiNotes": "Flou et féroce. Augmente la Constitution de <%= con %> points. Équipement en Édition Limitée de l'Hiver 2013-2014.", + "armorSpecialYetiNotes": "Flou et féroce. Augmente la Constitution de <%= con %> points. Équipement en édition limitée de l'hiver 2013-2014.", "armorSpecialSkiText": "Parka de Ski-sassin", - "armorSpecialSkiNotes": "Rempli de dagues secrètes et de cartes des pistes de ski. Augmente la Perception de <%= per %> points. Équipement en Édition Limitée de l'Hiver 2013-2014.", + "armorSpecialSkiNotes": "Rempli de dagues secrètes et de cartes des pistes de ski. Augmente la Perception de <%= per %> points. Équipement en édition limitée de l'hiver 2013-2014.", "armorSpecialCandycaneText": "Robe Sucre d'orge", - "armorSpecialCandycaneNotes": "Filée à partir de sucre et de soie. Augmente l'Intelligence de <%= int %> points. Équipement en Édition Limitée de l'Hiver 2013-2014.", + "armorSpecialCandycaneNotes": "Filée à partir de sucre et de soie. Augmente l'Intelligence de <%= int %> points. Équipement en édition limitée de l'hiver 2013-2014.", "armorSpecialSnowflakeText": "Robe Flocon de neige", - "armorSpecialSnowflakeNotes": "Une robe qui vous maintient au chaud, même en pleine tempête. Augmente la Constitution de <%= con %> points. Équipement en Édition Limitée de l'Hiver 2013-2014.", + "armorSpecialSnowflakeNotes": "Une robe qui vous maintient au chaud, même en pleine tempête. Augmente la Constitution de <%= con %> points. Équipement en édition limitée de l'hiver 2013-2014.", "armorSpecialBirthdayText": "Robes de Fête Absurdes", "armorSpecialBirthdayNotes": "Joyeux Anniversaire Habitica ! Portez ces Robes de Fête Absurdes pour célébrer cette journée magnifique ! N'apporte aucun bonus.", "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.", - "armorSpecialBirthday2016Text": "Ridiculous Party Robes", - "armorSpecialBirthday2016Notes": "Happy Birthday, Habitica! Wear these Ridiculous Party Robes to celebrate this wonderful day. Confers no benefit.", + "armorSpecialBirthday2016Text": "Ridicule Tunique de Fête", + "armorSpecialBirthday2016Notes": "Joyeux Anniversaire, Habitica ! Revêtez cette Ridicule Tunique de Fête afin de célébrer cette magnifique journée. N'apporte aucun bonus.", "armorSpecialGaymerxText": "Armure de Guerrier Arc-en-Ciel", "armorSpecialGaymerxNotes": "En l'honneur de la conférence 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.", "armorSpecialSpringRogueText": "Costume de Chat Élégant", - "armorSpecialSpringRogueNotes": "Soigné à la perfection ! Augmente la Perception de <%= per %> points. Équipement en Édition Limitée du Printemps 2014 !", + "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", - "armorSpecialSpringWarriorNotes": "Soyeux comme le trèfle et résistant comme l'acier ! Augmente la Constitution de <%= con %> points. Équipement en Édition Limitée du Printemps 2014.", + "armorSpecialSpringWarriorNotes": "Soyeux comme le trèfle et résistant comme l'acier ! Augmente la Constitution de <%= con %> points. Équipement en édition limitée du printemps 2014.", "armorSpecialSpringMageText": "Bure de Rodentia", - "armorSpecialSpringMageNotes": "Les souris vous sourient ! Augmente l'Intelligence de <%= int %> points. Équipement en Édition Limitée du Printemps 2014.", + "armorSpecialSpringMageNotes": "Les souris vous sourient ! Augmente l'Intelligence de <%= int %> points. Équipement en édition limitée du printemps 2014.", "armorSpecialSpringHealerText": "Robe de Chiot Touffu", - "armorSpecialSpringHealerNotes": "Chaude et confortable, mais protège quand même son propriétaire des blessures. Augmente la Constitution de <%= con %> points. Équipement en Édition Limitée du Printemps 2014.", + "armorSpecialSpringHealerNotes": "Chaude et confortable, mais protège quand même son propriétaire des blessures. Augmente la Constitution de <%= con %> points. Équipement en édition limitée du printemps 2014.", "armorSpecialSummerRogueText": "Tunique de Pirate", - "armorSpecialSummerRogueNotes": "Cette tunique être très confortable, yarrrr ! Augmente la Perception de <%= per %> points. Équipement en Édition Limitée de l’Été 2014.", + "armorSpecialSummerRogueNotes": "Cette tunique être très confortable, yarrrr ! Augmente la Perception de <%= per %> points. Équipement en édition limitée de l’été 2014.", "armorSpecialSummerWarriorText": "Tunique de Bretteur", - "armorSpecialSummerWarriorNotes": "A compléter avec une boucle de ceinture arborant votre sceau. Augmente la Constitution de <%= con %> points. Équipement en Édition Limitée de l’Été 2014.", + "armorSpecialSummerWarriorNotes": "A compléter avec une boucle de ceinture arborant votre sceau. Augmente la Constitution de <%= con %> points. Équipement en édition limitée de l’été 2014.", "armorSpecialSummerMageText": "Nageoire d'Emeraude", - "armorSpecialSummerMageNotes": "Cet habit d'écailles scintillantes transforme son porteur en un véritable Sorcirène ! Augmente l'Intelligence de <%= int %> points. Équipement en Édition Limitée de l’Été 2014.", + "armorSpecialSummerMageNotes": "Cet habit d'écailles scintillantes transforme son porteur en un véritable Sorcirène ! Augmente l'Intelligence de <%= int %> points. Équipement en édition limitée de l’été 2014.", "armorSpecialSummerHealerText": "Nageoire de Poissoigneur", - "armorSpecialSummerHealerNotes": "Cet habit d'écailles scintillantes transforme son porteur en véritable Poissoigneur ! Augmente la Constitution de <%= con %> points. Équipement en Édition Limitée de l’Été 2014.", + "armorSpecialSummerHealerNotes": "Cet habit d'écailles scintillantes transforme son porteur en véritable Poissoigneur ! Augmente la Constitution de <%= con %> points. Équipement en édition limitée de l’été 2014.", "armorSpecialFallRogueText": "Robes Rouge Sang", - "armorSpecialFallRogueNotes": "Vif. Velouté. Vampirique. Augmente la Perception de <%= per %> points. Équipement en Édition Limitée de l'Automne 2014.", + "armorSpecialFallRogueNotes": "Vif. Velouté. Vampirique. Augmente la Perception de <%= per %> points. Équipement en édition limitée de l'automne 2014.", "armorSpecialFallWarriorText": "Blouse de Labo de Science", - "armorSpecialFallWarriorNotes": "Vous protège des éclaboussures de potions mystérieuses. Augmente la Constitution de <%= con %> points. Équipement en Édition Limitée de l'Automne 2014.", + "armorSpecialFallWarriorNotes": "Vous protège des éclaboussures de potions mystérieuses. Augmente la Constitution de <%= con %> points. Équipement en édition limitée de l'automne 2014.", "armorSpecialFallMageText": "Robes de Sorcière", - "armorSpecialFallMageNotes": "Cette robe dispose de nombreuses poches pour stocker un supplément d'yeux de tritons et de langues de grenouille. Augmente l'Intelligence de <%= int %> points. Équipement en Édition Limitée de l'Automne 2014.", + "armorSpecialFallMageNotes": "Cette robe dispose de nombreuses poches pour stocker un supplément d'yeux de tritons et de langues de grenouille. Augmente l'Intelligence de <%= int %> points. Équipement en édition limitée de l'automne 2014.", "armorSpecialFallHealerText": "Armure de Gaze", - "armorSpecialFallHealerNotes": "Jetez-vous dans la mêlée en ayant déjà des bandages sur le corps ! Augmente la Constitution de <%= con %> points. Équipement en Édition Limitée de l'Automne 2014.", + "armorSpecialFallHealerNotes": "Jetez-vous dans la mêlée en ayant déjà des bandages sur le corps ! Augmente la Constitution de <%= con %> points. Équipement en édition limitée de l'automne 2014.", "armorSpecialWinter2015RogueText": "Armure de Drakôn Stalactite", - "armorSpecialWinter2015RogueNotes": "Cette armure est gelée, mais il ne fait aucun doute qu'elle en vaudra la chandelle, quand les richesses enfouies dans les tréfonds des cavernes des Drakôns Stalactites s'offriront à vous. Non pas que vous convoitiez ces richesses inouïes - non non bien-sûr ! - car vous êtes vraiment, sérieusement, absolument un Dragon Stalactite, n'est-ce pas ?! Arrêtez de poser des questions ! Augmente la Perception de <%= per %> points. Équipement en Édition Limitée de l'Hiver 2014-2015.", + "armorSpecialWinter2015RogueNotes": "Cette armure est gelée, mais il ne fait aucun doute qu'elle en vaudra la chandelle, quand les richesses enfouies dans les tréfonds des cavernes des Drakôns Stalactites s'offriront à vous. Non pas que vous convoitiez ces richesses inouïes - non non bien-sûr ! - car vous êtes vraiment, sérieusement, absolument un Dragon Stalactite, n'est-ce pas ?! Arrêtez de poser des questions ! Augmente la Perception de <%= per %> points. Équipement en édition limitée de l'hiver 2014-2015.", "armorSpecialWinter2015WarriorText": "Armure en Pain d’Épice", - "armorSpecialWinter2015WarriorNotes": "Bien douillet et bien chaud, tout droit sorti du four ! Augmente la Constitution de <%= con %> points. Équipement en Édition Limitée de l'Hiver 2014-2015.", + "armorSpecialWinter2015WarriorNotes": "Bien douillet et bien chaud, tout droit sorti du four ! Augmente la Constitution de <%= con %> points. Équipement en édition limitée de l'hiver 2014-2015.", "armorSpecialWinter2015MageText": "Robe Boréale", - "armorSpecialWinter2015MageNotes": "Vous percevez les scintillements du Nord dans cette robe. Augmente l'Intelligence de <%= int %> points. Équipement en Édition Limitée de l'Hiver 2014-2015.", + "armorSpecialWinter2015MageNotes": "Vous percevez les scintillements du Nord dans cette robe. Augmente l'Intelligence de <%= int %> points. Équipement en édition limitée de l'hiver 2014-2015.", "armorSpecialWinter2015HealerText": "Tenue de Patinage", - "armorSpecialWinter2015HealerNotes": "Le patinage, c'est vraiment relaxant, mais vous devriez tout de même porter cette tenue de protection, en cas d'attaque de Drakôns Stalactites. Augmente la Constitution de <%= con %> points. Équipement en Édition Limitée de l'Hiver 2014-2015.", + "armorSpecialWinter2015HealerNotes": "Le patinage, c'est vraiment relaxant, mais vous devriez tout de même porter cette tenue de protection, en cas d'attaque de Drakôns Stalactites. Augmente la Constitution de <%= con %> points. Équipement en édition limitée de l'hiver 2014-2015.", "armorSpecialSpring2015RogueText": "Robes de rongeur", - "armorSpecialSpring2015RogueNotes": "Velu, doux, et définitivement pas inflammable. Augmente la Perception de <%= per %> points. Équipement en Édition Limitée du Printemps 2015.", + "armorSpecialSpring2015RogueNotes": "Velu, doux, et définitivement pas inflammable. Augmente la Perception de <%= per %> points. Équipement en édition limitée du printemps 2015.", "armorSpecialSpring2015WarriorText": "Armure de mise en garde", - "armorSpecialSpring2015WarriorNotes": "Seul le chien le plus féroce est autorisé à être aussi doux et soyeux. Augmente la Constitution de <%= con %> points. Équipement en Édition Limitée du Printemps 2015.", + "armorSpecialSpring2015WarriorNotes": "Seul le chien le plus féroce est autorisé à être aussi doux et soyeux. Augmente la Constitution de <%= con %> points. Équipement en édition limitée du printemps 2015.", "armorSpecialSpring2015MageText": "Costume Lapin de Magicien", - "armorSpecialSpring2015MageNotes": "Plus besoin de patte de lapin, vous en portez deux ! Augmente l'Intelligence de <%= int %> points. Équipement en Édition Limitée du Printemps 2015.", + "armorSpecialSpring2015MageNotes": "Plus besoin de patte de lapin, vous en portez deux ! Augmente l'Intelligence de <%= int %> points. Équipement en édition limitée du printemps 2015.", "armorSpecialSpring2015HealerText": "Combinaison réconfortante", - "armorSpecialSpring2015HealerNotes": "Cette douce combinaison est confortable, et aussi réconfortante qu'un thé à la menthe. Augmente la Constitution de <%= con %> points. Équipement en Édition Limitée du Printemps 2015.", + "armorSpecialSpring2015HealerNotes": "Cette douce combinaison est confortable, et aussi réconfortante qu'un thé à la menthe. Augmente la Constitution de <%= con %> points. Équipement en édition limitée du printemps 2015.", "armorSpecialSummer2015RogueText": "Nageoire de Rubis", - "armorSpecialSummer2015RogueNotes": "Cet habit d'écailles scintillantes transforme son porteur en véritable Renégat de Corail ! Augmente la Perception de <%= per %> points. Équipement en Édition Limitée de l’Été 2015.", + "armorSpecialSummer2015RogueNotes": "Cet habit d'écailles scintillantes transforme son porteur en véritable Renégat de Corail ! Augmente la Perception de <%= per %> points. Équipement en édition limitée de l’été 2015.", "armorSpecialSummer2015WarriorText": "Nageoire Dorée", - "armorSpecialSummer2015WarriorNotes": "Cet habit d'écailles scintillantes transforme son porteur en véritable Guerrier-Lune ! Augmente la Constitution de <%= con %> points. Équipement en Édition Limitée de l’Été 2015.", + "armorSpecialSummer2015WarriorNotes": "Cet habit d'écailles scintillantes transforme son porteur en véritable Guerrier-Lune ! Augmente la Constitution de <%= con %> points. Équipement en édition limitée de l’été 2015.", "armorSpecialSummer2015MageText": "Robe de Devin", - "armorSpecialSummer2015MageNotes": "Un pouvoir caché réside dans ces manches bouffantes. Augmente l'Intelligence de <%= int %> points. Équipement en Édition Limitée de l’Été 2015.", + "armorSpecialSummer2015MageNotes": "Un pouvoir caché réside dans ces manches bouffantes. Augmente l'Intelligence de <%= int %> points. Équipement en édition limitée de l’été 2015.", "armorSpecialSummer2015HealerText": "Armure de Matelot", - "armorSpecialSummer2015HealerNotes": "Cette armure montre à tout le monde que vous êtes un honnête marchand maritime qui ne se comporterait jamais en voyou. Même pas en rêve ! Augmente la Constitution de <%= con %> points. Équipement en Édition Limitée de l'Été 2015.", + "armorSpecialSummer2015HealerNotes": "Cette armure montre à tout le monde que vous êtes un honnête marchand maritime qui ne se comporterait jamais en voyou. Même pas en rêve ! Augmente la Constitution de <%= con %> points. Équipement en édition limitée de l'été 2015.", "armorSpecialFall2015RogueText": "Armure de Bat-aille", - "armorSpecialFall2015RogueNotes": "Volez vers la bat-aille! Augmente la Perception de <%= per %> points. Équipement en Édition Limitée de l'Automne 2015.", + "armorSpecialFall2015RogueNotes": "Volez vers la bat-aille! Augmente la Perception de <%= per %> points. Équipement en édition limitée de l'automne 2015.", "armorSpecialFall2015WarriorText": "Armure d'Epouvantail", - "armorSpecialFall2015WarriorNotes": "Bien qu'elle soit bourrée de paille, cette armure est extrêmement résistante! Augmente la Constitution de <%= con %> points. Équipement en Édition Limitée de l'Automne 2015.", + "armorSpecialFall2015WarriorNotes": "Bien qu'elle soit bourrée de paille, cette armure est extrêmement résistante! Augmente la Constitution de <%= con %> points. Équipement en édition limitée de l'automne 2015.", "armorSpecialFall2015MageText": "Robe Rapiécée", - "armorSpecialFall2015MageNotes": "Chaque couture de cette armure scintille d'un enchantement. Augmente l'Intelligence de <%= int %> points. Équipement en Édition Limitée de l'Automne 2015.", + "armorSpecialFall2015MageNotes": "Chaque couture de cette armure scintille d'un enchantement. Augmente l'Intelligence de <%= int %> points. Équipement en édition limitée de l'automne 2015.", "armorSpecialFall2015HealerText": "Robe d'Alchimiste", - "armorSpecialFall2015HealerNotes": "Quoi? Mais bien sûr que c'était une potion de constitution. Non, vous n'êtes sûrement pas en train de vous transformer en grenouille! Allons, c'est ridicule. Augmente la Constitution de <%= con %> points. Équipement en Édition Limitée de l'Automne 2015.", + "armorSpecialFall2015HealerNotes": "Quoi? Mais bien sûr que c'était une potion de constitution. Non, vous n'êtes sûrement pas en train de vous transformer en grenouille! Allons, c'est ridicule. Augmente la Constitution de <%= con %> points. Équipement en édition limitée de l'automne 2015.", "armorSpecialWinter2016RogueText": "Armure Cacao", - "armorSpecialWinter2016RogueNotes": "Cette armure de cuir vous garde bien au chaud. Est-elle réellement faite de cacao ? Vous ne saurez dire. Augmente la Perception de <%= per %> points. Équipement en Édition Limitée de l'Hiver 2015-2016.", + "armorSpecialWinter2016RogueNotes": "Cette armure de cuir vous garde bien au chaud. Est-elle réellement faite de cacao ? Vous ne saurez dire. Augmente la Perception de <%= per %> points. Équipement en édition limitée de l'hiver 2015-2016.", "armorSpecialWinter2016WarriorText": "Équipement de bonhomme de neige", - "armorSpecialWinter2016WarriorNotes": "Brr ! Cette armure matelassée est super... jusqu'à ce qu'elle fonde. Augmente la Constitution de <%= con %> points. Équipement en Édition Limitée de l'Hiver 2015-2016.", + "armorSpecialWinter2016WarriorNotes": "Brr ! Cette armure matelassée est super... jusqu'à ce qu'elle fonde. Augmente la Constitution de <%= con %> points. Équipement en édition limitée de l'hiver 2015-2016.", "armorSpecialWinter2016MageText": "Anorak de Snowboardeur", - "armorSpecialWinter2016MageNotes": "Un Sorcier avisé reste bien couvert pour affronter le vent d'hiver. Augmente l'Intelligence de <%= int %> points. Équipement en Édition Limitée de l'Hiver 2015-2016.", + "armorSpecialWinter2016MageNotes": "Un Sorcier avisé reste bien couvert pour affronter le vent d'hiver. Augmente l'Intelligence de <%= int %> points. Équipement en édition limitée de l'hiver 2015-2016.", "armorSpecialWinter2016HealerText": "Cape Festive Féerique", - "armorSpecialWinter2016HealerNotes": "Les Fées Festives se protègent en s'enveloppant des ailes de leur corps, utilisent celles de leur tête pour se laisser porter par les vents et volent tout autour d'Habitica à des vitesses montant jusqu'à 100 mph, livrant leurs présents et recouvrant tout le monde de confettis. C'est tellement drôle. Augmente la Constitution de <%= con %> points. Équipement en Édition Limitée de l'Hiver 2015-2016.", + "armorSpecialWinter2016HealerNotes": "Les Fées Festives se protègent en s'enveloppant des ailes de leur corps, utilisent celles de leur tête pour se laisser porter par les vents et volent tout autour d'Habitica à des vitesses montant jusqu'à 150 km/h, livrant leurs présents et recouvrant tout le monde de confettis. C'est tellement drôle. Augmente la Constitution de <%= con %> points. Équipement en édition limitée de l'hiver 2015-2016.", + "armorSpecialSpring2016RogueText": "Tenue de Camouflage Canine", + "armorSpecialSpring2016RogueNotes": "Un chiot malin sait choisir un déguisement plus éclatant afin de se camoufler quand tout est vert et vif. Augmente la Perception de <%= per %> points. Équipement en édition limitée du printemps 2016.", + "armorSpecialSpring2016WarriorText": "Cotte de Mailles de Puissance", + "armorSpecialSpring2016WarriorNotes": "Toute petit·e que vous êtes, vous est féroce ! Augmente la Constitution de <%= con %> points. Équipement en édition limitée du printemps 2016.", + "armorSpecialSpring2016MageText": "Magnifique robe de Malkin", + "armorSpecialSpring2016MageNotes": "Hautement colorée, afin que vous ne soyez pas confondu avec un nécromancien. Augmente l'Intelligence de <%= int %>. Équipement en édition limitée de printemps 2016.", + "armorSpecialSpring2016HealerText": "Culotte du Lapin Touffu", + "armorSpecialSpring2016HealerNotes": "Hopla hop ! Bondissez de colline colline, soignant ceux qui en ont besoin. Augmente la Constitution de <%= con %>. Équipement en édition limitée de printemps 2016.", "armorMystery201402Text": "Robe du Messager", - "armorMystery201402Notes": "Chatoyante et solide, cette robe possède de nombreuses poches dans lesquelles transporter des lettres. N'apporte aucun bonus. Équipement d'Abonné de Février 2014.", + "armorMystery201402Notes": "Chatoyante et solide, cette robe possède de nombreuses poches dans lesquelles transporter des lettres. N'apporte aucun bonus. Équipement d'abonné·e de février 2014.", "armorMystery201403Text": "Armure du Marcheur Sylvain", - "armorMystery201403Notes": "Cette armure mousseuse tissée de bois se plie au gré des mouvements de son porteur. N'apporte aucun bonus. Équipement d'Abonné de Mars 2014.", + "armorMystery201403Notes": "Cette armure mousseuse tissée de bois se plie au gré des mouvements de son porteur. N'apporte aucun bonus. Équipement d'abonné·e de mars 2014.", "armorMystery201405Text": "Flamme du Cœur", - "armorMystery201405Notes": "Rien ne peut vous atteindre lorsque les flammes vous enveloppent ! N'apporte aucun bonus. Équipement d'Abonné de Mai 2014.", + "armorMystery201405Notes": "Rien ne peut vous atteindre lorsque les flammes vous enveloppent ! N'apporte aucun bonus. Équipement d'abonné·e de mai 2014.", "armorMystery201406Text": "Robe de Pieuvre", - "armorMystery201406Notes": "Cette robe souple permet à son porteur de se glisser même dans les fissures les plus étroites. N'apporte aucun bonus. Équipement d'Abonné de Juin 2014.", + "armorMystery201406Notes": "Cette robe souple permet à son porteur de se glisser même dans les fissures les plus étroites. N'apporte aucun bonus. Équipement d'abonné·e de juin 2014.", "armorMystery201407Text": "Tenue de l'Explorateur Sous-marin", - "armorMystery201407Notes": "Alternativement décrite comme \"splooshy\", \"bien trop épaisse\" et \"franchement, un peu encombrante\", cette tenue est le meilleur compagnon de tout explorateur intrépide des bas-fonds. N'apporte aucun bonus. Équipement d'Abonné de Juillet 2014.", + "armorMystery201407Notes": "Alternativement décrite comme \"splooshy\", \"bien trop épaisse\" et \"franchement, un peu encombrante\", cette tenue est le meilleur compagnon de tout explorateur intrépide des bas-fonds. N'apporte aucun bonus. Équipement d'abonné·e de juillet 2014.", "armorMystery201408Text": "Robe Solaire", - "armorMystery201408Notes": "Cette robe est tissée à partir de rayons solaires et d'or. N'apporte aucun bonus. Équipement d'Abonné d'Août 2014.", + "armorMystery201408Notes": "Cette robe est tissée à partir de rayons solaires et d'or. N'apporte aucun bonus. Équipement d'abonné·e d'août 2014.", "armorMystery201409Text": "Veste du Marcheur Sylvain", - "armorMystery201409Notes": "Une veste recouverte de feuilles qui camoufle son porteur. N'apporte aucun bonus. Équipement d'Abonné de Septembre 2014.", + "armorMystery201409Notes": "Une veste recouverte de feuilles qui camoufle son porteur. N'apporte aucun bonus. Équipement d'abonné·e de septembre 2014.", "armorMystery201410Text": "Tenue de Gobelin", - "armorMystery201410Notes": "Écaillé, visqueux et puissant ! N'apporte aucun bonus. Équipement d'Abonné d'Octobre 2014.", + "armorMystery201410Notes": "Écaillé, visqueux et puissant ! N'apporte aucun bonus. Équipement d'abonné·e d'octobre 2014.", "armorMystery201412Text": "Costume de Pingouin", - "armorMystery201412Notes": "Vous êtes un pingouin ! N'apporte aucun bonus. Équipement d'Abonné de Décembre 2014.", + "armorMystery201412Notes": "Vous êtes un pingouin ! N'apporte aucun bonus. Équipement d'abonné·e de décembre 2014.", "armorMystery201501Text": "Armure Stellaire", - "armorMystery201501Notes": "Des galaxies scintillent dans le métal de cette armure, renforçant la force de volonté de son porteur. N'apporte aucun bonus. Équipement d'Abonné de Janvier 2015.", + "armorMystery201501Notes": "Des galaxies scintillent dans le métal de cette armure, renforçant la force de volonté de son porteur. N'apporte aucun bonus. Équipement d'abonné·e de janvier 2015.", "armorMystery201503Text": "Armure d'Aigue-Marine", - "armorMystery201503Notes": "Ce minerai bleu symbolise la bonne fortune, la joie et la productivité éternelle. N'apporte aucun bonus. Équipement d'Abonné de Mars 2015.", + "armorMystery201503Notes": "Ce minerai bleu symbolise la bonne fortune, la joie et la productivité éternelle. N'apporte aucun bonus. Équipement d'abonné·e de mars 2015.", "armorMystery201504Text": "Robe d'Abeille", - "armorMystery201504Notes": "Vous serez aussi productif qu'une abeille dans cette robe attirante ! N'apporte aucun bonus. Équipement d'Abonné d'Avril 2015", + "armorMystery201504Notes": "Vous serez aussi productif qu'une abeille dans cette robe attirante ! N'apporte aucun bonus. Équipement d'abonné·e d'avril 2015", "armorMystery201506Text": "Tenue de plongée", - "armorMystery201506Notes": "Plongez à travers un récif corallien dans cette tenue de bain aux couleurs vives ! N'apporte aucun bonus. Équipement d'Abonné de Juin 2015.", + "armorMystery201506Notes": "Plongez à travers un récif corallien dans cette tenue de bain aux couleurs vives ! N'apporte aucun bonus. Équipement d'abonné·e de juin 2015.", "armorMystery201508Text": "Costume de Guépard", - "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.", + "armorMystery201508Notes": "Vous serez aussi rapide qu'un guépard dans ce costume tout doux ! N'apporte aucun bonus. Équipement d'abonné·e 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.", + "armorMystery201509Notes": "C'est bien un costume, hein? N'apporte aucun bonus. Équipement d'abonné·e de septembre 2015.", "armorMystery201511Text": "Armure en Bois", - "armorMystery201511Notes": "Si l'on considère que cette armure a été creusée à même une bûche magique, elle est étonnament confortable. N'apporte aucun bonus. Équipement d'Abonné(e) de Novembre 2015.", + "armorMystery201511Notes": "Si l'on considère que cette armure a été creusée à même une bûche magique, elle est étonnamment confortable. N'apporte aucun bonus. Équipement d'abonné·e de novembre 2015.", "armorMystery201512Text": "Armure de Feu Glacial ", - "armorMystery201512Notes": "Invoquez la flamme glacée de l'hiver ! N'apporte aucun bonus. Équipement d'Abonné de Décembre 2015.", + "armorMystery201512Notes": "Invoquez la flamme glacée de l'hiver ! N'apporte aucun bonus. Équipement d'abonné·e de décembre 2015.", + "armorMystery201603Text": "Costume Chanceux", + "armorMystery201603Notes": "Ce costume est cousu avec des milliers de trèfles à quatre feuilles ! N'apporte aucun bonus. Équipement d'abonné de mars 2016.", "armorMystery301404Text": "Tenue Steampunk", - "armorMystery301404Notes": "Pimpant et fringuant ! N'apporte aucun bonus. Équipement d'Abonné de Février 3015.", + "armorMystery301404Notes": "Pimpant et fringuant ! N'apporte aucun bonus. Équipement d'abonné·e de février 3015.", "armorArmoireLunarArmorText": "Armure Lunaire Apaisante", "armorArmoireLunarArmorNotes": "La lumière de la lune vous rendra fort et perspicace. Augmente la Force de <%= str %> points et l'Intelligence de <%= int %> points. Armoire Enchantée: Ensemble Lunaire Apaisant (Objet 2 sur 3).", "armorArmoireGladiatorArmorText": "Armure de Gladiateur", @@ -356,17 +379,21 @@ "armorArmoirePlagueDoctorOvercoatText": "Pardessus de Médecin de la Peste", "armorArmoirePlagueDoctorOvercoatNotes": "Un authentique pardessus porté par les médecins qui ont combattu la Peste de Procrastination ! Augmente l'Intelligence de <%= int %>, la Force de <%= str %>, et la Constitution de <%= con %>. Armoire Enchantée, Ensemble de Médecin de la Peste (Objet 3 sur 3).", "armorArmoireShepherdRobesText": "Tunique de Berger", - "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)", + "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 de <%= attrs %> points chacune. Armoire Enchantée : Ensemble du Berger (Objet 2 sur 3)", "armorArmoireRoyalRobesText": "Robe Royale", "armorArmoireRoyalRobesNotes": "Merveilleux souverain, régnez 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": "Robe du Croissant de Cristal", - "armorArmoireCrystalCrescentRobesNotes": "Cette robe magique illumine la nuit. Augmente la Constitution et la Perception de <%= attrs %> chacun. Armoire Enchantée : Ensemble du Croissant de Lune (Objet 2 sur 3).", + "armorArmoireCrystalCrescentRobesText": "Tunique du Croissant de Cristal", + "armorArmoireCrystalCrescentRobesNotes": "Cette tunique magique illumine la nuit. Augmente la Constitution et la Perception de <%= attrs %> chacune. Armoire Enchantée : Ensemble du Croissant de Lune (Objet 2 sur 3).", "armorArmoireDragonTamerArmorText": "Armure de Dresseur de Dragon", "armorArmoireDragonTamerArmorNotes": "Les flammes ne peuvent pénétrer cette robuste armure. Augmente la Constitution de <%= con %> points. Armoire Enchantée : Ensemble de Dresseur de Dragon (Objet 3 sur 3).", - "armorArmoireBarristerRobesText": "Barrister Robes", - "armorArmoireBarristerRobesNotes": "Very serious and stately. Increases Constitution by <%= con %>. Enchanted Armoire: Barrister Set (Item 2 of 3).", - "armorArmoireJesterCostumeText": "Jester Costume", - "armorArmoireJesterCostumeNotes": "Tra-la-la! Despite the look of this costume, you are no fool. Increases Intelligence by <%= int %>. Enchanted Armoire: Jester Set (Item 2 of 3).", + "armorArmoireBarristerRobesText": "Tunique d'Avocat", + "armorArmoireBarristerRobesNotes": "Très solennelle et majestueuse. Augmente la Constitution de <%= con %> points. Armoire Enchantée : Ensemble de l'Avocat (Objet 2 sur 3).", + "armorArmoireJesterCostumeText": "Costume de Bouffon", + "armorArmoireJesterCostumeNotes": "Tralala ! Malgré l'apparence de ce costume, vous n'êtes pas un bouffon. Augmente l'Intelligence de <%= int %> points. Armoire Enchantée : Ensemble du Bouffon (Objet 2 sur 3).", + "armorArmoireMinerOverallsText": "Salopette de Mineur", + "armorArmoireMinerOverallsNotes": "Elle semble peut-être usée, mais elle contient un enchantement qui repousse la poussière. Augmente la Constitution de <%= con %> points. Armoire Enchantée : Ensemble du Mineur (Objet 2 sur 3).", + "armorArmoireBasicArcherArmorText": "Basic Archer Armor", + "armorArmoireBasicArcherArmorNotes": "This camouflaged vest lets you slip unnoticed through the forests. Increases Perception by <%= per %>. Enchanted Armoire: Basic Archer Set (Item 2 of 3).", "headgear": "coiffe", "headBase0Text": "Pas de casque", "headBase0Notes": "Pas de couvre-chef.", @@ -421,115 +448,127 @@ "headSpecialNyeText": "Chapeau de Fête Absurde", "headSpecialNyeNotes": "Vous avez reçu un Chapeau de Fête Absurde ! Portez-le avec fierté en célébrant le Nouvel An ! N'apporte aucun bonus.", "headSpecialYetiText": "Heaume du Dresseur de Yeti", - "headSpecialYetiNotes": "Un chapeau adorablement terrifiant. Augmente la Force de <%= str %> points. Équipement en Édition Limitée de l'Hiver 2013-2014", + "headSpecialYetiNotes": "Un chapeau adorablement terrifiant. Augmente la Force de <%= str %> points. Équipement en édition limitée de l'hiver 2013-2014", "headSpecialSkiText": "Casque du Ski-sassin", - "headSpecialSkiNotes": "Garde secrète l'identité de son porteur... et son visage bien au chaud. Augmente la Perception de <%= per %> points. Équipement en Édition Limitée de l'Hiver 2013-2014.", + "headSpecialSkiNotes": "Garde secrète l'identité de son porteur... et son visage bien au chaud. Augmente la Perception de <%= per %> points. Équipement en édition limitée de l'hiver 2013-2014.", "headSpecialCandycaneText": "Chapeau Canne à Sucre", - "headSpecialCandycaneNotes": "Ce chapeau est le plus délicieux du monde. Il est aussi connu pour apparaître et disparaître mystérieusement. Augmente la Perception de <%= per %> points. Équipement en Édition Limitée de l'Hiver 2013-2014.", + "headSpecialCandycaneNotes": "Ce chapeau est le plus délicieux du monde. Il est aussi connu pour apparaître et disparaître mystérieusement. Augmente la Perception de <%= per %> points. Équipement en édition limitée de l'hiver 2013-2014.", "headSpecialSnowflakeText": "Couronne Flocon de neige", - "headSpecialSnowflakeNotes": "Le porteur de cette couronne n'a jamais froid. Augmente l'Intelligence de <%= int %> points. Équipement en Édition Limitée de l'Hiver 2013-2014.", + "headSpecialSnowflakeNotes": "Le porteur de cette couronne n'a jamais froid. Augmente l'Intelligence de <%= int %> points. Équipement en édition limitée de l'hiver 2013-2014.", "headSpecialSpringRogueText": "Masque de Chaton Furtif", - "headSpecialSpringRogueNotes": "Personne ne devinera JAMAIS que vous êtes un chat cambrioleur ! Augmente la Perception de <%= per %> points. Équipement en Édition Limitée du Printemps 2014.", + "headSpecialSpringRogueNotes": "Personne ne devinera JAMAIS que vous êtes un chat cambrioleur ! Augmente la Perception de <%= per %> points. Équipement en édition limitée du printemps 2014.", "headSpecialSpringWarriorText": "Casque aux Trèfles d'acier", - "headSpecialSpringWarriorNotes": "Tissé de trèfles des champs, ce casque peut résister même au plus puissant des coups. Augmente la Force de <%= str %> points. Équipement en Édition Limitée du Printemps 2014.", + "headSpecialSpringWarriorNotes": "Tissé de trèfles des champs, ce casque peut résister même au plus puissant des coups. Augmente la Force de <%= str %> points. Équipement en édition limitée du printemps 2014.", "headSpecialSpringMageText": "Chapeau en Fromage à Trous", - "headSpecialSpringMageNotes": "Ce chapeau renferme une puissante magie ! Essayez de ne pas le grignoter. Augmente la Perception de <%= per %> points. Équipement en Édition Limitée du Printemps 2014.", + "headSpecialSpringMageNotes": "Ce chapeau renferme une puissante magie ! Essayez de ne pas le grignoter. Augmente la Perception de <%= per %> points. Équipement en édition limitée du printemps 2014.", "headSpecialSpringHealerText": "Couronne de l'Amitié", - "headSpecialSpringHealerNotes": "Cette couronne symbolise la loyauté et la dévotion envers ses compagnons. Le chien est le meilleur ami de l'aventurier, après tout ! Augmente l'Intelligence de <%= int %> points. Équipement en Édition Limitée du Printemps 2014.", + "headSpecialSpringHealerNotes": "Cette couronne symbolise la loyauté et la dévotion envers ses compagnons. Le chien est le meilleur ami de l'aventurier, après tout ! Augmente l'Intelligence de <%= int %> points. Équipement en édition limitée du printemps 2014.", "headSpecialSummerRogueText": "Bicorne de Pirate", - "headSpecialSummerRogueNotes": "Seuls les pirates les plus productifs peuvent porter cet excellent couvre-chef. Augmente la Perception de <%= per %> points. Équipement en Édition Limitée de l’Été 2014.", + "headSpecialSummerRogueNotes": "Seuls les pirates les plus productifs peuvent porter cet excellent couvre-chef. Augmente la Perception de <%= per %> points. Équipement en édition limitée de l’été 2014.", "headSpecialSummerWarriorText": "Bandana de Bretteur", - "headSpecialSummerWarriorNotes": "Ce tissu doux et salé amplifie la force de son porteur. Augmente la Force de <%= str %> points. Équipement en Édition Limitée de l’Été 2014.", + "headSpecialSummerWarriorNotes": "Ce tissu doux et salé amplifie la force de son porteur. Augmente la Force de <%= str %> points. Équipement en édition limitée de l’été 2014.", "headSpecialSummerMageText": "Chapeau Enrubanné de Varech", - "headSpecialSummerMageNotes": "Quoi de plus magique qu'un chapeau enveloppé dans les algues ? Augmente la Perception de <%= per %> points. Équipement en Édition Limitée de l’Été 2014.", + "headSpecialSummerMageNotes": "Quoi de plus magique qu'un chapeau enveloppé dans les algues ? Augmente la Perception de <%= per %> points. Équipement en édition limitée de l’été 2014.", "headSpecialSummerHealerText": "Couronne de Corail", - "headSpecialSummerHealerNotes": "Permet à son porteur de régénérer les récifs endommagés. Augmente l'Intelligence de <%= int %> points. Équipement en Édition Limitée de l’Été 2014.", + "headSpecialSummerHealerNotes": "Permet à son porteur de régénérer les récifs endommagés. Augmente l'Intelligence de <%= int %> points. Équipement en édition limitée de l’été 2014.", "headSpecialFallRogueText": "Capuche Rouge Sang", - "headSpecialFallRogueNotes": "L'identité d'un Chasseur de Vampire doit toujours demeurer secrète. Augmente la Perception de <%= per %> points. Équipement en Édition Limitée de l'Automne 2014.", + "headSpecialFallRogueNotes": "L'identité d'un Chasseur de Vampire doit toujours demeurer secrète. Augmente la Perception de <%= per %> points. Équipement en édition limitée de l'automne 2014.", "headSpecialFallWarriorText": "Scalp Monstrueux de la Science", - "headSpecialFallWarriorNotes": "Greffez-vous ce heaume ! Il n'a que TRÈS PEU servi ! Augmente la Force de <%= str %> points. Équipement en Édition Limitée de l'Automne 2014.", + "headSpecialFallWarriorNotes": "Greffez-vous ce heaume ! Il n'a que TRÈS PEU servi ! Augmente la Force de <%= str %> points. Équipement en édition limitée de l'automne 2014.", "headSpecialFallMageText": "Chapeau Pointu", - "headSpecialFallMageNotes": "La magie imprègne chaque fil de ce chapeau. Augmente la Perception de <%= per %>. Équipement en Édition Limitée de l'Automne 2014.", + "headSpecialFallMageNotes": "La magie imprègne chaque fil de ce chapeau. Augmente la Perception de <%= per %>. Équipement en édition limitée de l'automne 2014.", "headSpecialFallHealerText": "Bandages de Tête", - "headSpecialFallHealerNotes": "Hautement hygiénique tout en restant à la mode. Augmente l'Intelligence de <%= int %> points. Équipement en Édition Limitée de l'Automne 2014.", + "headSpecialFallHealerNotes": "Hautement hygiénique tout en restant à la mode. Augmente l'Intelligence de <%= int %> points. Équipement en édition limitée de l'automne 2014.", "headSpecialNye2014Text": "Chapeau de Fête Ridicule", "headSpecialNye2014Notes": "Vous avez reçu un Chapeau de Fête Ridicule ! Portez-le avec fierté en célébrant le Nouvel An ! N'apporte aucun bonus.", "headSpecialWinter2015RogueText": "Masque de Drakôn Stalactite", - "headSpecialWinter2015RogueNotes": "Vous êtes vraiment, sérieusement, absolument un authentique Drakôn Stalactite. Vous ? Un imposteur qui infiltre leurs rangs dans l'espoir de soutirer quelque trésor gisant - prétendument - dans leurs galeries de glace ? Jamais ! Roaar ! Augmente la Perception de <%= per %> points. Équipement en Édition Limitée de l'Hiver 2014-2015.", + "headSpecialWinter2015RogueNotes": "Vous êtes vraiment, sérieusement, absolument un authentique Drakôn Stalactite. Vous ? Un imposteur qui infiltre leurs rangs dans l'espoir de soutirer quelque trésor gisant - prétendument - dans leurs galeries de glace ? Jamais ! Roaar ! Augmente la Perception de <%= per %> points. Équipement en édition limitée de l'hiver 2014-2015.", "headSpecialWinter2015WarriorText": "Casque en Pain d’Épice", - "headSpecialWinter2015WarriorNotes": "Réfléchissez, réfléchissez, réfléchissez, aussi fort que vous le pouvez. Augmente la Force de <%= str %> points. Équipement en Édition Limitée de l'Hiver 2014-2015.", + "headSpecialWinter2015WarriorNotes": "Réfléchissez, réfléchissez, réfléchissez, aussi fort que vous le pouvez. Augmente la Force de <%= str %> points. Équipement en édition limitée de l'hiver 2014-2015.", "headSpecialWinter2015MageText": "Chapeau d'Aurore", - "headSpecialWinter2015MageNotes": "Le tissu de ce chapeau change de texture et brille quand son porteur étudie. Augmente la Perception de <%= per %> points. Équipement en Édition Limitée de l'Hiver 2014-2015.", + "headSpecialWinter2015MageNotes": "Le tissu de ce chapeau change de texture et brille quand son porteur étudie. Augmente la Perception de <%= per %> points. Équipement en édition limitée de l'hiver 2014-2015.", "headSpecialWinter2015HealerText": "Cache-oreilles Douillet", - "headSpecialWinter2015HealerNotes": "Ce cache-oreilles bien chaud vous tiendra à l'écart des bruits distrayants comme des frissons. Augmente l'Intelligence de <%= int %> points. Équipement en Édition Limitée de l'Hiver 2014-2015.", + "headSpecialWinter2015HealerNotes": "Ce cache-oreilles bien chaud vous tiendra à l'écart des bruits distrayants comme des frissons. Augmente l'Intelligence de <%= int %> points. Équipement en édition limitée de l'hiver 2014-2015.", "headSpecialSpring2015RogueText": "Casque pare-feu", - "headSpecialSpring2015RogueNotes": "Du feu ? HA ! Vous couinez férocement face au feu ! Augmente la Perception de <%= per %> points. Équipement en Édition Limitée du Printemps 2015.", + "headSpecialSpring2015RogueNotes": "Du feu ? HA ! Vous couinez férocement face au feu ! Augmente la Perception de <%= per %> points. Équipement en édition limitée du printemps 2015.", "headSpecialSpring2015WarriorText": "Casque de mise en garde", - "headSpecialSpring2015WarriorNotes": "Prenez garde au heaume ! Seul un chien féroce peut le porter. Arrêtez de rire. Augmente la Force de <%= str %> points. Équipement en Édition Limitée du Printemps 2015.", + "headSpecialSpring2015WarriorNotes": "Prenez garde au heaume ! Seul un chien féroce peut le porter. Arrêtez de rire. Augmente la Force de <%= str %> points. Équipement en édition limitée du printemps 2015.", "headSpecialSpring2015MageText": "Chapeau de Mage", - "headSpecialSpring2015MageNotes": "Qu'est-ce qui est venu d'abord, le lapin ou le chapeau ? Augmente la Perception de <%= per %> points. Équipement en Édition Limitée du Printemps 2015 !", + "headSpecialSpring2015MageNotes": "Qu'est-ce qui est venu d'abord, le lapin ou le chapeau ? Augmente la Perception de <%= per %> points. Équipement en édition limitée du printemps 2015 !", "headSpecialSpring2015HealerText": "Couronne réconfortante", - "headSpecialSpring2015HealerNotes": "La perle au centre de cette couronne calme et conforte les personnes qui l'entourent. Augmente l'Intelligence de <%= int %> points. Équipement en Édition Limitée du Printemps 2015.", + "headSpecialSpring2015HealerNotes": "La perle au centre de cette couronne calme et conforte les personnes qui l'entourent. Augmente l'Intelligence de <%= int %> points. Équipement en édition limitée du printemps 2015.", "headSpecialSummer2015RogueText": "Chapeau de Renégat", - "headSpecialSummer2015RogueNotes": "Ce chapeau de pirate est tombé par-dessus bord et a été décoré avec des fragments de corail de feu. Augmente la Perception de <%= per %> points. Équipement en Édition Limitée de l'Été 2015.", + "headSpecialSummer2015RogueNotes": "Ce chapeau de pirate est tombé par-dessus bord et a été décoré avec des fragments de corail de feu. Augmente la Perception de <%= per %> points. Équipement en édition limitée de l'été 2015.", "headSpecialSummer2015WarriorText": "Heaume Océanique Incrusté de Joyaux", - "headSpecialSummer2015WarriorNotes": "Forgé dans du métal du fond des océans par les artisans de Dilatoire, ce heaume est beau et résistant. Augmente la Force de <%= str %> points. Équipement en Édition Limitée de l’Été 2015.", + "headSpecialSummer2015WarriorNotes": "Forgé dans du métal du fond des océans par les artisans de Dilatoire, ce heaume est beau et résistant. Augmente la Force de <%= str %> points. Équipement en édition limitée de l’été 2015.", "headSpecialSummer2015MageText": "Foulard de Devin", - "headSpecialSummer2015MageNotes": "Un pouvoir caché brille dans les fils de ce foulard. Augmente la Perception de <%= per %> points. Équipement en Édition Limitée de l’Été 2015.", + "headSpecialSummer2015MageNotes": "Un pouvoir caché brille dans les fils de ce foulard. Augmente la Perception de <%= per %> points. Équipement en édition limitée de l’été 2015.", "headSpecialSummer2015HealerText": "Bonnet de Matelot", - "headSpecialSummer2015HealerNotes": "Avec votre bonnet de matelot résolument vissé sur la tête, vous pouvez naviguer même sur les mers déchaînées ! Augmente l'Intelligence de <%= int %> points. Équipement en Édition Limitée de l’Été 2015.", + "headSpecialSummer2015HealerNotes": "Avec votre bonnet de matelot résolument vissé sur la tête, vous pouvez naviguer même sur les mers déchaînées ! Augmente l'Intelligence de <%= int %> points. Équipement en édition limitée de l’été 2015.", "headSpecialFall2015RogueText": "Ailes de Bat-aille", - "headSpecialFall2015RogueNotes": "Trouvez vos ennemis par écholocation avec ce heaume puissant! Perception de <%= per %> points. Équipement en Édition Limitée de l'Automne 2015.", + "headSpecialFall2015RogueNotes": "Trouvez vos ennemis par écholocation avec ce heaume puissant! Perception de <%= per %> points. Équipement en édition limitée de l'automne 2015.", "headSpecialFall2015WarriorText": "Chapeau d'Épouvantail", - "headSpecialFall2015WarriorNotes": "Tout le monde voudrait ce chapeau -- si seulement ils avaient un cerveau! Augmente la Force de <%= str %> points. Équipement en Édition Limitée de l'Automne 2015.", + "headSpecialFall2015WarriorNotes": "Tout le monde voudrait ce chapeau -- si seulement ils avaient un cerveau! Augmente la Force de <%= str %> points. Équipement en édition limitée de l'automne 2015.", "headSpecialFall2015MageText": "Chapeau Rapiécé", - "headSpecialFall2015MageNotes": "Chaque couture dans ce chapeau augmente sa puissance. Augmente la Perception de <%= per %> points. Équipement en Édition Limitée de l'Automne 2015. ", + "headSpecialFall2015MageNotes": "Chaque couture dans ce chapeau augmente sa puissance. Augmente la Perception de <%= per %> points. Équipement en édition limitée de l'automne 2015. ", "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.", + "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.", "headSpecialNye2015Text": "Chapeau de Fête Ridicule", "headSpecialNye2015Notes": "Vous avez reçu un Chapeau de Fête Ridicule ! Portez le avec fierté en célébrant le Nouvel An ! N'apporte aucun bonus.", "headSpecialWinter2016RogueText": "Heaume Cacao", - "headSpecialWinter2016RogueNotes": "Le foulard protecteur de ce confortable heaume s'enlève uniquement pour siroter des boissons chaudes en hiver. Augmente la Perception de <%= per %> points. Équipement en Édition Limitée de l'Hiver 2015-2016.", + "headSpecialWinter2016RogueNotes": "Le foulard protecteur de ce confortable heaume s'enlève uniquement pour siroter des boissons chaudes en hiver. Augmente la Perception de <%= per %> points. Équipement en édition limitée de l'hiver 2015-2016.", "headSpecialWinter2016WarriorText": "Bonnet de bonhomme de neige", - "headSpecialWinter2016WarriorNotes": "Brr ! Ce puissant heaume est vraiment puissant... Jusqu'à ce qu'il fonde. Augmente la Force de <%= str %> points. Équipement en Édition Limitée de l'Hiver 2015-2016.", + "headSpecialWinter2016WarriorNotes": "Brr ! Ce majestueux heaume est vraiment puissant... Jusqu'à ce qu'il fonde. Augmente la Force de <%= str %> points. Équipement en édition limitée de l'hiver 2015-2016.", "headSpecialWinter2016MageText": "Capuche de Snowboardeur", - "headSpecialWinter2016MageNotes": "Protège vos yeux de la neige pendant que vous jetez vos sort. Augmente la Perception de <%= per %> points. Équipement en Édition Limitée de l'Hiver 2015-2016.", + "headSpecialWinter2016MageNotes": "Protège vos yeux de la neige pendant que vous jetez vos sort. Augmente la Perception de <%= per %> points. Équipement en édition limitée de l'hiver 2015-2016.", "headSpecialWinter2016HealerText": "Heaume d'Ailes de Fées", - "headSpecialWinter2016HealerNotes": "Cesailesbattentsivitequ'elless'estompent ! Augmente l'Intelligence de <%= int %> points. Équipement en Édition Limitée de l'Hiver 2015-2016.", + "headSpecialWinter2016HealerNotes": "Cesailesbattentsivitequ'ellesrendentflou ! Augmente l'Intelligence de <%= int %> points. Équipement en édition limitée de l'hiver 2015-2016.", + "headSpecialSpring2016RogueText": "Masque de Bon Toutou", + "headSpecialSpring2016RogueNotes": "Oh ! Quel mignon petit chiot ! Viens ici et laisse-moi te caresser la tête... Hé ! Où est passé tout mon Or ? Augmente la Perception de <%= per %> points. Équipement en édition limitée de printemps 2016.", + "headSpecialSpring2016WarriorText": "Heaume des Gardes Souris", + "headSpecialSpring2016WarriorNotes": "Plus jamais vous ne prendrez de coups sur la tête ! Qu'ils essaient ! Augmente la Force de <%= str %> points. Équipement en édition limitée du printemps 2016.", + "headSpecialSpring2016MageText": "Grandiose chapeau de Malkin", + "headSpecialSpring2016MageNotes": "Vêtement pour vous élever au-dessus du simple mage lambda. Augmente la Perception de <%= per %>. Équipement en édition limitée de printemps 2016.", + "headSpecialSpring2016HealerText": "Diadème Fleuri", + "headSpecialSpring2016HealerNotes": "Cela étincelle du potentiel d'une nouvelle vie prête à éclore. Augmente l'Intelligence de <%= int %> points. Équipement en édition limitée de printemps 2016.", "headSpecialGaymerxText": "Heaume de Guerrier Arc-en-Ciel", "headSpecialGaymerxNotes": "En l'honneur de la conférence GaymerX, cet 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.", "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.", + "headMystery201402Notes": "Ce bandeau ailé insuffle la vitesse du vent à son porteur ! N'apporte aucun bonus. Équipement d'abonné·e de février 2014.", "headMystery201405Text": "Flamme de l'Esprit", - "headMystery201405Notes": "Faites flamber la procrastination ! N'apporte aucun bonus. Équipement d'Abonné de Mai 2014.", + "headMystery201405Notes": "Faites flamber la procrastination ! N'apporte aucun bonus. Équipement d'abonné·e de mai 2014.", "headMystery201406Text": "Couronne de Tentacules", - "headMystery201406Notes": "Les tentacules de ce casque captent l'énergie magique de l'eau. N'apporte aucun bonus. Équipement d'Abonné de Juin 2014.", + "headMystery201406Notes": "Les tentacules de ce casque captent l'énergie magique de l'eau. N'apporte aucun bonus. Équipement d'abonné·e de juin 2014.", "headMystery201407Text": "Casque de l'Explorateur Sous-marin", - "headMystery201407Notes": "Ce casque rend l'exploration sous-marine enfantine ! Il vous fait aussi légèrement ressembler à un poisson aux yeux globuleux. Très rétro ! N'apporte aucun bonus. Équipement d'Abonné de Juillet 2014.", + "headMystery201407Notes": "Ce casque rend l'exploration sous-marine enfantine ! Il vous fait aussi légèrement ressembler à un poisson aux yeux globuleux. Très rétro ! N'apporte aucun bonus. Équipement d'abonné·e de juillet 2014.", "headMystery201408Text": "Couronne Solaire", - "headMystery201408Notes": "Cette couronne flamboyante confère une grande force de volonté à son porteur. N'apporte aucun bonus. Équipement d'Abonné d'Août 2014.", + "headMystery201408Notes": "Cette couronne flamboyante confère une grande force de volonté à son porteur. N'apporte aucun bonus. Équipement d'abonné·e d'août 2014.", "headMystery201411Text": "Heaume d'Acier Sportif", - "headMystery201411Notes": "Le heaume traditionnel porté pour le Balance-Ball, le sport Habiticien populaire qui consiste à vous recouvrir d'une lourde tenue de protection puis à vous lancer dans un sain équilibrage travail-vie... TOUT EN ÉTANT POURSUIVI PAR DES HIPPOGRIFFES ! N'apporte aucun bonus. Équipement d'Abonné de Novembre 2014.", + "headMystery201411Notes": "Le heaume traditionnel porté pour le Balance-Ball, le sport Habiticien populaire qui consiste à vous recouvrir d'une lourde tenue de protection puis à vous lancer dans un sain équilibrage travail-vie... TOUT EN ÉTANT POURSUIVI PAR DES HIPPOGRIFFES ! N'apporte aucun bonus. Équipement d'abonné·e de novembre 2014.", "headMystery201412Text": "Chapeau de Pingouin", - "headMystery201412Notes": "Qui est un pingouin ? N'apporte aucun bonus. Équipement d'Abonné de Décembre 2014.", + "headMystery201412Notes": "Qui est un pingouin ? N'apporte aucun bonus. Équipement d'abonné·e de décembre 2014.", "headMystery201501Text": "Heaume Stellaire", - "headMystery201501Notes": "Les constellations de ce casque scintillent et tourbillonnent, canalisant les pensées de son porteur. N'apporte aucun bonus. Équipement d'Abonné de Janvier 2015.", + "headMystery201501Notes": "Les constellations de ce casque scintillent et tourbillonnent, canalisant les pensées de son porteur. N'apporte aucun bonus. Équipement d'abonné·e de janvier 2015.", "headMystery201505Text": "Heaume du Chevalier Vert", - "headMystery201505Notes": "La plume verte au sommet de ce heaume ondule fièrement. N'apport aucun bonus. Équipement d'Abonné de Mai 2015.", + "headMystery201505Notes": "La plume verte au sommet de ce heaume ondule fièrement. N'apporte aucun bonus. Équipement d'abonné·e de mai 2015.", "headMystery201508Text": "Chapeau de Guépard", - "headMystery201508Notes": "Ce confortable chapeau de guépard est vraiment soyeux ! N'apporte aucun bonus. Équipement d'Abonné d'Août 2015.", + "headMystery201508Notes": "Ce confortable chapeau de guépard est vraiment soyeux ! N'apporte aucun bonus. Équipement d'abonné·e 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.", + "headMystery201509Notes": "C'est bien un masque, hein? N'apporte aucun bonus. Équipement d'abonné·e de septembre 2015.", "headMystery201511Text": "Couronne de Rondin", - "headMystery201511Notes": "Comptez le nombre d'anneaux pour déterminer l'âge de la couronne. Ne confère aucun bonus. Équipement d'Abonné de Novembre 2015.", + "headMystery201511Notes": "Comptez le nombre d'anneaux pour déterminer l'âge de la couronne. Ne confère aucun bonus. Équipement d'abonné·e de novembre 2015.", "headMystery201512Text": "Flammes hivernales", - "headMystery201512Notes": "Ces flammes brûlent froidement d'une grande intelligence. N'apporte aucun bonus. Équipement d'Abonné de Décembre 2015.", - "headMystery201601Text": "Helm of True Resolve", - "headMystery201601Notes": "Stay resolute, brave champion! Confers no benefit. January 2016 Subscriber Item.", + "headMystery201512Notes": "Ces flammes brûlent froidement d'une grande intelligence. N'apporte aucun bonus. Équipement d'abonné·e de décembre 2015.", + "headMystery201601Text": "Casque de Vraie Détermination", + "headMystery201601Notes": "Restez déterminé, courageux champion ! N'apporte aucun bonus. Équipement d'abonné·e de janvier 2016.", + "headMystery201602Text": "Capuche de Bourreau des Cœurs ", + "headMystery201602Notes": "Protéger votre identité de tous vos admirateurs. N'apporte aucun bonus. Équipement d'abonné·e de février 2016.", + "headMystery201603Text": "Chapeau Chanceux", + "headMystery201603Notes": "Ce haut-de-forme est un porte-bonheur magique. N'apporte aucun bonus. Équipement d'abonné de mars 2016.", "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.", + "headMystery301404Notes": "Un couvre-chef fantaisiste pour les gens de bonne famille les plus élégants ! N'apporte aucun bonus. Équipement d'abonné·e de janvier 3015.", "headMystery301405Text": "Haut-de-forme Classique", - "headMystery301405Notes": "Un haut-de-forme classique ne demandant qu'à être assorti avec des accessoires fantaisistes. N'apporte aucun bonus. Équipement d'Abonné de Mai 3015.", + "headMystery301405Notes": "Un haut-de-forme classique ne demandant qu'à être assorti avec des accessoires fantaisistes. N'apporte aucun bonus. Équipement d'abonné·e de mai 3015.", "headArmoireLunarCrownText": "Couronne Lunaire Apaisante", "headArmoireLunarCrownNotes": "Cette couronne vous fortifie et affûte vos sens, spécialement les nuits de pleine lune. Augmente la Constitution de <%= con %> points et la Perception de <%= per %> points. Armoire Enchantée : Ensemble Lunaire Apaisant (Objet 1 sur 3).", "headArmoireRedHairbowText": "Nœud Rouge", @@ -559,17 +598,21 @@ "headArmoireOrangeCatText": "Chapeau Chat Orange", "headArmoireOrangeCatNotes": "Ce chapeau orange... ronronne. Et remue la queue. Et respire aussi? Bon, vous avez simplement un chat endormi sur la tête. Augmente la Force et la Constitution de <%= attrs %> points chacune. Armoire Enchantée: Objet indépendant.", "headArmoireBlueFloppyHatText": "Chapeau Négligé Bleu", - "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.", + "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 %> points chacune. 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": "Chapeau du Croissant de Cristal", - "headArmoireCrystalCrescentHatNotes": "Le motif de ce chapeau croît et décroît en fonction des phases de la lune. Augmente l'Intelligence et la Perception de <%= attrs %> chacun. Armoire Enchantée : Ensemble du Croissant de Cristal (Objet 1 sur 3).", + "headArmoireCrystalCrescentHatNotes": "Le motif de ce chapeau croît et décroît en fonction des phases de la lune. Augmente l'Intelligence et la Perception de <%= attrs %> points chacune. Armoire Enchantée : Ensemble du Croissant de Cristal (Objet 1 sur 3).", "headArmoireDragonTamerHelmText": "Heaume de Dresseur de Dragon", "headArmoireDragonTamerHelmNotes": "Vous ressemblez exactement à un dragon. Le camouflage parfait... Augmente l'Intelligence de <%= int %> points. Armoire Enchantée : Ensemble de Dresseur de Dragon (Objet 1 sur 3).", - "headArmoireBarristerWigText": "Barrister Wig", - "headArmoireBarristerWigNotes": "This bouncy wig is enough to frighten away even the fiercest foe. Increases Strength by <%= str %>. Enchanted Armoire: Barrister Set (Item 1 of 3).", - "headArmoireJesterCapText": "Jester Cap", - "headArmoireJesterCapNotes": "The bells on this hat might distract your opponents, but they just help you focus. Increases Perception by <%= per %>. Enchanted Armoire: Jester Set (Item 1 of 3).", + "headArmoireBarristerWigText": "Perruque d'Avocat", + "headArmoireBarristerWigNotes": "Cette perruque bondissante suffit à effrayer même le plus acharné des ennemis. Augmente la Force de <%= str %> points. Armoire Enchantée : Ensemble de l'Avocat (Objet 1 sur 3).", + "headArmoireJesterCapText": "Chapeau de Bouffon", + "headArmoireJesterCapNotes": "Les cloches de ce chapeau pourraient bien distraire vos adversaires mais elles vous aident juste à vous concentrer. Augmente la Perception de <%= per %> points. Armoire Enchantée : Ensemble du Bouffon (Objet 1 sur 3).", + "headArmoireMinerHelmetText": "Casque de Mineur", + "headArmoireMinerHelmetNotes": "Protégez votre tête des chutes de tâches ! Augmente l'Intelligence de <%= int %> points. Armoire Enchantée : Ensemble du Mineur (Objet 1 sur 3).", + "headArmoireBasicArcherCapText": "Basic Archer Cap", + "headArmoireBasicArcherCapNotes": "No archer would be complete without a jaunty cap! Increases Perception by <%= per %>. Enchanted Armoire: Basic Archer Set (Item 3 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.", @@ -602,84 +645,94 @@ "shieldSpecialGoldenknightText": "Masse Massacreuse Majeure de Mustaine", "shieldSpecialGoldenknightNotes": "Mondanités, monstres, malaise : mineur ! Massacrer ! Augmente la Constitution et la Perception de <%= attrs %> points.", "shieldSpecialYetiText": "Bouclier du Dompteur de Yeti", - "shieldSpecialYetiNotes": "Ce bouclier réverbère la lumière de la neige. Augmente la Constitution de <%= con %> points. Équipement en Édition Limitée de l'Hiver 2013-2014.", + "shieldSpecialYetiNotes": "Ce bouclier réverbère la lumière de la neige. Augmente la Constitution de <%= con %> points. Équipement en édition limitée de l'hiver 2013-2014.", "shieldSpecialSnowflakeText": "Bouclier Flocon de neige", - "shieldSpecialSnowflakeNotes": "Chaque bouclier est unique. Augmente la Constitution de <%= con %> points. Équipement en Édition Limitée de l'Hiver 2013-2014.", + "shieldSpecialSnowflakeNotes": "Chaque bouclier est unique. Augmente la Constitution de <%= con %> points. Équipement en édition limitée de l'hiver 2013-2014.", "shieldSpecialSpringRogueText": "Griffes-Crochet", - "shieldSpecialSpringRogueNotes": "Idéal pour escalader de grands immeubles, mais aussi pour déchirer les carpettes. Augmente la Force de <%= str %> points. Équipement en Édition Limitée du Printemps 2014.", + "shieldSpecialSpringRogueNotes": "Idéal pour escalader de grands immeubles, mais aussi pour déchirer les carpettes. Augmente la Force de <%= str %> points. Équipement en édition limitée du printemps 2014.", "shieldSpecialSpringWarriorText": "Bouclier-Œuf", - "shieldSpecialSpringWarriorNotes": "Ce bouclier ne se fendra jamais, aussi fort que vous tapiez dessus ! Augmente la Constitution de <%= con %> points. Équipement en Édition Limitée du Printemps 2014.", + "shieldSpecialSpringWarriorNotes": "Ce bouclier ne se fendra jamais, aussi fort que vous tapiez dessus ! Augmente la Constitution de <%= con %> points. Équipement en édition limitée du printemps 2014.", "shieldSpecialSpringHealerText": "Boulle Grinçante de Protection Ultime", - "shieldSpecialSpringHealerNotes": "Une fois mordu, émet un cri autant strident qu'interminable qui fera fuir vos ennemis. Augmente la Constitution de <%= con %> points. Équipement en Édition Limitée du Printemps 2014.", + "shieldSpecialSpringHealerNotes": "Une fois mordu, émet un cri autant strident qu'interminable qui fera fuir vos ennemis. Augmente la Constitution de <%= con %> points. Équipement en édition limitée du printemps 2014.", "shieldSpecialSummerRogueText": "Coutelas de Pirate", - "shieldSpecialSummerRogueNotes": "Yarrrr ! Vous f'rez passer ces Quotidiennes sur la planche ! Augmente la Force de <%= str %> points. Équipement en Édition Limitée de l’Été 2014.", + "shieldSpecialSummerRogueNotes": "Yarrrr ! Vous f'rez passer ces Quotidiennes sur la planche ! Augmente la Force de <%= str %> points. Équipement en édition limitée de l’été 2014.", "shieldSpecialSummerWarriorText": "Bouclier de Bois Flotté", - "shieldSpecialSummerWarriorNotes": "Ce bouclier, fabriqué à partir du bois des navires naufragés, peut décourager même les plus orageuses des Quotidiennes. Augmente la Constitution de <%= con %> points. Équipement en Édition Limitée de l’Été 2014.", + "shieldSpecialSummerWarriorNotes": "Ce bouclier, fabriqué à partir du bois des navires naufragés, peut décourager même les plus orageuses des Quotidiennes. Augmente la Constitution de <%= con %> points. Équipement en édition limitée de l’été 2014.", "shieldSpecialSummerHealerText": "Bouclier des Bas-Fonds", - "shieldSpecialSummerHealerNotes": "Personne n'osera s'en prendre au récif corallien, confronté à cet étincelant bouclier ! Augmente la Constitution de <%= con %> points. Équipement en Édition Limitée de l’Été 2014.", + "shieldSpecialSummerHealerNotes": "Personne n'osera s'en prendre au récif corallien, confronté à cet étincelant bouclier ! Augmente la Constitution de <%= con %> points. Équipement en édition limitée de l’été 2014.", "shieldSpecialFallRogueText": "Pieu en Argent", - "shieldSpecialFallRogueNotes": "Liquide les morts-vivants. Accorde aussi un bonus contre les loup-garous, parce qu'on n'est jamais trop prudent. Augmente la Force de <%= str %> points. Équipement en Édition Limitée de l'Automne 2014.", + "shieldSpecialFallRogueNotes": "Liquide les morts-vivants. Accorde aussi un bonus contre les loup-garous, parce qu'on n'est jamais trop prudent. Augmente la Force de <%= str %> points. Équipement en édition limitée de l'automne 2014.", "shieldSpecialFallWarriorText": "Puissante Potion de Science", - "shieldSpecialFallWarriorNotes": "Éclabousse mystérieusement les blouses de labo. Augmente la Constitution de <%= con %> points. Équipement en Édition Limitée de l'Automne 2014.", + "shieldSpecialFallWarriorNotes": "Éclabousse mystérieusement les blouses de labo. Augmente la Constitution de <%= con %> points. Équipement en édition limitée de l'automne 2014.", "shieldSpecialFallHealerText": "Bouclier Incrusté de Joyaux", - "shieldSpecialFallHealerNotes": "Cet étincelant bouclier a été découvert dans une tombe antique. Augmente la Constitution de <%= con %> points. Équipement en Édition Limitée de l'Automne 2014.", + "shieldSpecialFallHealerNotes": "Cet étincelant bouclier a été découvert dans une tombe antique. Augmente la Constitution de <%= con %> points. Équipement en édition limitée de l'automne 2014.", "shieldSpecialWinter2015RogueText": "Pic à Glace", - "shieldSpecialWinter2015RogueNotes": "Vous venez vraiment, sérieusement, absolument, de les ramasser par terre. Augmente la Force de <%= str %> points. Équipement en Édition Limitée de l'Hiver 2014-2015.", + "shieldSpecialWinter2015RogueNotes": "Vous venez vraiment, sérieusement, absolument, de les ramasser par terre. Augmente la Force de <%= str %> points. Équipement en édition limitée de l'hiver 2014-2015.", "shieldSpecialWinter2015WarriorText": "Bouclier Gélatineux", - "shieldSpecialWinter2015WarriorNotes": "Ce bouclier qui semble être fait de sucre est, en fait, constitué légumes gélatineux riches en vitamines. Augmente la Constitution de <%= con %> points. Équipement en Édition Limitée de l'Hiver 2014-2015.", + "shieldSpecialWinter2015WarriorNotes": "Ce bouclier qui semble être fait de sucre est, en fait, constitué légumes gélatineux riches en vitamines. Augmente la Constitution de <%= con %> points. Équipement en édition limitée de l'hiver 2014-2015.", "shieldSpecialWinter2015HealerText": "Bouclier Apaisant", - "shieldSpecialWinter2015HealerNotes": "Ce bouclier dévie le vent glacial. Augmente la Constitution de <%= con %> points. Équipement en Édition Limitée de l'Hiver 2014-2015.", + "shieldSpecialWinter2015HealerNotes": "Ce bouclier dévie le vent glacial. Augmente la Constitution de <%= con %> points. Équipement en édition limitée de l'hiver 2014-2015.", "shieldSpecialSpring2015RogueText": "Couinement explosif", - "shieldSpecialSpring2015RogueNotes": "Ne vous laissez pas duper par le son - ces explosifs font mal. Augmente la Force de <%= str %> points. Équipement en Édition Limitée du Printemps 2015.", + "shieldSpecialSpring2015RogueNotes": "Ne vous laissez pas duper par le son - ces explosifs font mal. Augmente la Force de <%= str %> points. Équipement en édition limitée du printemps 2015.", "shieldSpecialSpring2015WarriorText": "Disque gamelle", - "shieldSpecialSpring2015WarriorNotes": "Lancez-le vers vos ennemis... ou ne faites que le tenir, parce qu'il va se remplir de délicieuse nourriture pour chien à l'heure du repas. Augmente la Constitution de <%= con %> points. Équipement en Édition Limitée du Printemps 2015.", + "shieldSpecialSpring2015WarriorNotes": "Lancez-le vers vos ennemis... ou ne faites que le tenir, parce qu'il va se remplir de délicieuse nourriture pour chien à l'heure du repas. Augmente la Constitution de <%= con %> points. Équipement en édition limitée du printemps 2015.", "shieldSpecialSpring2015HealerText": "Coussin décoré", - "shieldSpecialSpring2015HealerNotes": "Vous pouvez reposer votre tête sur cet oreiller, ou vous pouvez lutter contre lui avec vos imposantes griffes. Raah ! Augmente la Constitution de <%= con %> points. Équipement en Édition Limitée du Printemps 2015.", + "shieldSpecialSpring2015HealerNotes": "Vous pouvez reposer votre tête sur cet oreiller, ou vous pouvez lutter contre lui avec vos imposantes griffes. Raah ! Augmente la Constitution de <%= con %> points. Équipement en édition limitée du printemps 2015.", "shieldSpecialSummer2015RogueText": "Corail Flamboyant", - "shieldSpecialSummer2015RogueNotes": "Cette variété de corail de feu a la capacité de propulser son venin dans l'eau. Augmente la Force de <%= str %> points. Équipement en Édition Limitée de l’Été 2015.", + "shieldSpecialSummer2015RogueNotes": "Cette variété de corail de feu a la capacité de propulser son venin dans l'eau. Augmente la Force de <%= str %> points. Équipement en édition limitée de l’été 2015.", "shieldSpecialSummer2015WarriorText": "Bouclier de Poisson-Lune", - "shieldSpecialSummer2015WarriorNotes": "Forgé dans du métal du fond des océans par les artisans de Dilatoire, ce bouclier rayonne comme le sable et la mer. Augmente la Constitution de <%= con %> points. Équipement en Édition Limitée de l’Été 2015.", + "shieldSpecialSummer2015WarriorNotes": "Forgé dans du métal du fond des océans par les artisans de Dilatoire, ce bouclier rayonne comme le sable et la mer. Augmente la Constitution de <%= con %> points. Équipement en édition limitée de l’été 2015.", "shieldSpecialSummer2015HealerText": "Bouclier Costaud", - "shieldSpecialSummer2015HealerNotes": "Utilisez ce bouclier pour vous débarrasser des rats dans la cale. Augmente la Constitution de <%= con %> points. Équipement en Édition Limitée de l'Été 2015.", + "shieldSpecialSummer2015HealerNotes": "Utilisez ce bouclier pour vous débarrasser des rats dans la cale. Augmente la Constitution de <%= con %> points. Équipement en édition limitée de l'été 2015.", "shieldSpecialFall2015RogueText": "Hache de Bat-aille", - "shieldSpecialFall2015RogueNotes": "De redoutables tâches À Faire s'enfuient devant le battement d'ailes de cette hache. Augmente la Force de <%= str %> points. Équipement en Édition Limitée de l'Automne 2015.", + "shieldSpecialFall2015RogueNotes": "De redoutables tâches À Faire s'enfuient devant le battement d'ailes de cette hache. Augmente la Force de <%= str %> points. Équipement en édition limitée de l'automne 2015.", "shieldSpecialFall2015WarriorText": "Sac de Graines", - "shieldSpecialFall2015WarriorNotes": "C'est vrai que vous êtes censé EFFRAYER les corbeaux, mais il n'y a rien de mal à se faire des amis! Augmente la Constitution de <%= con %> points. Équipement en Édition Limitée de l'Automne 2015.", + "shieldSpecialFall2015WarriorNotes": "C'est vrai que vous êtes censé EFFRAYER les corbeaux, mais il n'y a rien de mal à se faire des amis! Augmente la Constitution de <%= con %> points. Équipement en édition limitée de l'automne 2015.", "shieldSpecialFall2015HealerText": "Bâton Mélangeur", - "shieldSpecialFall2015HealerNotes": "Ce bâton peut mélanger ce que vous voulez sans fondre, se dissoudre ou s'enflammer! On peut aussi l'utiliser pour frapper violemment les tâches adverses. Augmente la Constitution de <%= con %> points. Équipement en Édition Limitée de l'Automne 2015.", + "shieldSpecialFall2015HealerNotes": "Ce bâton peut mélanger ce que vous voulez sans fondre, se dissoudre ou s'enflammer! On peut aussi l'utiliser pour frapper violemment les tâches adverses. Augmente la Constitution de <%= con %> points. Équipement en édition limitée de l'automne 2015.", "shieldSpecialWinter2016RogueText": "Chocolat chaud", - "shieldSpecialWinter2016RogueNotes": "Boisson chaude ou projectile bouillant ? C'est votre choix... Augmente la Force de <%= str %> points. Équipement en Édition Limitée de l'Hiver 2015-2016.", + "shieldSpecialWinter2016RogueNotes": "Boisson chaude ou projectile bouillant ? C'est votre choix... Augmente la Force de <%= str %> points. Équipement en édition limitée de l'hiver 2015-2016.", "shieldSpecialWinter2016WarriorText": "Bouclier luge", - "shieldSpecialWinter2016WarriorNotes": "Utilisez cette luge pour bloquer les attaques, ou glissez triomphalement avec au cœur de la bataille ! Augmente la Constitution de <%= con %> points. Équipement en Édition Limitée de l'Hiver 2015-2016.", + "shieldSpecialWinter2016WarriorNotes": "Utilisez cette luge pour bloquer les attaques, ou glissez triomphalement avec au cœur de la bataille ! Augmente la Constitution de <%= con %> points. Équipement en édition limitée de l'hiver 2015-2016.", "shieldSpecialWinter2016HealerText": "Cadeau Lutin", - "shieldSpecialWinter2016HealerNotes": "Ouvrez le ouvrez le ouvrez le ouvrez le ouvrez le ouvrez le !!!!!!!!! Augmente la Constitution de <%= con %> points. Équipement en Édition Limitée de l'Hiver 2015-2016.", - "shieldMystery201601Text": "Resolution Slayer", - "shieldMystery201601Notes": "This blade can be used to parry away all distractions. Confers no benefit. January 2016 Subscriber Item.", + "shieldSpecialWinter2016HealerNotes": "Ouvrez le ouvrez le ouvrez le ouvrez le ouvrez le ouvrez le !!!!!!!!! Augmente la Constitution de <%= con %> points. Équipement en édition limitée de l'hiver 2015-2016.", + "shieldSpecialSpring2016RogueText": "Bolas Enflammés", + "shieldSpecialSpring2016RogueNotes": "Vous maîtrisez la balle, la massue et le couteau. Vous passez maintenant au jonglage du feu ! Youpi ! Augmente la Force de <%= str %> points. Équipement en édition limitée du printemps 2016.", + "shieldSpecialSpring2016WarriorText": "Roue en Fromage", + "shieldSpecialSpring2016WarriorNotes": "Vous avez affronté des pièges diaboliques pour vous procurer cette nourriture qui améliore vos défenses. Augmente la Constitution de <%= con %> points. Équipement en édition limitée du printemps 2016.", + "shieldSpecialSpring2016HealerText": "Bouclier Floral", + "shieldSpecialSpring2016HealerNotes": "Le Poisson d'Avril dit que ce petit bouclier bloque les Graines Brillantes. Ne le croyez pas. Augmente la Constitution de <%= con %>. Équipement en édition limitée de printemps 2016.", + "shieldMystery201601Text": "Tueuse Résolue", + "shieldMystery201601Notes": "Cette lame peut être utilisée pour parer toutes les distractions. N'apporte aucun bonus. Équipement d'abonné·e de janvier 2016.", "shieldMystery301405Text": "Bouclier Horloge", - "shieldMystery301405Notes": "Le temps est de vote côté avec cet imposant bouclier horloge ! N'apporte aucun bonus. Équipement d'Abonné de Juin 3015.", + "shieldMystery301405Notes": "Le temps est de vote côté avec cet imposant bouclier horloge ! N'apporte aucun bonus. Équipement d'abonné·e de juin 3015.", "shieldArmoireGladiatorShieldText": "Bouclier de Gladiateur", "shieldArmoireGladiatorShieldNotes": "Pour être un gladiateur, vous devez ... euh, peu importe, cognez-les simplement avec votre bouclier. Augmente la Constitution de <%= con %> points et la Force de <%= str %> points. Armoire Enchantée : Ensemble de Gladiateur (Objet 3 sur 3).", "shieldArmoireMidnightShieldText": "Bouclier de Minuit", "shieldArmoireMidnightShieldNotes": "Ce bouclier est le plus puissant aux douze coups de minuit! Augmente la Constitution de <%= con %> points et la Force de <%= str %> points. Armoire Enchantée : Objet Indépendant.", "shieldArmoireRoyalCaneText": "Canne Royale", - "shieldArmoireRoyalCaneNotes": "Hourra pour le souverain, dont on chante les louanges dans le royaume ! Augmente la Constitution, l'Intelligence et la Perception de <%= attrs %> chacun. Armoire Enchantée : Ensemble Royal ( Objet 2 sur 3).", + "shieldArmoireRoyalCaneNotes": "Hourra pour le souverain, dont on chante les louanges dans le royaume ! Augmente la Constitution, l'Intelligence et la Perception de <%= attrs %> points chacune. Armoire Enchantée : Ensemble Royal ( Objet 2 sur 3).", "shieldArmoireDragonTamerShieldText": "Bouclier de Dresseur de Dragon", "shieldArmoireDragonTamerShieldNotes": "Distrayez les ennemis grâce à ce bouclier en forme de Dragon. Augmente la Perception de <%= per %> points. Armoire Enchantée : Ensemble de Dresseur de Dragon (Objet 2 sur 3).", + "shieldArmoireMysticLampText": "Lampe Mystique", + "shieldArmoireMysticLampNotes": "Illuminez les cavernes les plus sombres grâce à cette lampe mystique ! Augmente la Perception de <%= per %> points. Armoire Enchantée : Objet Indépendant.", "back": "Accessoire de Dos", "backBase0Text": "Pas d’accessoire dorsal", "backBase0Notes": "Pas d’accessoire dorsal.", "backMystery201402Text": "Ailes d'Or", - "backMystery201402Notes": "Ces ailes brillantes ont des plumes qui étincellent au soleil ! N'apporte aucun bonus. Équipement d'Abonné de Février 2014.", + "backMystery201402Notes": "Ces ailes brillantes ont des plumes qui étincellent au soleil ! N'apporte aucun bonus. Équipement d'abonné·e de février 2014.", "backMystery201404Text": "Ailes du Papillon Crépusculaire", - "backMystery201404Notes": "Sois un papillon et bats des ailes ! N'apporte aucun bonus. Équipement d'Abonné d'Avril 2014.", + "backMystery201404Notes": "Sois un papillon et bats des ailes ! N'apporte aucun bonus. Équipement d'abonné·e d'avril 2014.", "backMystery201410Text": "Ailes de Gobelin", - "backMystery201410Notes": "Fendez la nuit sur ces ailes puissantes. N'apporte aucun bonus. Équipement d'Abonné d'Octobre 2014.", + "backMystery201410Notes": "Fendez la nuit sur ces ailes puissantes. N'apporte aucun bonus. Équipement d'abonné·e d'octobre 2014.", "backMystery201504Text": "Ailes d'Abeille", - "backMystery201504Notes": "Bzzz bzzz bzzz ! Voltigez de tâche en tâche. Ne confère aucun bonus. Équipement d'Abonné d'Avril 2015", + "backMystery201504Notes": "Bzzz bzzz bzzz ! Voltigez de tâche en tâche. Ne confère aucun bonus. Équipement d'abonné·e d'avril 2015", "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.", + "backMystery201507Notes": "Surfez loin du Quai Assidu et domptez les vagues de la Baie d'Inkomplet ! N'apporte aucun bonus. Équipement d'abonné·e 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é·e d'octobre 2015.", + "backMystery201602Text": "Cape de Bourreau des Cœurs ", + "backMystery201602Notes": "D'un bruissement de votre cape, vos ennemis tombent à vos pieds. N'apporte aucun bonus. Équipement d'abonné·e de février 2016.", "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", @@ -694,40 +747,48 @@ "bodySpecialWonderconBlackText": "Collier d’Ébène", "bodySpecialWonderconBlackNotes": "Un séduisant collier d'ébène ! N'apporte aucun bonus. Équipement de Convention en Édition Spéciale.", "bodySpecialSummerMageText": "Pèlerine Etincellante", - "bodySpecialSummerMageNotes": "Ni l'eau de mer ni l'eau douce ne peuvent ternir cette pèlerine métallisée. N'apporte aucun bonus. Équipement en Édition Limitée de l’Été 2014.", + "bodySpecialSummerMageNotes": "Ni l'eau de mer ni l'eau douce ne peuvent ternir cette pèlerine métallisée. N'apporte aucun bonus. Équipement en édition limitée de l’été 2014.", "bodySpecialSummerHealerText": "Collier de Corail", - "bodySpecialSummerHealerNotes": "Un élégant collier de corail vivant ! N'apporte aucun bonus. Équipement en Édition Limitée de l’Été 2014.", + "bodySpecialSummerHealerNotes": "Un élégant collier de corail vivant ! N'apporte aucun bonus. Équipement en édition limitée de l’été 2014.", "bodySpecialSummer2015RogueText": "Écharpe de Renégat", - "bodySpecialSummer2015RogueNotes": "Vous ne pouvez être un vrai Renégat sans panache ... ni sans écharpe. N'apporte aucun bonus. Équipement en Édition Limitée de l'Été 2015.", + "bodySpecialSummer2015RogueNotes": "Vous ne pouvez être un vrai Renégat sans panache ... ni sans écharpe. N'apporte aucun bonus. Équipement en édition limitée de l'été 2015.", "bodySpecialSummer2015WarriorText": "Pointes Océaniques", - "bodySpecialSummer2015WarriorNotes": "Chaque pointe laisse tomber des gouttes de venin de méduse, protégeant ainsi le porteur. N'apporte aucun bonus. Équipement en Édition Limitée de l'Été 2015.", + "bodySpecialSummer2015WarriorNotes": "Chaque pointe laisse tomber des gouttes de venin de méduse, protégeant ainsi le porteur. N'apporte aucun bonus. Équipement en édition limitée de l'été 2015.", "bodySpecialSummer2015MageText": "Boucle d'Or", - "bodySpecialSummer2015MageNotes": "Cette boucle ne donne pas le moindre pouvoir, mais elle brille. N'apporte aucun bonus. Équipement en Édition Limitée de l'Été 2015.", + "bodySpecialSummer2015MageNotes": "Cette boucle ne donne pas le moindre pouvoir, mais elle brille. N'apporte aucun bonus. Équipement en édition limitée de l'été 2015.", "bodySpecialSummer2015HealerText": "Le Cou-choir du Matelot", - "bodySpecialSummer2015HealerNotes": "Yo ho ho ? Non, non, non ! N'apporte aucun bonus. Équipement en Édition Limitée de l'Été 2015.", + "bodySpecialSummer2015HealerNotes": "Yo ho ho ? Non, non, non ! N'apporte aucun bonus. Équipement en édition limitée de l'été 2015.", "headAccessory": "accessoire de tête", "accessories": "Accessoires", "animalEars": "Oreilles d'Animaux", "headAccessoryBase0Text": "Pas d'accessoire de tête", "headAccessoryBase0Notes": "Pas d'accessoire de tête.", "headAccessorySpecialSpringRogueText": "Oreilles de Chat Violet", - "headAccessorySpecialSpringRogueNotes": "Ces oreilles félines tressaillent à l'approche de menaces potentielles. N'apporte aucun bonus. Équipement en Édition Limitée du Printemps 2014.", + "headAccessorySpecialSpringRogueNotes": "Ces oreilles félines tressaillent à l'approche de menaces potentielles. N'apporte aucun bonus. Équipement en édition limitée du printemps 2014.", "headAccessorySpecialSpringWarriorText": "Oreilles de Lapin Vert", - "headAccessorySpecialSpringWarriorNotes": "Des oreilles de lapin localisant rapidement n'importe quel croquement de carotte. N'apporte aucun bonus. Équipement en Édition Limitée du Printemps 2014.", + "headAccessorySpecialSpringWarriorNotes": "Des oreilles de lapin localisant rapidement n'importe quel croquement de carotte. N'apporte aucun bonus. Équipement en édition limitée du printemps 2014.", "headAccessorySpecialSpringMageText": "Oreilles de Souris Bleue", - "headAccessorySpecialSpringMageNotes": "Ces oreilles rondes de souris sont douces comme de la soie. N'apporte aucun bonus. Équipement en Édition limitée du Printemps 2014.", + "headAccessorySpecialSpringMageNotes": "Ces oreilles rondes de souris sont douces comme de la soie. N'apporte aucun bonus. Équipement en édition limitée du printemps 2014.", "headAccessorySpecialSpringHealerText": "Oreilles de Chien Jaune", - "headAccessorySpecialSpringHealerNotes": "Pendantes mais jolies. On joue ? N'apporte aucun bonus. Équipement en Édition limitée du Printemps 2014.", + "headAccessorySpecialSpringHealerNotes": "Pendantes mais jolies. On joue ? N'apporte aucun bonus. Équipement en édition limitée du printemps 2014.", "headAccessorySpecialSpring2015RogueText": "Oreilles de Souris Jaune", - "headAccessorySpecialSpring2015RogueNotes": "Ces oreilles résistent au son des explosions. N'apporte aucun bonus. Équipement en Édition limitée du Printemps 2015.", + "headAccessorySpecialSpring2015RogueNotes": "Ces oreilles résistent au son des explosions. N'apporte aucun bonus. Équipement en édition limitée du printemps 2015.", "headAccessorySpecialSpring2015WarriorText": "Oreilles de Chien Violet", - "headAccessorySpecialSpring2015WarriorNotes": "Elles sont violettes. Ce sont des oreilles de chien. Ne perdez pas votre temps à vous décider. N'apporte aucun bonus. Équipement en Édition Limitée du Printemps 2015.", + "headAccessorySpecialSpring2015WarriorNotes": "Elles sont violettes. Ce sont des oreilles de chien. Ne perdez pas votre temps à vous décider. N'apporte aucun bonus. Équipement en édition limitée du printemps 2015.", "headAccessorySpecialSpring2015MageText": "Oreilles de Lapin Bleu", - "headAccessorySpecialSpring2015MageNotes": "Ces oreilles écoutent attentivement, au cas où un magicien, quelque part, serait en train de révéler ses secrets. N'apporte aucun bonus. Équipement en Édition Limitée du Printemps 2015.", + "headAccessorySpecialSpring2015MageNotes": "Ces oreilles écoutent attentivement, au cas où un magicien, quelque part, serait en train de révéler ses secrets. N'apporte aucun bonus. Équipement en édition limitée du printemps 2015.", "headAccessorySpecialSpring2015HealerText": "Oreilles de Chaton Vert", - "headAccessorySpecialSpring2015HealerNotes": "Ces oreilles de chaton vert rendront les autres verts de jalousie. N'apporte aucun bonus. Équipement en Édition Limitée du Printemps 2015.", + "headAccessorySpecialSpring2015HealerNotes": "Ces oreilles de chaton vert rendront les autres verts de jalousie. N'apporte aucun bonus. Équipement en édition limitée du printemps 2015.", + "headAccessorySpecialSpring2016RogueText": "Oreilles de Chien Vert", + "headAccessorySpecialSpring2016RogueNotes": "Avec celles-ci, vous pouvez pister les Mages sournois même s'ils deviennent invisibles ! N'apporte aucun bonus. Équipement en édition limitée du printemps 2016.", + "headAccessorySpecialSpring2016WarriorText": "Oreilles de Souris Rouge", + "headAccessorySpecialSpring2016WarriorNotes": "Pour mieux entendre votre chanson thème au milieu de la clameur des champs de bataille. N'apporte aucun bonus. Équipement en édition limitée du printemps 2016.", + "headAccessorySpecialSpring2016MageText": "Oreilles de Chat Jaune", + "headAccessorySpecialSpring2016MageNotes": "Ces fines oreilles peuvent détecter le moindre bourdonnement de Mana ambiante, ou les bruits de pas étouffés d'un Voleur. N'apporte aucun bonus. Équipement en édition limitée du printemps 2016.", + "headAccessorySpecialSpring2016HealerText": "Oreilles de Lapin Violet", + "headAccessorySpecialSpring2016HealerNotes": "Ils s'élèvent comme des drapeaux au-dessus de la bataille, faisant savoir aux autres où venir en aide. Ne confère aucun avantage. Équipement en édition limitée de printemps 2016.", "headAccessoryBearEarsText": "Oreilles d'Ours", - "headAccessoryBearEarsNotes": "Ces oreilles vous font ressembler à un ours câlin ! Ne confère aucun bonus.", + "headAccessoryBearEarsNotes": "Ces oreilles vous font ressembler à un ours courageux ! N'apporte aucun bonus.", "headAccessoryCactusEarsText": "Oreilles de Cactus", "headAccessoryCactusEarsNotes": "Ces oreilles vous font ressembler à un cactus épineux ! Ne confère aucun bonus.", "headAccessoryFoxEarsText": "Oreilles de renard", @@ -743,38 +804,40 @@ "headAccessoryWolfEarsText": "Oreilles de Loup", "headAccessoryWolfEarsNotes": "Ces oreilles vous font ressembler à un loup loyal ! Ne confère aucun bonus.", "headAccessoryMystery201403Text": "Bois du Marcheur Sylvain", - "headAccessoryMystery201403Notes": "Mousses et lichens font scintiller ces bois. N'apporte aucun bonus. Équipement d'Abonné de Mars 2014.", + "headAccessoryMystery201403Notes": "Mousses et lichens font scintiller ces bois. N'apporte aucun bonus. Équipement d'abonné·e de mars 2014.", "headAccessoryMystery201404Text": "Antennes du Papillon Crépusculaire", - "headAccessoryMystery201404Notes": "Ces antennes aident leur porteur à pressentir de dangereux égarements ! N'apporte aucun bonus. Équipement d'Abonné d'Avril 2014.", + "headAccessoryMystery201404Notes": "Ces antennes aident leur porteur à pressentir de dangereux égarements ! N'apporte aucun bonus. Équipement d'abonné·e d'avril 2014.", "headAccessoryMystery201409Text": "Ramure d'Automne", - "headAccessoryMystery201409Notes": "Cette puissante ramure change de couleur en harmonie avec celle des feuilles. N'apporte aucun bonus. Équipement d'Abonné de Septembre 2014.", + "headAccessoryMystery201409Notes": "Cette puissante ramure change de couleur en harmonie avec celle des feuilles. N'apporte aucun bonus. Équipement d'abonné·e de septembre 2014.", "headAccessoryMystery201502Text": "Ailes de la Pensée", - "headAccessoryMystery201502Notes": "Laissez votre imagination s'envoler ! N'apporte aucun bonus. Équipement d'Abonné de Février 2015.", + "headAccessoryMystery201502Notes": "Laissez votre imagination s'envoler ! N'apporte aucun bonus. Équipement d'abonné·e 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. Équipement d'abonné·e 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.", + "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é·e d'août 3015.", + "headAccessoryArmoireComicalArrowText": "Comical Arrow", + "headAccessoryArmoireComicalArrowNotes": "This whimsical item doesn't provide a stat boost, but it sure is good for a laugh! Confers no benefit. Enchanted Armoire: Independent Item.", "eyewear": "Lunettes", "eyewearBase0Text": "Pas de Lunettes", "eyewearBase0Notes": "Pas de Lunettes.", "eyewearSpecialSummerRogueText": "Cache-œil Espiègle", - "eyewearSpecialSummerRogueNotes": "Même un voyou peut voir à quel point c'est élégant ! N'apporte aucun bonus. Équipement en Édition Limitée de l’Été 2014.", + "eyewearSpecialSummerRogueNotes": "Même un voyou peut voir à quel point c'est élégant ! N'apporte aucun bonus. Équipement en édition limitée de l’été 2014.", "eyewearSpecialSummerWarriorText": "Cache-œil Fringuant", - "eyewearSpecialSummerWarriorNotes": "Même un vaurien peut voir à quel point c'est élégant ! N'apporte aucun bonus. Équipement en Édition Limitée de l’Été 2014.", + "eyewearSpecialSummerWarriorNotes": "Même un vaurien peut voir à quel point c'est élégant ! N'apporte aucun bonus. Équipement en édition limitée de l’été 2014.", "eyewearSpecialWonderconRedText": "Masque de Puissance", "eyewearSpecialWonderconRedNotes": "Quel accessoire de tête puissant ! N'apporte aucun bonus. Équipement de Convention en Édition Spéciale.", "eyewearSpecialWonderconBlackText": "Masque de Dissimulation", "eyewearSpecialWonderconBlackNotes": "Vos raisons sont parfaitement légitimes. N'apporte aucun bonus. Équipement de Convention en Édition Spéciale.", "eyewearMystery201503Text": "Lunettes d'Aigue-Marine", - "eyewearMystery201503Notes": "Ne laissez pas ces gemmes chatoyantes vous taper dans l’œil ! N'apporte aucun bonus. Équipement d'Abonné de Mars 2015.", + "eyewearMystery201503Notes": "Ne laissez pas ces gemmes chatoyantes vous taper dans l’œil ! N'apporte aucun bonus. Équipement d'abonné·e de mars 2015.", "eyewearMystery201506Text": "Tuba néon", - "eyewearMystery201506Notes": "Ce tuba néon permet à son porteur de voir sous l'eau. N'apporte aucun bonus. Équipement d'Abonné de Juin 2015.", + "eyewearMystery201506Notes": "Ce tuba néon permet à son porteur de voir sous l'eau. N'apporte aucun bonus. Équipement d'abonné·e de juin 2015.", "eyewearMystery201507Text": "Lunettes de soleil excellentes", - "eyewearMystery201507Notes": "Ces lunettes vous permettront de rester cool, même en pleine canicule. N'apporte aucun bonus. Équipement d'Abonné de Juillet 2015.", + "eyewearMystery201507Notes": "Ces lunettes vous permettront de rester cool, même en pleine canicule. N'apporte aucun bonus. Équipement d'abonné·e de juillet 2015.", "eyewearMystery301404Text": "Lunettes", - "eyewearMystery301404Notes": "Il n'y a pas plus raffiné qu'une paire de lunettes - à l'exception, peut-être, d'un monocle. N'apporte aucun bonus. Équipement d'Abonné d'Avril 3015.", + "eyewearMystery301404Notes": "Il n'y a pas plus raffiné qu'une paire de lunettes - à l'exception, peut-être, d'un monocle. N'apporte aucun bonus. Équipement d'abonné·e d'avril 3015.", "eyewearMystery301405Text": "Monocle", - "eyewearMystery301405Notes": "Il n'y a pas plus raffiné qu'un monocle - à l'exception, peut-être, d'une paire de lunettes. N'apporte aucun bonus. Équipement d'Abonné d'Avril 3015.", + "eyewearMystery301405Notes": "Il n'y a pas plus raffiné qu'un monocle - à l'exception, peut-être, d'une paire de lunettes. N'apporte aucun bonus. Équipement d'abonné·e de Juillet 3015.", "eyewearArmoirePlagueDoctorMaskText": "Masque de Médecin de la Peste", "eyewearArmoirePlagueDoctorMaskNotes": "Un authentique masque porté par les médecins qui ont combattu la Peste de Procrastination ! N'apporte aucun bonus. Armoire Enchantée, Ensemble de Médecin de la Peste (Objet 2 sur 3)." } \ No newline at end of file diff --git a/common/locales/fr/generic.json b/common/locales/fr/generic.json index 8eddd8a696..24d685f819 100644 --- a/common/locales/fr/generic.json +++ b/common/locales/fr/generic.json @@ -3,7 +3,7 @@ "stringNotFound": "Chaîne '<%= string %>' non trouvée", "titleIndex": "Habitica | Le RPG de votre vie", "habitica": "Habitica", - "titleTasks": "Devoirs", + "titleTasks": "Tâches", "titleAvatar": "Avatar", "titleBackgrounds": "Arrière-plans", "titleStats": "Caractéristiques & Succès", @@ -20,8 +20,8 @@ "titlePets": "Familiers", "titleMounts": "Montures", "titleEquipment": "Équipement", - "titleTimeTravelers": "Voyageur du Temps", - "titleSeasonalShop": "Marché de Saison", + "titleTimeTravelers": "Voyageur Temporels", + "titleSeasonalShop": "Boutique Saisonnière", "titleSettings": "Paramètres", "expandToolbar": "Montrer la barre d'outlis", "collapseToolbar": "Cacher la barre d'outils", @@ -48,7 +48,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é environ une semaine avant la fin du mois. Consultez la page \"Mystery Item\" du wiki pour avoir plus d'information.", + "subscriberItemText": "Les abonné·e·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 \"Objet Mystère\" du wiki pour avoir plus d'information.", "all": "Tous", "none": "Aucun", "or": "Ou", @@ -116,8 +116,8 @@ "audioTheme_luneFoxTheme": "Thème de LuneFox", "askQuestion": "Poser une Question", "reportBug": "Signaler un Bug", - "HabiticaWiki": "The Habitica Wiki", - "HabiticaWikiFrontPage": "http://habitica.wikia.com/wiki/Habitica_Wiki", + "HabiticaWiki": "Le Wiki Habitica", + "HabiticaWikiFrontPage": "http://fr.habitica.wikia.com/wiki/Wiki_HabitRPG", "contributeToHRPG": "Contribuer à Habitica", "overview": "Présentation à l'usage des Nouveaux Utilisateurs", "January": "Janvier", @@ -134,9 +134,11 @@ "December": "Décembre", "dateFormat": "Format de la Date", "achievementStressbeast": "Sauveur de Stoïcalme", - "achievementStressbeastText": "A contribué à vaincre l'Abominable Homme du Stress pendant le Festival Winter Wonderland 2014!", + "achievementStressbeastText": "A contribué à vaincre l'Abominable Homme du Stress pendant l’Événement Pays des Merveilles de l'Hiver 2014 !", "achievementBurnout": "Sauveur des Champs Florissants", - "achievementBurnoutText": "A contribué à vaincre Burnout et à revivifier les Esprits d'Échappement au cours du \"Fall Festival Event\" 2015!", + "achievementBurnoutText": "A contribué à vaincre Burnout et à revivifier les Esprits d'Échappement au cours du l'Événement Festival de l'Automne 2015 !", + "achievementBewilder": "Savior of Mistiflying", + "achievementBewilderText": "Helped defeat the Be-Wilder during the 2016 Spring Fling Event!", "checkOutProgress": "Regardez mes progrès sur Habitica !", "cardReceived": "A reçu une carte !", "cardReceivedFrom": "<%= cardType %> de <%= userName %>", @@ -158,12 +160,12 @@ "thankyou3": "Je suis très reconnaissant - merci !", "thankyouCardAchievementTitle": "Grandement Reconnaissant", "thankyouCardAchievementText": "Merci d'être reconnaissant ! A envoyé ou reçu <%= cards %> cartes de remerciements.", - "birthdayCard": "Birthday Card", - "birthdayCardExplanation": "You both receive the Birthday Bonanza achievement!", - "birthdayCardNotes": "Send a birthday card to a party member.", - "birthday0": "Happy birthday to you!", - "birthdayCardAchievementTitle": "Birthday Bonanza", - "birthdayCardAchievementText": "Many happy returns! Sent or received <%= cards %> birthday cards.", + "birthdayCard": "Carte d'Anniversaire", + "birthdayCardExplanation": "Vous avez tous les deux reçu le succès Aubaine d'Anniversaire !", + "birthdayCardNotes": "Envoyer une carte d'anniversaire à un membre de l'équipe.", + "birthday0": "Joyeux Anniversaire !", + "birthdayCardAchievementTitle": "Aubaine d'Anniversaire", + "birthdayCardAchievementText": "Que vous puissiez être heureux encore de nombreuses années ! A envoyé ou a reçu <%= cards %> cartes d'anniversaire.", "streakAchievement": "Vous avez obtenu un succès de combo !", "firstStreakAchievement": "Combo de 21 jours", "streakAchievementCount": "<%= streaks %> combos de 21 jours", @@ -174,6 +176,7 @@ "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 en Habitica !", - "achievementShare": "J'ai gagné un nouveau succès sur Habitica !" + "wonChallengeShare": "J'ai gagné un défi sur Habitica !", + "achievementShare": "J'ai gagné un nouveau succès sur Habitica !", + "orderBy": "Trier par <%= item %>" } \ No newline at end of file diff --git a/common/locales/fr/groups.json b/common/locales/fr/groups.json index f4cc315fb3..6fd93d0f65 100644 --- a/common/locales/fr/groups.json +++ b/common/locales/fr/groups.json @@ -1,9 +1,9 @@ { - "tavern": "Taverne", + "tavern": "Discussion de la Taverne", "innCheckOut": "Quitter l'Auberge", "innCheckIn": "Se reposer à l'Auberge", "innText": "Vous êtes installé à l'Auberge ! Tant que vous y séjournez, vous n'êtes pas affecté par vos Quotidiennes à la fin de la journée, mais elles vont tout de même se remettre à zéro tous les jours. Attention : si vous êtes en pleine Quête contre un Boss, il pourra toujours vous blesser pour les Quotidiennes manquées par les potes de votre Equipe, sauf s'ils séjournent aussi à l'Auberge ! Et vous ne pourrez vous-même blesser le Boss (ou récolter des objets) que lorsque vous quitterez l'Auberge.", - "innTextBroken": "Vous êtes installé à l'Auberge, je suppose... Tant que vous y séjournez, vous n'êtes pas affecté par vos Quotidiennes à la fin de la journée, mais elles vont tout de même se remettre à zéro tous les jours... Si vous êtes en pleine Quête contre un Boss, il pourra toujours vous blesser pour les Quotidiennes manquées par les potes de votre Équipe... sauf s'ils séjournent aussi à l'Auberge... De plus, vous ne pourrez vous-même blesser le Boss (ou récolter des objets) que lorsque vous quitterez l'Auberge... si fatigué...", + "innTextBroken": "Vous êtes installé à l'Auberge, je suppose... Tant que vous y séjournez, vous n'êtes pas affecté par vos Quotidiennes à la fin de la journée, mais elles vont tout de même se remettre à zéro tous les jours... Si vous êtes en pleine Quête contre un Boss, il pourra toujours vous blesser pour les Quotidiennes manquées par les membres de votre Équipe... sauf s'ils séjournent aussi à l'Auberge... De plus, vous ne pourrez vous-même blesser le Boss (ou récolter des objets) que lorsque vous quitterez l'Auberge... si fatigué...", "lfgPosts": "Sujets de recherche de Groupe (Recherche d'Équipe)", "tutorial": "Tutoriel", "glossary": "Glossaire", @@ -101,7 +101,7 @@ "inbox": "Boîte de Réception", "abuseFlag": "Signaler une infraction aux Règles de la Communauté", "abuseFlagModalHeading": "Signaler <%= name %> pour infraction ?", - "abuseFlagModalBody": "Êtes-vous sûr de vouloir signaler cette publication? Vous devez signaler UNIQUEMENT celles qui enfreignent les <%= firstLinkStart %>Règles de la Communauté<%= linkEnd %> et/ou les<%= secondLinkStart %>Conditions Générales<%= linkEnd %>. Le signalement inapproprié d'une publication est une violation des Règles de la Communauté et peut vous affecter d'une infraction. Les raisons appropriées pour signaler une publication incluent mais ne sont pas limitée à:


", + "abuseFlagModalBody": "Êtes vous sûr de vouloir signaler ce post ? Vous ne devez reporter UNIQUEMENT les posts qui sont contraîre les <%= firstLinkStart %>Règles de la Communauté<%= linkEnd %> et/ou les <%= secondLinkStart %>Conditions Générales d'Utilisation <%= linkEnd%>. Signaler inutilement un post est une violation des Règles de la Communauté et peux vous faire recevoir un avertissement. Les raisons qui justifient le signalement d'un post incluent mais ne se limitent pas :

", "abuseFlagModalButton": "Signaler une infraction", "abuseReported": "Merci d'avoir signalé cette infraction. Les modérateurs en ont été informé.", "abuseAlreadyReported": "Vous avez déjà signalé ce message.", @@ -131,7 +131,7 @@ "sendGiftFromBalance": "Offrir vos propres Gemmes", "sendGiftPurchase": "Acheter les Gemmes", "sendGiftMessagePlaceholder": "Message personnel (facultatif)", - "sendGiftSubscription": "<%= months %> Mois : €<%= price %> EUR", + "sendGiftSubscription": "<%= months %> Mois : <%= price %>$ USD", "battleWithFriends": "Combattez des Monstres aux côtés d'Amis", "startPartyWithFriends": "Créez une équipe avec vos amis !", "startAParty": "Former une Equipe", @@ -147,5 +147,9 @@ "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": "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." + "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.", + "partyUpName": "Une joyeuse équipe", + "partyOnName": "Une équipe festive", + "partyUpAchievement": "A rejoint une équipe avec une autre personne ! Amusez vous à combattre des monstres et à vous encourager.", + "partyOnAchievement": "A rejoint une équipe d'au moins quatre personnes ! Profitez de votre plus grande responsabilité en vous regroupant avec vos amis pour vaincre vos ennemis !" } \ No newline at end of file diff --git a/common/locales/fr/limited.json b/common/locales/fr/limited.json index 79f624425e..002f00a123 100644 --- a/common/locales/fr/limited.json +++ b/common/locales/fr/limited.json @@ -21,27 +21,27 @@ "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": "Dindon doré", + "gildedTurkey": "Dinde dorée", "polarBearPup": "Ourson polaire", "jackolantern": "Citrouille d'Halloween", "seasonalShop": "Boutique Saisonnière", "seasonalShopClosedTitle": "<%= linkStart %>Leslie<%= linkEnd %>", "seasonalShopTitle": "<%= linkStart %>Sorcière Saisonnière<%= linkEnd %>", "seasonalShopClosedText": "La Boutique Saisonnière est actuellement fermée !! Je ne sais pas où est passé la Sorcière Saisonnière, mais je parie qu'elle sera de retour lors du prochain Grand Gala !", - "seasonalShopText": "Bienvenue à la Boutique Saisonnière !! Nous avons actuellement reçu les nouveautés Édition Saisonnière du Printemps. Tout l'équipement est disponible à l'achat pendant la Fête du Printemps chaque année, mais nous ne sommes ouverts que jusqu'au 30 Avril, alors faites un stock dès maintenant, ou vous devrez attendre un an pour acheter à nouveau cet équipement !", + "seasonalShopText": "Bienvenue à la Boutique Saisonnière !! Nous avons actuellement reçu les nouveautés Édition Saisonnière du Printemps. Tout l'équipement est disponible à l'achat pendant la Fête du Printemps chaque année, mais nous ne sommes ouverts que jusqu'au 30 avril, alors faites un stock dès maintenant, ou vous devrez attendre un an pour acheter à nouveau cet équipement !", "seasonalShopSummerText": "Bienvenue à la Boutique Saisonnière !! Nous avons reçu les nouveautés Édition Saisonnière de l'Été. Tout l'équipement sera disponible à l'achat pendant la Fête de l'Été chaque année, mais nous ne sommes ouverts que jusqu'au 31 juillet, alors faites un stock dès maintenant ou vous devrez attendre un an pour acheter à nouveau cet équipement !", "seasonalShopFallText": "Bienvenue à la Boutique Saisonnière !! Nous avons actuellement reçu les nouveautés Édition Saisonnière d'automne. Tout l'équipement est disponible à l'achat pendant le Festival d'Automne chaque année, mais nous ne sommes ouverts que jusqu'au 31 octobre, alors faites un stock dès maintenant, ou vous devrez attendre un an pour acheter à nouveau cet équipement !", - "seasonalShopWinterText": "Bienvenue à la Boutique Saisonnière !! Nous avons actuellement reçu les nouveautés de l'Édition Saisonnière de l'Hiver. Tout l'équipement est disponible à l'achat pendant La Fantaisie Hivernale chaque année, mais nous ne sommes ouverts que jusqu'au 31 Janvier, alors faites un stock dès maintenant, ou vous devrez attendre un an pour acheter à nouveau cet équipement !", + "seasonalShopWinterText": "Bienvenue à la Boutique Saisonnière !! Nous avons actuellement reçu les nouveautés de l'Édition Saisonnière de l'Hiver. Tout l'équipement est disponible à l'achat pendant La Fantaisie Hivernale chaque année, mais nous ne sommes ouverts que jusqu'au 31 janvier, alors faites un stock dès maintenant, ou vous devrez attendre un an pour acheter à nouveau cet équipement !", "seasonalShopFallTextBroken": "Oh... Bienvenue à la Boutique Saisonnière... Nous avons actuellement reçu les nouveautés Édition Saisonnière d'automne, ou quelque chose du genre... Tout l'équipement est disponible à l'achat pendant le Festival d'Automne chaque année, mais nous ne sommes ouverts que jusqu'au 31 octobre... alors je suppose que vous devriez faire le stock dès maintenant, ou vous devrez attendre... et attendre... et attendre... *soupir*", "seasonalShopRebirth": "Si vous avez utilisé l'Orbe de Renaissance, vous pouvez racheter cet équipement dans la colonne des Récompenses. Au début, vous pourrez seulement acheter les objets associés à votre classe actuelle (Guerrier par défaut), mais n'ayez crainte, les objets spécifiques à une classe deviendront disponibles si vous choisissez cette classe.", "candycaneSet": "Sucre d'Orge (Mage)", "skiSet": "Ski-sassin (Voleur)", "snowflakeSet": "Flocon de Neige (Guérisseur)", "yetiSet": "Dresseur de Yéti (Guerrier)", - "northMageSet": "Magicien du Nord (Mage)", - "icicleDrakeSet": "Dragon Glaçon (Voleur)", + "northMageSet": "Mage du Nord (Mage)", + "icicleDrakeSet": "Dragon de Glace (Voleur)", "soothingSkaterSet": "Patineur Apaisant (Guérisseur)", - "gingerbreadSet": "Guerrier de pain d'épice (Guerrier)", + "gingerbreadSet": "Guerrier en pain d'épice (Guerrier)", "toAndFromCard": "A : <%= toName %>, De : <%= fromName %>", "nyeCard": "Carte de la Nouvelle Année", "nyeCardExplanation": "Pour avoir célébré cette nouvelle année ensemble, vous avez tous les deux reçu le badge \"Vieille Connaissance\" !", @@ -67,6 +67,10 @@ "witchyWizardSet": "Sorcier ensorceleur (Mage)", "mummyMedicSet": "Médecin Momifié (Guérisseur)", "vampireSmiterSet": "Vampire Frappeur (Voleur)", + "bewareDogSet": "Chien méchant (Guerrier)", + "magicianBunnySet": "Lapin de Magicien (Mage)", + "comfortingKittySet": "Chaton rassurant (Guérisseur)", + "sneakySqueakerSet": "Rongeur sournois (Voleur)", "fallEventAvailability": "Disponible jusqu'au 31 octobre", "winterEventAvailability": "Disponible jusqu'au 31 décembre" } \ No newline at end of file diff --git a/common/locales/fr/messages.json b/common/locales/fr/messages.json index 13c2991a73..13e3f7dbf3 100644 --- a/common/locales/fr/messages.json +++ b/common/locales/fr/messages.json @@ -13,14 +13,14 @@ "messageDontEnjoyFood": "<%= egg %> mange le/la <%= foodText %> mais il n'a pas l'air d'aimer ça.", "messageBought": "Vous avez acheté <%= itemText %>.", "messageEquipped": "<%= itemText %> équipé·e", - "messageUnEquipped": "<%= itemText %> enlevé.", + "messageUnEquipped": "<%= itemText %> enlevé·e·s.", "messageMissingEggPotion": "Il vous manque au choix cet œuf ou cette potion.", "messageInvalidEggPotionCombo": "Vous ne pouvez pas faire éclore un Œuf de Quête avec des potions d'éclosion magiques. Essayez avec un œuf différent.", "messageAlreadyPet": "Vous avez déjà ce familier. Essayez de faire éclore une combinaison différente !", "messageHatched": "Votre œuf a éclos ! Allez voir à l’Écurie pour équiper votre familier.", "messageNotEnoughGold": "Pas assez d'Or", - "messageTwoHandedEquip": "Manier <%= twoHandedText %> demande deux mains : <%= offHandedText %> a été déséquipé.", - "messageTwoHandedUnequip": "Manier <%= twoHandedText %> demande deux mains, cela a été déséquipé quand vous vous êtes armé de <%= offHandedText %>.", + "messageTwoHandedEquip": "Manier <%= twoHandedText %> demande deux mains : <%= offHandedText %> a été déséquipé·e.", + "messageTwoHandedUnequip": "Manier <%= twoHandedText %> demande deux mains, cela a été déséquipé·e quand vous vous êtes armé de <%= offHandedText %>.", "messageDropFood": "Vous avez trouvé <%= dropArticle %><%= dropText %> ! <%= dropNotes %>", "messageDropEgg": "Vous avez trouvé un Œuf de <%= dropText %> ! <%= dropNotes %>", "messageDropPotion": "Vous avez trouvé une Potion d’Éclosion <%= dropText %> ! <%= dropNotes %>", diff --git a/common/locales/fr/npc.json b/common/locales/fr/npc.json index fd362acb5b..cbc8626352 100644 --- a/common/locales/fr/npc.json +++ b/common/locales/fr/npc.json @@ -8,12 +8,12 @@ "danielText": "Bienvenue à la Taverne ! Restez un moment et rencontrez les habitants. Si vous avez besoin de vous reposer (vacances ? maladie ?), je vous installerai à l'Auberge. Pendant votre séjour, vos tâches Quotidiennes ne vous infligeront pas de dommages à la fin de la journée, mais vous pourrez quand même les réaliser.", "danielText2": "Prenez garde : si vous êtes au milieu d'une quête contre un boss, celui-ci vous infligera tout de même des blessures en fonction des Quotidiennes manquées des membres de votre groupe ! De façon identique, vos propres dégâts au Boss (ou les objets récoltés) ne seront pas appliqués tant que vous ne quitterez pas l'Auberge.", "danielTextBroken": "Bienvenue à la Taverne... je suppose... Si vous avez besoin de vous reposer, je vous installerai à l'Auberge... Pendant votre séjour, vos tâches Quotidiennes ne vous infligeront pas de dommages à la fin de la journée, mais vous pourrez quand même les réaliser... si vous en avez la force...", - "danielText2Broken": "Oh...: si vous êtes au milieu d'une quête contre un boss, celui-ci vous infligera tout de même des blessures si les membres de votre groupe rate des Quotidiennes! De plus, vos propres dégâts infligés au Boss (ou les objets récoltés) ne seront pas appliqués tant que vous n'aurez pas quitté l'Auberge.", + "danielText2Broken": "Oh... si vous êtes au milieu d'une quête contre un boss, celui-ci vous infligera tout de même des blessures si les membres de votre groupe rate des Quotidiennes ! De plus, vos propres dégâts infligés au Boss (ou les objets récoltés) ne seront pas appliqués tant que vous n'aurez pas quitté l'Auberge.", "alexander": "Alexander le Marchand", "welcomeMarket": "Bienvenue au Marché ! Achetez des œufs rares et des potions ! Vendez vos surplus ! Commandez des services utiles ! Venez voir ce que nous avons à proposer.", - "displayItemForGold": "Voulez-vous vendre un-e <%= itemType %> ?", + "displayItemForGold": "Voulez-vous vendre un·e <%= itemType %> ?", "displayEggForGold": "Voulez-vous vendre un œuf de <%= itemType %> ?", - "displayPotionForGold": "Voulez-vous vendre une <%= itemType %>potion ?", + "displayPotionForGold": "Voulez-vous vendre une Potion <%= itemType %> ?", "sellForGold": "Vendre pour <%= gold %> pièces d'or.", "buyGems": "Acheter des Gemmes", "purchaseGems": "Acheter des Gemmes", @@ -21,7 +21,7 @@ "ian": "Ian", "ianText": "Bienvenue à la boutique des Quêtes ! Vous pouvez utiliser des parchemins de quête pour battre des monstres avec vos amis. Soyez sûr de vérifier notre ensemble de parchemins de Quêtes à l'achat sur votre droite !", "ianBrokenText": "Bienvenue à la boutique des Quêtes... Ici, vous pouvez utiliser des Parchemins de quêtes pour combattre des monstres avec vos amis. Assurez-vous de regarder notre ensemble de Parchemins de quêtes en vente sur votre droite...", - "USD": "(EUR)", + "USD": "(USD)", "newStuff": "Nouveauté", "cool": "Rappelez-le moi plus tard", "dismissAlert": "Renvoyer la Messagère", @@ -33,9 +33,9 @@ "payNote": "Note : Paypal met parfois longtemps à transmettre. Nous vous recommandons de payer par carte.", "card": "Carte de Crédit (via Stripe)", "amazonInstructions": "Cliquez sur ce bouton pour payer avec Amazon Payments.", - "paymentMethods": "Moyens de paiement:", + "paymentMethods": "Moyens de paiement :", "classGear": "Équipement de classe", - "classGearText": "D'abord, pas de panique ! Votre vieil équipement est dans votre inventaire et vous portez maintenant votre équipement d'apprenti <%= klass %>. Porter l'équipement de votre classe apporte un bonus de 50% à vos attributs. Cependant, rien ne vous empêche de revenir à votre ancien équipement.", + "classGearText": "Tout d'abord : ne paniquez pas ! Votre ancien équipement se trouve dans votre inventaire. Vous portez désormais l'équipement d'apprenti de votre nouvelle classe. Porter l'équipement de votre classe vous confère un bonus de caractéristiques de 50%. Cependant, vous êtes libre de revêtir votre ancien équipement.", "classStats": "Voici les attributs de votre classe ; ils affectent la façon de jouer. Chaque fois que vous gagnez un niveau, vous obtenez un point à allouer à un attribut spécifique. Passez au dessus de chaque attribut pour plus d'information.", "autoAllocate": "Distribution automatique", "autoAllocateText": "Si \"attribution automatique\" est sélectionné, votre avatar gagne des attributs automatiquement selon les attributs de vos tâches, que vous pouvez trouver dans TÂCHES > Modifier > Avancé > Attributs. Par exemple, si vous allez souvent à la salle de sport et que votre Quotidienne \"Sport\" a l'attribut \"Physique\", vous gagnerez de la FOR automatiquement.", @@ -45,7 +45,7 @@ "moreClass": "Pour plus d'informations sur le système de classes, voir", "tourWelcome": "Bienvenue à Habitica ! Ceci est votre liste de Tâches. Cochez une tâche pour continuer !", "tourExp": "Beau travail ! Valider une tâche vous rapportera de l'Expérience et de l'Or !", - "tourDailies": "Cette colonne est pour les tâches Quotidiennes. Pour continuer, ajoutez une tâche que vous devriez faire chaque jour ! Exemple de tâches Quotidiennes : Faire son lit, Se brosser les dents, Vérifier ses mails professionnels", + "tourDailies": "Cette colonne regroupe les tâches quotidiennes. Pour commencer, renseignez une tâches que vous devriez faire tous les jours ! Exemple de tâches quotidiennes : Faire son lit, Se brosser les dents, Vérifier ses mails professionnels", "tourCron": "Magnifique ! Vos Quotidiennes sont réinitialisées chaque jour.", "tourHP": "Prenez garde ! Si vous ne complétez pas une Quotidienne avant minuit, elle vous infligera des dégâts.", "tourHabits": "Cette colonne est pour les bonnes et mauvaises Habitudes que vous réalisez fréquemment ! Pour continuer, cliquez sur le crayon pour changer les noms, puis cliquez sur la coche pour enregistrer.", diff --git a/common/locales/fr/pets.json b/common/locales/fr/pets.json index c31bad0caf..4c8c1fb047 100644 --- a/common/locales/fr/pets.json +++ b/common/locales/fr/pets.json @@ -19,6 +19,7 @@ "orca": "Orque", "royalPurpleGryphon": "Griffon Pourpre Royal", "phoenix": "Phénix", + "bumblebee": "Bumblebee", "rarePetPop1": "Cliquez sur l'empreinte dorée pour savoir comment obtenir cet animal rare en contribuant à Habitica !", "rarePetPop2": "Comment obtenir ce Familier !", "potion": "Potion <%= potionType %>", @@ -40,7 +41,7 @@ "stableBeastMasterProgress": "Progression du Maître des Bêtes : <%= number %> Familiers Trouvés", "beastAchievement": "Vous avez remporté le succès \"Maître des Bêtes\" pour avoir collectionné tous les familiers !", "beastMasterName": "Maître des Bêtes", - "beastMasterText": "Has found all 90 pets (incredibly difficult, congratulate this user!)", + "beastMasterText": "A trouvé les 90 familiers (incroyablement difficile, félicitez cet utilisateur !)", "beastMasterText2": "et a libéré ses familiers <%= count %> fois", "mountMasterProgress": "Progression Maître des Montures", "stableMountMasterProgress": "Progression du Maître des Montures : <%= number %> Montures Apprivoisées", @@ -80,7 +81,7 @@ "petKeyPets": "Relâcher Mes Familiers", "petKeyMounts": "Relâcher Mes Montures", "petKeyBoth": "Relâcher les Deux", - "confirmPetKey": "Est tu sure?", + "confirmPetKey": "Êtes-vous sur·e ?", "petKeyNeverMind": "Pas Encore", "gemsEach": "gemmes chacun" } \ No newline at end of file diff --git a/common/locales/fr/quests.json b/common/locales/fr/quests.json index a619951a9a..24a2eb3153 100644 --- a/common/locales/fr/quests.json +++ b/common/locales/fr/quests.json @@ -38,8 +38,8 @@ "bossDmg2": "Seuls les participants pourront combattre le boss et partager le butin de la quête.", "bossDmg1Broken": "Chaque tâche Quotidienne ou À Faire et chaque Habitude positive effectuée inflige des dommages au boss... Frappez plus fort avec des tâches plus rouges ou avec les sorts Frappe Brutale et Explosion de Flammes... Le boss infligera des dommages à chacun des participants de la quête pour chaque Quotidienne manquée (multipliés par la Force du boss) en plus des dommages normaux... Alors protégez votre équipe en effectuant vos Quotidiennes... Tout dommage causé par vous et par le boss est pris en compte au cron (la réinitialisation de votre journée)...", "bossDmg2Broken": "Seuls les participants pourront combattre le boss et partager le butin de la quête...", - "tavernBossInfo": "Complétez les Quotidiennes et les Tâches À faire et maintenez vous bonnes habitudes pour blesser le Boss Mondial ! Les Quotidiennes incomplètes remplissent la jauge d'Harassement. Lorsque la jauge d'Harassement est pleine, le Boss Mondial attaquera un PNJ. Un Boss Mondial ne blessera jamais de joueurs individuels ou leurs comptes d'aucune façon. Seules les tâches des comptes actifs ne reposant pas à l'Auberge seront comptabilisées.", - "tavernBossInfoBroken": "Effectuez vos tâches Quotidiennes et À Faire et maintenez vos Habitudes positives pour blesser le Boss Mondial... Chaque Quotidienne non effectuée remplit la barre d'Harassement... Lorsque la barre d'Harassement est pleine, le Boss Mondial attaquera un PNJ... Un Boss Mondial ne blessera jamais des joueurs individuels ou des comptes de quelque façon que ce soit... Seules les tâches des comptes actifs de joueurs qui ne se reposent pas à l'Auberge sont prises en compte...", + "tavernBossInfo": "Complete Dailies and To-Dos and score positive Habits to damage the World Boss! Incomplete Dailies fill the Rage Bar. When the Rage 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": "Effectuez vos tâches Quotidiennes et À Faire et continuez vos Habitudes positives pour blesser le Boss Mondial... Chaque Quotidienne non effectuée remplit la barre d'Harassement... Lorsque la barre d'Harassement est pleine, le Boss Mondial attaquera un PNJ... Un Boss Mondial ne blessera jamais des joueurs individuels ou des comptes de quelque façon que ce soit... Seules les tâches des comptes actifs de joueurs qui ne se reposent pas à l'Auberge sont prises en compte...", "bossColl1": "Pour obtenir des objets, accomplissez vos tâches positives. Vous trouvez les objets de quêtes de la même façon que vous trouvez les objets normaux mais vous ne les verrez que le jour suivant. À ce moment, tous les objets de quêtes que vous aurez trouvés seront comptabilisés et s'ajouteront à la pile.", "bossColl2": "Seuls les participants peuvent collecter des objets et partager le butin de la quête.", "bossColl1Broken": "Pour collectionner des objets, accomplissez vos tâches positives... Vous trouverez les objets de quête exactement comme les objets normaux, mais vous ne les verrez que le jour suivant, lorsque tous les objets trouvés seront comptabilisés dans votre collection...", diff --git a/common/locales/fr/questscontent.json b/common/locales/fr/questscontent.json index 6cdf0aa8b3..94385d22d4 100644 --- a/common/locales/fr/questscontent.json +++ b/common/locales/fr/questscontent.json @@ -1,7 +1,7 @@ { "questEvilSantaText": "Trappeur Noël", "questEvilSantaNotes": "Des grondements plaintifs résonnent au loin sur la banquise. Guidé par les grognements -étrangement ponctués de gloussements- vous parvenez à une clairière où se trouve une ourse polaire adulte. Enfermée dans une cage, enchaînée, elle essaie désespérement de se libérer. Au-dessus d'elle, un méchant petit lutin attifé d'un costume délabré danse. Vainquez le Trappeur Noël, et sauvez la bête !", - "questEvilSantaCompletion": "Le Trappeur Noël glapit de colère et fuit, s'enfonçant dans la nuit. L'ourse est vraiment reconnaissante. Mais voilà qu'elle gronde et grogne, comme si elle cherchait à te dire quelque chose d'important. Tu la ramènes à l'étable où Matt Boch, le Maître des Bêtes, comprend avec un sursaut d'horreur son problème. Elle a un ourson ! Il a fuit vers la banquise lors de la capture de sa mère.", + "questEvilSantaCompletion": "Le Trappeur Noël glapit de colère et fuit, s'enfonçant dans la nuit. L'ourse est vraiment reconnaissante. Mais voilà qu'elle gronde et grogne, comme si elle cherchait à vous dire quelque chose d'important. Vous la ramenez à l'étable où Matt Boch, le Maître des Bêtes, comprend avec un sursaut d'horreur son problème. Elle a un ourson ! Il a fuit vers la banquise lors de la capture de sa mère.", "questEvilSantaBoss": "Trappeur Noël", "questEvilSantaDropBearCubPolarMount": "Ours Polaire (Monture)", "questEvilSanta2Text": "Trouvez l'Ourson", @@ -59,7 +59,7 @@ "questSpiderDropSpiderEgg": "Araignée (Œuf)", "questSpiderUnlockText": "Déverrouille l'achat d’œufs d'araignée au Marché", "questVice1Text": "Vice, partie 1 : Libérez-vous de l'influence du dragon", - "questVice1Notes": "

On raconte qu'un mal terrible se terre dans les cavernes du Mont Habitica. Un monstre dont la seule présence fait plier la volonté des puissants héros du pays, les soumettant à leurs mauvaises habitudes et à la paresse ! La bête est un grand dragon aux pouvoirs immenses et est constituée des ténèbres elles-mêmes : Vice, la perfide Vouivre des Ténèbres. Courageux Habitien·ne·s, dressez-vous et vainquez cette bête une fois pour toutes, mais seulement si vous pensez être capable de résister à son immense pouvoir.

Vice, partie 1 :

Comment pensez vous pouvoir combattre cette bête si elle a déjà pris le contrôle de votre esprit ? Ne vous laissez pas aller à la paresse et au vice ! Travaillez dur pour combattre l'influence du dragon et vous défaire de son emprise !

", + "questVice1Notes": "

Ils racontent que repose un mal terrible dans les cavernes du Mont Habitica. Un monstre dont la présence écrase la volonté des plus forts héros de la contrée, les poussant aux mauvaises habitudes et à la paresse ! La bête est un grand dragon d'un immense pouvoir et constitué des ténèbres elles-mêmes : Vice, le perfide Wyrm de l'Ombre. Braves Habiticien·ne·s, levez-vous et vainquez cette ignoble bête une fois pour toutes, mais seulement si vous pensez pouvoir affronter son immense pouvoir.

Vice Partie 1 :

Comment espérez-vous combattre la bête si elle a déjà le contrôle sur vous ? Ne tombez victime de la paresse et du vice! Travaillez dur pour contrer l'influence noire du dragon et dissiper son emprise sur vous !

", "questVice1Boss": "L'Ombre de Vice", "questVice1DropVice2Quest": "Vice, partie 2 (Parchemin)", "questVice2Text": "Vice, partie 2 : Trouvez la Tanière de la Vouivre", @@ -74,30 +74,30 @@ "questVice3DropDragonEgg": "Dragon (Œuf)", "questVice3DropShadeHatchingPotion": "Potion d'éclosion sombre", "questMoonstone1Text": "La Chaîne de Pierres de Lune, Partie 1 : La Chaîne de Pierre de Lune", - "questMoonstone1Notes": "

Un terrible malheur frappe les Habiticiens. De mauvaises habitudes que l'on pensait vaincues depuis longtemps reviennent d'outre-tombe pour se venger. La vaisselle sale traîne, les livres scolaires gisent sans être lus, et la procrastination gagne du terrain !


Vous suivez la trace de vos anciennes mauvaises Habitudes jusqu'aux Marais de la Stagnation et découvrez la coupable : la fantomatique nécromancienne, Récidive. Vous vous précipitez sur elle en brandissant vos armes, mais elles traversent son spectre sans aucun effet.


\"Ne vous fatiguez pas,\" siffle-t-elle d'une voix éraillée. \"Sans une chaîne de pierres de Lune, rien ne peut m'atteindre – et le maître joaillier @aurakami a dispersé toutes les pierres de Lune à travers Habitica il y a bien longtemps !\" Haletant, vous battez en retraite... mais vous savez ce qu'il vous reste à faire.

", + "questMoonstone1Notes": "Un terrible mal a frappé les Habiticiens. Les Mauvaise Habitudes qu'on croyait depuis longtemps mortes se relèvent pour se venger. La vaisselle gît sale, les livres trainent délaissés, et la procrastination se répand au galop!

Vous avez traquez certaines de vos propres Mauvaises Habitudes de retour jusqu'aux Marais de la Stagnation et avez découvert le coupable: la Nécromancienne fantôme, Récidive. Vous avez foncez, armes au clair, mais elles passent à travers son corps spectral sans effet.

\"Ne te fatigue pas,\" siffle-t-elle d'un grincement sec. \"Sans une chaîne de pierres de lune, rien ne peut m'atteindre - et le maître joaillier @aurakami a dispersé toutes les pierres à travers Habitica il y a longtemps!\" Penaud, vous faîtes retraite... mais vous savez ce que vous avez à faire.", "questMoonstone1CollectMoonstone": "Pierres de Lune", "questMoonstone1DropMoonstone2Quest": "La Chaîne de Pierres de Lune, Partie 2 : Récidive la Nécromancienne (Parchemin)", "questMoonstone2Text": "La Chaîne de Pierres de Lune, Partie 2 : Récidive la Nécromancienne", - "questMoonstone2Notes": "

Le courageux armurier @Inventrix vous aide à façonner les pierres de Lune magiques pour en faire une chaîne. Vous êtes enfin prêt à affronter Récidive, mais alors que vous pénétrez dans les marais de la stagnation, un froid épouvantable vous submerge.


Un souffle pestilentiel murmure à votre oreille : \"Déjà de retour ? Quel plaisir...\" Vous faites volte-face, et lorsque vous frappez à la lumière de la chaîne de pierres de Lune, votre arme rencontre de la chair. \"Vous m'avez peut-être attachée à ce monde une fois de plus,\" gronde Récidive, \"mais il est à présent l'heure pour vous de le quitter !\"

", + "questMoonstone2Notes": "Le courageux forgeron @Inventrix vous aide à façonner les pierres de lune enchantées en une chaîne. Vous êtes enfin prêt à affronter Récidive, mais en entrant dans les Marais de la Stagnation, un terrible frisson vous parcourt.

Une haleine fétide murmure à votre oreille. \"De retour ? Comme c'est charmant...\" Vous pivotez et vous jetez en avant, et sous la lumière de la chaîne en pierres de lune, votre arme frappe de la chair bien réelle. \"Tu m'as peut-être enchaînée à ce monde une fois de plus,\" gronde Récidive, \"mais il est maintenant temps pour toi de le quitter!\"", "questMoonstone2Boss": "La Nécromancienne", "questMoonstone2DropMoonstone3Quest": "La Chaîne de Pierres de Lune, Partie 3 : La Transformation de Récidive (Parchemin)", "questMoonstone3Text": "La Chaîne de Pierres de Lune, Partie 3 : La Transformation de Récidive", - "questMoonstone3Notes": "

Récidive s'effondre, et vous lui assénez un coup avec la chaîne de pierres de Lune. Devant vos yeux horrifiés, Récidive s'empare des gemmes, les yeux brillants de triomphe.


\"Stupide créature de chair !\" s'écrie-t-elle. \"Ces pierres de Lune me rendront une forme physique, c'est vrai, mais pas celle que vous imaginiez. Comme la pleine lune émerge des ténèbres, mes pouvoirs aussi grandissent, et des ombres j'invoque le spectre de votre ennemi le plus redouté !\"


Une grenouille d'un vert maladif remonte du Marais, et le corps de Récidive se tord et se contorsionne en une forme qui vous remplit d'effroi – l'horrible corps mort-vivant de Vice, ressuscité.

", - "questMoonstone3Completion": "

Votre souffle se raccourcit et la sueur vous pique les yeux alors que la Vouivre mort-vivante s'écroule. Les restes de Récidive se dissipent en un fin brouillard grisâtre, qu'une brise rafraîchissante a tôt fait de dissiper ; vous entendez au loin les cris de ralliement des Habiticien·ne·s abattant leurs mauvaises Habitudes une fois pour toutes.


Le maître des bêtes @Baconsaur descend en piqué sur son griffon. \"J'ai assisté à la fin de votre bataille depuis le ciel, et elle m'a fortement ému. Je vous en prie, prenez cette tunique enchantée – votre bravoure révèle un cœur noble, je pense qu'elle vous était destinée.\"

", + "questMoonstone3Notes": "Récidive s'effondre au sol, et vous la frappez avec la chaîne de pierres de lune. A votre grande horreur, Récidive saisi les pierres, les yeux brûlants de triomphe.

\"Pauvre créature de chair!\" lance-t-elle. \"Ces pierres de lune me rendent ma forme physique, c'est vrai, mais pas comme tu l'imaginais. Comme la pleine lune croît de l'obscurité, mon pouvoir grandit, et des ténèbres j'invoque le spectre de ton plus terrible adversaire!\"

Un brouillard verdâtre s'élève du marais, et le corps de Récidive s'agite et se tort, prenant une forme qui vous emplit d'effroi - le corps mort-vivant de Vice, horriblement ranimé.", + "questMoonstone3Completion": "Votre souffle devient court et la sueur vous brule les yeux alors que le Wyrm mort-vivant s'effondre. Les restes de Récidive se dissipent en une fine brume grise qui s'évanouit bien vite sous les assauts d'une brise rafraichissante, et vous entendez les clameurs distantes des Habiticiens vainqueurs de leurs Mauvaises Habitudes une bonne fois pour toutes.

@Baconsaur le maître des bêtes descend sur un griffon. \"J'ai vu la fin de votre combat depuis le ciel, et j'ai été très touché. S'il vous plait, acceptez cette tunique enchantée - vous bravoure est la marque d'un noble cœur, et je vous crois digne de la recevoir.\"", "questMoonstone3Boss": "Nécro-Vice", "questMoonstone3DropRottenMeat": "Viande Pourrie (Nourriture)", "questMoonstone3DropZombiePotion": "Potion d'Éclosion Zombie", "questGoldenknight1Text": "Campagne du Chevalier d'Or, Partie 1 : Une Sévère Remontrance", - "questGoldenknight1Notes": "

Le Chevalier d’Or se penche sur le cas de pauvres Habiticiens. Vous n’avez pas validé toutes vos Quotidiennes ? Vous prenez de mauvaises Habitudes ? Chaque faux pas lui donnera une raison de vous harceler à propos du fait que vous devriez suivre son exemple. Elle est l’exemple parfait de l’Habiticienne assidue et vous n’êtes rien d’autre à ses yeux qu’un échec. Eh bien, on peut dire que tout ça n’est pas très sympa, ni agréable à entendre ! Tout le monde fait des erreurs. Ce n’est pas une raison pour être aussi désagréable. Peut-être est-il temps de rassembler les témoignages d’Habiticiens et d’Habiticiennes blessé·e·s par ses propos et de donner une bonne leçon au Chevalier d’Or !

", + "questGoldenknight1Notes": "Le Chevalier d'or tombe sur le dos des pauvres Habiticiens. Vous n'avez pas fait toutes vos quotidiennes ? Vous avez cédé à une mauvaise Habitude ? Elle s'en servira comme raison pour vous rabâcher que vous devez suivre son exemple. Elle est l'exemple brillant d'une Habiticienne parfaite, et vous n'êtes qu'un raté. Et bien, ce n'est pas gentil du tout! Tout le monde fait des erreurs. Et on ne devrait devoir faire face à de telles critiques pour cela. Il est peut-être temps de récolter quelques témoignages d'Habiticiens blessés et de donner une sévère avoinée au Chevalier d'Or!", "questGoldenknight1CollectTestimony": "Témoignages", "questGoldenknight1DropGoldenknight2Quest": "Campagne du Chevalier d'Or, Partie 2 : Chevalier d'Or (Parchemin)", "questGoldenknight2Text": "Campagne du Chevalier d'Or, Partie 2 : Chevalier d'Or", - "questGoldenknight2Notes": "

Armé de centaines de témoignages d'Habiticien·ne·s, vous confrontez enfin le Chevalier Doré. Vous commencez à lui énoncer les plaintes des Habiticien·ne·s, les unes après les autres. \"Et @Pfeffernusse dit que vos constantes fanfaronnades-\" Le chevalier lève la main pour vous faire taire et ricane, \"S'il vous plait, ces gens sont évidemment jaloux de mon succès. Au lieu de se plaindre, ils devraient tout simplement travailler aussi dur que moi ! Peut-être devrais je vous montrer la puissance que vous pouvez obtenir avec l'assiduité qui est la mienne !\" Elle brandit sa masse et se prépare à vous attaquer !

", + "questGoldenknight2Notes": "Armé de centaines de témoignages d'Habiticiens, vous affrontez enfin le Chevalier d'Or. Vous entamer la récitation des plaintes d'Habiticiens à son sujet, une par une \"Et @Pfeffernusse dit que tes vantardises incessantes...\" Le chevalier lève la main pour vous faire taire et se moque, \"Je t'en prie, ces gens sont simplement jaloux de mon succès. Au lieu de se plaindre, ils devraient juste travailler aussi dur que moi! Je devrais peut-être te montrer le pouvoir qu'on peut atteindre avec une discipline comme la mienne!\" Elle lève son fléau d'arme et se prépare à vous attaquer!", "questGoldenknight2Boss": "Chevalier d'Or", "questGoldenknight2DropGoldenknight3Quest": "Campagne du Chevalier d'Or, Partie 3 : Le Chevalier de Fer (Parchemin)", "questGoldenknight3Text": "Campagne du Chevalier d'Or, Partie 3 : Chevalier de Fer", - "questGoldenknight3Notes": "

@Jon Arinbjorn vous interpelle pour attirer votre attention. A l'issue de votre combat, un nouveau visage a fait son apparition. Un chevalier recouvert d'une armure teintée de noir s'avance lentement dans votre direction, une épée à la main. Le Chevalier d'Or s'écrie, \"Père, non !\" mais celui-ci n'affiche aucune intention de s'arrêter. L'aventurière se tourne alors vers vous et dit : \"Je suis désolée. J'ai été stupide, avec une tête trop grosse pour voir à quel point j'ai été cruelle. Mais mon père est plus cruel que je ne pourrais jamais l'être. Si personne ne l'arrête, il nous détruira tous. Tenez, prenez mon arme et stoppez le Chevalier de Fer !\"

", - "questGoldenknight3Completion": "

Avec un \"clong\" satisfaisant, le Chevalier de Fer tombe à genoux et s’effondre. \"Vous êtes plutôt fort.\" halète-t-il. \"J'ai été humilié, aujourd'hui.\" Le Chevalier d'Or s'approche et vous dit : \"Merci. Je crois que nous avons tiré une certaine humilité de notre rencontre avec vous. Peut-être devrions-nous commencer à nous excuser auprès des autres personnes blessées.\" Elle plonge dans ses pensées avant de se tourner vers vous à nouveau. \"Tenez : je veux que vous preniez mon étoile-du-matin, considérez-la comme un présent de notre part. Elle est à vous dorénavant.\"

", + "questGoldenknight3Notes": "@Jon Arinbjorn vous appelle pour attirer votre attention. A la suite de votre bataille, un nouveau personnage est apparu. Un chevalier dans une armure de fer veiné de noir s'approche lentement de vous l'épée à la main. Le Chevalier d'Or lui jette, \"Père, non!\" mais le chevalier ne montre aucun signe de ralentissement. Elle se tourne vers vous et dit, \"Je suis désolée. J'étais inconsciente, avec bien trop la grosse tête pour voir à quel point j'étais devenue cruelle. Mais mon père est bien plus cruel que je ne pourrais l'être. Si on ne l'arrête pas il nous détruira tous. Tiens, prend mon fléau d'arme et arrête le Chevalier de Fer!\"", + "questGoldenknight3Completion": "Avec un fracas satisfaisant, le Chevalier de Fer tombe à genoux et s'effondre. \"Tu es plutôt bon, \" halète-t-il. \"J'ai été humilié, aujourd'hui.\" Le Chevalier d'Or s'approche et vous dit, \"Merci. Je crois que j'ai gagné en humilité dans notre rencontre. Je parlerai à mon père et lui expliquerai les plaintes contre nous. Peut-être devrions-nous nous excuser auprès des autres Habiticiens.\" Elle se plonge dans se pensées avant de revenir vers vous. \"Tiens : en cadeau, j'aimerai que tu gardes mon fléau d'arme. Il est à toi maintenant.\"", "questGoldenknight3Boss": "Le Chevalier de Fer", "questGoldenknight3DropHoney": "Miel (Nourriture)", "questGoldenknight3DropGoldenPotion": "Potion d'Éclosion Dorée", @@ -112,7 +112,7 @@ "questEggHuntCollectPlainEgg": "Œufs Simples", "questEggHuntDropPlainEgg": "Œuf Simple", "questDilatoryText": "Le Redoutable Drag'on de Dilatoire", - "questDilatoryNotes": "

Nous aurions du tenir compte des avertissements.


Des yeux sombres et luisants. D'antiques écailles. Des mâchoires puissantes aux dents étincelantes. Nous avons réveillé quelque chose de terrifiant qui sommeillait dans la crevasse : le Redoutable Drag'on de Dilatoire ! Les Habiticiens se sont éparpillés en hurlant lorsqu'il a émergé hors de la mer, son effroyablement long cou s'élevant à des dizaines de mètres au-dessus de la surface alors que les fenêtres explosaient sous l'impact de son rugissement.


\"Voilà ce qui a causé la chute de Dilatoire !\" hurle Lemoness. \"Ce n'était pas le poids des tâches négligées - les Quotidiennes Rouge Foncé ont seulement attiré son attention !\"


\"Il irradie d'énergie magique !\" crie @Baconsaur. \"S'il a pu survivre jusqu'à nos jours, il doit forcément être capable de se régénérer ! Comment pouvons-nous le vaincre ?\"


De la même manière que nous avons vaincu tous les monstres : avec notre productivité ! Vite, Habitica, unissez-vous, pourfendez vos tâches et ensemble nous allons affronter cette créature. (Il n'est pas nécessaire d'abandonner votre quête en cours - nous croyons en votre capacité à asséner de multiples coups !) Il ne s'en prendra pas à nous individuellement, mais plus nous manquons de Quotidiennes, plus nous risquons de déclencher sa Frappe de la Négligence - et je n'aime pas la manière dont il regarde la Taverne....

", + "questDilatoryNotes": "Nous aurions dû tenir compte des avertissements.

Yeux noirs brillants. Anciennes écailles. Mâchoires massives, et dents luisantes. Nous avons réveillé quelque chose de terrible de la crevasse : le Terrible Drag'on Dilatoire! Les Habiticiens hurlant fuirent dans tous les sens quand il jaillit de la mer, son terrifiant long cou s'élevant des mètres au-dessus de l'eau tandis qu'il explosait les vitres d'un rugissement brûlant.

\"Ce doit être ce qui entrainait Dilatoire !\" crie Lemoness. \"Ce n'était pas le poids des tâches négligées - les Quotidiennes Rouge Sombre attiraient juste son attention!\"

\"Il déborde d'énergie magique!\" hurle @Baconsaur. \"Pour avoir vécu si longtemps, il doit être capable de se soigner tout seul! Comment allons-nous le vaincre?\"

Quelle question, de la même façon que nous avons vaincu tous les monstres - par la productivité! Vite, Habiticiens, unissez-vous, jetez-vous sur vos tâches et tous ensemble nous allons combattre ce monstre. (Il n'est pas besoin d’abandonner les quêtes précédentes - nous croyons en votre capacité à faire deux choses en même temps!) Il ne nous attaquera pas individuellement, mais plus nous négligeons de Quotidiennes, plus nous risquons de déclencher son Coup Négligent - et je n'aime pas la façon dont il regarde la Taverne...", "questDilatoryBoss": "Le Redoutable Drag'on de Dilatoire", "questDilatoryBossRageTitle": "Frappe de la Négligence", "questDilatoryBossRageDescription": "Lorsque cette jauge sera remplie, le Redoutable Drag'on de Dilatoire va provoquer d'énormes ravages sur les terres d'Habitica", @@ -140,9 +140,9 @@ "questAtom3Notes": "Avec un cri assourdissant, et cinq délicieuses sortes de fromages jaillissant de sa bouche, le Monstre SnackLess s'effondre en morceaux. \"COMMENT OSEZ-VOUS !\" tonne une voix provenant des profondeurs de l'eau. Une silhouette en robe bleue émerge de la surface, brandissant une brosse à cuvette magique. \"Je suis le Lessivomancien !\" s'exclame-t-il avec rage. \"Vous avez du cran : nettoyer ma voluptueuse vaisselle sale, détruire mon familier, et pénétrer dans mon domaine avec d'aussi propres vêtements. Préparez vous à sentir le courroux détrempé de ma magie anti-lessive !\"", "questAtom3Completion": "Le malfaisant Lessivomancien a été vaincu ! Du linge propre tombe en piles tout autour de vous. Tout a l'air d'aller beaucoup mieux par ici. Alors que vous commencez à patauger dans votre armure fraîchement essorée, un reflet de métal attire votre attention, et votre regard tombe sur un heaume étincelant. Le propriétaire originel de cet objet brillant est peut-être inconnu mais, alors que vous vous en coiffez, vous ressentez la chaleureuse présence d'un esprit généreux. Dommage qu'il n'y ait pas cousu ses initiales.", "questAtom3Boss": "Le Lessivomancien", - "questAtom3DropPotion": "Base Hatching Potion", + "questAtom3DropPotion": "Potion d'Éclosion Basique", "questOwlText": "L'Oiseau de Nuit", - "questOwlNotes": "La lumière de la Taverne est toujours allumée jusqu’à l’aube.
Jusqu’à cun soir où la lumière n'est plus !
Comment les couche-tard peuvent-ils alors voir ?
@Twitching s’écrie « J’ai besoin de combattants !
Voyez-vous ce hibou dans la nuit, cet ennemi aux yeux scintillants ?
Combattez avec hargne et ne ralentissez pas !
Nous allons repousser son ombre hors de notre portée
et ainsi faire briller la nuit une fois de plus !\"", + "questOwlNotes": "La lumière de la Taverne est allumée jusqu'à l'aurore
Jusqu'à ce qu'un soir la lueur s'évapore!
Pour nos nuits blanches, comment voir maintenant?
@Twitching crie \"j'ai besoin de combattants!
Voyez-vous ce Noctambule, étoilé ennemi?
Combattez en hâte et pas de ralenti!
Nous conduirons son ombre au-delà de notre porte,
Et ferons que la nuit brille à nouveau de la sorte!\"", "questOwlCompletion": "Avant l’aube disparut le hibou aux yeux scintillants.
C’est alors que vous sentez venir un bâillement.
Peut-être est-il temps de se reposer un peu ?
Sur votre lit, vous voyez un nid !
L’oiseau de nuit sait qu’il y a du bon
à vouloir tout terminer en repoussant l’heure de son coucher.
Désormais vos nouveaux familiers gazouilleront doucement
pour vous indiquer le chemin de l’endormissement.", "questOwlBoss": "L'Oiseau de Nuit", "questOwlDropOwlEgg": "Chouette (œuf)", @@ -283,13 +283,30 @@ "questSabretoothText": "Le tigre à dents de sabre", "questSabretoothNotes": "Un monstre rugissant terrorise Habitica ! La créature erre entre bois et forêts et tout-à-coup attaque, avant de s'évanouir dans la nature. Elle chasse les pandas sans défense et effraie tant les cochons-volants qu'ils quittent leurs enclos et se perchent dans les arbres. @Inventrix et @icefelis expliquent qu'ils ont malencontreusement libéré le Tigre Zombie à Dents de Sabre alors qu'ils faisaient des fouilles dans les antiques glaces vierges des Steppes Stoikalm. «Il était tout-à-fait aimable au début - Je ne comprends pas ce qui s'est passé. Je vous en prie, vous devez nous aider à l'attraper ! Seul un champion de Habitica peut espérer maîtriser ce monstre préhistorique».", "questSabretoothCompletion": "Après un long et fatiguant combat en corps-à-corps, vous immobilisez le Tigre Zombie à Dents de Sabre au sol. Collé à lui, le maintenant solidement, vous remarquez une vilaine carie dans l'une de ses immenses canines. Comprenant enfin la raison de la rage du tigre, vous faites soigner la carie par @Fandekasp et dites gentiment au groupe que dorénavant, il vaudrait mieux éviter de donner des bonbons à leur ami tigre. Le Tigre aux Dents de Sabre grandit de manière spectaculaire, et ses dompteurs, pleins de gratitude, vous envoient une grande récompense : une couvée d'oeufs au motif en dents-de-sabre. ", - "questSabretoothBoss": "Zombie tigre à dents de sabre", + "questSabretoothBoss": "Tigre à dents de sabre zombie", "questSabretoothDropSabretoothEgg": "Tigre à dents de sabre (Oeuf)", "questSabretoothUnlockText": "Déverrouille l'achat d'oeufs de tigre à dents de sabre au Marché", - "questMonkeyText": "Monstrous Mandrill and the Mischief Monkeys", - "questMonkeyNotes": "The Sloensteadi Savannah is being torn apart by the Monstrous Mandrill and his Mischief Monkeys! They shriek loudly enough to drown out the sound of approaching deadlines, encouraging everyone to avoid their duties and keep monkeying around. Alas, plenty of people ape this bad behavior. If no one stops these primates, soon everyone's tasks will be as red as the Monstrous Mandrill's face!

\"It will take a dedicated adventurer to resist them,\" says @yamato.

\"Quick, let's get this monkey off everyone's backs!\" @Oneironaut yells, and you charge into battle.", - "questMonkeyCompletion": "You did it! No bananas for those fiends today. Overwhelmed by your diligence, the monkeys flee in panic. \"Look,\" says @Misceo. \"They left a few eggs behind.\"

@Leephon grins. \"Maybe a well-trained pet monkey can help you as much as the wild ones hinder you!\"", - "questMonkeyBoss": "Monstrous Mandrill", - "questMonkeyDropMonkeyEgg": "Monkey (Egg)", - "questMonkeyUnlockText": "Unlocks purchasable Monkey eggs in the Market" + "questMonkeyText": "Monstrueux Mandrill et les Singes Malicieux", + "questMonkeyNotes": "La Savane du Sloensteadi est déchirée par le Monstrueux Mandrill et ses Singes Malicieux ! Ils crient assez fort pour noyer le son des dates limites qui approchent, encourageant tout le monde à se soustraire à ses devoirs, et ne cessent de faire les imbéciles. Hélas, beaucoup de gens singent ce mauvais comportement. Si personne n'arrête ces primates, bientôt, les tâches de tout le monde seront aussi rouges que le visage du Monstrueux Mandrill ! \"Il va falloir un aventurier déterminé pour leur résister\", dit @yamato.

\"Vite, débarrassons tout le monde de ce fardeau ! \" crie @Oneironaut, et vous vous lancez dans la bataille.", + "questMonkeyCompletion": "Vous avez réussi ! Pas de bananes pour ces démons aujourd'hui. Accablés par votre zèle, les singes s'enfuient, paniqués. \"Regarde\", dit @Misceo. \"Ils ont laissé quelques œufs derrière eux.\"

@Leephon sourit. \"Peut-être qu'un singe familier bien entraîné peut t'apporter autant d'aide que la gêne causée par les singes sauvages !\"", + "questMonkeyBoss": "Monstrueux Mandrill", + "questMonkeyDropMonkeyEgg": "Singe (Œuf)", + "questMonkeyUnlockText": "Déverrouille l'achat d’œufs de singe au Marché", + "questSnailText": "L'escargot de la Fange de Pénibilité", + "questSnailNotes": "Vous êtes excité à l'idée de faire une quête dans les oubliettes abandonnées de Pénibilité, mais alors que vous y entrez, vous sentez le sol sous votre pied aspirer vos bottes.Vous regardez le chemin devant vous et voyez des Habiticien·ne·s embourbés dans la vase. @Overomega crie \"Ils ont trop de tâches À Faire ou de Quotidiennes inutiles, et ils sont bloqués sur ce qui n'a pas d'importance ! Sortez-les de là !\"

\"Vous devez trouver la source de cette boue,\" confirme @Pfeffernusse, \"ou les tâches qu'ils ne peuvent accomplir les enliseront à jamais !\"

Vous dégainez votre arme, pataugez dans la gadoue collante... et rencontrez un terrible Escargot de la Fange de Pénibilité.", + "questSnailCompletion": "Vous abattez votre arme sur la grande coquille de l'Escargot, la brisant en deux, et libérant un torrent d'eau. La vase est éliminées et les Habiticien·ne·s autour de vous se réjouissent. \"Regardez !\" dit @Misceo. \"Il y a un petit paquet d’œufs d'escargots dans les dernières flaques de boue.\"", + "questSnailBoss": "Escargot de la Fange de Pénibilité", + "questSnailDropSnailEgg": "Escargot (Œuf)", + "questSnailUnlockText": "Débloque l'achat d’œuf d'Escargot au marché", + "questBewilderText": "The Be-Wilder", + "questBewilderNotes": "The party begins like any other.

The appetizers are excellent, the music is swinging, and even the dancing elephants have become routine. Habiticans laugh and frolic amid the overflowing floral centerpieces, happy to have a distraction from their least-favorite tasks, and the April Fool whirls among them, eagerly providing an amusing trick here and a witty twist there.

As the Mistiflying clock tower strikes midnight, the April Fool leaps onto the stage to give a speech.

“Friends! Enemies! Tolerant acquaintances! Lend me your ears.” The crowd chuckles as animal ears sprout from their heads, and they pose with their new accessories.

“As you know,” the Fool continues, “my confusing illusions usually only last a single day. But I’m pleased to announce that I’ve discovered a shortcut that will guarantee us non-stop fun, without having to deal with the pesky weight of our responsibilities. Charming Habiticans, meet my magical new friend... the Be-Wilder!”

Lemoness pales suddenly, dropping her hors d'oeuvres. “Wait! Don’t trust--”

But suddenly mists are pouring into the room, glittering and thick, and they swirl around the April Fool, coalescing into cloudy feathers and a stretching neck. The crowd is speechless as an monstrous bird unfolds before them, its wings shimmering with illusions. It lets out a horrible screeching laugh.

“Oh, it has been ages since a Habitican has been foolish enough to summon me! How wonderful it feels, to have a tangible form at last.”

Buzzing in terror, the magic bees of Mistiflying flee the floating city, which sags from the sky. One by one, the brilliant spring flowers wither up and wisp away.

“My dearest friends, why so alarmed?” crows the Be-Wilder, beating its wings. “There’s no need to toil for your rewards any more. I’ll just give you all the things that you desire!”

A rain of coins pours from the sky, hammering into the ground with brutal force, and the crowd screams and flees for cover. “Is this a joke?” Baconsaur shouts, as the gold smashes through windows and shatters roof shingles.

PainterProphet ducks as lightning bolts crackle overhead, and fog blots out the sun. “No! This time, I don’t think it is!”

Quickly, Habiticans, don’t let this World Boss distract us from our goals! Stay focused on the tasks that you need to complete so we can rescue Mistiflying -- and hopefully, ourselves.", + "questBewilderCompletion": "The Be-Wilder is DEFEATED!

We've done it! The Be-Wilder lets out a ululating cry as it twists in the air, shedding feathers like falling rain. Slowly, gradually, it coils into a cloud of sparkling mist. As the newly-revealed sun pierces the fog, it burns away, revealing the coughing, mercifully human forms of Bailey, Matt, Alex.... and the April Fool himself.

Mistiflying is saved!

The April Fool has enough shame to look a bit sheepish. “Oh, hm,” he says. “Perhaps I got a little…. carried away.”

The crowd mutters. Sodden flowers wash up on sidewalks. Somewhere in the distance, a roof collapses with a spectacular splash.

“Er, yes,” the April Fool says. “That is. What I meant to say was, I’m dreadfully sorry.” He heaves a sigh. “I suppose it can’t all be fun and games, after all. It might not hurt to focus occasionally. Maybe I’ll get a head start on next year’s pranking.”

Redphoenix coughs meaningfully.

“I mean, get a head start on this year’s spring cleaning!” the April Fool says. “Nothing to fear, I’ll have Habit City in spit-shape soon. Luckily nobody is better than I at dual-wielding mops.”

Encouraged, the marching band starts up.

It isn’t long before all is back to normal in Habit City. Plus, now that the Be-Wilder has evaporated, the magical bees of Mistiflying bustle back to work, and soon the flowers are blooming and the city is floating once more.

As Habiticans cuddle the magical fuzzy bees, the April Fool’s eyes light up. “Oho, I’ve had a thought! Why don’t you all keep some of these fuzzy Bee Pets and Mounts? It’s a gift that perfectly symbolizes the balance between hard work and sweet rewards, if I’m going to get all boring and allegorical on you.” He winks. “Besides, they don’t have stingers! Fool’s honor.”", + "questBewilderCompletionChat": "`The Be-Wilder is DEFEATED!`\n\nWe've done it! The Be-Wilder lets out a ululating cry as it twists in the air, shedding feathers like falling rain. Slowly, gradually, it coils into a cloud of sparkling mist. As the newly-revealed sun pierces the fog, it burns away, revealing the coughing, mercifully human forms of Bailey, Matt, Alex.... and the April Fool himself.\n\n`Mistiflying is saved!`\n\nThe April Fool has enough shame to look a bit sheepish. “Oh, hm,” he says. “Perhaps I got a little…. carried away.”\n\nThe crowd mutters. Sodden flowers wash up on sidewalks. Somewhere in the distance, a roof collapses with a spectacular splash.\n\n“Er, yes,” the April Fool says. “That is. What I meant to say was, I’m dreadfully sorry.” He heaves a sigh. “I suppose it can’t all be fun and games, after all. It might not hurt to focus occasionally. Maybe I’ll get a head start on next year’s pranking.”\n\nRedphoenix coughs meaningfully.\n\n“I mean, get a head start on this year’s spring cleaning!” the April Fool says. “Nothing to fear, I’ll have Habit City in spit-shape soon. Luckily nobody is better than I at dual-wielding mops.”\n\nEncouraged, the marching band starts up.\n\nIt isn’t long before all is back to normal in Habit City. Plus, now that the Be-Wilder has evaporated, the magical bees of Mistiflying bustle back to work, and soon the flowers are blooming and the city is floating once more.\n\nAs Habiticans cuddle the magical fuzzy bees, the April Fool’s eyes light up. “Oho, I’ve had a thought! Why don’t you all keep some of these fuzzy Bee Pets and Mounts? It’s a gift that perfectly symbolizes the balance between hard work and sweet rewards, if I’m going to get all boring and allegorical on you.” He winks. “Besides, they don’t have stingers! Fool’s honor.”", + "questBewilderBossRageTitle": "Beguilement Strike", + "questBewilderBossRageDescription": "When this gauge fills, The Be-Wilder will unleash its Beguilement Strike on Habitica!", + "questBewilderDropBumblebeePet": "Bumblebee (Pet)", + "questBewilderDropBumblebeeMount": "Bumblebee (Mount)", + "questBewilderBossRageMarket": "`The Be-Wilder uses BEGUILEMENT STRIKE!`\n\nOh no! Despite our best efforts, we've gotten distracted by the Be-Wilder’s charming illusions and have forgotten to do some of our Dailies! With a cackling cry, the shining bird beats its wings, raising a swarm of mist around Alex the Merchant. When the fog clears, he has been possessed! “Have some free samples!” he shouts gleefully, and begins to hurl exploding eggs and potions at fleeing Habiticans. Not the most favorable of sales, to be sure.\n\nHurry! Let's stay focused on our Dailies to defeat this monster before it possesses someone else.", + "questBewilderBossRageStables": "`The Be-Wilder uses BEGUILEMENT STRIKE!`\n\nAhh!!! Once again the Be-Wilder has dazzled us into neglecting our Dailies, and now it has attacked Matt the Beast Master! With a swirl of mist, Matt transforms into a terrifying winged creature, and all the pets and mounts howl sadly in their stables. Quickly, stay focused on your tasks to defeat this dastardly distraction!", + "questBewilderBossRageBailey": "`The Be-Wilder uses BEGUILEMENT STRIKE!`\n\nLook out! In the middle of reporting the news, Bailey the Town Crier has been possessed by the Be-Wilder! She lets out an evil, uninformative screech as she rises into the air. Now how will we know what’s going on?\n\nDon't give up... we're so close to defeating this bothersome bird for once and for all!" } \ No newline at end of file diff --git a/common/locales/fr/rebirth.json b/common/locales/fr/rebirth.json index a8fabcc87c..b3a847de58 100644 --- a/common/locales/fr/rebirth.json +++ b/common/locales/fr/rebirth.json @@ -12,7 +12,7 @@ "rebirthInList2": "Les Défis, les Guildes et les appartenances à des Groupes sont conservés.", "rebirthInList3": "Les Gemmes, les paliers de soutien et les niveaux de contributeur sont conservés.", "rebirthInList4": "Les objets obtenus via des Gemmes ou des butins (tels que les familiers et les montures) sont conservés, bien que vous ne puissiez pas y accéder jusqu'à ce que vous les ayez débloqués de nouveau.", - "rebirthInList5": "Limited edition equipment you've purchased can be repurchased, even if its event has ended. To repurchase class-specific equipment, you must first change to the correct class.", + "rebirthInList5": "L'équipement en édition limitée que vous avez acheté peut être de nouveau acheté, même si l’événement en question est terminé. Pour acheter de l'équipement spécifique à une classe, vous devez d'abord passer à cette classe.", "rebirthEarnAchievement": "Vous avez également obtenu un Succès pour avoir commencé une nouvelle aventure !", "beReborn": "Renaître", "rebirthAchievement": "Vous avez commencé une nouvelle aventure ! C'est votre Renaissance n°<%= number %> et le niveau le plus élevé que vous avez atteint est <%= level %>. Pour cumuler ce Succès, commencez votre nouvelle aventure une fois que vous aurez atteint un niveau encore plus élevé !", diff --git a/common/locales/fr/settings.json b/common/locales/fr/settings.json index ce96f3ff20..bc3442435e 100644 --- a/common/locales/fr/settings.json +++ b/common/locales/fr/settings.json @@ -62,7 +62,7 @@ "dangerZone": "Zone de Danger", "resetText1": "ATTENTION ! Cette action va réinitialiser une grand partie de votre compte. Ceci est fortement déconseillé, mais certaines personnes y trouvent une utilité dans les premiers temps, après une courte utilisation de l'application.", "resetText2": "Vous perdrez tous vos niveaux, or et points d'expérience. Toutes vos tâches seront supprimées de façon permanente et vous perdrez tout l'historique associé aux tâches. Vous perdrez tout votre équipement mais il vous sera possible de l'acheter à nouveau, y compris les équipements en Edition Limitée et les Equipements Mystères d'abonné (vous devrez cependant être de la classe correspondante pour racheter les équipements de classe). Vous conserverez votre classe actuelle, ainsi que vos familiers et montures. Vous préférerez peut-être utiliser un Orbe de Renaissance à la place, une option bien plus sûre qui vous permettra de conserver toutes vos tâches.", - "deleteText": "Êtes-vous sûr ? Cela va supprimer votre compte Habitica définitivement et il ne pourra pas être restauré ! Vous serez obligé de créer un nouveau compte pour ré-utiliser Habitica. Les Gemmes sur votre compte ou celles dépensées ne seront pas remboursées. Si vous êtes absolument certain, tapez <%= deleteWord %> dans le champ de texte ci-dessous.", + "deleteText": "Êtes-vous sûr•e ? Cela va supprimer votre compte Habitica définitivement et il ne pourra pas être restauré ! Vous serez obligé de créer un nouveau compte pour ré-utiliser Habitica. Les Gemmes sur votre compte ou celles dépensées ne seront pas remboursées. Si vous êtes absolument certain, tapez <%= deleteWord %> dans le champ de texte ci-dessous.", "API": "API", "APIText": "Copiez ceci pour un usage dans des applications tierces. Considérez toutefois votre Jeton d'API comme l'équivalent d'un mot de passe, et ne le partagez pas publiquement. Votre ID d'utilisateur peut occasionnellement vous être demandé, mais ne publiez jamais votre Jeton d'API là où d'autres peuvent le voir, y compris sur Github.", "APIToken": "Jeton d'API (ceci est un mot de passe - voir l'avertissement ci-dessus !)", @@ -102,7 +102,7 @@ "invitedParty": "Invitation dans une Équipe", "invitedGuild": "Invitation dans une Guilde", "importantAnnouncements": "Votre compte est inactif", - "weeklyRecaps": "Résumé de l'activité de votre compte ces dernières semaines", + "weeklyRecaps": "Résumés de l'activité de votre compte durant la semaine passée (N.B. : ceci est actuellement désactivé suite à des problèmes de performance, mais nous espérons pouvoir rétablir bientôt l'envoi des e-mails !)", "questStarted": "Votre Quête a Commencé", "invitedQuest": "Invitation à une Quête", "kickedGroup": "Éjecté·e du groupe", @@ -114,7 +114,7 @@ "unsubscribeAllEmails": "Cocher pour se désabonner des mails", "unsubscribeAllEmailsText": "En cochant cette case, je certifie comprendre qu'en me désabonnant de tous les mails, Habitica n'aura jamais la possibilité de m'avertir par e-mail de changements importants au niveau du site ou de mon compte.", "correctlyUnsubscribedEmailType": "Correctement désinscrit·e des mails \"<%= emailType %>\".", - "subscriptionRateText": "Récurrent €<%= price %> EUR tous les <%= months %> mois", + "subscriptionRateText": "Récurrent, <%= price %> USD tous les <%= months %> mois", "recurringText": "récurrent", "benefits": "Avantages", "coupon": "Promo", @@ -139,8 +139,8 @@ "buyGemsGoldCap": "Limite augmentée à <%= amount %>", "mysticHourglass": "<%= amount %> Sablier Mystique ", "mysticHourglassText": "Un Sablier Mystique vous permet d'acheter des Sets d'Objets Mystère d'un mois passé.", - "purchasedPlanId": "Récurrent €<%= price %> EUR tous les <%= months %> mois (<%= plan %>)", - "purchasedPlanExtraMonths": "You have <%= months %> months of extra subscription credit.", + "purchasedPlanId": "Récurrent, <%= price %> USD tous les <%= months %> mois (<%= plan %>)", + "purchasedPlanExtraMonths": "Vous avez <%= months %> mois de crédits extra d'abonnement.", "consecutiveSubscription": "Abonnement consécutif", "consecutiveMonths": "Mois consécutifs", "gemCapExtra": "Gemmes disponibles en plus :", diff --git a/common/locales/fr/subscriber.json b/common/locales/fr/subscriber.json index d6d16bc5f2..2744519cc3 100644 --- a/common/locales/fr/subscriber.json +++ b/common/locales/fr/subscriber.json @@ -1,11 +1,11 @@ { "subscription": "Abonnement", "subscriptions": "Abonnements", - "subDescription": "Utilisez l'or pour acheter des gemmes, gagnez des objets-mystères chaque mois, conservez l'historique de vos progrès, doublez le butin quotidien, soutenez les développeurs. Cliquez pour plus d'informations", + "subDescription": "Utilisez l'or pour acheter des gemmes, gagnez des objets-mystères chaque mois, conservez l'historique de vos progrès, doublez le butin quotidien, soutenez les développeurs. Cliquez pour plus d'informations.", "buyGemsGold": "Acheter des Gemmes avec de l'Or", - "buyGemsGoldText": "Alexander le marchand te vendra les gemmes pour <%= gemCost%> or par gemme. Ses envois mensuels sont initialement plafonnés à <%= gemLimit%> gemmes par mois, mais cette limite augmente par 5 gemmes pour tous les trois mois d'abonnement consécutive, jusqu'à un maximum de 50 gemmes par mois!", - "retainHistory": "Retain additional history entries", - "retainHistoryText": "Makes completed To-Dos and task history available for longer.", + "buyGemsGoldText": "Alexander le Marchand vous vendra les gemmes pour <%= gemCost%> or par gemme. Ses envois mensuels sont initialement plafonnés à <%= gemLimit%> gemmes par mois, mais cette limite augmente de 5 gemmes tous les trois mois d'abonnement consécutifs, jusqu'à un maximum de 50 gemmes par mois !", + "retainHistory": "Conservation de plus d'entrées de l'historique", + "retainHistoryText": "Rend les Tâches à Faire effectuées et l'historique des tâches disponibles plus longtemps.", "doubleDrops": "Limite journalière de butin doublée", "doubleDropsText": "Complétez votre écurie encore plus vite !", "mysteryItem": "Des objets uniques tous les mois", @@ -30,7 +30,7 @@ "cancelSub": "Annuler l'abonnement", "canceledSubscription": "Abonnement annulé", "adminSub": "Abonnements Administrateur", - "morePlans": "Plus d'offres
À venir", + "morePlans": "Plus d'offres
À venir", "organizationSub": "Organisation Privée", "organizationSubText": "Les membres de votre organisation participent à Habitica de façon isolée, ce qui évite aux participants d'être distraits.", "hostingType": "Type d'hébergement", @@ -47,7 +47,7 @@ "timeSupportText": "Nous fournirons un support pour la formation, les bugs, l'installation et les demandes de fonctionnalités.", "gameFeatures": "Fonctionnalités de jeu", "gold2Gem": "Gemmes achetables avec de l'or", - "gold2GemText": "Les membres auront la possibilité d'acheter des gemmes avec de l'or, ce qui signifie qu'aucun des participants n'aura besoin d'acheter quoi que ce soit avec de l'argent réel.", + "gold2GemText": "Les membres auront la possibilité d'acheter des gemmes avec de l'or, ce qui signifie qu'aucun des participants n'aura besoin d'acheter quoique ce soit avec de l'argent réel.", "infiniteGem": "Gemmes illimitées du chef", "infiniteGemText": "Nous fournirons aux responsables autant de gemmes qu'ils en auront besoin pour les récompenses de défis, la création de guilde, etc.", "notYetPlan": "Ce plan n'est pas encore disponible, mais cliquez ici pour nous contacter et nous vous tiendrons au courant.", @@ -56,9 +56,9 @@ "sureCancelSub": "Êtes-vous sûr•e de vouloir annuler votre abonnement ?", "subCanceled": "Votre abonnement deviendra inactif le", "buyGemsGoldTitle": "Pour acheter des Gemmes avec de l'Or", - "becomeSubscriber": "Devenir un abonné", + "becomeSubscriber": "Devenir un·e abonné·e", "subGemPop": "Votre abonnement à Habitica vous permet d'acheter chaque mois un certain nombre de Gemmes avec de l'Or. Vous pouvez voir combien de Gemmes sont disponibles à l'achat dans le coin de l'icone des Gemmes.", - "subGemName": "Gemmes d'Abonné", + "subGemName": "Gemmes d'abonné·e", "freeGemsTitle": "Obtenir des Gemmes gratuitement", "maxBuyGems": "Vous avez acheté toutes les gemmes disponibles ce mois-ci. Il y aura un nouvel arrivage le mois prochain, au cours des trois premiers jours. Merci de votre souscription ! ", "buyGemsAllow1": "Vous pouvez acheter", @@ -69,7 +69,7 @@ "timeTravelers": "Voyageurs Temporels", "timeTravelersTitleNoSub": "<%= linkStartTyler %>Tyler<%= linkEnd %> et <%= linkStartVicky %>Vicky<%= linkEnd %>", "timeTravelersTitle": "Mystérieux Voyageurs Temporels", - "timeTravelersPopoverNoSub": "Vous aurez besoin d'un Sablier Mystique pour invoquer les mystérieux Voyageurs Temporels ! <%= linkStart %>Les Abonnés<%= linkEnd %> reçoivent un Sablier Mystique par tranche de trois mois consécutifs d'abonnement. Revenez lorsque vous aurez un Sablier Mystique, et les Voyageurs Temporels vous fourniront un Familier ou une Monture rare, un Ensemble d'Équipement d'Abonné du passé... ou peut-être même du futur.", + "timeTravelersPopoverNoSub": "Vous aurez besoin d'un Sablier Mystique pour invoquer les mystérieux Voyageurs Temporels ! <%= linkStart %>Les abonné·e·s<%= linkEnd %> reçoivent un Sablier Mystique par tranche de trois mois consécutifs d'abonnement. Revenez lorsque vous aurez un Sablier Mystique, et les Voyageurs Temporels vous fourniront un Familier ou une Monture rare, un Ensemble d'Équipement d'abonné·e du passé... ou peut-être même du futur.", "timeTravelersPopover": "Vous avez un Sablier Mystique! C'est une joie de voyager dans le temps pour vous! Veuillez choisir le familier, la monture ou Set d'Objets Mystère que vous désirez. Vous trouverez une liste d'objets passés ici! Si ceux-ci ne vous satisfont pas, peut-être seriez vous intéressés par l'un de nos convoités Set d'objets Steampunk?", "timeTravelersAlreadyOwned": "Félicitations ! Vous possédez déjà tout ce que les Voyageurs Temporels ont à offrir. Merci de soutenir le site !", "mysticHourglassPopover": "Un Sablier Mystique vous permet d'acheter certains objets dont l'achat est limité dans le temps, comme les ensembles d'objets Mystère des mois précédents et des récompenses passées de Boss mondiaux.", @@ -96,7 +96,9 @@ "mysterySet201510": "Ensemble du Gobelin Cornu", "mysterySet201511": "Ensemble du Guerrier de Bois", "mysterySet201512": "Ensemble de la Flamme Hivernale", - "mysterySet201601": "Champion of Resolution Set", + "mysterySet201601": "Ensemble du Champion de la Résolution", + "mysterySet201602": "Ensemble du Bourreau des Cœurs ", + "mysterySet201603": "Ensemble Chanceux du Trèfle à Quatre Feuilles", "mysterySet301404": "Ensemble Steampunk de Base", "mysterySet301405": "Ensemble D'accessoire Steampunk", "mysterySetwondercon": "Wondercon", diff --git a/common/locales/fr/tasks.json b/common/locales/fr/tasks.json index e67fc5d200..1458576d6d 100644 --- a/common/locales/fr/tasks.json +++ b/common/locales/fr/tasks.json @@ -32,7 +32,7 @@ "mental": "Mental", "otherExamples": "Par exemple, suivis professionnels, passe-temps, finances, etc.", "progress": "Progrès", - "daily": "Quotidien", + "daily": "Quotidienne", "dailies": "Quotidiennes", "newDaily": "Nouvelle Quotidienne", "newDailyBulk": "Nouvelles tâches Quotidiennes (une par ligne)", @@ -89,10 +89,10 @@ "fortifyPop": "Fait revenir toutes les tâches à une valeur neutre (couleur jaune) et restaure tous les points de santé que vous aviez perdus.", "fortify": "Fortification", "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 !", - "confirmFortify": "Est tu sure?", - "sureDelete": "Est tu sure que tu veux effacer le <%= taskType %> avec le text \"<%= taskText %>\"?", + "confirmFortify": "Êtes-vous sûr•e ?", + "sureDelete": "Êtes-vous sûr•e de vouloir effacer cette <%= taskType %> avec le texte \"<%= taskText %>\"?", "streakCoins": "Bonus de combo !", - "pushTaskToTop": "Déplace la tâche en tête de liste. Maintenez ctrl ou cmd enfoncé pour la déplacer en queue de liste. ", + "pushTaskToTop": "Déplace la tâche en tête de liste. Maintenez ctrl ou cmd enfoncé pour la déplacer en fin de liste. ", "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 f73251bad7..9119d1f48e 100644 --- a/common/locales/he/backgrounds.json +++ b/common/locales/he/backgrounds.json @@ -133,18 +133,32 @@ "backgroundSnowySunriseNotes": "הבט בזריחה המושלגת.", "backgroundWinterTownText": "עיירה חורפית", "backgroundWinterTownNotes": "התרוצץ בעיירה החורפית.", - "backgrounds012016": "סט 20: שוחרר בינואר 2016", + "backgrounds012016": "סט 20: פורסם בינואר 2016", "backgroundFrozenLakeText": "אגם קפוא", "backgroundFrozenLakeNotes": "החלק על אגם קפוא.", "backgroundSnowmanArmyText": "צבא איש-שלג", "backgroundSnowmanArmyNotes": "הובל צבא של איש-שלג.", "backgroundWinterNightText": "ליל חורף", "backgroundWinterNightNotes": "צפה בכוכבים של ליל חורף.", - "backgrounds022016": "SET 21: Released February 2016", - "backgroundBambooForestText": "Bamboo Forest", - "backgroundBambooForestNotes": "Stroll through the Bamboo Forest.", - "backgroundCozyLibraryText": "Cozy Library", - "backgroundCozyLibraryNotes": "Read in the Cozy Library.", - "backgroundGrandStaircaseText": "Grand Staircase", - "backgroundGrandStaircaseNotes": "Stride down the Grand Staircase." + "backgrounds022016": "סט 21: פורסם בפברואר 2016", + "backgroundBambooForestText": "יער במבוק", + "backgroundBambooForestNotes": "שוטטו דרך יער הבמבוק", + "backgroundCozyLibraryText": "סיפרייה חמימה", + "backgroundCozyLibraryNotes": "קיראו בספרייה החמימה.", + "backgroundGrandStaircaseText": "גרם מדרגות מפואר", + "backgroundGrandStaircaseNotes": "צעדו במורד גרם המדרגות המפואר.", + "backgrounds032016": "סט 22: פורסם במרץ 2016", + "backgroundDeepMineText": "מיכרה עמוק", + "backgroundDeepMineNotes": "מיצאו מתכות יקרות במכרה עמוק.", + "backgroundRainforestText": "יער גשם", + "backgroundRainforestNotes": "צאו להרפתקאה ביער הגשם.", + "backgroundStoneCircleText": "מעגל אבנים", + "backgroundStoneCircleNotes": "הטילו כשפים במעגל אבנים.", + "backgrounds042016": "SET 23: Released April 2016", + "backgroundArcheryRangeText": "Archery Range", + "backgroundArcheryRangeNotes": "Practice on the Archery Range.", + "backgroundGiantFlowersText": "Giant Flowers", + "backgroundGiantFlowersNotes": "Frolic atop Giant Flowers.", + "backgroundRainbowsEndText": "End of the Rainbow", + "backgroundRainbowsEndNotes": "Discover gold at the End of the Rainbow." } \ No newline at end of file diff --git a/common/locales/he/character.json b/common/locales/he/character.json index 8c6110014e..4549c4585b 100644 --- a/common/locales/he/character.json +++ b/common/locales/he/character.json @@ -1,7 +1,7 @@ { "statsAch": "תכונות והישגים", "profile": "פרופיל", - "avatar": "תמונת פרופיל", + "avatar": "התאם דמות", "other": "אחר", "fullName": "שם מלא", "displayName": "שם תצוגה", @@ -34,6 +34,7 @@ "beard": "זקן", "mustache": "שפם", "flower": "פרח", + "wheelchair": "Wheelchair", "basicSkins": "עורות בסיסיים", "rainbowSkins": "עורות בצבעי הקשת", "pastelSkins": "עורות בצבעי פסטל", @@ -83,7 +84,7 @@ "allocateInt": "נקודות שהוקצו לתבונה", "allocateIntPop": "הוסף נקודה לתבונה שלך", "noMoreAllocate": "עכשיו כשהגעת לרמה 100, לא ניתן להרוויח עוד נקודות תכונה. אתה תוכל להמשיך ולעלות ברמה, או להתחיל הרפתקאה חדשה ברמה 1 ע״י שימוש ב כדור הלידה מחדש, זמין כעת בחינם בשוק.", - "stats": "תכונות", + "stats": "תכונות דמות", "strength": "כוח", "strengthText": "כוח מגביר את הסיכוי ל\"פגיעות חמורות\" ואת הסיכוי לקבלת מהם זהב, ניסיון, וחפצי ערך. הוא גם מסייע לגרום נזק למפלצות האויב.", "constitution": "חוסן", @@ -136,7 +137,7 @@ "respawn": "היוולד מחדש!", "youDied": "אתה מת!", "dieText": "איבדת דרגה, את כל הזהב שלך, ופריט ציוד ראנדומאלי. קום, שחקן, ונסה שוב! השתלט על ההרגלים הרעים, היה דרוך בעשיית המטלות היומיות, והתרחק ממוות באמצעות שיקוי בריאות, במידה ותצטרך.", - "sureReset": "אתה בטוח בזה? זה יאפס את מקצוע הדמות שלך ואת הנקודות שהשקעת (תקבל את כולן חזקה לחלוקה מחדש), ויעלה לך 3 אבני חן", + "sureReset": "האם אתם בטוחים? זה יאפס את מקצוע הדמות שלכם ואת הנקודות שהוקצו (תקבלו את כולן בחזרה - מוקצות מחדש), ויעלה 3 אבני-חן.", "purchaseFor": "לרכוש בתמורה ל <%= cost %> אבני חן?", "notEnoughMana": "אין לך מספיק מאנה.", "invalidTarget": "יעד לא חוקי", @@ -160,5 +161,8 @@ "str": "כוח", "con": "חוסן", "per": "תפיסה", - "int": "תבונה" + "int": "תבונה", + "showQuickAllocation": "הצגת הקצאת תכונות", + "hideQuickAllocation": "הסתרת הקצאת תכונות", + "quickAllocationLevelPopover": "כל דרגה מקנה לכם נקודה אחת לטובת תכונה כרצונכם. תוכלו לעשות זאת ידנית, או לתת למשחק להחליט בשבילכם באמצעות אופציית הקצאת הנקודות האוטומטית שניתן למצוא תחת משתמש -> תכונות דמות." } \ No newline at end of file diff --git a/common/locales/he/communityguidelines.json b/common/locales/he/communityguidelines.json index e1bfba0c67..26c72c9cd5 100644 --- a/common/locales/he/communityguidelines.json +++ b/common/locales/he/communityguidelines.json @@ -2,7 +2,7 @@ "iAcceptCommunityGuidelines": "אני מסכים לציית לחוקים הקהילתיים", "tavernCommunityGuidelinesPlaceholder": "תזכורת ידידותית: זהו צ׳ט המיועד לכל הגילאים. אנא שימרו על תוכן ושפה ראויים! במידה ויש לכם שאלות נוספות, ניתן להיעזר בחוקים הקהילתיים שבתחתית העמוד.", "commGuideHeadingWelcome": "ברוך הבא להאביטיקה!", - "commGuidePara001": "ברכות, הרפתקן! ברוך בואך להאביטיקה - ארץ הפרודקטיביות, החיים הבריאים והגריפון המשתולל לעיתים. יש לנו קהילה מסבירת פנים מלאה באנשים השמחים לעזור ולתמוך זו בזה בדרך לשיפור עצמי.", + "commGuidePara001": "ברכות, הרפתקן! ברוך בואך להאביטיקה - ארץ הפרודקטיביות, החיים הבריאים והגריפון המשתוללת לעיתים. יש לנו קהילה מסבירת פנים מלאה באנשים השמחים לעזור ולתמוך זו בזה בדרך לשיפור עצמי.", "commGuidePara002": "כדי לשמור על כל חברי הקהילה בטוחים, שמחים, ופרודקטיביים, יש לנו כמה הנחיות. בררנו אותן בקפידה כדי שיהיו ידידותיים וקלים לקריאה לכל הניתן. אנא, הקדישו את הזמן לעיין בהם.", "commGuidePara003": "ההנחיות הללו תקפות לגבי כל המרחבים החברתיים שאנו משתמשים בהם, הכוללים (בין היתר) את Trello, Github, Transifex ועמוד הוויקיא (בקיצור וויקי). מדי פעם מצבים בלתי צפויים יצוצו לפתע בדרכנו, כמו מחרחרי ריב זדוניים או בעלי אוב מרושעים. כאשר דבר מעין זה קורה, העורכים רשאים להגיב ע\"י עריכת ההנחיות הללו כדי לשמור על הקהילה בטוחה מפני איומים חדשים. אל חשש: דוברת העיר שלנו, באילי, תודיע לכם על כל שינוי בהנחיות.", "commGuidePara004": "כעת הכינו את עטי הנוצה וגווילי הקלף שלכם לכתיבת הערות, והבה נתחיל!", @@ -29,7 +29,7 @@ "commGuidePara013": "בקהילה גדולה כמו האביטיקה, משתמשים באים והולכים. לעיתים עורכים צריכים להניח את אצטלתם האצילה ולנוח. הבאים הם עורכים בדימוס, אשר אינם פעילים יותר כעורכים, אך עדיין ברצוננו לציין את תרומתם!", "commGuidePara014": "עורכים בדימוס:", "commGuideHeadingPublicSpaces": "מרחבים ציבוריים בהאביטיקה", - "commGuidePara015": "בהאביטיקה שני סוגים של אזורים קהילתיים: ציבוריים ופרטיים. איזורים ציבוריים כוללים את הפונדק, גילדות ציבוריות, GitHub, Trello, ואתר הוויקי. איזורים פרטיים כוללים גילדות פרטיות, דיבורי חבורה והודעות אישיות.", + "commGuidePara015": "להאביטיקה שני סוגי מרחבים: פומבי, ופרטי. מרחבים פומביים כוללים את הפונדק, גילדות פומביות, גיטהאב, Trello, והוויקי. מרחבים פרטיים כוללים גילדות פרטיות, שיחת חבורה, והודעות פרטיות. כל השמות המוצגים חייבים לתאום את הנחיות המרחבים הפומביים. כדי לשנות את השם המוצג שלגם, לכו באתר למשתמש > פרופיל ולחצו על כפתור העריכה.", "commGuidePara016": "בעודך נודד בין המרחבים הציבוריים של האביטיקה, ישנם מספר חוקים שנועדו לשמור את כולם בטוחים ומאושרים. אלו אמורים להיות קלים לשמירה עבור הרפתקן כמוך!", "commGuidePara017": "כבדו זה את זה. היו אדיבים, רגישים, חברותיים וששים לעזור. זכרו: האביטיקנים באים מכל המסגרות והיו להם חוויות שונות. זהו אחד הגורמים לכך שHabitica מגניב כל כך! בניית קהילה פירושה לכבד ולאהוב את השונה בינינו כמו גם את המשותף. הנה כמה דרכים קלות לכבד זה את זה:", "commGuideList02A": "ציית/י לכל התנאים והסעיפים.", @@ -40,8 +40,8 @@ "commGuideList02F": "ציית מיד לכל בקשה של העורכים להפסיק דיון או להעבירו לגילדת ״הפינה האחורית״. מילים אחרונות, יריות סיכום, ושנינויות מסכמות, כולן יועברו באדיבות ל\"שולחנך\" בגילדת ״הפינה האחורית״, אם הדבר יורשה.", "commGuideList02G": "קח את הזמן להרהר במקום לענות בכעס אם מישהו אמר לך שאמירה שלך גרמה לו לאי נוחות. ישנו כוח עצום ביכולת להתנצל בכנות בפני מישהו. אם אתם מרגישים שתגובתם לא הייתה הולמת, דברו עם עורך במקום להתעמת איתם בפומבי.", "commGuideList02H": "יש לדווח למנחים לגבי שיחות שנויות במחלוקת. אם אתם מרגישים ששיחה מתלהטת, מערבת רגשות יתר על המידה, או נעשית פוגענית - נתקו מגע. במקום זאת, שלחו דואר לleslie@habitica.com כדי ליידע אותנו על כך. זה התפקיד שלנו לוודא שאתם בטוחים.", - "commGuideList02I": " אין להציף את הרשת בספאם. ספאם יכול לכלול, בין היתר: פרסום של אותה תגובה או שאלה במקומות רבים, פירסום קישורים ללא הסבר או הקשר, פרסום של תוכן לא הגיוני, או פרסום הודעות רבות ברצף. בקשה חוזרת ונשנית לאבני חן או מנוי מתנה יכולים גם כן להיחשב כספאם.", - "commGuidePara019": "במקומות פרטיים למשתמשים יש חופש רב יותר לדון בנושאים שעל ליבם, אך גם בהם יש לשמור על תנאי השימוש, כולל המנעות מפרסום תוכן מפלה, אלים, או מאיים.", + "commGuideList02I": "אל תספימו. הספמה כוללת, אך לא מוגבלת ל: שליחת אותה הודעה או שאלה במספר מקומות, שליחת קישורים בלי הסבר או הקשר, שליחת הודעות חסרות משמעות, או השארת הודעות רבות ברצף. בקשה של אבני חן או מנוי במרחב שיחה כלשהו או בהודעה פרטית גם היא תחשב להספמה.", + "commGuidePara019": "במרחבים פרטיים, למשתתפים יש חופש רב יותר לדון באילו נושאים שירצו, אך עדיין חל איסור לעבור על התנאים והמגבלות, ובפרט - שליחת הודעות מפלות, אלימות, או מאיימות. שימו לב שכיוון ששמות אתגרים מופיעים בפרופיל הפומבי של המנצח, כל שמות האתגרים חייבים לעמוד בהנחיות המרחבים הפומביים, אפילו אם הם מופיעים במרחב פרטי.", "commGuidePara020": "ישנן כמה הנחיות נוספות בנוגע להודעות פרטיות (PMs). אם מישהו חסם אותך, אל תיצור איתו קשר באמצעים אחרים בבקשה שיסיר את החסימה. בנוסף, אל תשיב לאדם המבקש תמיכה בהודעה פרטית, אלא שתף את תשובתך עם הקהילה כולה (דבר שתורם הרבה יותר). דבר אחרון, אל תשלח הודעות פרטיות בבקשה לאבני חן או מנוי מתנה, שכן זה עלול להיחשב כספאם.", "commGuidePara021": "בנוסף לכך, לאיזורים פרטיים מסויימים בהאביטיקה יש כללים נוספים.", "commGuideHeadingTavern": "הפונדק", @@ -64,7 +64,7 @@ "commGuideList03A": "הלוח הראשי הוא מקום לבקש ולהשפיע על תכונות האתר.", "commGuideList03B": "הלוח הנייד הוא מקום לבקש ולהשפיע על תכונות האפליקציה לטלפון הנייד.", "commGuideList03C": "לוח אומנות הפיקסלים הוא מקום לדון ולהציע ציורים עבור האתר.", - "commGuideList03D": "לוח המשימות הוא מקום לדון ולהציע משימות עבור האתר.", + "commGuideList03D": "לוח ההרפתקאות הוא מקום לדון ולהציע משימות עבור האתר.", "commGuideList03E": "לוח הוויקי הוא מקום לדון, לשפר ולבקש תוכן נוסף בוויקי של האתר.", "commGuidePara042": "על כל אלו חלים חוקי המרחבים הציבוריים, וגם חוקים ספציפיים משלהם. על משתמשים להימנע מסטייה מהנושא בלוחות או הכרטיסים. סמכו עלינו, הלוחות האלו נהיים צפופים מדי גם ככה! שיחות ארוכות צריכות לעבור לגילדת ״הפינה האחורית״.", "commGuideHeadingGitHub": "גיטהאב", @@ -163,7 +163,7 @@ "commGuideLink02": "גילדת הפינה האחורית", "commGuideLink02description": "גילדה לדיונים ארוכים או דיון בנושאים רגישים.", "commGuideLink03": "עמוד הוויקי", - "commGuideLink03description": "אוסף המידע הגדול ביותר אודות Habitica.", + "commGuideLink03description": "אוסף המידע הגדול ביותר אודות האביטיקה.", "commGuideLink04": "GitHub", "commGuideLink04description": "הנועד לדיווח על באגים או עזרה בתיכנות קוד.", "commGuideLink05": "ה Trello הראשי", @@ -172,7 +172,7 @@ "commGuideLink06description": "להגשת בקשות לגימיקים חדשים בסלולר.", "commGuideLink07": "ה Trello האומנותי", "commGuideLink07description": "להגשת אומנות פיקסלים.", - "commGuideLink08": "Trello המשימות", + "commGuideLink08": "Trello ההרפתקאות", "commGuideLink08description": "להגשת סיפורי משימה.", "lastUpdated": "עדכון אחרון" } \ No newline at end of file diff --git a/common/locales/he/content.json b/common/locales/he/content.json index ade388d8d5..ae6e0da566 100644 --- a/common/locales/he/content.json +++ b/common/locales/he/content.json @@ -31,7 +31,7 @@ "dropEggCactusAdjective": "קוצני", "dropEggBearCubText": "דובון", "dropEggBearCubMountText": "דוב", - "dropEggBearCubAdjective": "מתחבק", + "dropEggBearCubAdjective": "אמיץ", "questEggGryphonText": "גריפין", "questEggGryphonMountText": "גריפין", "questEggGryphonAdjective": "גאה", @@ -46,7 +46,7 @@ "questEggEggAdjective": "צבעונית", "questEggRatText": "עכברוש", "questEggRatMountText": "עכברוש", - "questEggRatAdjective": "מלוכלך", + "questEggRatAdjective": "חברותי", "questEggOctopusText": "תמנון", "questEggOctopusMountText": "תמנון", "questEggOctopusAdjective": "חלקלק", @@ -107,9 +107,12 @@ "questEggSabretoothText": "נמר ניב-חרב", "questEggSabretoothMountText": "נמר ניב-חרב", "questEggSabretoothAdjective": "פראי", - "questEggMonkeyText": "Monkey", - "questEggMonkeyMountText": "Monkey", - "questEggMonkeyAdjective": "a mischievous", + "questEggMonkeyText": "קוף", + "questEggMonkeyMountText": "קוף", + "questEggMonkeyAdjective": "שובב", + "questEggSnailText": "חילזון", + "questEggSnailMountText": "חילזון", + "questEggSnailAdjective": "איטי אבל יציב", "eggNotes": "מצא שיקוי הבקעה לשפוך על ביצה זו, והיא תהפוך ל<%= eggText(locale) %> <%= eggAdjective(locale) %>.", "hatchingPotionBase": "רגיל", "hatchingPotionWhite": "לבן", diff --git a/common/locales/he/contrib.json b/common/locales/he/contrib.json index c1dc8b5356..f6ea181fb3 100644 --- a/common/locales/he/contrib.json +++ b/common/locales/he/contrib.json @@ -1,6 +1,6 @@ { "friend": "חבר", - "friendFirst": "כאשר תגיש את התרומה הראשונה שלך, תקבל את תג התורמים של Habitica. תג השם שלך, בשיחות הפונדק, יגלה בגאווה את היותך תורם. כשכר עבור טרחתך, תקבל 3 אבני חן.", + "friendFirst": "כאשר תגישו את התרומה הראשונה שלכם, תקבלו את תג התורמים של האביטיקה. תג השם שלכם, בשיחות הפונדק, יגלה בגאווה את היותכם תורמים. כשכר עבור טרחתכם, תקבלו 3 אבני חן.", "friendSecond": "כאשר תגיש את תרומתך השנייה ,שריון הקריסטל יהיה זמין עבורך בחנות הפרסים . כשכר עבור טרחתך, תקבל גם 3 אבני חן.", "elite": "עילאי", "eliteThird": "כאשר תגיש את תרומתך השלישית ,קסדת הקריסטל תהיה זמינה עבורך בחנות הפרסים. כשכר עבור טרחתך, תקבל גם 3 אבני חן.", @@ -16,9 +16,9 @@ "staff": "חבר צוות", "heroic": "הירואי", "heroicText": "הרמה ההירואית כוללת את אנשי צוות האתר ואנשים ברמת צוות. אם יש לך את התואר הזה, כנראה שנבחרת למשימה (או נשכרת לכך!)", - "npcText": "דב\"שים גיבו את הקיקסטארטר של Habitica ברמה הגבוהה ביותר. תוכל למצוא את האווטארים שלהם משגיחים על האתר!", + "npcText": "דב\"שים גיבו את הקיקסטארטר של האביטיקה ברמה הגבוהה ביותר. תוכלו למצוא את האווטארים שלהם משגיחים על האתר!", "modalContribAchievement": "הישג תורמים!", - "contribModal": "<%= name %>, אתה אדם אדיר! זכית ברמת תורם <%= level %> עבור עזרתך לHabitica. ראה", + "contribModal": "<%= name %>, את/ה אדיר/ה! זכיתם ברמת תורם <%= level %> עבור עזרתכם להאביטיקה. ראו", "contribLink": "אילו פרסים הרווחת עבור תרומתך!", "contribName": "תורם/ת", "contribText": "תרם/ה להאביטיקה (קוד, עיצוב, אמנות, עצה משפטית, מסמכים וכיוב'). רוצה תג כזה לעצמך?", @@ -28,11 +28,11 @@ "helped": "עזר לhabitRPG לגדול", "helpedText1": "עזר לHabitica לגדול ע\"י מילוי", "helpedText2": "הסקר הזה", - "hall": "היכל", + "hall": "היכל הגיבורים", "contribTitle": "תואר תורם (למשל \"נפח\")", "contribLevel": "רמת תורם", "contribHallText": "1-7 לתורמים רגילים, 8 לעורכים, 9 לחברי צוות. רמה זו קובעת אילו חפצים, חיות מחמד וחיות רכיבה זמינות לכם. בנוסף, רמה זו קובעת גם את צבע תגית השם שלכם. בעלי רמות 8 ו-9 מקבלים מעמד של מנהל באופן אוטומטי.", - "hallHeroes": "היכל הגיבורים", + "hallContributors": "היכל התורמים", "hallPatrons": "היכל נותני החסות", "rewardUser": "הענק פרס למשתמש", "UUID": "UUID", @@ -60,5 +60,5 @@ "blurbGuildsPage": "גילדות הן קבוצות צ׳ט על בסיס תחומי עניין משותפים, אשר נוצרו ע״י שחקנים - עבור שחקנים. דפדף ברשימת הגילדות והצטרף לאלו שמעניינות אותך!", "blurbChallenges": "אתגרים נוצרים ע״י עמיתיך השחקנים. הצטרפות לאתגר תוסיף את מטלות האתגר לעמוד המשימות שלך. הניצחון באתגר יתן לך תג הישג ולעיתים רבות גם פרס של אבני חן!", "blurbHallPatrons": "זהו היכל התומכים, היכן שאנו מעניקים כבוד לשחקנים האדירים שתמכו ב״Kickstarter״ המקורי של האתר. אנו מודים להם שהביאו את האביטיקה לחיים!", - "blurbHallHeroes": "זהו היכל הגיבורים, המקום שבו מוקירים תרומות מקור-פתוח להאביטיקה. אם דרך קוד, אומנות, מוסיקה, כתיבה, ואפילו בעבור ״רק״ עזרה - זוכים באבני-חן, ציוד ייחודי, ותארים נחשקים. תוכלו לתרום להאביטיקה גם אתם! קראו עוד כאן." + "blurbHallContributors": "זהו היכל התורמים, המקום שבו עושים כבוד לתורמים במקור פתוח להאביטיקה. בין אם מדובר בקוד, עיצוב, מנגיה, כתיבה, או אפילו רק עזרה באופן כללי, הם הרוויחו אבני חן, ציוד אקסקלוסיבי, ותארים נחשבים. תוכלו לתרום גם אתם להאביטקיה! קיראו על כך עוד כאן." } \ No newline at end of file diff --git a/common/locales/he/defaulttasks.json b/common/locales/he/defaulttasks.json index 644345d660..6f6b58d014 100644 --- a/common/locales/he/defaulttasks.json +++ b/common/locales/he/defaulttasks.json @@ -6,7 +6,7 @@ "defaultHabit3Text": "שימוש במדרגות / מעלית (לחץ על העיפרון לעריכה)", "defaultHabit3Notes": "הרגלים טובים או רעים לדוגמה: +\\- השתמשתי במדרגות\\במעלית, +\\- שתיתי מים\\סודה", "defaultTodoNotes": "אתה יכול להשלים את המשימה, לערוך או למחוק אותה.", - "defaultTodo1Text": "הצטרף ל Habitica (סמן אותי!)", + "defaultTodo1Text": "הצטרפו להאביטיקה (סמנו אותי!)", "defaultReward1Text": "הפסקה של 15 דקות", "defaultReward1Notes": "פרסים מותאמים אישית יכולים להיות מגוון רחב של דברים. לדוגמא, אנשים מסוימים נמנעים מצפייה בתכניות האהובות עליהם עד שצברו מספיק זהב כדי \"להרשות זאת לעצמם\".", "defaultTag1": "בוקר", diff --git a/common/locales/he/faq.json b/common/locales/he/faq.json index 29ae91099e..d1f7906500 100644 --- a/common/locales/he/faq.json +++ b/common/locales/he/faq.json @@ -39,6 +39,6 @@ "faqQuestion12": "כיצד אני נלחם באוייב עולמי?", "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": "If you have a question that isn't on this list or on the [Wiki FAQ](http://habitica.wikia.com/wiki/FAQ), 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 or on the [Wiki FAQ](http://habitica.wikia.com/wiki/FAQ), come ask in the [Newbies Guild](https://habitica.com/#/options/groups/guilds/5481ccf3-5d2d-48a9-a871-70a7380cee5a)! We're happy to help." + "iosFaqStillNeedHelp": "אם יש לכם שאלה שאינה מופיעה ברשימה או ב[וויקי שאלות נפוצות](http://habitica.wikia.com/wiki/FAQ), בואו לשאול בשיחת הפונדק תחת תפריט > פונדק! נשמח לעזור.", + "webFaqStillNeedHelp": "אם יש לכם שאלות שאינן מופיעות ברשימה הזו או ב[וויקי שאלות נפוצות](http://habitica.wikia.com/wiki/FAQ), בואו לשאול ב[גילדת הצעירים](https://habitica.com/#/options/groups/guilds/5481ccf3-5d2d-48a9-a871-70a7380cee5a)! נשמח לעזור." } \ No newline at end of file diff --git a/common/locales/he/front.json b/common/locales/he/front.json index 77dbd26037..a212e85da1 100644 --- a/common/locales/he/front.json +++ b/common/locales/he/front.json @@ -88,7 +88,7 @@ "landingp2header": "סיפוק מיידי", "landingp3": "בכל פעם שאתה מתענג על הרגל רע או לא מסיים את המטלות שלך, אתה מאבד בריאות. אם הבריאות שלך יורדת נמוך מידי, תפסיד חלק מההתקדמות שכבר עשית. ע״י החצנה של השלכות מיידיות, האביטיקה יכולה לעזור לשבור הרגלים רעים ומעגלי דחיינות לפני שהם גורמים לבעיות בעולם האמיתי.", "landingp3header": "השלכות", - "landingp4": "עם קהילה פעילה, האביטיקה מספקת דין וחשבון שתצטרכו כדי להשאר על משימות. עם מערכת ה״חבורה״, תוכלו להביא קבוצה של חבריכם הקרובים כדי לעודד אתכם להמשיך. מערכת הגילדות מאפשרת לכם למצוא אנשים עם תחומי עיניין דומים או מכשולים, כדי שתוכלו לחלוק את היעדים ולהחליף טיפים לגבי איך להתגבר על הבעיות שלכם. בהאביטיקה, משמעות הקהילה היא שיש לכם גם את התמיכה וגם את האחריות שתצטרכו כדי להצליח.", + "landingp4": "עם קהילה פעילה, האביטיקה מספקת מחוייבות שתצטרכו בשביל להשלים משימות. עם מערכת ה״חבורה״, תוכלו להביא קבוצה של חבריכם הקרובים כדי לעודד אתכם להמשיך. מערכת הגילדות מאפשרת לכם למצוא אנשים עם תחומי עיניין דומים או מכשולים, כדי שתוכלו לחלוק את היעדים ולהחליף טיפים לגבי איך להתגבר על הבעיות שלכם. בהאביטיקה, משמעות הקהילה היא שיש לכם גם את התמיכה וגם את האחריות שתצטרכו כדי להצליח.", "landingp4header": "קהילתיות", "leadText": "האביטיקה היא אפליקציה חינמית לבניית הרגלים והתייעלות, שמתייחסת לחיים האמיתיים שלך כמו למשחק. האביטיקה יכולה לעזור לך להשיג את המטרות שלך ולהיות בריא, חרוץ, ומאושר.", "login": "התחבר", @@ -124,10 +124,10 @@ "motivate1": "בנה לעצמך מוטיבציה לעשות כל דבר שתרצה.", "motivate2": "תהפוך למאורגן. תבנה מוטיבציה. תשיג זהב.", "passConfirm": "אמת/י סיסמה", - "passMan": "In case you are using a password manager (like 1Password) and have problems logging in, try typing your username and password manually.", + "passMan": "במקרה שאתם משתמשים במנהל סיסמאות (כמו 1Password) ויש לכם בעיות להתחבר, נסו להקליד את שם המשתמש והסיסמה שלכם ידנית.", "password": "סיסמא", "playButton": "שחק", - "playButtonFull": "שחק ב-Habitica", + "playButtonFull": "שחקו בהאביטיקה", "presskit": "ערכה לתקשורת", "presskitDownload": "הורד את כל התמונות:", "presskitText": "תודה רבה על ההתעניינות בהאביטיקה! התמונות הבאות יכולות לשמש עבור כתבות או סרטונים אודות האתר. למידע נוסף, ניתן ליצור קשר עם סיינה לזלי בכתובת leslie@habitica.com.", @@ -139,7 +139,7 @@ "questByline1": "משחק עם חברים שומר עליך אחראי למעשים שלך.", "questByline2": "תוכלו לאתגר זה את זה להשלמת מטרות משמעותיות יחד!", "questHeading1": "הילחם במפלצות עם החברים שלך!", - "questHeading2": "אם תתעצל בביצוע משימותיך, כולם ייפגעו!", + "questHeading2": "אם תתעצלו בביצוע משימותיכם, כולם ייפגעו!", "register": "הירשם", "rewardByline1": "השקיעו זהב ברכישת פרסים וירטואליים או אמיתיים.", "rewardByline2": "פרסים מידיים שומרים על המוטיבציה שלך!", @@ -165,7 +165,7 @@ "teams": "צוותים", "terms": "תנאי השימוש", "testimonialHeading": "מה אנשים אומרים...", - "localStorageTryFirst": "If you are experiencing problems with Habitica, click the button below to clear local storage for this website (other websites will not be affected). You will need to log in again after doing this, so first be sure that you know your log-in details, which can be found at Settings -> <%= linkStart %>Site<%= linkEnd %>.", + "localStorageTryFirst": "אם אתם חווים תקלות בהאביטיקה, לחצו על הכפתור למטה כדי לנקות את האחסון המקומי של אתר זה (אתרים אחרים לא יושפעו). תצטרכו להתחבר שוב לאחר מכן, לכן ודאו לפני כן שאתם יודעים מהם פרטי הכניסה שלכם, שיכולים להמצא בהגדרות -> <%= linkStart %>אתר<%= linkEnd %>.", "localStorageTryNext": "אם הבעיה נמשכת, אנא <%= linkStart %>דווחו על באג<%= linkEnd %> - אם עדיין לא עשיתם זאת.", "localStorageClearing": "מנקים את האחסון המקומי", "localStorageClearingExplanation": "האחסון המקומי של הדפדפן שלכם מתנקה. אתם תנותקו ותועברו לדף הבית. אנא המתינו.", @@ -195,15 +195,15 @@ "landingCopy3": "הצטרפו ליותר מ-<%= userCount %> אנשים שנהנים בזמן שהם משפרים את חייהם.", "alreadyHaveAccount": "כבר יש לי חשבון!", "getStartedNow": "התחילו עכשיו!", - "altAttrNavLogo": "Habitica home", + "altAttrNavLogo": "בית האביטיקה", "altAttrLifehacker": "Lifehacker", - "altAttrNewYorkTimes": "The New York Times", + "altAttrNewYorkTimes": "הניו יורק טיימס", "altAttrMakeUseOf": "MakeUseOf", - "altAttrForbes": "Forbes", + "altAttrForbes": "פורבס", "altAttrCnet": "CNet", "altAttrFastCompany": "Fast Company", - "altAttrKickstarter": "Kickstarter", - "altAttrDiscover": "Discover Magazine", + "altAttrKickstarter": "קיקסטארטר", + "altAttrDiscover": "מגזין דיסקאבר", "altAttrFrabjabulous": "Frabjabulous:", "altAttrAlexandraSo": "_AlexandraSo_:", "altAttrEvaGantz": "EvaGantz:", @@ -220,7 +220,7 @@ "altAttrSkysailor": "skysailor:", "altAttrIonic": "Ionic", "altAttrWebstorm": "WebStorm", - "altAttrGithub": "GitHub", + "altAttrGithub": "גיטהאב", "altAttrTrello": "Trello", "altAttrSlack": "Slack" } \ No newline at end of file diff --git a/common/locales/he/gear.json b/common/locales/he/gear.json index a5fe453c98..2cdd0cf2d4 100644 --- a/common/locales/he/gear.json +++ b/common/locales/he/gear.json @@ -1,4 +1,5 @@ { + "set": "סט", "weapon": "נשק", "weaponBase0Text": "אין לך נֶשֶׁק.", "weaponBase0Notes": "אין לך נֶשֶׁק.", @@ -142,6 +143,14 @@ "weaponSpecialWinter2016MageNotes": "התנועות שלך כל כך מוזרות, זה חייב להיות קסם! מגביר תבונה ב <%= int %> ותפיסה ב <%= per %>. מהדורה מוגבלת 2015-2016, ציוד חורף.", "weaponSpecialWinter2016HealerText": "תותח קונפטי", "weaponSpecialWinter2016HealerNotes": "ישששששששש!!!!!! חורף שמחר ארץ-החורף!!!!! מגביר תבונה ב <%= int %>. מהדורה מוגבלת 2015-2016, ציוד חורף.", + "weaponSpecialSpring2016RogueText": "כדורוני אש", + "weaponSpecialSpring2016RogueNotes": "השתלטתם על הכדור, המקל, והסכין. כעת אתם מתקדמים לג׳ינגול אש! אווו! מגביר כוח ב <%= str %>. מהדורה מוגבלת 2016, ציוד אביב.", + "weaponSpecialSpring2016WarriorText": "חבילת גבינה", + "weaponSpecialSpring2016WarriorNotes": "לאף אחד אין כל כך הרבה חברים כמו לעכבר עם הגבינות הצהובות. מגביר כוח ב <%= str %>. מהדורה מוגבלת 2016, ציוד אביב.", + "weaponSpecialSpring2016MageText": "מטה פעמונים", + "weaponSpecialSpring2016MageNotes": "אברא-כדברא! כל כך מהממים, שאתם עלולים להפנט את עצמכם! או... זה מצלצל... מגביר תבונה ב <%= int %> ותפיסה ב <%= per %>. מהדורה מוגבלת 2016, ציוד אביב.", + "weaponSpecialSpring2016HealerText": "מטה פרח אביבי", + "weaponSpecialSpring2016HealerNotes": "בתנועת הנפה ובקריצה, אתם מביאים את השדות והיערות לפריחה! או מכים בעכברים מציקים על הראש. מגביר תבונה ב <%= int %>. מהדורה מוגבלת 2016, ציוד אביב.", "weaponMystery201411Text": "קילשון למשתאות", "weaponMystery201411Notes": "דיקרו את אויבייכם או חפרו לתוך מאכליכם - הקילשון רב-השימושים הזה עושה הכל! לא מקנה ייתרון. נובמבר 2014, חפץ מנויים.", "weaponMystery201502Text": "מטה מכונף ונוצץ של אהבה וגם אמת", @@ -159,7 +168,7 @@ "weaponArmoireMythmakerSwordText": "חרב מייצרת המיתוסים", "weaponArmoireMythmakerSwordNotes": "למרות שהיא נראית צנועה, חרב זו ייצרה הרבה גיבורים מיתיים. מגבירה תפיסה וכוח ב <%= attrs %> כל אחד. ארמואר קסום: סט טוגה מוזהב (חפץ 3 מתוך 3).", "weaponArmoireIronCrookText": "מקל רועים מברזל", - "weaponArmoireIronCrookNotes": "מחושל בעוצמה מברזל, מקל הרועים הזה טוב לרעיית כבשים. מגביר תפיסה וכוח ב <%= attrs %> כל אחד. ארמואר קסום: סט קרני ברזל (חפץ 3 מתוך 3).", + "weaponArmoireIronCrookNotes": "מחושל בעוצמה מברזל, מקל הרועים הזה טוב לרעיית כבשים. מגביר תפיסה וכוח ב <%= attrs %> כל אחד. ארמואר קסום: סט ברזל מקורנף (חפץ 3 מתוך 3).", "weaponArmoireGoldWingStaffText": "מטה כנף זהב", "weaponArmoireGoldWingStaffNotes": "כנפי המטה הזה כל הזמן מנפנפות ומסבסבות. מגביר את כל התכונות ב <%= attrs %> כל אחת. ארמואר קסום: חפץ בלתי תלוי.", "weaponArmoireBatWandText": "מטה עטלף", @@ -172,10 +181,14 @@ "weaponArmoireBlueLongbowNotes": "מוכנים... היכון... אש! לקשת הזו יש טווח אדיר. מגבירה תפיסה ב <%= per %>, חוסן ב <%= con %>, וכוח ב <%= str %>. ארמואר קסום: חפץ בלתי תלוי.", "weaponArmoireGlowingSpearText": "חנית זוהרת", "weaponArmoireGlowingSpearNotes": "חנית זו מהפנטת משימות פרועות כדי שתוכלו לתקוף אותן. מגבירה כוח ב <%= str %>. ארמואר קסום: חפץ בלתי תלוי.", - "weaponArmoireBarristerGavelText": "Barrister Gavel", - "weaponArmoireBarristerGavelNotes": "Order! Increases Strength and Constitution by <%= attrs %> each. Enchanted Armoire: Barrister Set (Item 3 of 3).", - "weaponArmoireJesterBatonText": "Jester Baton", - "weaponArmoireJesterBatonNotes": "With a wave of your baton and some witty repartee, even the most complicated situations become clear. Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Jester Set (Item 3 of 3).", + "weaponArmoireBarristerGavelText": "פטיש עורך דין", + "weaponArmoireBarristerGavelNotes": "סדר! מגביר כוח וחוסן ב <%= attrs %> כל אחד. ארמואר קסום: סט עורך דין (חפץ 3 מתוך 3).", + "weaponArmoireJesterBatonText": "שרביט לץ", + "weaponArmoireJesterBatonNotes": "בהינף שרביטכם וכמה תשובות שנונות, גם המצבים הסבוכים ביותר נעשים ברורים. מגביר תבונה ותפיסה ב <%= attrs %> כל אחד. ארמואר קסום: סט לץ (חפץ 3 מתוך 3).", + "weaponArmoireMiningPickaxText": "מעדר כרייה", + "weaponArmoireMiningPickaxNotes": "כרו כמות מקסימלית של זהב ממשימותיכם! מגביר תפיסה ב <%= per %>. ארמואר קסום: סט כורים (חפץ 3 מתוך 3).", + "weaponArmoireBasicLongbowText": "Basic Longbow", + "weaponArmoireBasicLongbowNotes": "A serviceable hand-me-down bow. Increases Strength by <%= str %>. Enchanted Armoire: Basic Archer Set (Item 1 of 3).", "armor": "שריון", "armorBase0Text": "בגדים פשוטים", "armorBase0Notes": "אלה סתם בגדים, הם לא נותנים בונוס.", @@ -239,8 +252,8 @@ "armorSpecialBirthdayNotes": "יום הולדת שמח, האביטיקה! לבשו את מלבושי החגיגה המגוכחים הללו כדי לחגוג את היום הנפלא הזה. לא מקנות ייתרון.", "armorSpecialBirthday2015Text": "גלימות מסיבות מגוכחת", "armorSpecialBirthday2015Notes": "יום הולדת שמח האביטיקה! לבשו את גלימות המסיבה המטופשות הללו כדי לחגוג יום נפלא זה. לא מקנות ייתרון.", - "armorSpecialBirthday2016Text": "Ridiculous Party Robes", - "armorSpecialBirthday2016Notes": "Happy Birthday, Habitica! Wear these Ridiculous Party Robes to celebrate this wonderful day. Confers no benefit.", + "armorSpecialBirthday2016Text": "גלימות מסיבה מגוחכות", + "armorSpecialBirthday2016Notes": "יום הולדת שמח האביטיקה! ליבשו את גלימות יום המסיבה המגוחכות ללו כדי לחגוג יום נהדר זה. לא מקנות ייתרון.", "armorSpecialGaymerxText": "שריון לוחמי הקשת", "armorSpecialGaymerxNotes": "לכבוד חגיגות כנס GaymerX, שריון מיוחד זה מעוצב עם תבנית קשת צבעונית בוהקת! GaymerX הוא כנס משחקים שחוגג LGBTQ ומשחקים, והוא פתוח לכולם.", "armorSpecialSpringRogueText": "חליפת חתלתול חלקלק", @@ -307,6 +320,14 @@ "armorSpecialWinter2016MageNotes": "הקוסם החכם נשמר עטוף היטב בפני רוחות החורף. מגביר תבונה ב <%= int %>. מהדורה מוגבלת 2015-2016, ציוד חורף.", "armorSpecialWinter2016HealerText": "גלימת פייה חגיגית", "armorSpecialWinter2016HealerNotes": "פייות חגיגיות עוטפות את כנפי גופן סביב עצמן להגנה בזמן שהן משתמשות בכנפי ראשן כדי לתפוס רוחות ולעוף סביב האביטיקה במהירויות של עד 100 מיילים לשעה, שולחות מתנות ומפזרות על כולם קונפטי. כמה משעשע. מגבירה חוסן ב <%= con %>. מהדורה מוגבלת 2015-2016, ציוד חורף.", + "armorSpecialSpring2016RogueText": "חליפת כלב-זאב חאקי", + "armorSpecialSpring2016RogueNotes": "כלבלב חכם יודע לבחור הסוואה בהירה כשהכל מסביב ירוק ובוהק. מגבירה תפיסה ב <%= per %>. מהדורה מוגבלת 2016, ציוד אביב.", + "armorSpecialSpring2016WarriorText": "דואר חזק", + "armorSpecialSpring2016WarriorNotes": "אמנם אתם קטנים, אך חזקים! מגביר חוסן ב <%= con %>. מהדורה מוגבלת 2016, ציוד אביב.", + "armorSpecialSpring2016MageText": "גלימות מלכין גדולות", + "armorSpecialSpring2016MageNotes": "בצבעים בוהקים, כדי שלא יבלבלו אתכם עם עכבר-אוב. מגביר תבונה ב <%= int %>. מהדורה מוגבלת 2016, ציוד אביב.", + "armorSpecialSpring2016HealerText": "מכנסי ארנב מתנפנפים", + "armorSpecialSpring2016HealerNotes": "ים טי-דם! מקפץ מגבעה לגבעה, מרפא את מי שצריך עזרה. מגבירים חוסן ב <%= con %>. מהדורה מוגבלת 2016, ציוד אביב.", "armorMystery201402Text": "גלימות שליח", "armorMystery201402Notes": "מנצנצות וחזקות, לגלימות אלו כיסים רבים לנשיאת מכתבים. לא מקנות ייתרון. פברואר 2014, חפץ מנויים.", "armorMystery201403Text": "שריון מהלך היער", @@ -341,6 +362,8 @@ "armorMystery201511Notes": "בהתחשב בכך שהשריון הזה גולף ישירות מגזע קסום, הוא נוח בצורה מפתיחה. לא נותן ייתרון כלשהו. נובמבר 2015, חפץ למנויים.", "armorMystery201512Text": "שריון אש-קרה", "armorMystery201512Notes": "זמנו את הלהבות הקרחיות של החורף! לא מקנה ייתרון כלשהו. דצמבר 2015, חפץ מנויים.", + "armorMystery201603Text": "חליפת מזל", + "armorMystery201603Notes": "חליפה זו ארוגה מאלפי תלתנים בעלי ארבע עלים! לא מקנה ייתרון. מרץ 2016, חפץ מנויים.", "armorMystery301404Text": "חליפת סטימפאנק", "armorMystery301404Notes": "נאה ונמרץ, אה! לא מקנה ייתרון. פברואר 3015, חפץ מנויים.", "armorArmoireLunarArmorText": "שריון ירח מרגיע", @@ -363,10 +386,14 @@ "armorArmoireCrystalCrescentRobesNotes": "גלימות קסומות אלו זוהרות בלילה. מגבירות חוסן ותפיסה ב <%= attrs %> כל אחד. ארמואר קסום: סט חצי סהר קריסטלי (חפץ 2 מתוך 3).", "armorArmoireDragonTamerArmorText": "שריון מאלף דרקונים", "armorArmoireDragonTamerArmorNotes": "שריון קשיח זה הוא חסין בפני להבות. מגביר חוסן ב <%= con %>. ארמואר קסום: סט מאלף דרקונים (חפץ 3 מתוך 3).", - "armorArmoireBarristerRobesText": "Barrister Robes", - "armorArmoireBarristerRobesNotes": "Very serious and stately. Increases Constitution by <%= con %>. Enchanted Armoire: Barrister Set (Item 2 of 3).", - "armorArmoireJesterCostumeText": "Jester Costume", - "armorArmoireJesterCostumeNotes": "Tra-la-la! Despite the look of this costume, you are no fool. Increases Intelligence by <%= int %>. Enchanted Armoire: Jester Set (Item 2 of 3).", + "armorArmoireBarristerRobesText": "גלימות עורך דין", + "armorArmoireBarristerRobesNotes": "מאוד רציני ומרשים. מגביר חוסן ב <%= con %>. ארמואר קסום: סט עורך דין (חפץ 2 מתוך 3).", + "armorArmoireJesterCostumeText": "תחפושת לץ", + "armorArmoireJesterCostumeNotes": "טרה-לה-לה! למרות המראה של התחפושת הזו, אינכם שוטים. מגבירה תבונה ב <%= int %>. ארמואר קסום: סט לץ (חפץ 2 מתוך 3).", + "armorArmoireMinerOverallsText": "אוברול כורים", + "armorArmoireMinerOverallsNotes": "ייתכן והם נראים שחוקים, אך הם מכושפים לדחות עפר. מגבירים חוסן ב <%= con %>. ארמואר קסום: סט כורים (חפץ 2 מתוך 3).", + "armorArmoireBasicArcherArmorText": "Basic Archer Armor", + "armorArmoireBasicArcherArmorNotes": "This camouflaged vest lets you slip unnoticed through the forests. Increases Perception by <%= per %>. Enchanted Armoire: Basic Archer Set (Item 2 of 3).", "headgear": "ציוד ראש", "headBase0Text": "ללא קסדה", "headBase0Notes": "בלי שום כיסוי ראש בכלל.", @@ -496,6 +523,14 @@ "headSpecialWinter2016MageNotes": "שומר על השלג מחוץ לאוזניים שלכם בזמן שאתם מטילים כשפים. מגביר תפיסה ב <%= per %>. מהדורה מוגבלת 2015-2016 ציוד חורף.", "headSpecialWinter2016HealerText": "קסדת פיית כנפיים", "headSpecialWinter2016HealerNotes": "כנפייםאלומתנפנפותכלכךמהרשהןמטשטשות! מגבירות תבונה ב <%= int %>. מהדורה מוגבלת 2015-2016, ציוד חורף.", + "headSpecialSpring2016RogueText": "מסכת כלבלב טוב", + "headSpecialSpring2016RogueNotes": "אוווו, איזה כלבלב חמוד! בוא הנה, תן לי ללטף אותך. ...הי, לאן נעלם כל הזהב שלי? מגביר תפיסה ב <%= per %>. מהדורה מוגבלת 2016, ציוד אביב.", + "headSpecialSpring2016WarriorText": "קסדת שומר עכבר", + "headSpecialSpring2016WarriorNotes": "לעולם לא תחטפו יותר בראש! תנו להם לנסות! מגבירה חוסן ב <%= str %>. מהדורה מוגבלת 2016, ציוד אביב.", + "headSpecialSpring2016MageText": "כובע מלכין גדול", + "headSpecialSpring2016MageNotes": "אביזר כדי לבדל אתכם מהקוסמים הפשוטים של העולם. מגביר תפיסה ב <%= per %>. מהדורה מוגבלת 2016, ציוד אביב.", + "headSpecialSpring2016HealerText": "עטרת פריחה", + "headSpecialSpring2016HealerNotes": "היא מנצנצת עם האפשרות שחיים חדשים יפרצו קדימה. מגבירה תבונה ב <%= int %>. מהדורה מוגבלת 2016, ציוד אביב.", "headSpecialGaymerxText": "קסדת לוחמי הקשת", "headSpecialGaymerxNotes": "לרגל חגיגות כנס גיימר-אקס, הקסדה המיוחדת הזו מעוטרת בדוגמה בוהקת של קשת צבעונית! גיימר-אקס הוא כנס שחוגג להט״בים ומשחקים, והוא פתוח לכולם.", "headMystery201402Text": "קסדה מכונפת", @@ -524,8 +559,12 @@ "headMystery201511Notes": "ספרו את מספר הטבעות כדי לחשב את גיל הכתר. לא מקנה ייתרון. נובמבר 2015, חפץ מנויים.", "headMystery201512Text": "להבת חורף", "headMystery201512Notes": "הלהבות האלו שורפות קור באמצעות חשיבה טהורה. לא מקנה ייתרון. דצמבר 2015, חפץ מנויים.", - "headMystery201601Text": "Helm of True Resolve", - "headMystery201601Notes": "Stay resolute, brave champion! Confers no benefit. January 2016 Subscriber Item.", + "headMystery201601Text": "קסדת החלטיות אמת", + "headMystery201601Notes": "השאר החלטי, אלוף אמיץ! לא מקנה ייתרון. ינואר 2016, חפץ מנויים.", + "headMystery201602Text": "ברדס שוברי לבבות", + "headMystery201602Notes": "שמרו על זהותכם מפני מעריצים. לא מקנה ייתרון. פברואר 2016, חפץ מנויים.", + "headMystery201603Text": "כובע מזל", + "headMystery201603Notes": "כובע זה הוא קמע מזל קסום. לא מקנה ייתרון. מרץ 2016, חפץ מנויים.", "headMystery301404Text": "כובע ראש מפואר", "headMystery301404Notes": "כובע ראש מפואר למכובד שבג׳נטלמנים! ינואר 3015, חפץ מנויים. לא מקנה ייתרון.", "headMystery301405Text": "כובע ראש בסיסי", @@ -546,7 +585,7 @@ "headArmoireRoyalCrownNotes": "כבוד לשליט, חזק ועוצמתי! מגביר כוח ב <%= str %>. ארמואר קסום: סט מכותי (חפץ 1 מתוך 3).", "headArmoireGoldenLaurelsText": "זר דפנה מוזהב", "headArmoireGoldenLaurelsNotes": "אלו זרי דפנה לאנשים שניצחו הרגלים רעים. מגבירים תפיסה וחוסן ב <%= attrs %> כל אחד. ארמואר קסום: סט טוגה מוזהב (חפץ 2 מתוך 3).", - "headArmoireHornedIronHelmText": "קסדת ברזל עם קרן", + "headArmoireHornedIronHelmText": "קסדת ברזל עם קרניים", "headArmoireHornedIronHelmNotes": "מרוקעת בעוצמה מברזל, הקסדה עם הקרן הזה היא כמבט בלתי אפשרית לשבירה. מגבירה חוסן ב <%= con %> וכוח ב <%= str %>. ארמואר קסום: סט קרן ברזל (חפץ 1 מתוך 3).", "headArmoireYellowHairbowText": "קשת שיער צהובה", "headArmoireYellowHairbowNotes": "הפוכו לבעלי תפיסה חדה, חזקים, וחכמים כשאתם לובשים את קשת השיער הצהובה! מגבירה תפיסה, כוח ותבונה ב <%= attrs %> כל אחד. ארמואר קסום: חפץ בלתי תלוי.", @@ -558,18 +597,22 @@ "headArmoireBlackCatNotes": "הכובע השחור הזה... מגרגר. ומקשקש בזנב. ונושם? כן, פשוט יש לכם חתול ישן על הראש. מגביר תבונה ותפיסה ב <%= attrs %> כל אחד. ארמואר קסום: חפץ בלתי תלוי.", "headArmoireOrangeCatText": "כובע חתול כתום", "headArmoireOrangeCatNotes": "הכובע הכתום הזה... מגרגר. ומקשרש בזנבו. ונושם? כן, פשוט יש לכם חתול ישן על הראש. מגביר כוח וחוסן ב <%= attrs %> כל אחד. ארמואר קסום: חפץ בלתי תלוי.", - "headArmoireBlueFloppyHatText": "כובע כחול מתנפנף", - "headArmoireBlueFloppyHatNotes": "קסמים רבים נארגו לתוך כובע פשוט זה, מקנים לו צבע כחול מבריק. מגביר חוסן, תבונה ותפיסה ב <%= attr %> כל אחד. ארמואר קסום: חפץ בלתי תלוי.", + "headArmoireBlueFloppyHatText": "כובע מתנפנף כחול", + "headArmoireBlueFloppyHatNotes": "קסמים רבים נארגו לתוך כובע פשוט זה, מקנים לו צבע כחול מבריק. מגביר חוסן, תבונה ותפיסה ב <%= attrs %> כל אחד. ארמואר קסום: חפץ בלתי תלוי.", "headArmoireShepherdHeaddressText": "לבוש ראש של רועה", "headArmoireShepherdHeaddressNotes": "לפעמים הגריפונים שאתם רועים אוהבים ללעוס את הבגד הזה, אבל הוא בכל זאת גורם לכם להראות חכמים יותר. מגביר תבונה ב <%= int %>. ארמואר קסום: סט רועים (חפץ 3 מתוך 3).", "headArmoireCrystalCrescentHatText": "כובע חצי סהר קריסטלי", "headArmoireCrystalCrescentHatNotes": "הדוגמה על הכובע הזה מתחזקת וגובעת לפי מחזור הירח. מגביר תבונה ותפיסה ב <%= attrs %> כל אחת. ארמואר קסום: סט חצי סהר קריסטלי (חפץ 1 מתוך 3).", "headArmoireDragonTamerHelmText": "קסדת מאלף דרקונים", "headArmoireDragonTamerHelmNotes": "אתם נראים בדיוק כמו דרקון. ההסוואה המושלמת... מגביר תבונה ב <%= int %>. ארמואר קסום: סט מאלף דרקונים (חפץ 1 מתוך 3).", - "headArmoireBarristerWigText": "Barrister Wig", - "headArmoireBarristerWigNotes": "This bouncy wig is enough to frighten away even the fiercest foe. Increases Strength by <%= str %>. Enchanted Armoire: Barrister Set (Item 1 of 3).", - "headArmoireJesterCapText": "Jester Cap", - "headArmoireJesterCapNotes": "The bells on this hat might distract your opponents, but they just help you focus. Increases Perception by <%= per %>. Enchanted Armoire: Jester Set (Item 1 of 3).", + "headArmoireBarristerWigText": "פאת עורך דין", + "headArmoireBarristerWigNotes": "פאה קופצנית זו מספיקה כדי להבריח גם את האוייב העז ביותר. מגבירה כוח ב <%= str %>. ארמואר קסום: סט עורך דין (חפץ 1 מתוך 3).", + "headArmoireJesterCapText": "כובע לץ", + "headArmoireJesterCapNotes": "הפעמונים על הכובע הזה עלולים להסיח את דעתם של אויבכם, אך לכם הם עוזרים להתרכז. מגבירים תפיסה ב <%= per %>. ארמואר קסום: סט לץ (חפץ 1 מתוך 3).", + "headArmoireMinerHelmetText": "קסדת כרייה", + "headArmoireMinerHelmetNotes": "הגנו על ראשכם ממשימות נופלות! מגביר תבונה ב <%= int %>. ארמואר קסום: סט כורים (חפץ 1 מתוך 3).", + "headArmoireBasicArcherCapText": "Basic Archer Cap", + "headArmoireBasicArcherCapNotes": "No archer would be complete without a jaunty cap! Increases Perception by <%= per %>. Enchanted Armoire: Basic Archer Set (Item 3 of 3).", "offhand": "חפץ יד-מגן", "shieldBase0Text": "אין חפץ יד-מגן", "shieldBase0Notes": "לא הצטיידת באף מגן או נשק ליד החדשה.", @@ -653,8 +696,14 @@ "shieldSpecialWinter2016WarriorNotes": "השתמשו במזחלת זו כדי לחסום התקפות, או כדי לגלוש בניצחון אלי קרב! מגבירה חוסן ב <%= con %>. מהדורה מוגבלת 2015-2016, ציוד חורף.", "shieldSpecialWinter2016HealerText": "מתנת פיות", "shieldSpecialWinter2016HealerNotes": "תפתחו, תפתחו, תפתחו, תפתחו!!!! מגביר חוסן ב <%= con %>. מהדורה מוגבלת 2015-2016, ציוד חורף.", - "shieldMystery201601Text": "Resolution Slayer", - "shieldMystery201601Notes": "This blade can be used to parry away all distractions. Confers no benefit. January 2016 Subscriber Item.", + "shieldSpecialSpring2016RogueText": "כדוריות אש", + "shieldSpecialSpring2016RogueNotes": "השתלטתם על הכדור, המקל, ועל הסכין. כעת אתם מתקדמים לג׳גל אש! אוו! מגביר כוח ב <%= str %>. מהדורה מוגבלת 2016, ציוד אביב.", + "shieldSpecialSpring2016WarriorText": "גלגל גבינה", + "shieldSpecialSpring2016WarriorNotes": "עמדתם בגבורה במלכודות שטניות כדי להשיג את המזון המחסן הזה. מגביר חוסן ב <%= con %>. מהדורה מוגבלת 2016, ציוד אביב.", + "shieldSpecialSpring2016HealerText": "מגן קרב פרחוני", + "shieldSpecialSpring2016HealerNotes": "השוטה של אפריל טוען שהמגן הקטן הזה יחסום זרעים זוהרים. אל תאמינו לו. מגביר חוסן ב <%= con %>. מהדורה מוגבלת, 2016.", + "shieldMystery201601Text": "שוחט החלטות", + "shieldMystery201601Notes": "סכין זו יכולה לשמש כדי להדוף הסחות דעת. לא מקנה ייתרון. ינואר 2016, חפץ מנויים.", "shieldMystery301405Text": "מגן שעון", "shieldMystery301405Notes": "הזמן הוא לצידך עם מגן השעון המתנשא! לא מקנה ייתרון. יוני 3015, חפץ מנויים.", "shieldArmoireGladiatorShieldText": "מגן גלדיאטור", @@ -665,6 +714,8 @@ "shieldArmoireRoyalCaneNotes": "הידד לשליט, ראוי לשיר! מגביר חוסן, תבונה ותפיסה ב <%= attrs %> כל אחד. ארמואר קסום: סט מלכותי (חפץ 2 מתוך 3). ", "shieldArmoireDragonTamerShieldText": "מגן מאלף דרקונים", "shieldArmoireDragonTamerShieldNotes": "הסיחו את דעתם של אויבים עם מגן בצורת דרקון זה. מגביר תפיסה ב <%= per %>. ארמואר קסום: סט מאלף דרקונים (חפץ 2 מתוך 3).", + "shieldArmoireMysticLampText": "מנורה מיסטית", + "shieldArmoireMysticLampNotes": "האירו את המערות החשוכות ביותר עם מנורה מיסטית זו! מגביר תפיסה ב <%= per %>. ארמואר קסום: חפץ בלתי תלוי.", "back": "אביזר גב", "backBase0Text": "אביזר ללא גב", "backBase0Notes": "אביזר ללא גב.", @@ -680,6 +731,8 @@ "backMystery201507Notes": "גילשו ממעגני החריצות על גלי מפרץ הלומושלם! לא מקנה ייתרון. יולי 2015, חפץ מנויים.", "backMystery201510Text": "זנב גובלין", "backMystery201510Notes": "מסוגל לתפוס מראש ועוצמתי! לא מקנה ייתרון. אוקטובר 2015, חפץ מנויים.", + "backMystery201602Text": "שיכמיית שוברי לבבות", + "backMystery201602Notes": "בהינף שיכמייתכם, אוייביכם נופלים בפניכם! לא מקנה ייתרון. פברואר 2016, חפץ מנויים.", "backSpecialWonderconRedText": "שכמייה אימתנית", "backSpecialWonderconRedNotes": "מצליף בכוח ויופי. לא מקנה ייתרון. מהדורה מיוחדת, חפץ כנסים.", "backSpecialWonderconBlackText": "שכמייה חמקנית", @@ -726,8 +779,16 @@ "headAccessorySpecialSpring2015MageNotes": "אוזניים אלו מקשיבות בחריפות למקרה שאיפשהו קוסם חושף סודות. לא מקנות ייתרון. מהדורה מוגבלת 2015, ציוד אביב.", "headAccessorySpecialSpring2015HealerText": "אוזני חתלתולה ירוקות", "headAccessorySpecialSpring2015HealerNotes": "אוזני חתלתולה חמודות אלו יגרמו לאחרים לחייך בקנאה. לא מקנות ייתרון. מהדורה מוגבלת 2015, ציוד אביב.", + "headAccessorySpecialSpring2016RogueText": "אזני כלב ירוקות", + "headAccessorySpecialSpring2016RogueNotes": "עם אלו, תוכלו לעקוב אחר קוסמים תכמנים גם אם הם נהפכים לבלתי נראים! לא מקנות ייתרון. מהדורה מוגבלת 2016, ציוד אביב.", + "headAccessorySpecialSpring2016WarriorText": "אוזני עכבר אדומות", + "headAccessorySpecialSpring2016WarriorNotes": "כדי לשמוע טוב יותר את מנגינת הנושא שלכם מעבר לשדות קרב. לא מקנות ייתרון. מהדורה מוגבלת 2016, ציוד אביב.", + "headAccessorySpecialSpring2016MageText": "אוזני חתול צהוב", + "headAccessorySpecialSpring2016MageNotes": "אוזניים חדות אלו יכולות להבחין באוושה של מאנה קוסמית, או בצעדים המושתקים של נוכל. לא מקנות ייתרון. מהדורה מוגבלת, אביב 2016.", + "headAccessorySpecialSpring2016HealerText": "אוזני ארנב סגולות", + "headAccessorySpecialSpring2016HealerNotes": "הן עמודות כמו דגלים מעל ההמולה, מאפשרות לאחרים לדעת לאן לרוץ לעזרה. לא מקנות ייתרון. מהדורה מוגבלת 2016, ציוד אביב.", "headAccessoryBearEarsText": "אוזני דב", - "headAccessoryBearEarsNotes": "אוזניים אלו גורמות לך להיראות כמו דב מתחבק! לא נותנות ייתרון.", + "headAccessoryBearEarsNotes": "אוזניים אלו גורמות לכם להראות כמו דב אמיץ! לא מקנות ייתרון.", "headAccessoryCactusEarsText": "אוזני קקטוס", "headAccessoryCactusEarsNotes": "אוזניים אלו גורמות לכם להיראות כמו קקטוס דוקרני! לא נותנות ייתרון.", "headAccessoryFoxEarsText": "אוזני שועל", @@ -754,6 +815,8 @@ "headAccessoryMystery201510Notes": "הקרניים המפחידות האלו הן חלקלקות במקצת. לא נותנות ייתרון כלשהו. חפץ מנויים אוקטובר 2015.", "headAccessoryMystery301405Text": "משקפי ראש", "headAccessoryMystery301405Notes": "״משקפיים הן לעייניים,״ הם אמרו. ״אף אחד לא ירצה משקפיים שאפשר לחבוש רק על הראש,״ הם אמרו. הא! בהחלט הראיתם להם! לא מקנות ייתרון. אוגוסט 3015, חפץ מנויים.", + "headAccessoryArmoireComicalArrowText": "Comical Arrow", + "headAccessoryArmoireComicalArrowNotes": "This whimsical item doesn't provide a stat boost, but it sure is good for a laugh! Confers no benefit. Enchanted Armoire: Independent Item.", "eyewear": "לבוש לעיניים", "eyewearBase0Text": "ללא לבוש לעיניים", "eyewearBase0Notes": "ללא לבוש לעיניים.", diff --git a/common/locales/he/generic.json b/common/locales/he/generic.json index b49f573f8d..d46901f868 100644 --- a/common/locales/he/generic.json +++ b/common/locales/he/generic.json @@ -25,7 +25,7 @@ "titleSettings": "הגדרות", "expandToolbar": "הרחב סרגל כלים", "collapseToolbar": "הקטן סרגל כלים", - "markdownBlurb": "הביטיקה משתמשת בסימונים כדי לסגנן הודעות. ראו את שליף הסימונים למידע נוסף.", + "markdownBlurb": "האביטיקה משתמשת בסימונים כדי לסגנן הודעות. ראו את שליף הסימונים למידע נוסף.", "showFormattingHelp": "הצג עזרת עיצוב טקסט", "hideFormattingHelp": "הסתר עזרת עיצוב טקסט", "youType": "אתם מקישים:", @@ -116,9 +116,9 @@ "audioTheme_luneFoxTheme": "ערכת לונפוקס", "askQuestion": "שאל/י שאלה", "reportBug": "דיווח על תקלה", - "HabiticaWiki": "The Habitica Wiki", + "HabiticaWiki": "הוויקי של האביטיקה", "HabiticaWikiFrontPage": "http://habitica.wikia.com/wiki/Habitica_Wiki", - "contributeToHRPG": "תרומה לאתר", + "contributeToHRPG": "תרומה להאביטיקה", "overview": "סיור למשתמשים חדשים", "January": "ינואר", "February": "פברואר", @@ -133,10 +133,12 @@ "November": "נובמבר", "December": "דצמבר", "dateFormat": "פורמט תאריך", - "achievementStressbeast": "המושיע של סטויקאלם", + "achievementStressbeast": "מושיע של השארוגועים", "achievementStressbeastText": "סייע בהבסת המפלחץ המתועב במהלך חורף הפלאות של 2014!", "achievementBurnout": "מציל השדות הפורחים", "achievementBurnoutText": "סייע להביס ״שחיקה״ ולהשיב את ״הרוחות המותשות״ במהלך אירוע פסטיבל השלכת 2015!", + "achievementBewilder": "Savior of Mistiflying", + "achievementBewilderText": "Helped defeat the Be-Wilder during the 2016 Spring Fling Event!", "checkOutProgress": "תראו את ההתקדמות שלי בהביטיקה!", "cardReceived": "קיבלתם כרטיס!", "cardReceivedFrom": "<%= cardType %> מ <%= userName %>", @@ -158,12 +160,12 @@ "thankyou3": "אני מודה לך מאוד - תודה!", "thankyouCardAchievementTitle": "מודה מאוד", "thankyouCardAchievementText": "תודה על היותכם אסירי תודה! שלחתם או קיבלתם <%= cards %> כרטיסי תודה.", - "birthdayCard": "Birthday Card", - "birthdayCardExplanation": "You both receive the Birthday Bonanza achievement!", - "birthdayCardNotes": "Send a birthday card to a party member.", - "birthday0": "Happy birthday to you!", - "birthdayCardAchievementTitle": "Birthday Bonanza", - "birthdayCardAchievementText": "Many happy returns! Sent or received <%= cards %> birthday cards.", + "birthdayCard": "כרטיס יום הולדת", + "birthdayCardExplanation": "שניכם קיבלתם את הישג בוננזת יום ההולדת!", + "birthdayCardNotes": "שילחו כרטיס יום הולדת לחבר חבורה.", + "birthday0": "יום הולדת שמח!", + "birthdayCardAchievementTitle": "בוננזת יום ההולדת", + "birthdayCardAchievementText": "נפגש בשמחות! שלח או קיבל <%= cards %> כרטיסי יום הולדת.", "streakAchievement": "הרווחת הישג רצף!", "firstStreakAchievement": "רצף של 21 יום", "streakAchievementCount": "<%= streaks %> 21-ימי רצף", @@ -175,5 +177,6 @@ "hatchPetShare": "הבקעתי חיית מחמד חדשה על ידי השלמת משימה מעולם האמיתי!", "raisePetShare": "אילפתי חיית מחמד להיות חיית רכיבה על ידי השלמת משימות מהעולם האמיתי!", "wonChallengeShare": "סיימתי אתגר בהביטיקה!", - "achievementShare": "השגתי הישג חדש בהביטיקה!" + "achievementShare": "השגתי הישג חדש בהביטיקה!", + "orderBy": "סדר לפי <%= item %>" } \ No newline at end of file diff --git a/common/locales/he/groups.json b/common/locales/he/groups.json index 3e46cb9e25..7de42b45ca 100644 --- a/common/locales/he/groups.json +++ b/common/locales/he/groups.json @@ -1,7 +1,7 @@ { - "tavern": "פונדק", - "innCheckOut": "צא מהאכסנייה", - "innCheckIn": "נוח באכסנייה", + "tavern": "שיחת פונדק", + "innCheckOut": "צאו מהאכסנייה", + "innCheckIn": "נוחו באכסנייה", "innText": "אתם נחים באכסנייה! בזמן שאתם רשומים באכסניה, המטלות היומיות שלכם לא יפגעו בכם בסוף היום, אך הן עדיין יתחילו מחדש בכל יום. הזהרו: אם אתם משתתפים בהרפתקאת בוס, הבוס עדיין יפגע בכם בגין פספוסי העמיתים שלכם בחבורה - אלא אם גם הם באכסניה! בנוסף, נזק שאתם מסבים לבוס (או חפצים שנאספים) לא ישפיעו עד שתצאו מהאכסנייה.", "innTextBroken": "אתם נחים באכסנייה, אני מתאר לעצמי... בזמן שאתם רשומים באכסניה, המטלות היומיות שלכם לא יפגעו בכם בסוף היום, אך הן עדיין יתחילו מחדש בכל יום... אם אתם משתתפים בהרפתקאת בוס, הבוס עדיין יפגע בכם בגין פספוסי העמיתים שלכם בחבורה... אלא אם גם הם באכסניה... בנוסף, נזק שאתם מסבים לבוס (או חפצים שנאספים) לא ישפיעו עד שתצאו מהאכסנייה... כל כך עייף...", "lfgPosts": "מודעות מחפשי קבוצה", @@ -27,20 +27,20 @@ "noPartyText": "או שאינך חלק מחבורה, או שלחבורה שלך לוקח זמן מה להיטען. תוכל/י או ליצור חבורה חדשה ולהזמין את חברייך, או אם ברצונך להצטרף לחבורה קיימת, אמור/אמרי להם להשתמש במספר המשתמש הייחודי שלך למטה, ואז חזור/חזרי כדי לראות את הזמנתם:", "LFG": "כדי לפרסם את החבורה החדשה שלכם או למצוא אחת להצטרף אליה, לכו לגילדה ״<%= linkStart %>דרושה חבורה (מחפשים קבוצה)<%= linkEnd %>״.", "wantExistingParty": "רוצים להצטרף לחבורה קיימת? לכו לגילדת ״<%= linkStart %>דרושה חבורה<%= linkEnd %>״ ורשמו את מזהה המשתמש הזה:", - "joinExistingParty": "הצטרף לחבורה של מישהו אחר.", + "joinExistingParty": "הצטרפו לחבורה של מישהו אחר", "create": "היכנס", "userId": "מספר משתמש", "invite": "הזמן", "leave": "עזוב", "invitedTo": "הזמן ל <%= name %>", "invitedToNewParty": "הוזמנתם להצטרף לחבורה! האם תרצו לעזוב את החבורה הזו ולהצטרף ל<%= partyName %>?", - "joinNewParty": "הצטרף לחבורה חדשה", + "joinNewParty": "הצטרפו לחבורה חדשה", "declineInvitation": "דחו הזמנה", - "loadingNewParty": "החבורה החדשה שלכם נטענת. אנא המתינו", + "loadingNewParty": "החבורה החדשה שלכם נטענת. אנא המתינו...", "newMsg": "הודעה חדשה ב\"<%= name %>\"", - "chat": "דיבורים", - "sendChat": "שלח הודעה", - "toolTipMsg": "טען הודעות אחרונות", + "chat": "שיחה", + "sendChat": "שילחו הודעה", + "toolTipMsg": "טעינת הודעות אחרונות", "guildBankPop1": "בנק הגילדה", "guildBankPop2": "אבני חן שזמינות לראש הגילדה שלכם כפרסים עבור אתגרים.", "guildGems": "אבני חן של הגילדה", @@ -101,7 +101,7 @@ "inbox": "תיבת דואר", "abuseFlag": "דווח/י על הפרת חוקי הקהילה", "abuseFlagModalHeading": "לדווח על <%= name %> באשמת הפרת חוקים?", - "abuseFlagModalBody": "האם אתם בטוחים שאתם רוצים לדווח על ההודעה הזו? אתם אמורים לדווח אך ורק על הודעות שמפרות את <%= firstLinkStart %>הנחיות הקהילה<%= linkEnd %> ו/או <%= secondLinkStart %>תנאי השירות<%= linkEnd %>. דיווח לא מוצדק הוא הפרה של הנחיות הקהילה ויחשב כעבירה. סיבות נאותות לדיווח על הודעה כוללות, אך לא מוגבלות ל:


\n", + "abuseFlagModalBody": "האם אתם בטוחים שאתם רוצים לדווח על ההודעה הזו? אתם אמורים לדווח אך ורק על הודעות שמפרות את <%= firstLinkStart %>הנחיות הקהילה<%= linkEnd %> ו/או <%= secondLinkStart %>תנאי השירות<%= linkEnd %>. דיווח לא מוצדק הוא הפרה של הנחיות הקהילה ויחשב כעבירה. סיבות נאותות לדיווח על הודעה כוללות, אך לא מוגבלות ל:


", "abuseFlagModalButton": "דווח על הפרה", "abuseReported": "תודה שדיווחת על ההפרה הזו, אנו ניידע את העורכים אודות העניין.", "abuseAlreadyReported": "כבר דיווחת על ההודעה הזו.", @@ -147,5 +147,9 @@ "partyChatEmpty": "שיחת החבורה שלכם ריקה! הקלידו הודעה בתיבה למעלה כדי להתחיל לשוחח.", "guildChatEmpty": "השיחה של הגילדה הזו ריקה! רשמו הודעה בקופסה למעלה כדי להתחיל לשוחח.", "possessiveParty": "החבורה של <%= name %>", - "requestAcceptGuidelines": "אם אתם מעוניינים לרשום הודעה בפונדק או חבורה כלשהי או גילדה, אנא קראו את <%= linkStart %>הנחיות הקהילה<%= linkEnd %> ולחצו על הכפתור למטה כדי לאשר שהן מקובלות עליכם." + "requestAcceptGuidelines": "אם אתם מעוניינים לרשום הודעה בפונדק או חבורה כלשהי או גילדה, אנא קראו את <%= linkStart %>הנחיות הקהילה<%= linkEnd %> ולחצו על הכפתור למטה כדי לאשר שהן מקובלות עליכם.", + "partyUpName": "חגיגה", + "partyOnName": "מסיבה", + "partyUpAchievement": "הצטרפתם לחבורה עם אדם נוסף! תהנו להלחם במפלצות ולתמוך אחד בשני.", + "partyOnAchievement": "הצטרפתם לחבורה עם לפחות ארבעה אנשים נוספים! תהנו ממחוייבות מוגברת כשאתם מצטרפים לחבריכם כדי להלחם באוייבים!" } \ No newline at end of file diff --git a/common/locales/he/limited.json b/common/locales/he/limited.json index dad3abe1be..f58a20cfc4 100644 --- a/common/locales/he/limited.json +++ b/common/locales/he/limited.json @@ -25,7 +25,7 @@ "polarBearPup": "דובון קוטב", "jackolantern": "ג'ק-או-לנטרן", "seasonalShop": "חנות עונתית", - "seasonalShopClosedTitle": "<%= linkStart %>Leslie<%= linkEnd %>", + "seasonalShopClosedTitle": "<%= linkStart %>לסלי<%= linkEnd %>", "seasonalShopTitle": "<%= linkStart %>מכשפה עונתית<%= linkEnd %>", "seasonalShopClosedText": "החנות העונתית סגורה כרגע!! אני לא יודע איפה קוסמת החנות כרגע, אבל היא תחזור במהלך נשף הרשף הבא!", "seasonalShopText": "ברוכים הבאים לחנות העונתית!! אנחנו אוגרים מהדורות עונתיות של טובין אביביים כרגע. כל מה שפה ניתן יהיה לרכישה במהלך ארוע ״סטוץ האביב״ בכל שנה, אך אנחנו פתוחים רק עד ה 30 באפריל, אז הזדרזו לאגור כבר עכשיו, או שתאלצו לחכות שנה כדי לרכוש את החפצים האלו שוב!", @@ -67,6 +67,10 @@ "witchyWizardSet": "אשף קוסם (מכשף)", "mummyMedicSet": "מומיה רופאה (מרפא)", "vampireSmiterSet": "ערפד מייסר (נוכל)", + "bewareDogSet": "כלב זהירות (לוחם)", + "magicianBunnySet": "ארנב קוסים (מכשף)", + "comfortingKittySet": "חתלתול מנחם (מרפא)", + "sneakySqueakerSet": "חורק מתגנב (נוכל)", "fallEventAvailability": "זמין עד ה 31 באוקטובר", "winterEventAvailability": "זמין עד ה 31 בדצמבר" } \ No newline at end of file diff --git a/common/locales/he/messages.json b/common/locales/he/messages.json index e0c687a798..4bc374a19a 100644 --- a/common/locales/he/messages.json +++ b/common/locales/he/messages.json @@ -33,7 +33,7 @@ "armoireFood": "<%= image %> אתם נוברים בארמואר ומוצאים <%= dropArticle %><%= dropText %>. מה זה עושה פה?", "armoireExp": "אתם נאבקים בארמואר ומרוויחים ניסיון. קבלו!", "messageInsufficientGems": "אין לכם די אבני חן!", - "messageAuthPasswordMustMatch": ":סיסמה ו :אימות-סיסמה לא מתאימות", + "messageAuthPasswordMustMatch": ":סיסמה ו :אימות-סיסמה לא מתאימים", "messageAuthCredentialsRequired": ":שם-משתמש, :מייל, :סיסמה, :אימות-סיסמה - הכרחיים", "messageAuthUsernameTaken": "שם המשתמש כבר תפוס", "messageAuthEmailTaken": "כתובת הדואר כבר תפוסה", @@ -46,7 +46,7 @@ "messageGroupRequiresInvite": "לא ניתן להצטרף לקבוצה שאתם לא מוזמנים אליה.", "messageGroupCannotRemoveSelf": "אתם לא יכולים להסיר את עצמכם!", "messageGroupChatBlankMessage": "אתם לא יכולים לשלוח הודעה ריקה", - "messageGroupChatLikeOwnMessage": "אתם לא יכולים לסמן ״אהבתי״ על ההודעה שלכם. אל תהיו האנשים האלו.", + "messageGroupChatLikeOwnMessage": "אתם לא יכולים לסמן ״אהבתי״ על ההודעה של עצמכם. אל תהיו כאלו.", "messageGroupChatFlagOwnMessage": "אתם לא יכולים לדווח על ההודעה שלכם.", "messageGroupChatFlagAlreadyReported": "כבר דיווחתם על ההודעה הזו", "messageGroupChatNotFound": "הודעה לא נמצאה!", diff --git a/common/locales/he/npc.json b/common/locales/he/npc.json index f0ffce9954..df6fc5868d 100644 --- a/common/locales/he/npc.json +++ b/common/locales/he/npc.json @@ -35,7 +35,7 @@ "amazonInstructions": "לחצו על הכפתור כדי לשלם באמצעות שירות התשלומים של אמזון.", "paymentMethods": "רכשו באמצעות", "classGear": "ציוד מקצוע", - "classGearText": "קודם כל: בלי פאניקה! הציוד הישן שלך עבר לתרמיל שלך, וכעת את/ה לובש/ת את הציוד של <%= klass %> מתחיל. לבישת הציוד המתאים למקצוע שלך מקנה לך בונוס של 50% לתכונות, אבל תרגיש/י חופשי לחזור לציוד הישן מתי שבא לך.", + "classGearText": "ראשית - לא להיבהל! הציוד הישן שלכם נמצא במלאי הציוד, ואתם כעת לובשים ציוד מתלמדים של מקצועכם החדש. לבישת בגדי המקצוע שלכם מקנה לכם תוספת של 50% לתכונות. עם זאת - הרגישו חופשיים לחזור לציודכם הישן.", "classStats": "אלו התכונות של המקצוע שלכם; הן משפיעות על המשחקיות. בכל פעם שתעלו בדרגה, תקבלו נקודה אחת לטובת תכונה ספציפית. רחפו מעל לכל אחת מהתכונות למידע נוסף.", "autoAllocate": "חלוקה אוטומטית", "autoAllocateText": "אם סימנת 'חלוקה אוטומטית', הדמות שלך מקבלת תכונות באופן אוטומאטי התלוי בתכונות של המשימות שלך. אפשר לדבוק זאת ב מטלה > ערוך > מתקדם > תכונות . כלומר, אם את/ה הולכ/ת למכון הכושר לעיתים קרובות, ומטלת מכון הכושר שלך נחשבת 'פיזית', תקבל/י כוח באופן אוטומאטי", @@ -45,7 +45,7 @@ "moreClass": "למידע נוסף אודות מערכת המקצועות, ראה/י", "tourWelcome": "ברוכים הבאים להביטיקה! זוהי רשימת המטרות שלכם. סמנו משימה כדי להמשיך!", "tourExp": "כל הכבוד! השלמת מטרה נותנת לכם ניסיון וזהב!", - "tourDailies": "עמודה זו נועדה למטלות יומיות. כדי להמשיך, הכניסו מטלות שאתם אמורים לבצע בכל יום! מטלות לדוגמה: הציעו את המיטה, חוט דנטלי, בדקו דואר אלקטרוני מהעבודה", + "tourDailies": "עמודה זו נועדה עבור מטלות יומיות. כדי להמשיך, הזינו מטלות שעליכם לבצע מידי יום!\nמטלות יומיות לדוגמה: סדרו את המיטה, חוט דנטלי, בידקו מיילים מהעבודה", "tourCron": "מעולה! מטלות יתאפסו בכל יום מחדש.", "tourHP": "הזהרו! אם לא תשלימו מטלה עד חצות, היא תפגע בכם!", "tourHabits": "עמודה זו נועדה עבור הרגלים טובים ורעים שאתם עושים פעמים רבות ביום! כדי להמשיך, לחצו על העפרון - לערוך את השמות, ולאחר מכן לחצו על ה-v כדי לשמור.", diff --git a/common/locales/he/pets.json b/common/locales/he/pets.json index e4fb461a11..7e57b58a47 100644 --- a/common/locales/he/pets.json +++ b/common/locales/he/pets.json @@ -3,10 +3,10 @@ "petsFound": "חיות מחמד שנאספו", "magicPets": "חיות מחמד קסומות", "rarePets": "חיות מחמד נדירות", - "questPets": "חיות משימה", + "questPets": "חיות הרפתקאה", "mounts": "חיות רכיבה", "mountsTamed": "חיות רכיבה שאולפו", - "questMounts": "חיות רכיבה ממשימות", + "questMounts": "חיות רכיבה מהרפתקאות", "magicMounts": "חיות רכיבה קסומות", "rareMounts": "חיות רכיבה נדירות", "etherealLion": "אריה אתרי", @@ -19,7 +19,8 @@ "orca": "אורקה", "royalPurpleGryphon": "גריפון סגול מלכותי", "phoenix": "פיניקס", - "rarePetPop1": "לחצו על הכפה הזהובה ותוכלו ללמוד כיצד להשיג חיה נדירה זו - דרך תרומה לHabitica!", + "bumblebee": "Bumblebee", + "rarePetPop1": "לחצו על הכפה הזהובה ותוכלו ללמוד כיצד להשיג חיה נדירה זו - דרך תרומה להאביטיקה!", "rarePetPop2": "איך לקבל את חיית המחמד הזו!", "potion": "שיקוי <%= potionType %>", "egg": "ביצת <%= eggType %>", @@ -40,7 +41,7 @@ "stableBeastMasterProgress": "התקדמות אדון החיות: נמצאו <%= number %> חיות מחמד", "beastAchievement": "הרווחת את הישג \"אדון החיות\" על איסוף כל חיות המחמד!", "beastMasterName": "אלוף החיות", - "beastMasterText": "Has found all 90 pets (incredibly difficult, congratulate this user!)", + "beastMasterText": "מצא את כל 90 חיות המחמד (ממש קשה, ברכו את המשתמש הזה!)", "beastMasterText2": "שחרר/ה את חיות המחמד שלה<%= count %> פעמים עד כה", "mountMasterProgress": "התקדמות אלוף הרוכבים", "stableMountMasterProgress": "התקדמות אדון חיות הרכיבה: אולפו <%= number %> חיות רכיבה", @@ -64,10 +65,10 @@ "earnedCompanion": "עם כל הפרודוקטיביות שלך, זכית במלווה חדש. האכל אותו כדי לגרום לו לגדול!", "feedPet": "להאכיל את ה<%= name %> שלך ב <%= text %>?", "useSaddle": "לשים אוכף על ה<%= pet %> שלך?", - "raisedPet": "גידלת <%= pet %>!", - "earnedSteed": "על ידי השלמת המשימות שלך, הרווחת חיית רכיבה נאמה!", - "rideNow": "רכב עכשיו", - "rideLater": "רכב מאוחר יותר", + "raisedPet": "גידלתם <%= pet %>!", + "earnedSteed": "על ידי השלמת המשימות שלכם, הרווחתם חיית רכיבה נאמה!", + "rideNow": "ריכבו עכשיו", + "rideLater": "ריכבו מאוחר יותר", "petName": "<%= egg %> <%= potion %>", "mountName": "<%= mount %> <%= potion %>", "petKeyName": "מפתח למכלאות", @@ -82,5 +83,5 @@ "petKeyBoth": "שחרר את שניהם", "confirmPetKey": "האם אתה בטוח?", "petKeyNeverMind": "עוד לא", - "gemsEach": "אבני חן לכל אחד." + "gemsEach": "אבני חן לכל אחד" } \ No newline at end of file diff --git a/common/locales/he/quests.json b/common/locales/he/quests.json index 54a385ccc0..90891622c4 100644 --- a/common/locales/he/quests.json +++ b/common/locales/he/quests.json @@ -1,30 +1,30 @@ { - "quests": "משימות", - "quest": "משימה", - "whereAreMyQuests": "הרפתקאות זמינות עכשיו בדף שלך! לחץ על ״מלאי״ -> ״הרפתקאות״ כדי למצוא אותן.", - "yourQuests": "ההרפתקאות שלך", + "quests": "הרפתקאות", + "quest": "הרפתקאה", + "whereAreMyQuests": "הרפתקאות זמינות עכשיו בדף משלהן! לחצו על ״מלאי ציוד״ -> ״הרפתקאות״ כדי למצוא אותן.", + "yourQuests": "ההרפתקאות שלכם", "questsForSale": "הרפתקאות למכירה", "petQuests": "הרפתקאות של חיות מחמד וחיות רכיבה", "unlockableQuests": "הרפתקאות שאינן ניתנות לפתיחה", "goldQuests": "הרפתקאות לרכישה בזהב", - "questDetails": "פרטי הרפתקאות", + "questDetails": "פרטי הרפתקאה", "invitations": "הזמנות", "completed": "הושלם!", - "youReceived": "קיבלת", + "youReceived": "קיבלתם", "dropQuestCongrats": "ברכות על זכייה במגילת ההרפתקאה הזו! תוכלו להזמין את החבורה שלכם כדי להתחיל את ההרפתקאה עכשיו, או לחזור אליה בכל זמן במלאי הציוד שלכם > הרפתקאות.", "questSend": "לחיצה על ״הזמן״ לתשלח הזמנות לחבורה שלכם. כשכל החברים יקבלו או ידחו את ההזמנה, ההרפתקאה תתחיל. ראו את מצב ההזמנה תחת ״חברתי״ > ״חבורה״.", "questSendBroken": "לחיצה על ״הזמן״ לתשלח הזמנות לחבורה שלכם... כשכל החברים יקבלו או ידחו את ההזמנה, ההרפתקאה תתחיל... ראו את מצב ההזמנה תחת ״חברתי״ > ״חבורה״...", "inviteParty": "הזמינו את החבורה להרפתקאה", - "questInvitation": "הזמנה למשימה:", + "questInvitation": "הזמנה להרפתקאה:", "questInvitationTitle": "הזמנה להרפתקאה", "questInvitationInfo": "הזמנה להרפתקאה <%= quest %> ", - "askLater": "שאל אחר כך", + "askLater": "שאלו אחר כך", "questLater": "צאו להרפתקאה מאוחר יותר", - "buyQuest": "קנה משימה", + "buyQuest": "קנו הרפתקאה", "accepted": "מוסכם", "rejected": "דחתה/דחה", "pending": "ממתין לתשובה", - "questStart": "ברגע שכל החברים הסכימו או דחו, המשימה מתחילה. רק אלו שלחצו \"הסכם\" יוכלו להשתתף במשימה ולקבל את הפרסים. אם חברייך משתהים יתר על המידה (לא פעילים?), ניתן להתחיל בלעדיהם על ידי לחיצה על \"התחל\". יוזם/ת המשימה יכול/ה גם לבטל אותה ולקחת את המגילה בחזרה ע\"י לחיצה על \"ביטול\".", + "questStart": "ברגע שכל החברים הסכימו או דחו, ההרפתקאה מתחילה. רק אלו שלחצו \"הסכם\" יוכלו להשתתף בהרפתקאה ולקבל את הפרסים. אם חברייך משתהים יתר על המידה (לא פעילים?), ניתן להתחיל בלעדיהם על ידי לחיצה על \"התחל\". יוזם ההרפתקאה יכול גם לבטל אותה ולקחת את המגילה בחזרה ע\"י לחיצה על \"ביטול\".", "questStartBroken": "ברגע שכל הגיבורים בחבורה אישרו או דחו אותה - ההרפתקאה מתחילה... רק אלו שלחצו על ״אשר״ יוכלו להשתתף בהרפתקאה ולקבל נפילות... אם חברים ממתינים זמן רב מידי (לא פעילים?), הבעלים של ההרפתקאה יוכול להתחיל את ההרפתקאה בלעדיהם על ידי לחיצה על ״התחל״... הבעלים של ההרפתקאה יכול גם לבטל אותה ולקבל בחזרה את מגילת ההרפתקאה על ידי לחיצה על ״בטל״...", "begin": "התחל", "bossHP": "בריאות האויב", @@ -34,42 +34,42 @@ "collected": "נאסף", "collectionItems": "<%= number %> <%= items %>", "itemsToCollect": "חפצים לאיסוף", - "bossDmg1": "כל מטלה יומית, משימה, והרגל חיובי - פוגעים באוייב. פגעו בו יותר עם משימות אדומות או ״חבטה אכזרית״ או \"פרץ להבות״. האוייב יפגע יותר בכל משתתף בהרפתקאה בעבור כל משימה יומית שתחמיצו (מוכפל בעוצמת האוייב) בנוסף לנזק הרגיל. לכן, שמרו על החבורה שלכם בריאה על-ידי סיום המטלות היומיות! כל נזק לאוייב וממנו נסכם ב״כרון״ (גלגול היום שלכם).", - "bossDmg2": "רק משתתפים שנלחמים בבוס חולקים בביזת המשימה.", + "bossDmg1": "כל מטלה יומית, הרפתקאה, והרגל חיובי - פוגעים באוייב. פגעו בו יותר עם משימות אדומות או ״חבטה אכזרית״ או \"פרץ להבות״. האוייב יפגע יותר בכל משתתף בהרפתקאה בעבור כל משימה יומית שתחמיצו (מוכפל בעוצמת האוייב) בנוסף לנזק הרגיל. לכן, שמרו על החבורה שלכם בריאה על-ידי סיום המטלות היומיות! כל נזק לאוייב וממנו נסכם ב״כרון״ (גלגול היום שלכם).", + "bossDmg2": "רק משתתפים שנלחמים באוייב חולקים בביזת ההרפתקאה.", "bossDmg1Broken": "כל מטלה יומית, משימה, והרגל חיובי - פוגעים באוייב... פגעו בו יותר עם משימות אדומו, או ״חבטה אכזרית״ או ״פרץ להבות״... האוייב יגרום נזק לכל משתתף בחבורה בעבור כל מטלה יומית שתחמיצו (מוכפלת בעוצמת האוייב), בנוסף לנזק הרגיל, אז שמרו על החבורה בריאה על ידי השלמת מטלות יומיות... כל הנזק מהאוייב נסכם ב״כרון״ (גלגול היום שלכם)...", "bossDmg2Broken": "רק משתתפים ילחמו בבוס ויחלקו בביזה מההרפתקאה", - "tavernBossInfo": "השלימו מטלות יומיות, ומשימות, והקנו לעצמכם הרגלים חיוביים כדי לפגוע באוייב העולמי! משימות יומיות שלא הושלמו ימלאו את ״מד רצף ההתשה״. כאשר צד ״רצף ההתשה״ מלא, האוייב העולמי יתקיף דב״ש. אוייב עולמי לעולם לא יפגע בשחקנים פרטיים ולא ייחשב בשום מקרה. רק חשבונות פעילים שאינם נחים באכסנייה יישתתפו בחישוב.", + "tavernBossInfo": "Complete Dailies and To-Dos and score positive Habits to damage the World Boss! Incomplete Dailies fill the Rage Bar. When the Rage 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": "השלימו מטלות יומיות, ומשימות, והקנו לעצמכם הרגלים חיוביים כדי לפגוע באוייב העולמי... משימות יומיות שלא הושלמו ימלאו את ״מד רצף ההתשה״... כאשר צד ״רצף ההתשה״ מלא, האוייב העולמי יתקיף דב״ש... אוייב עולמי לעולם לא יפגע בשחקנים פרטיים ולא ייחשב בשום מקרה... רק חשבונות פעילים שאינם נחים באכסנייה יישתתפו בחישוב...", - "bossColl1": "כדי לאסוף חפצים, בצע/י מטלות חיוביות. חפצי קווסט נופלים ממש כמו חפצים רגילים, אם כי, את/ה לא תראה/י אותם עד היום הבא, בו כל מה שמצאה החבורה ייאסף לערימת המשימה.", - "bossColl2": "רק משתתפים במשימה יכולים לאסוף חפצים ולהתחלק בשלל המשימה.", + "bossColl1": "כדי לאסוף חפצים, בצעו מטלות חיוביות. חפצי הרפתקאות נופלים ממש כמו חפצים רגילים, אם כי, אתם לא תראו אותם עד היום הבא, בו כל מה שמצאה החבורה ייאסף לערימת ההרפתקאה.", + "bossColl2": "רק משתתפים בהרפתקאה יכולים לאסוף חפצים ולהתחלק בשלל ההרפתקאה.", "bossColl1Broken": "כדי לאסוף חפצים, השלימו את המשימות החיוביות שלכם... חפצי הרפתקאות יפלו כמו עצמים רגילים; עם זאת, לא תראו את הנפילות עד ליום הבא, ואז כל מה שמצאתם ייסכם וייצטרף לערמה...", "bossColl2Broken": "רק משתתפים יכולים לאסוף חפצים ולחלוק בביזה...", "abort": "בטל", - "leaveQuest": "עזוב את ההרפתקאה", + "leaveQuest": "עיזבו את ההרפתקאה", "sureLeave": "האם אתם בטוחים שאתם מעוניינים לעזוב את ההרפתקאה הפעילה? כל ההתקדמות בהרפתקאה תאבד.", - "questOwner": "בעל/ת המשימה", - "questOwnerNotInPendingQuest": "בעל/ת המשימה עזב/ה את המשימה וכבר לא יכולה להתחיל אותה. מומלץ שגם את/ה תבטל/י אותה כעת. בעל/ת המשימה ת/ישמור על בעלות המגילה.", - "questOwnerNotInRunningQuest": "בעל/ת המשימה עזבה את המשימה. את/ה יכול/ה לבטל אותה אם זהו רצונך, או להמשיך אותה ולקבל את הפרסים בסופה, יחד עם כל שאר המשתתפים.", - "questOwnerNotInPendingQuestParty": "בעל/ת המשימה עזב/ה את המשימה וכבר לא יכולה להתחיל אותה. מומלץ שגם את/ה תבטל/י אותה כעת. בעל/ת המשימה ת/ישמור על בעלות המגילה.", - "questOwnerNotInRunningQuestParty": "בעל/ת המשימה עזבה את החבורה. את/ה יכול/ה לבטל אותה אם זהו רצונך, או להמשיך אותה ולקבל את הפרסים בסופה, יחד עם כל שאר המשתתפים..", + "questOwner": "בעל/ת ההרפתקאה", + "questOwnerNotInPendingQuest": "בעל/ת ההרפתקאה עזב/ה את ההרפתקאה וכבר לא יכול להתחיל אותה. מומלץ שגם אתם תבטלו אותה כעת. בעל/ת ההרפתקאה ת/ישמור על בעלות המגילה.", + "questOwnerNotInRunningQuest": "בעל/ת ההרפתקאה עזבה את ההרפתקאה. את/ה יכול/ה לבטל אותה אם זהו רצונך, או להמשיך אותה ולקבל את הפרסים בסופה, יחד עם כל שאר המשתתפים.", + "questOwnerNotInPendingQuestParty": "בעל/ת ההרפתקאה עזב/ה את ההרפתקאה וכבר לא יכולה להתחיל אותה. מומלץ שגם את/ה תבטל/י אותה כעת. בעל/ת המשימה ת/ישמור על בעלות המגילה.", + "questOwnerNotInRunningQuestParty": "בעל/ת ההרפתקאה עזבה את החבורה. את/ה יכול/ה לבטל אותה אם זהו רצונך, או להמשיך אותה ולקבל את הפרסים בסופה, יחד עם כל שאר המשתתפים..", "questParticipants": "משתתפים", - "scrolls": "מגילות משימה", - "noScrolls": "אין לך אף מגילת משימה.", - "scrollsText1": "משימות דורשות חבורות. אם ברצונך לצאת למשימה לבד,", + "scrolls": "מגילות הרפתקאות", + "noScrolls": "אין לכם אף מגילת הרפתקאה.", + "scrollsText1": "הרפתקאות דורשות חבורות. אם ברצונכם לצאת להרפתקאות לבד,", "scrollsText2": "צור/צרי חבורה ריקה", "scrollsPre": "טרם שיחררתם את ההרפתקאה הזו!", "alreadyEarnedQuestLevel": "כבר הרווחתם את ההרפתקאה הזו על-ידי כך שהגעתם לרמה <%= level %>.", "alreadyEarnedQuestReward": "כבר הרווחתם את ההרפתקאה הזו על-ידי כך שהשלמתם <%= priorQuest %>.", - "completedQuests": "השלמ/י את המשימות הבאות:", + "completedQuests": "השלימו את ההרפתקאות הבאות:", "mustComplete": "קודם עליך להשלים את <%= quest %>", "mustLevel": "אתם צריכים להיות ברמה <%= level %> כדי להתחיל את ההרפתקאה הזו.", - "mustLvlQuest": "עליך להיות ברמה <%= level %> כדי לקנות את המשימה הזו!", + "mustLvlQuest": "עליכם להיות ברמה <%= level %> כדי לקנות את ההרפתקאה הזו!", "mustInviteFriend": "כדי לזכות בהרפתקאה הזו, הזמן חבר לחבורה שלך. להזמין מישהו עכשיו?", "unlockByQuesting": "כדי להרוויח את ההרפתקאה הזו, השלימו <%= title %>.", - "sureCancel": "האם את/ה בטוח/ה שברצונך לבטל את המשימה? כל ההסכמות להשתתפות יאבדו בעל/ת הקווסט ת/ישמור על בעלות המגילה.", - "sureAbort": "האם את/ה בטוח/ה שברצונך לבטל את המשימה הזו? היא תבוטל עבור כל החבורה שלך, וההתקדמות שלכם תאבד. המגילה תוחזר לבעל/ת המשימה..", - "doubleSureAbort": "האם את/ה באמת באמת בטוח/ה? כל החבורה שלך עלולה לשנוא אותך לנצח!", - "questWarning": "אם שחקנים חדשים מצטרפים לחבורה לפני תחילת המשימה, גם הם יקבלו הזמנה. לעומת זאת, ברגע שהמשימה תתחיל, אף אחד מהחבורה לא יוכל להצטרף אליה.", + "sureCancel": "האם אתם בטוחים שברצונכם לבטל את ההרפתקאה? כל ההסכמות להשתתפות יאבדו, ובעלי ההרפתקאה ישמרו בעלות על המגילה.", + "sureAbort": "האם אתם בטוחים שברצונכם לבטל את ההרפתקאה הזו? היא תבוטל עבור כל החבורה שלכם, וההתקדמות שלכם תאבד. המגילה תוחזר לבעלי ההרפתקאה.", + "doubleSureAbort": "האם אתם באמת באמת בטוחים? כל החבורה שלכם עלולה לשנוא אתכם לנצח!", + "questWarning": "אם שחקנים חדשים מצטרפים לחבורה לפני תחילת ההרפתקאה, גם הם יקבלו הזמנה. לעומת זאת, ברגע שההרפתקאה תתחיל, אף אחד מהחבורה לא יוכל להצטרף אליה.", "questWarningBroken": "אם משתתפים חדשים יצטרפו לחבורה לפני שההרפתקאה תתחיל, הם גם יקבלו הזמנה... אבל, לאחר שמתחילה הרפתקאה, חברי חבורה חדשים לא יוכלו להצטרף אליה...", "bossRageTitle": "זעם", "bossRageDescription": "כאשר יתמלא הבאר הזה, הבוס ישחרר התקפה מיוחדת!", diff --git a/common/locales/he/questscontent.json b/common/locales/he/questscontent.json index 4662dff17b..3ec9a01afd 100644 --- a/common/locales/he/questscontent.json +++ b/common/locales/he/questscontent.json @@ -10,10 +10,10 @@ "questEvilSanta2CollectTracks": "עקבות", "questEvilSanta2CollectBranches": "ענפים שבורים", "questEvilSanta2DropBearCubPolarPet": "דובון קוטב (חיית מחמד)", - "questGryphonText": "הגריפון הבוער", - "questGryphonNotes": "אדון החיות הגדול, בקונזאור, קורא לחבורה שלכם לעזרה. ״בבקשה, הרפתקנים, אתם חייבים לעזור לי! הגריפון המעולה שלי ברחה והתחילה לעשות שמות בהביטיקה! אם תוכלו לעצור אותה, אוכל לתת לכם כמה מהביצים שלה!״", + "questGryphonText": "הגריפון הבוערת", + "questGryphonNotes": "אדון החיות הגדול, בקונזאור, קורא לחבורה שלכם לעזרה. ״בבקשה, הרפתקנים, אתם חייבים לעזור לי! הגריפון המעולה שלי ברחה והתחילה לעשות שמות בהאביטיקה! אם תוכלו לעצור אותה, אוכל לתת לכם כמה מהביצים שלה!״", "questGryphonCompletion": "מובסת, החיה העצומה חוזרת מבויישת לאדון שלה. ״כה אחיה! כל הכבוד הרפתקנים!״ בקונזאור קורא, ״בבקשה, הנה כמה מהביצים של הגריפון. אני בטוח שתגדלו את הקטנים האלו היטב!״", - "questGryphonBoss": "גריפון בוער", + "questGryphonBoss": "גריפון בוערת", "questGryphonDropGryphonEgg": "גריפון (ביצה)", "questGryphonUnlockText": "משחרר ביצי גריפון לקנייה בשוק", "questHedgehogText": "חיית החניתות", @@ -59,7 +59,7 @@ "questSpiderDropSpiderEgg": "עכביש (ביצה)", "questSpiderUnlockText": "משחרר ביצי עכביש למכירה בשוק", "questVice1Text": "חטא, פרק 1: שחררו עצמכם מהשפעת הדרקון", - "questVice1Notes": "

אומרים שרשע איום ונורא שוכן במערות של הר האביטיקה. מפלצת שנוכחותה משבשת את רצונם של גיבורי הארץ החזקים, וגוררת אותם כלפי הרגלים רעים ועצלנות! החיה היא דרקון עצום ורב עצמה העשוי מהצללים עצמם: זהו ״חטא״, דרקון הצללים הבוגדני! האביטיקנים אמיצים, עמדו והביסו את היצור המתועב הזה אחת ולתמיד, אך רק אם אתם מאמינים ביכולתכם להתמודד מול כוחו העצום.

\n

חטא חלק 1:

\n

\nאיך תוכל להילחם במפלצת הנוראה אם היא כבר הצליחה להשתלט עליך? אל תיפול קרבן לעצלות ולחטאים! עליך לעבוד קשה כדי להילחם בהשפעתו האפלה של הדרקון ולבטל את האחיזה שלו במוחך!

", + "questVice1Notes": "

אומרים שרשע איום ונורא שוכן במערות של הר האביטיקה. מפלצת שנוכחותה משבשת את רצונם של גיבורי הארץ החזקים, וגוררת אותם כלפי הרגלים רעים ועצלנות! החיה היא דרקון עצום ורב עצמה העשוי מהצללים עצמם: זהו ״חטא״, דרקון הצללים הבוגדני! האביטיקנים אמיצים, עמדו והביסו את היצור המתועב הזה אחת ולתמיד, אך רק אם אתם מאמינים ביכולתכם להתמודד מול כוחו העצום.

חטא חלק 1:

איך תוכלו להילחם במפלצת הנוראה אם היא כבר הצליחה להשתלט עליכם? אל תיפלו קורבן לעצלות ולחטאים! עליכם לעבוד קשה כדי להילחם בהשפעתו האפלה של הדרקון ולבטל את האחיזה שלו במוחכם!

", "questVice1Boss": "הצל של חטא", "questVice1DropVice2Quest": "חטא חלק 2 (מגילה)", "questVice2Text": "חטא, פרק 2: מצאו את מאורת הווירם", @@ -74,30 +74,30 @@ "questVice3DropDragonEgg": "דרקון (ביצה)", "questVice3DropShadeHatchingPotion": "שיקוי בקיעה צללי", "questMoonstone1Text": "שרשרת אבני הירח, חלק 1: שרשרת אבני הירח", - "questMoonstone1Notes": "

ייסורים נוראיים פגעו בהאביטיקנים. הרגלים רעים שנחשבו למתים ממזמן חוזרים לנקום. כלים יושבים לא שטופים, ספרי לימוד שוכבים בלי קורא, ודחיינות מתרוצצת!


אתם עוקבים אחרי כמה מההרגלים הרעים שחזרו אליכם לביצות הקיפאון ומגלים את העבריינית: בעלת האוב השדונית, רסידיבייט. אתם מזדרזים פנימה, נשקים מתעופפים, אך הם עוברים דרכה ללא תועלת.


״אל תתאמצו,״ היא לוחשת בנשימה יבשה. ״בלי שרשרת אבני הירח, כלום לא יכול לפגוע בי - ואדון התכשיטים @aurakami פיזר את כל אבני הירח ברחבי האביטיקה לפני הרבה זמן!״ מתנשמים, אתם נסוגים... אך אתם יודעים מה אתם צריכים לעשות.

", + "questMoonstone1Notes": "ייסורים נוראיים פגעו בהאביטיקנים. הרגלים רעים שנחשבו למתים ממזמן חוזרים לנקום. כלים יושבים לא שטופים, ספרי לימוד שוכבים בלי קורא, ודחיינות מתרוצצת

אתם עוקבים אחרי כמה מההרגלים הרעים שחזרו אליכם לביצות הקיפאון ומגלים את העבריינית: בעלת האוב השדונית, רסידיבייט. אתם מזדרזים פנימה, נשקים מתעופפים, אך הם עוברים דרכה ללא תועלת

״אל תתאמצו,״ היא לוחשת בנשימה יבשה. ״בלי שרשרת אבני הירח, כלום לא יכול לפגוע בי - ואדון התכשיטים @aurakami פיזר את כל אבני הירח ברחבי האביטיקה לפני הרבה זמן!״ מתנשמים, אתם נסוגים... אך אתם יודעים מה אתם צריכים לעשות.", "questMoonstone1CollectMoonstone": "אבני ירח", "questMoonstone1DropMoonstone2Quest": "שרשרת אבני הירח, חלק 2: רסידיבייט בעלת האוב (מגילה)", "questMoonstone2Text": "שרשרת אבני הירח, חלק 2: רסידיבייט בעלת האוב", - "questMoonstone2Notes": "

הנשק האמיץ @Inventrix מסייע לכם להפוך את אבני הירח הקסומות לשרשרת. אתם מוכנים להתעמת עם רסידיבייט סוף סוף, אך בהכנסכם לביצות הקיפאון, קור עז מקיף אתכם.


נשימה נרקבת לוחשת באוזנכם. ״חזרתם? נהדר...״ אתם מסתובבים ונוגחים, ותחת האור של שרשרת אבני הירח, נשקכם מכה בבשר מוצק. ״ייתכן וחיברתם אותי לעולם פעם נוספת,״ רסידיבייט נוהמת, ״אך כעת הגיע זמנכם לעזוב אותו!״

", + "questMoonstone2Notes": "הנשק האמיץ @Inventrix מסייע לכם להפוך את אבני הירח הקסומות לשרשרת. אתם מוכנים להתעמת עם רסידיבייט סוף סוף, אך בהכנסכם לביצות הקיפאון, קור עז מקיף אתכם.

נשימה נרקבת לוחשת באוזנכם. ״חזרתם? נהדר...״ אתם מסתובבים ונוגחים, ותחת האור של שרשרת אבני הירח, נשקכם מכה בבשר מוצק. ״ייתכן וחיברתם אותי לעולם פעם נוספת,״ רסידיבייט נוהמת, ״אך כעת הגיע זמנכם לעזוב אותו!״", "questMoonstone2Boss": "בעלת האוב", "questMoonstone2DropMoonstone3Quest": "שרשרת אבני הירח, חלק 3: רסידיבייט השתנתה (מגילה)", "questMoonstone3Text": "שרשרת אבני הירח, פרק 3: רסידיבייט השתנתה", - "questMoonstone3Notes": "

רסידיבייט נמחצת לקרקע, ואתם מכים בה עם שרשרת אבני הירח. אתם שמים לב בבעתה, שרסידיבייט חוטפת את אבני החן, עם עיניים בוערות בניצחון.


״יצורי בשר-ודם אוויליים!״ היא זועקת. ״אבני הירח הללו יחזירו אותי לצורה פיזית, נכון, אך לא כפי שדימיינתם. כשם שהירח המלא צומח מהחושך, כך גם עוצמתי מתגברת, ומהצללים אני מזמנת את את אוייבכם המפחיד ביותר!״


אובך ירוק ומחליא עולה מן הביצה, וגופה של רסידיבייט מתעוות וגבהה לצורה שממלאת אתכם בבעתה - גופו של ״חטא״ האל-מת, לחרדתכם - נולד מחדש.

", - "questMoonstone3Completion": "

אתם מתנשפים, וזיעה ניגרת על עינייכם כאשר ווירם האל-מת מתמוטט. השאריות של רסידיבייט מתפוגגות לתוך האופל האפור שנעלם במהרה תחת פרץ של בריזה מרעננת, ואתם שומעים קריאות מרוחקות של האביטיקנים מביסים את הרגליהם הרעים אחת ולתמיד.


@Baconsaur אדון החיות מגיח מלמעלה על-גבי גריפון. ״ראיתי את סוף הקרב שלכם מהשמים, ונרגשתי מאוד. בבקשה, קחו את הטוניקה הקסומה הזו - האומץ שלכם מעיד על לב אציל, ואני מאמין שהיא נועדה להיות שלכם.״

", + "questMoonstone3Notes": "רסידיבייט נמחצת לקרקע, ואתם מכים בה עם שרשרת אבני הירח. אתם שמים לב בבעתה, שרסידיבייט חוטפת את אבני החן, עם עיניים בוערות בניצחון.

״יצורי בשר-ודם אוויליים!״ היא זועקת. ״אבני הירח הללו יחזירו אותי לצורה פיזית, נכון, אך לא כפי שדימיינתם. כשם שהירח המלא צומח מהחושך, כך גם עוצמתי מתגברת, ומהצללים אני מזמנת את את אוייבכם המפחיד ביותר!״

אובך ירוק ומחליא עולה מן הביצה, וגופה של רסידיבייט מתעוות וגבהה לצורה שממלאת אתכם בבעתה - גופו של ״חטא״ האל-מת, לחרדתכם - נולד מחדש.", + "questMoonstone3Completion": "אתם מתנשפים, וזיעה ניגרת על עינייכם כאשר ווירם האל-מת מתמוטט. השאריות של רסידיבייט מתפוגגות לתוך האופל האפור שנעלם במהרה תחת פרץ של בריזה מרעננת, ואתם שומעים קריאות מרוחקות של האביטיקנים מביסים את הרגליהם הרעים אחת ולתמיד.

@Baconsaur אדון החיות מגיח מלמעלה על-גבי גריפון. ״ראיתי את סוף הקרב שלכם מהשמים, ונרגשתי מאוד. בבקשה, קחו את הטוניקה הקסומה הזו - האומץ שלכם מעיד על לב אציל, ואני מאמין שהיא נועדה להיות שלכם.״", "questMoonstone3Boss": "אוב-חטא", "questMoonstone3DropRottenMeat": "בשר רקוב (אוכל)", "questMoonstone3DropZombiePotion": "שיקוי בקיעה זומבי", "questGoldenknight1Text": "האבירה הזהובה, חלק 1: דיבור קשוח", - "questGoldenknight1Notes": "

האבירה הזהובה עברה על המקרים של ההאביטיקנים המסכנים. לא עשיתם את כל המטלות היומיות שלכם? סימנתם הרגלים שליליים? היא תשתמש בכך כסיבה להסביר לכם איך אתם צריכים לעקוב אחר הדוגמה שהיא נותנת. היא הדוגמה הזוהרת של ההאביטיקן המושלם, ואתם שום דבר מלבד כישלון. ובכן, זה לא יפה בכלל! כולם עושים טעויות. אבל לא צריכים להתקל בכזו גישה שלילית בגלל זה. אולי הגיע הזמן שתאספו כמה עדויות מהאביטיקנים שנפגעו וקיימו עם האבירה המוזהבת דיבור קשוח!

", + "questGoldenknight1Notes": "האבירה הזהובה עברה על המקרים של ההאביטיקנים המסכנים. לא עשיתם את כל המטלות היומיות שלכם? סימנתם הרגלים שליליים? היא תשתמש בכך כסיבה להסביר לכם איך אתם צריכים לעקוב אחר הדוגמה שהיא נותנת. היא הדוגמה הזוהרת של ההאביטיקן המושלם, ואתם שום דבר מלבד כישלון. ובכן, זה לא יפה בכלל! כולם עושים טעויות. אבל לא צריכים להתקל בכזו גישה שלילית בגלל זה. אולי הגיע הזמן שתאספו כמה עדויות מהאביטיקנים שנפגעו וקיימו עם האבירה המוזהבת דיבור קשוח!", "questGoldenknight1CollectTestimony": "עדויות", "questGoldenknight1DropGoldenknight2Quest": "שרשרת האבירה הזהובה, חלק 2: אבירת זהב (מגילה)", "questGoldenknight2Text": "האבירה הזהובה, חלק 2: אבירת זהב", - "questGoldenknight2Notes": "

חמושים במאות עדויות של האביטיקנים, אתם סוף סוף מתעמתים עם האבירה הזהובה. אתם מתחילים לדקלם את תלונות ההאביטיקנים אליה, אחת אחרי השנייה. ״ו @Pfeffernusse אומרת שההתרברבות הבלתי-פוסקת שלך - ״ האבירה מרימה את ידה כדי להשתיק אתכם ולגלגת, ״בבקשה, האנשים האלו בסך הכל מקנאים בהצלחה שלי. במקום להתלונן, הם פשוט צריכים לעבוד קשה כמו שאני עובדת! אולי אני צריכה להראות לכם את הכח שאתם יכולים להשיג באמצעות חריצות כמו שלי!״ היא מרימה את כוכה הבוקר ומתכוננת להכות בכם!

", + "questGoldenknight2Notes": "חמושים במאות עדויות של האביטיקנים, אתם סוף סוף מתעמתים עם האבירה הזהובה. אתם מתחילים לדקלם את תלונות ההאביטיקנים אליה, אחת אחרי השנייה. ״ו @Pfeffernusse אומרת שההתרברבות הבלתי-פוסקת שלך - ״ האבירה מרימה את ידה כדי להשתיק אתכם ומלגלגת, ״בבקשה, האנשים האלו בסך הכל מקנאים בהצלחה שלי. במקום להתלונן, הם פשוט צריכים לעבוד קשה כמו שאני עובדת! אולי אני צריכה להראות לכם את הכח שאתם יכולים להשיג באמצעות חריצות כמו שלי!״ היא מרימה את כוכב הבוקר ומתכוננת להכות בכם!", "questGoldenknight2Boss": "אבירת זהב", "questGoldenknight2DropGoldenknight3Quest": "שרשרת האבירה הזהובה, חלק 3: אביר הברזל (מגילה)", "questGoldenknight3Text": "האבירה הזהובה, חלק 3: אביר הברזל", - "questGoldenknight3Notes": "

@Jon Arinbjorn קורא לעברכם כדי למשוך את תשומת לבכם. בהשלכות הקרב, דמות חדשה הופיעה. אביר מצופה ברזל שחור מתקרב אליכם עם חרב בידו. האבירה הזהובה צועקת לעבר הדמות, ״אבא, לא!״ אך האביר לא מראה סימנים שהוא מפסיק. היא פונה אליכם ואומרת, ״צר לי. הייתי טיפשה, עם ראש גדול מכדי להבחין כמה אכזרית הייתי. אך אבא שלי אכזר יותר ממה שאני יכולתי אי פעם להיות. אם לא יעצרו אותו הוא יהרוס את כולנו. הנה, השתמשו בכוכב-הבוקר שלי ועכבו את אביר הברזל!

", - "questGoldenknight3Completion": "

עם צלצול מלא-סיפוק, אביר הברזל נופל על ברכיו וצונח. ״אתם חזקים למדי,״ הוא מתמרמר. ״השפילו אותי, היום.״ אבירת הזהב מתקרבת אליכם ואומרת, ״תודה. אני מאמינה שהרווחנו קצת ענווה ממפגשנו איתכם. אדבר עם אבי ואסביר את התלונות נגדנו. ייתכן, ועלינו להתחיל להתנצל בפני שאר ההאביטיקנים.״ היא ממלמלת במחשבתה לפני שהיא מסתובבת בחזרה אליכם. ״הנה: כמתנתנו אליכם, אני רוצה שתשמרו על כוכב-הבוקר שלי. הוא שלכם עכשיו.״

", + "questGoldenknight3Notes": "@Jon Arinbjorn קורא לעברכם כדי למשוך את תשומת לבכם. בהשלכות הקרב, דמות חדשה הופיעה. אביר מצופה ברזל שחור מתקרב אליכם עם חרב בידו. האבירה הזהובה צועקת לעבר הדמות, ״אבא, לא!״ אך האביר לא מראה סימנים שהוא מפסיק. היא פונה אליכם ואומרת, ״צר לי. הייתי טיפשה, עם ראש גדול מכדי להבחין כמה אכזרית הייתי. אך אבא שלי אכזר יותר ממה שאני יכולתי אי פעם להיות. אם לא יעצרו אותו הוא יהרוס את כולנו. הנה, השתמשו בכוכב-הבוקר שלי ועכבו את אביר הברזל!", + "questGoldenknight3Completion": "עם צלצול מלא-סיפוק, אביר הברזל נופל על ברכיו וצונח. ״אתם חזקים למדי,״ הוא מתמרמר. ״השפילו אותי, היום.״ אבירת הזהב מתקרבת אליכם ואומרת, ״תודה. אני מאמינה שהרווחנו קצת ענווה ממפגשנו איתכם. אדבר עם אבי ואסביר את התלונות נגדנו. ייתכן, ועלינו להתחיל להתנצל בפני שאר ההאביטיקנים.״ היא ממלמלת במחשבתה לפני שהיא מסתובבת בחזרה אליכם. ״הנה: כמתנתנו אליכם, אני רוצה שתשמרו על כוכב-הבוקר שלי. הוא שלכם עכשיו.״", "questGoldenknight3Boss": "אביר הברזל", "questGoldenknight3DropHoney": "דבש (מזון)", "questGoldenknight3DropGoldenPotion": "שיקוי בקיעה מוזהב", @@ -112,16 +112,16 @@ "questEggHuntCollectPlainEgg": "ביצים פשוטות", "questEggHuntDropPlainEgg": "ביצה פשוטה", "questDilatoryText": "הדרעקון האיום של עצלניה", - "questDilatoryNotes": "

היינו צריכים להקשיב לאזהרות.


עיניים בורקות. קשקשים עתיקים. לסתות ענקיות ושיניים חדות כתער. משהו איום מן המעמקים התעורר: הדרעקון האיום של עצלניה! האביטיקנים מפוחדים נפוצו לכל עבר כאשר הוא התעורר ממרבצו, שירבב את צווארו הארוך להחריד מן המים, וניפץ אינספור חלונות בשאגתו הצורמת.


\"זה בודאי מה שמשך את עצלניה למצולות!\" צועקת לימונה. \"זה לא היה המשקל של המשימות המוזנחות. המטלות האדומות רק משכו את תשומת ליבו של היצור!\"


\"היצור הזה מלא באנרגיה קסומה!\" זועק בייקונוזאורוס. \"אם הוא חי זמן כה רב, הוא בודאי מסוגל לרפא את עצמו! איך נביס אותו?\"


ובכן, באותה דרך שבה מביסים כל יצור - בעזרת פרודקטיביות! מהרי האביטיקה, חברי יחדיו כדי לחסל את משימותייך, וכולנו נילחם בתפלץ הזה יחדיו. (אין צורך לנטוש קווסטים קודמים, אנו מאמינים גדולים ביכולת שלכם לירות בכל הכיוונים!) הוא לא יתקוף אותנו אחד אחת, אבל ככל שנפספס יותר מטלות, כך נקרב אותו להפעיל את מתקפת ההזנחה שלו - ואני לא אוהב את הדרך שבה הוא מביט בפונדק...

", + "questDilatoryNotes": "היינו צריכים להקשיב לאזהרות.

עיניים בורקות. קשקשים עתיקים. לסתות ענקיות ושיניים חדות כתער. משהו איום מן המעמקים התעורר: הדרעקון האיום של עצלניה! האביטיקנים מפוחדים נפוצו לכל עבר כאשר הוא התעורר ממרבצו, שירבב את צווארו הארוך להחריד מן המים, וניפץ אינספור חלונות בשאגתו הצורמת.

\"זה בודאי מה שמשך את עצלניה למצולות!\" צועקת לימונה. \"זה לא היה המשקל של המשימות המוזנחות. המטלות האדומות רק משכו את תשומת ליבו של היצור!\"

\"היצור הזה מלא באנרגיה קסומה!\" זועק בייקונוזאורוס. \"אם הוא חי זמן כה רב, הוא בודאי מסוגל לרפא את עצמו! איך נביס אותו?\"

ובכן, באותה דרך שבה מביסים כל יצור - בעזרת פרודקטיביות! מהרי האביטיקה, חברי יחדיו כדי לחסל את משימותייך, וכולנו נילחם בתפלץ הזה יחדיו. (אין צורך לנטוש קווסטים קודמים, אנו מאמינים גדולים ביכולת שלכם לירות בכל הכיוונים!) הוא לא יתקוף אותנו אחד אחת, אבל ככל שנפספס יותר מטלות, כך נקרב אותו להפעיל את מתקפת ההזנחה שלו - ואני לא אוהב את הדרך שבה הוא מביט בפונדק...", "questDilatoryBoss": "הדרעקון האיום של עצלניה", "questDilatoryBossRageTitle": "מתקפת הזנחה", "questDilatoryBossRageDescription": "כאשר המד מתמלא עד תומו, הדרעקון האיום של עצלניה ישחרר חורבן בל יתואר על אדמות האביטיקה", - "questDilatoryDropMantisShrimpPet": "חסילון-גמל-שלמה (חיית מחמד)", - "questDilatoryDropMantisShrimpMount": "חסילון-גמל-שלמה (חיית רכיבה)", + "questDilatoryDropMantisShrimpPet": "חסילון-מנטיס (חיית מחמד)", + "questDilatoryDropMantisShrimpMount": "חסילון-מנטיס (חיית רכיבה)", "questDilatoryBossRageTavern": "`הדעקון האיום מטיל מתקפת הזנחה!`\n\nאוי ואבוי! חרף מיטב מאמצינו כמה מטלות אדומות חמקו מאיתנו והציתו את זעמו של הדרעקון! בעזרת מתקפת ההזנחה האימתנית שלו, הוא חירב את הפונדק! למזלנו, הקמנו אכסנייה בעיר הסמוכה, ואתם מוזמנים להמשיך לשוחח כאן על חוף הים... אבל דניאל הפונדקאי המסכן נאלץ לחזות בבניין היפה שלו מתמוטט סביבו!\n\nאני מקווה שהמפלצת לא תתקוף שוב!", "questDilatoryBossRageStables": "`הדעקון האיום מטיל מתקפת הזנחה!`\n\nאויה! שוב הזנחנו יותר מדי מטלות ללא עשייה. הדרעקון שיחרר את מתקפת ההזנחה שלו על מאט והאורוות! חיות מחמד החלו לנוס לכל הכיוונים. למרבה המזל נראה כאילו החיות שלך נשארו בטוחות!\n\nהאביטיקה המסכנה! אני מקווה שזה לא יקרה שוב. שנסו מותניים ובצעו את המשימות שלכם!", "questDilatoryBossRageMarket": "`הדעקון האיום מטיל מתקפת הזנחה!`\n\nאאאההה!! החנות של אלכס הסוחר נופצה לרסיסים בידי מתקפת ההזנחה של הדרעקון! אבל לפחות זה נראה שאנחנו מתישים את החיה הנוראית הזו. אני בספק שיש לה כוח למכה נוספת.\n\nאל תתייאשו, אנשי האביטיקה! הבה נסלק את המפלצת הזו הרחק מחופינו!", - "questDilatoryCompletion": "`הבסת את הדרעקון האיום של עצלניה`\n\nעשינו זאת! עם שאגה אחרונה בהחלט, הדרעקון האיום קורס ושוחה הרחק הרחק מכאן. קהל של האביטיקנים צוהלים שועט לעבר החוף! בכוחות משותפים, עזרנו למאט, דניאל ואלכס לשקם את הבניינים שלהם. אבל מה זה?\n\n`האזרחים חוזרים!`\n\nכעת משהדרעקון ברח, אלפי צבעים מנצנצים עולים מן הים. זהו נחיל ססגוני של חסילוני-גמל-שלמה... וביניהם, מאות אנשי ים!\n\n\"אנו אזרחי עצלניה!\" מסביר המנהיג שלהם, חתול-ים. \"כאשר עצלניה שקעה, חסילוני-גמל-השלמה שחיו בים הזה הטילו לחש שיהפוך אותנו לאנשי-ים כדי שנשרוד. אבל בזעמו היוקד, הדרעקון המרשע כלא את כולנו בנקיק התת ימי האפלולי. כולנו היינו כלואים שם במשך מאות שנים - אבל כעת אנו סוף סוף חופשיים לשקם את העיר שלנו!\"\n\n\"כאות תודה לכם,\" אומר אוטל, \"אנא קבלו את חסילון-גמל-שלמה המחמד הזה, ואת חסילון-גמל-השלמה הזה, שמיועד לרכיבה. קחו גם קצת נק\"נ, זהב, ואת תודתנו הנצחית.\"\n\n`פרסים`\n* חסילון-גמל-שלמה-מחמד\n* חסילון-גמל-שלמה-רכיבה\n* שוקולד, סוכר שמבלולו ורוד, סוכר שמבלולו כחול, דג, דבש, בשר, חלב, תפוח אדמה, בשר רקוב, תות.\n* תודה נצחית", + "questDilatoryCompletion": "`הבסתם את הדרעקון האיום של עצלניה`\n\nעשינו זאת! עם שאגה אחרונה בהחלט, הדרעקון האיום קורס ושוחה הרחק הרחק מכאן. קהל של האביטיקנים צוהלים שועט לעבר החוף! בכוחות משותפים, עזרנו למאט, דניאל ואלכס לשקם את הבניינים שלהם. אבל מה זה?\n\n`האזרחים חוזרים!`\n\nכעת משהדרעקון ברח, אלפי צבעים מנצנצים עולים מן הים. זהו נחיל ססגוני של חסילוני-מנטיס... וביניהם, מאות אנשי ים!\n\n\"אנו אזרחי עצלניה!\" מסביר המנהיג שלהם, חתול-ים. \"כאשר עצלניה שקעה, חסילוני-מנטיס שחיו בים הזה הטילו לחש שיהפוך אותנו לאנשי-ים כדי שנשרוד. אבל בזעמו היוקד, הדרעקון המרשע כלא את כולנו בנקיק התת ימי האפלולי. כולנו היינו כלואים שם במשך מאות שנים - אבל כעת אנו סוף סוף חופשיים לשקם את העיר שלנו!\"\n\n\"כאות תודה לכם,\" אומר אוטל, \"אנא קבלו את חסילון-מנטיס המחמד הזה, ואת חסילון-המנטיס הזה, שמיועד לרכיבה. קחו גם קצת נקודות ניסיון, זהב, ואת תודתנו הנצחית.\"\n\n`פרסים`\n* חסילון-מנטיס-מחמד\n* חסילון-מנטיס-רכיבה\n* שוקולד, שמבלולו ורוד, שמבלולו כחול, דג, דבש, בשר, חלב, תפוח אדמה, בשר רקוב, תות.\n* תודה נצחית", "questSeahorseText": "המירוץ של עצלניה", "questSeahorseNotes": "זה יום המירוץ, והאביטיקנים מכל רחבי היבשת הגיעו לעצלניה כדי להתחרות עם סוסי הים שלהם! לפתע, שפריץ מים אדיר וחרחור מחורחר פורצים במסלול המירוצים, ואתם שומעים את קולו של שומר הסוסים קיוויבוט זועקת מבעד לגלים. \"כל סוסוני הים האלה משכו את סוס-הים-המגה-אולטרה-סופר-דופר!\" היא מזהירה. \"הוא מנתץ את האורוות ומחרב את מסלול המירוצים, מישהו יכול להרגיע אותו?\"", "questSeahorseCompletion": "סוס-הים-המגה-אולטרה-סופר-דופר שבדיוק הצלחת לאלף שוחה לצידך בצייתנות. \"הביטו וראו!\" אומרת קיוויבוט. \"הוא רוצה שנטפל בילדיו.\" היא מעניקה לך שלוש ביצים. \"גדלו אותם היטב,\" היא אומרת. \"אתם מוזמנים למירוץ של עצלניה בכל יום!\"", @@ -140,9 +140,9 @@ "questAtom3Notes": "בצווחה מחרישת אוזניים, בעוד 5 סוגי גבינה מעוררי תיאבון נפלטים מפיה, המפלצת מלוחטיף-נס מתפרקת לחתיכות. \"מה זה צריך להיות?!\" נשמע קול זועם מתחת לפני האגם. דמות כחלחלה ועטויית חלוק צצה מבין הגלים, ובידה מברשת לניקוי אסלות. \"קודם שטפת את הכלים המלוכלכים להפליא שלי, וכעת הרגת את חיית המחמד שלי! ובכלל, מה פשר הבגדים הנקיים הללו שלעורך?! היכון והיכוני, בני תמותה, לחוש בזעמו של המכבס באוב!\"", "questAtom3Completion": "המכבס באוב הובס בקרב! בגדים נקיים נופלים סביבך מכל עבר, ולמעשה, המקום נראה הרבה יותר טוב כשהוא מצוחצח. תוך כדי פשפוש בשריונות המצוחצחים הפזורים סביב, ניצוץ מתכתי תופס את עינייך, זו קסדה מבריקה. אולי לעולם לא נדע מי הטיפוס המסתורי שהיה (או הייתה!) הבעלים הקודם של הקסדה הזו, אך בעודך חובש/ת אותה, ניתן להרגיש בנוכחותה של רוח נדיבה במיוחד. ממש חבל שהם לא תפרו איזה תג שם על הדבר הזה. טוב נו, עכשיו זה שלך.", "questAtom3Boss": "המכבס באוב", - "questAtom3DropPotion": "Base Hatching Potion", + "questAtom3DropPotion": "שיקוי בקיעה בסיסי", "questOwlText": "ינשוף הלילה", - "questOwlNotes": "אור הפונדק לשחר זורח
עד שערב אחד הזוהר בורח!
איך נראה משהו בלילות לבנים?
@Twitching קורא, ״אנחנו צריכים לוחמים!
רואים את הינשוף בלילה שועט?
הלחמו במרץ מבלי להאט!
נבריח את צילו דרך הדלת,
והאור יזרח פעם נוספת!״", + "questOwlNotes": "אור הפונדק לשחר זורח
עד שערב אחד הזוהר בורח!
איך נראה משהו בלילות לבנים?
@Twitchingקורא, ״אנחנו צריכים לוחמים!
רואים את הינשוף בלילה שועט?
הלחמו במרץ מבלי להאט!
נבריח את צילו דרך הדלת,
והאור יזרח פעם נוספת!״", "questOwlCompletion": "ינשוף הלילה עף ללא שיהוק,
ועם זאת מתגנב אליכם פיהוק
אולי הגיע זמן למנוחה?
אז על המיטה, אתם רואים ביצה!
ינשוף לילה יודע שזה יכול להיות נהדר
לסיים עבודה ולהשאר ער עד מאוחר
אך חיות המחמד החדשות, בשקט לוחשות
אולי הגיע הזמן להכנס מתחת לשמיכות.", "questOwlBoss": "ינשוף הלילה", "questOwlDropOwlEgg": "ינשוף (ביצה)", @@ -216,14 +216,14 @@ "questWhaleDropWhaleEgg": "לווייתן (ביצה)", "questWhaleUnlockText": "משחרר ביצי לווייתן למכירה בשוק", "questDilatoryDistress1Text": "מצוקה משתהה, חלק 1: הודעה בתוך בקבוק", - "questDilatoryDistress1Notes": "הודעה בתוך בקבוק הגיעה מהעיר שנבנתה מחדש, ״מישתהה״! רשום בהודעה: ״הביטיקנים יקרים, אנחנו צריכים את עזרתכם שוב. הנסיכה שלנו נעלמה והעיר נמצאת תחת מצור של שדים מימיים לא ידועים! גמלי שלמה השרימפסיים עוצרים את התוקפים בפרץ. בבקשה עזרו לנו!״ כדי לערוך את המסע הארוך לעיר השקועה, צריכים להיות מסוגלים לנשום מים. למרבה המזל, האלכמאים @Benga ו @hazel יכולים לאפשר זאת! אתם רק צריכים למצוא את המרכיבים המתאימים.", - "questDilatoryDistress1Completion": "אתם לובשים את השריון המסנופר ושוחים ל״מישתהה״ הכי מהר שאתם יכולים. התושבי-ים וחבריהם גמלי שלמה השרמפסיים הצליחו לשמר את המפלצות מחוץ לעיר לעת עתה, אך הם מפסידים. אתם בקושי מספיקים להכנס לחומות העיר כשהמצור הנורא יורד!", + "questDilatoryDistress1Notes": "הודעה בתוך בקבוק הגיעה מהעיר שנבנתה מחדש, ״מישתהה״! רשום בהודעה: ״האביטיקנים יקרים, אנחנו צריכים את עזרתכם שוב. הנסיכה שלנו נעלמה והעיר נמצאת תחת מצור של שדים מימיים לא ידועים! חסילוני המנטיס עוצרים את התוקפים בפרץ. בבקשה עזרו לנו!״ כדי לערוך את המסע הארוך לעיר השקועה, צריכים להיות מסוגלים לנשום מים. למרבה המזל, האלכמאים @Benga ו @hazel יכולים לאפשר זאת! אתם רק צריכים למצוא את המרכיבים המתאימים.", + "questDilatoryDistress1Completion": "אתם לובשים את השריון המסנופר ושוחים ל״מישתהה״ הכי מהר שאתם יכולים. התושבי-ים וחבריהם חסילוני המנטיס הצליחו לשמר את המפלצות מחוץ לעיר לעת עתה, אך הם מפסידים. אתם בקושי מספיקים להכנס לחומות העיר כשהמצור הנורא יורד!", "questDilatoryDistress1CollectFireCoral": "אלמוג אש", "questDilatoryDistress1CollectBlueFins": "סנפירים כחולים", "questDilatoryDistress1DropArmor": "שריון אוקיאנוס מסנופר (שריון)", "questDilatoryDistress2Text": "מצוקה משתהה, חלק 2: יצורי הנקיק", "questDilatoryDistress2Notes": "ניתן לראות את המצור מקילומטרים: אלפי גולגולות חסרות גוף ממהרות דרך פורטל בקירות הנקיק ועושות את דרכן ל״מישתהה״.

כשאתם פוגשים את מלך מנטה בחדר המלחמה שלו, עיניו נראות שקועות, ופניו מודאגת. \"הבת שלי, אדוה, נעלמה ב״נקיק האפל״ ממש לפני שהמצור הזה התחיל. בבקשה מיצאו אותה והחזירו אותה הביתה בשלום! אני אשאיל לכם את עיגול אלמוגי האש שלי כדי לעזור לכם. אם אתם מצליחים, הוא שלכם.\"", - "questDilatoryDistress2Completion": "אתם מנצחים את עדר הגולגולות הסיוטי, אבל אתם מרגישים שלא התקרבתם למצוא את אדוה. אתם מדברים עם @Kiwibot, הגשש המלכותי, כדי לראות אם יש לה רעיונות. \"גמל השלמה השרימפסי שהגן על העיר בטח ראה את אדוה בורחת,\" @Kiwibot אומר. \"נסו לעקוב אחריהם לנקיק האפל.\"", + "questDilatoryDistress2Completion": "אתם מנצחים את עדר הגולגולות הסיוטי, אבל אתם מרגישים שלא התקרבתם למצוא את אדוה. אתם מדברים עם @Kiwibot, הגשש המלכותי, כדי לראות אם יש לה רעיונות. \"חסילון המנטיס שהגן על העיר בטח ראה את אדוה בורחת,\" @Kiwibot אומר. \"נסו לעקוב אחריהם לנקיק האפל.\"", "questDilatoryDistress2Boss": "נחיל גולגלות מים", "questDilatoryDistress2RageTitle": "עלייתו מחדש של הנחיל", "questDilatoryDistress2RageDescription": "עלייתו מחדש של הנחיל: מד זה מתמלא כשאינכם משלימים את המטלות היומיות שלכם. כאשר הוא מלא, נחיל גולגלות המים יתרפא ב 30% o מהבריאות שנותרה לו!", @@ -232,7 +232,7 @@ "questDilatoryDistress2DropCottonCandyBluePotion": "שיקוי בקיעה שמבלולו כחול", "questDilatoryDistress2DropHeadgear": "עיגול אלמוג אש (לראש)", "questDilatoryDistress3Text": "מצוקה משתהה, חלק 3: לא עוזרת-ים", - "questDilatoryDistress3Notes": "אתם עוקבים אחר גמל השלמה השרימפסאי עמוק לתוך הנקיק, ומגלים מבצר תת-ימי. הנסיכה אדוה, מלווה בעוד גולגולות מימיות, מחכה לכם באולם המרכזי. \"אבא שלי שלח אתכם, הלא כן? תגידו לו שאני מסרבת לחזור. אני מרוצה מלהישאר כאן ולתרגל את יכולות הכישוף שלי. עיזבו עכשיו, או שתרגישו את זעמה של המלכת האוקיינוס החדשה!\" אדוה נראית מאוד נחושה בדעתה, אבל כשהיא מדברת אתם מבחינים בתליון פנינת אודם מוזר תלוי על צווארה, זוהר בצורה מאיימת... אולי הזיותיה יחדלו ברגע שתשברו אותו?", + "questDilatoryDistress3Notes": "אתם עוקבים אחר חסילון המנטיס עמוק לתוך הנקיק, ומגלים מבצר תת-ימי. הנסיכה אדוה, מלווה בעוד גולגולות מימיות, מחכה לכם באולם המרכזי. \"אבא שלי שלח אתכם, הלא כן? תגידו לו שאני מסרבת לחזור. אני מרוצה מלהישאר כאן ולתרגל את יכולות הכישוף שלי. עיזבו עכשיו, או שתרגישו את זעמה של מלכת האוקיינוס החדשה!\" אדוה נראית מאוד נחושה בדעתה, אבל כשהיא מדברת אתם מבחינים בתליון פנינת אודם מוזר תלוי על צווארה, זוהר בצורה מאיימת... אולי הזיותיה יחדלו ברגע שתשברו אותו?", "questDilatoryDistress3Completion": "לבסוף, אתם מצליחים למשוך את התליון המכושף מצווארה של אדוה ולהשליך אותו. אדוה לופתת את ראשה. \"איפה אני? מה קרה כאן?\" לאחר ששמעה את הסיפור שלכם, היא מקמטת זועפת. \"שרשרת זו ניתנה לי על ידי שגרירה מוזרה - גברת בשם \"צינה\". אני לא זוכרת שום דבר מאז\"

חזרה ב״מישתהה״, מנטה מאושרת מהצלחתכם. \"הרשו לי לתגמל אתכם עם קלשון ומגן אלו! הזמנתי אותם מ @aiseant ו @starsystemic במתנה לאדוה, אבל... אני מעדיפה לא לשים נשק בידיה בזמן קרוב.\"", "questDilatoryDistress3Boss": "אדוה, בתולת הים המתקוממת", "questDilatoryDistress3DropFish": "דג (אוכל)", @@ -286,10 +286,27 @@ "questSabretoothBoss": "חתול-ניב זומבי", "questSabretoothDropSabretoothEgg": "שן חתול-ניב (ביצה)", "questSabretoothUnlockText": "משחרר ביצי חתול-ניב לרכישה בשוק", - "questMonkeyText": "Monstrous Mandrill and the Mischief Monkeys", - "questMonkeyNotes": "The Sloensteadi Savannah is being torn apart by the Monstrous Mandrill and his Mischief Monkeys! They shriek loudly enough to drown out the sound of approaching deadlines, encouraging everyone to avoid their duties and keep monkeying around. Alas, plenty of people ape this bad behavior. If no one stops these primates, soon everyone's tasks will be as red as the Monstrous Mandrill's face!

\"It will take a dedicated adventurer to resist them,\" says @yamato.

\"Quick, let's get this monkey off everyone's backs!\" @Oneironaut yells, and you charge into battle.", - "questMonkeyCompletion": "You did it! No bananas for those fiends today. Overwhelmed by your diligence, the monkeys flee in panic. \"Look,\" says @Misceo. \"They left a few eggs behind.\"

@Leephon grins. \"Maybe a well-trained pet monkey can help you as much as the wild ones hinder you!\"", - "questMonkeyBoss": "Monstrous Mandrill", - "questMonkeyDropMonkeyEgg": "Monkey (Egg)", - "questMonkeyUnlockText": "Unlocks purchasable Monkey eggs in the Market" + "questMonkeyText": "הקפטן המפלצתי והקופים השובבים", + "questMonkeyNotes": "סוואנת הלאטאבלבטוח נקרעת לגזרים על ידי הקפטן המפלצתי והקופים השובבים שלו! הם צווחים בקול רם מספיק כדי להתגבר על רעש של דד-ליינים מתקרבים, מעודדים את כולם להתחמק מאחריות ולהמשיך לחפף. למרבה הצער, הרבה אנשים מחקים התנהגות רעה זו. אם אף אחד לא יעצור את הפרימטים האלו, בקרוב המשימות של כולם תהיינה אדומות כמו פניו של הקפטן המפלצתי!

\"יהיה צורך בהרפתקן מסור כדי להתנגד להם\", אומרyamato@.

\"מהר, בואו נוריד את הקופים הללו מהגב של כולם!\" @Oneironaut צועק, ואתם תוקפים.", + "questMonkeyCompletion": "עשיתם זאת! אין להם יותר בננות היום. מרוב החריצות שלכם, הקופים בורחים בבהלה. \"תראה\", אומר @Misceo. \"הם השאירו כמה ביצים מאחור.\"

@Leephon מחייך. \"אולי קוף מחמד מאומן היטב יכול לעזור לכם כמו שהפראיים הפריעו!\"", + "questMonkeyBoss": "קפטן מפלצתי", + "questMonkeyDropMonkeyEgg": "קוף (ביצה)", + "questMonkeyUnlockText": "משחרר ביצי קוף לרכישה בשוק", + "questSnailText": "חילזון בוצת העבודה השחורה", + "questSnailNotes": "אתם מתרגשים להתחיל הרפתקאה בצינוק הנטוש של עבודות הפרך, אבל ברגע שאתם נכנסים, אתם מרגישים את הקרקע מתחת לרגליים שלכם מתחילה לינוק את המגפיים. אתם מביטים על השביל קדימה ורואים האביטיקנים שקועים ברפש. @Overomega צועק, \"יש להם יותר מדי משימות ומטלות יומיות לא חשובות, והם תקועים על דברים שלא משנים! מישכו אותם!\"

\"אתם צריכים למצוא את המקור של הבוץ,\" @Pfeffernusse מסכים, \"או שמשימות שהם לא יכולים להשלים יגררו אותם לנצח!\"

שולפים את הנשק שלכם, אתם מדשדשים בבוץ דביק... ופוגשים את החילזון האימתני של עבודת פרך בוצתית.", + "questSnailCompletion": "אתם מניפים את נשקיכם על קונכיית החילזון הענקית, סודקים אותה לשתיים, ושטף מים משתחרר. הבוצה נשטפת, וההאביטיקנים סביבכם קופצים משמחה. ״הסתכלו!״ קורא @Misceo. ״יש קבוצה קטנה של ביצי חילזון בשאריות של הטינופת.״", + "questSnailBoss": "חילזון בוצת עבודת פרך", + "questSnailDropSnailEgg": "חילזון (ביצה)", + "questSnailUnlockText": "משחרר ביצי חלזונות לרכישה בשוק", + "questBewilderText": "The Be-Wilder", + "questBewilderNotes": "The party begins like any other.

The appetizers are excellent, the music is swinging, and even the dancing elephants have become routine. Habiticans laugh and frolic amid the overflowing floral centerpieces, happy to have a distraction from their least-favorite tasks, and the April Fool whirls among them, eagerly providing an amusing trick here and a witty twist there.

As the Mistiflying clock tower strikes midnight, the April Fool leaps onto the stage to give a speech.

“Friends! Enemies! Tolerant acquaintances! Lend me your ears.” The crowd chuckles as animal ears sprout from their heads, and they pose with their new accessories.

“As you know,” the Fool continues, “my confusing illusions usually only last a single day. But I’m pleased to announce that I’ve discovered a shortcut that will guarantee us non-stop fun, without having to deal with the pesky weight of our responsibilities. Charming Habiticans, meet my magical new friend... the Be-Wilder!”

Lemoness pales suddenly, dropping her hors d'oeuvres. “Wait! Don’t trust--”

But suddenly mists are pouring into the room, glittering and thick, and they swirl around the April Fool, coalescing into cloudy feathers and a stretching neck. The crowd is speechless as an monstrous bird unfolds before them, its wings shimmering with illusions. It lets out a horrible screeching laugh.

“Oh, it has been ages since a Habitican has been foolish enough to summon me! How wonderful it feels, to have a tangible form at last.”

Buzzing in terror, the magic bees of Mistiflying flee the floating city, which sags from the sky. One by one, the brilliant spring flowers wither up and wisp away.

“My dearest friends, why so alarmed?” crows the Be-Wilder, beating its wings. “There’s no need to toil for your rewards any more. I’ll just give you all the things that you desire!”

A rain of coins pours from the sky, hammering into the ground with brutal force, and the crowd screams and flees for cover. “Is this a joke?” Baconsaur shouts, as the gold smashes through windows and shatters roof shingles.

PainterProphet ducks as lightning bolts crackle overhead, and fog blots out the sun. “No! This time, I don’t think it is!”

Quickly, Habiticans, don’t let this World Boss distract us from our goals! Stay focused on the tasks that you need to complete so we can rescue Mistiflying -- and hopefully, ourselves.", + "questBewilderCompletion": "The Be-Wilder is DEFEATED!

We've done it! The Be-Wilder lets out a ululating cry as it twists in the air, shedding feathers like falling rain. Slowly, gradually, it coils into a cloud of sparkling mist. As the newly-revealed sun pierces the fog, it burns away, revealing the coughing, mercifully human forms of Bailey, Matt, Alex.... and the April Fool himself.

Mistiflying is saved!

The April Fool has enough shame to look a bit sheepish. “Oh, hm,” he says. “Perhaps I got a little…. carried away.”

The crowd mutters. Sodden flowers wash up on sidewalks. Somewhere in the distance, a roof collapses with a spectacular splash.

“Er, yes,” the April Fool says. “That is. What I meant to say was, I’m dreadfully sorry.” He heaves a sigh. “I suppose it can’t all be fun and games, after all. It might not hurt to focus occasionally. Maybe I’ll get a head start on next year’s pranking.”

Redphoenix coughs meaningfully.

“I mean, get a head start on this year’s spring cleaning!” the April Fool says. “Nothing to fear, I’ll have Habit City in spit-shape soon. Luckily nobody is better than I at dual-wielding mops.”

Encouraged, the marching band starts up.

It isn’t long before all is back to normal in Habit City. Plus, now that the Be-Wilder has evaporated, the magical bees of Mistiflying bustle back to work, and soon the flowers are blooming and the city is floating once more.

As Habiticans cuddle the magical fuzzy bees, the April Fool’s eyes light up. “Oho, I’ve had a thought! Why don’t you all keep some of these fuzzy Bee Pets and Mounts? It’s a gift that perfectly symbolizes the balance between hard work and sweet rewards, if I’m going to get all boring and allegorical on you.” He winks. “Besides, they don’t have stingers! Fool’s honor.”", + "questBewilderCompletionChat": "`The Be-Wilder is DEFEATED!`\n\nWe've done it! The Be-Wilder lets out a ululating cry as it twists in the air, shedding feathers like falling rain. Slowly, gradually, it coils into a cloud of sparkling mist. As the newly-revealed sun pierces the fog, it burns away, revealing the coughing, mercifully human forms of Bailey, Matt, Alex.... and the April Fool himself.\n\n`Mistiflying is saved!`\n\nThe April Fool has enough shame to look a bit sheepish. “Oh, hm,” he says. “Perhaps I got a little…. carried away.”\n\nThe crowd mutters. Sodden flowers wash up on sidewalks. Somewhere in the distance, a roof collapses with a spectacular splash.\n\n“Er, yes,” the April Fool says. “That is. What I meant to say was, I’m dreadfully sorry.” He heaves a sigh. “I suppose it can’t all be fun and games, after all. It might not hurt to focus occasionally. Maybe I’ll get a head start on next year’s pranking.”\n\nRedphoenix coughs meaningfully.\n\n“I mean, get a head start on this year’s spring cleaning!” the April Fool says. “Nothing to fear, I’ll have Habit City in spit-shape soon. Luckily nobody is better than I at dual-wielding mops.”\n\nEncouraged, the marching band starts up.\n\nIt isn’t long before all is back to normal in Habit City. Plus, now that the Be-Wilder has evaporated, the magical bees of Mistiflying bustle back to work, and soon the flowers are blooming and the city is floating once more.\n\nAs Habiticans cuddle the magical fuzzy bees, the April Fool’s eyes light up. “Oho, I’ve had a thought! Why don’t you all keep some of these fuzzy Bee Pets and Mounts? It’s a gift that perfectly symbolizes the balance between hard work and sweet rewards, if I’m going to get all boring and allegorical on you.” He winks. “Besides, they don’t have stingers! Fool’s honor.”", + "questBewilderBossRageTitle": "Beguilement Strike", + "questBewilderBossRageDescription": "When this gauge fills, The Be-Wilder will unleash its Beguilement Strike on Habitica!", + "questBewilderDropBumblebeePet": "Bumblebee (Pet)", + "questBewilderDropBumblebeeMount": "Bumblebee (Mount)", + "questBewilderBossRageMarket": "`The Be-Wilder uses BEGUILEMENT STRIKE!`\n\nOh no! Despite our best efforts, we've gotten distracted by the Be-Wilder’s charming illusions and have forgotten to do some of our Dailies! With a cackling cry, the shining bird beats its wings, raising a swarm of mist around Alex the Merchant. When the fog clears, he has been possessed! “Have some free samples!” he shouts gleefully, and begins to hurl exploding eggs and potions at fleeing Habiticans. Not the most favorable of sales, to be sure.\n\nHurry! Let's stay focused on our Dailies to defeat this monster before it possesses someone else.", + "questBewilderBossRageStables": "`The Be-Wilder uses BEGUILEMENT STRIKE!`\n\nAhh!!! Once again the Be-Wilder has dazzled us into neglecting our Dailies, and now it has attacked Matt the Beast Master! With a swirl of mist, Matt transforms into a terrifying winged creature, and all the pets and mounts howl sadly in their stables. Quickly, stay focused on your tasks to defeat this dastardly distraction!", + "questBewilderBossRageBailey": "`The Be-Wilder uses BEGUILEMENT STRIKE!`\n\nLook out! In the middle of reporting the news, Bailey the Town Crier has been possessed by the Be-Wilder! She lets out an evil, uninformative screech as she rises into the air. Now how will we know what’s going on?\n\nDon't give up... we're so close to defeating this bothersome bird for once and for all!" } \ No newline at end of file diff --git a/common/locales/he/rebirth.json b/common/locales/he/rebirth.json index 700d83ac75..83ccf118e3 100644 --- a/common/locales/he/rebirth.json +++ b/common/locales/he/rebirth.json @@ -1,10 +1,10 @@ { - "rebirthNew": "תקומה: הרפתקה חדשה זמינה!", - "rebirthUnlock": "הרווחת את הלידה מחדש! חפץ השוק המיוחד הזה מאפשר לך להתחיל משחק חדש ברמה 1 ועדיין לשמור את המשימות, ההישגים, החיות שלך, ועוד. השתמש בזה כדי לנשוף חיים חדשים לריאות של Habitica, אם אתה מרגיש שכבר יש לך הכל, או כדי לחוות את הגימיקים החדשים דרך העיניים הרעננות של שחקן מתחיל!", + "rebirthNew": "לידה מחדש: הרפתקאה חדשה זמינה!", + "rebirthUnlock": "הרווחתם את הלידה מחדש! חפץ השוק המיוחד הזה מאפשר לכם להתחיל משחק חדש ברמה 1 ועדיין לשמור את המשימות, ההישגים, החיות שלכם, ועוד. השתמשו בזה כדי לנשוף חיים חדשים לריאות של האביטיקה, אם אתה מרגישים שכבר יש לכם הכל, או כדי לחוות את התכונות החדשות דרך העיניים הרעננות של שחקן מתחיל!", "rebirthBegin": "לידה מחדש: להתחיל הרפתקה חדשה", - "rebirthStartOver": "לידה מחדש מתחילה את הדמות שלך מחדש ברמה 1.", + "rebirthStartOver": "לידה מחדש מתחילה את הדמות שלכם מחדש ברמה 1.", "rebirthAdvList1": "אתה חוזר לרפואה שלמה.", - "rebirthAdvList2": "אין לך ניסיון, זהב, או ציוד (למעט חפצים חופשיים כמו חפצים דמיוניים).", + "rebirthAdvList2": "אין לכם ניסיון, זהב, או ציוד (למעט חפצים חופשיים כמו חפצים מיסתוריים).", "rebirthAdvList3": "ההרגלים, המטלות היומיות והמשימות ארוכות הטווח שלך והפכו לצהובות, והרצפים שלך יתאפסו.", "rebirthAdvList4": "המקצוע שלך יהיה לוחם/ת עד שתרוויח/י מקצוע חדש.", "rebirthInherit": "הדמות החדשה שלך יורשת מספר דברים מהקודמת:", @@ -12,7 +12,7 @@ "rebirthInList2": "אתגרים, גילדות, וחברות בחבורה נשארים.", "rebirthInList3": "אבני חן, רמות תמיכה ורמות תרומה נשארים.", "rebirthInList4": "חפצים שהושגו בעזרת אבני חן או ביזה (למשל חיות מחמד ורכיבה) ישארו, אך לא תהיה לך גישה אליהם עד שלא תרוויח/י את הרמה המספקת.", - "rebirthInList5": "Limited edition equipment you've purchased can be repurchased, even if its event has ended. To repurchase class-specific equipment, you must first change to the correct class.", + "rebirthInList5": "ציוד ממהדורות מוגבלות שרכשתם ניתן לרכישה שוב, גם אם הארוע הסתיים. כדי לרכוש מחדש ציוד ייחודי למקצוע, עליכם ראשית להחליף למקצוע המתאים.", "rebirthEarnAchievement": "את/ה גם מקבל/ת הישג מכך שהתחלת הרפתקה חדשה!", "beReborn": "היוולד מחדש", "rebirthAchievement": "התחלת הרפתקה חדשה! זוהי הלידה ה<%= number %> שלך מחדש, והרמה הכי גבוהה אליה הגעת היא <%= level %>. כדי לשבור שיא זה, נסה/י להגיע לרמה גבוהה יותר לפני שתתחיל/י מחדש שוב!", @@ -23,6 +23,6 @@ "rebirthOrb100": "השתמשת בכדור הלידה מחדש כדי להתחיל מחדש לאחר הגעה לרמה 100 או יותר", "rebirthPop": "התחיל/י דמות חדשה ברמה 1 עם אותם הישגים, חפצי אספנות, משימות והיסטוריה.", "rebirthName": "כדור הלידה מחדש", - "reborn": "היוולד/י מחדש. רמה מירבית: <%= reLevel %>", - "confirmReborn": "האם אתה בטוח?" + "reborn": "היוולדו מחדש. רמה מירבית: <%= reLevel %>", + "confirmReborn": "האם אתם בטוחים?" } \ No newline at end of file diff --git a/common/locales/he/settings.json b/common/locales/he/settings.json index 0c513bbaa0..3185d6aed0 100644 --- a/common/locales/he/settings.json +++ b/common/locales/he/settings.json @@ -2,7 +2,7 @@ "settings": "הגדרות", "language": "שפה", "americanEnglishGovern": "במקרה של חוסר נאמנות למקור, הגרסה האנגלית האמריקאית היא שקובעת.", - "helpWithTranslation": "האם אתה רוצה לעזור בתרגום Habitica? נהדר! בקרו ב זה כרטיס ה-Trello.", + "helpWithTranslation": "האם אתם רוצים לעזור בתרגום האביטיקה? נהדר! בקרו ב זה כרטיס ה-Trello.", "showHeaderPop": "הראה את האווטר, מד הבריאות/ניסיון והחבורה שלך.", "stickyHeader": "כותרת דביקה", "stickyHeaderPop": "מדביק את ה\"כותרת\" - התמונה שלך ושל מדי הבריאות/ניסיון - לראש המסך. אם התיבה לא מסומנת הכותרת תיעלם בירידה למטה.", @@ -16,12 +16,12 @@ "startAdvCollapsed": "אפשרויות מתקדמות של מטלות מתחילות סגורות", "startAdvCollapsedPop": "אם אפשרות זו מסומנת, אפשרויות מתקדמות יהיו חבויות כאשר תפתח/י את המשימה לעריכה.", "dontShowAgain": "אל תציג זאת שוב", - "suppressLevelUpModal": "אל תציג פופ-אפ בעליית רמה", + "suppressLevelUpModal": "אל תציג פופ-אפ בעליית דרגה", "suppressHatchPetModal": "אל תציג פופ-אפ בבקיעה של חיית מחמד", "suppressRaisePetModal": "אל תציג פופ-אפ כשחיית מחמד הופכת לחיית רכיבה", "suppressStreakModal": "אל תציג פופ-אפ בהשגת הישג רצף", "showTour": "הראה סיור", - "restartTour": "מתחיל מחדש את סיור ההיכרות מהזמן בו הצטרפת לhabitRPG.", + "restartTour": "מתחיל מחדש את סיור ההיכרות מהזמן בו הצטרפתם להאביטיקה.", "showBailey": "הראה את באילי", "showBaileyPop": "הבא את באילי המבשרת של העיירה מחוץ למחבוא, כדי שיבשר לך על חדשות העבר.", "fixVal": "תקן ערכי דמות", @@ -32,7 +32,7 @@ "resetAccount": "אפס חשבון", "resetAccPop": "התחלה מחדש, תוך הסרת כל הזהב, הרמות, הציוד, ההיסטוריה והמשימות.", "deleteAccount": "מחק חשבון", - "deleteAccPop": "בטל והסר את חשבון habitRPG שלך.", + "deleteAccPop": "בטלו והסירו את חשבון האביטיקה שלכם.", "qrCode": "קוד QR", "dataExport": "ייצוא מידע", "saveData": "הנה כמה אפשרויות לשמירת המידע אודות ההרגלים שלך.", @@ -52,15 +52,15 @@ "misc": "שונות", "showHeader": "הראה כותרת", "changePass": "שנה סיסמה", - "changeUsername": "שנה/י שם כניסה", - "changeEmail": "שנה/י כתובת דוא\"ל", + "changeUsername": "שנו שם כניסה", + "changeEmail": "שנו כתובת דוא\"ל", "newEmail": "כתובת דוא\"ל חדשה", "oldPass": "סיסמה ישנה", "newPass": "סיסמה חדשה", "confirmPass": "אשרר סיסמה חדשה", "newUsername": "שם כניסה חדש", "dangerZone": "אזור מסוכן", - "resetText1": "אזהרה! פעולה זו תמחוק חלקים רבים מהמשתמש שלך. זה ממש לא מומלץ כי תאבד/י מידע היסטורי, השימושי למעקב אחר ההתקדמות שלך לאורך זמן, אם כי, ישנם האנשים שזה שימושי עבורם אחרי שהם משחקים עם האתר לזמן מה.", + "resetText1": "אזהרה! פעולה זו תמחוק חלקים רבים מהמשתמש שלך. זה ממש לא מומלץ כי תאבד/י מידע היסטורי, השימושי למעקב אחר ההתקדמות שלך לאורך זמן, אם כי, ישנם האנשים שזה שימושי עבורם אחרי שהם משחקים באתר זמן מה.", "resetText2": "את/ה תאבד/י את כל הדרגות, הזהב, ונקודות הניסיון שלך. כל המשימות שלך ימחקו לצמיתות יחד עם ההיסטוריה שלהן. את/ה תאבד/י את כל הציוד שלך אך תוכלי לקנות את כולו בחזרה, כולל את כל הציוד ממהדורה מוגבלת או חפצי תורם שכבר בבעלותך (תיאלצ/י להיות במקצוע הנכון בשביל לקנות מחדש ציוד מקצועי מתאים). את/ה תשמור/י על המקצוע שלך, חיות המחמד וחיות הרכיבה. אולי תעדיפ/י להשתמש בכדור הלידה מחדש במקום זאת, שהוא אפשרות הרבה יותר בטוחה שתשמר את המשימות שלך.", "deleteText": "האם את/ה בטוח/ה? זה ימחק את המשתמש שלך לנצח, ולעולם לא תוכל/י להחזיר אותו! תיאלצ/י להיאשם בחשבון חדש לhabitRPG. אבני חן שנאגרו או בוזבזו לא יוחזרו לך. אם את/ה בטוח/ה ב100%, הקלד/י <%= deleteWord %> לתיבת הטקסט למטה.", "API": "ממשק", @@ -79,38 +79,38 @@ "passwordSuccess": "הסיסמה שונתה בהצלחה", "usernameSuccess": "שם הכניסה שונה בהצלחה", "emailSuccess": "כתובת הדוא\"ל שונתה בהצלחה", - "detachFacebook": "נתק את החיבור עם Facebook", + "detachFacebook": "נתקו את החיבור עם פייסבוק", "detachedFacebook": "פייסבוק הוסר בהצלחה מהחשבון שלך", "addedLocalAuth": "אימות מקומי נוסף בהצלחה", "data": "מידע", "exportData": "ייצוא מידע", - "emailChange1": "כדי לשנות את כתובת הדוא\"ל שלך, בבקשה שלח מייל ל-", + "emailChange1": "כדי לשנות את כתובת הדוא\"ל שלכם, בבקשה שילחו מייל ל-", "emailChange2": "admin@habitica.com", "emailChange3": "וכלול את כתובות הדוא\"ל הישנה והחדשה שלך כמו גם את מספר זיהוי המשתמש שלך.", "usernameOrEmail": "שם משתמש או אימייל", - "email": "כתובת דוא\"ל", + "email": "דוא\"ל", "registeredWithFb": "רשום עם פייסבוק", - "loginNameDescription1": "אלה הפרטים בהם אתה משתמש כדי להכנס ל-Habitica. עבור ל-", + "loginNameDescription1": "אלה הפרטים בהם אתה משתמש כדי להכנס להאביטיקה. עבור ל-", "loginNameDescription2": "משתמש->פרופיל", "loginNameDescription3": "כדי לשנות את השם שמופיע באוואטר שלך ובהודעות הצ'אט.", "emailNotifications": "הודעות", - "wonChallenge": "זכיתם באתגר!", + "wonChallenge": "זכית באתגר!", "newPM": "קיבלת הודעה פרטית חדשה", - "giftedGems": "אבני חן שזכית בהן", + "giftedGems": "אבני חן שזכיתם בהן", "giftedGemsInfo": "<%= amount %> אבני חן - מאת <%= name %>", "giftedSubscription": "מנוי שניתן במתנה", "invitedParty": "הוזמנת לחבורה", "invitedGuild": "הוזמנת לגילדה", "importantAnnouncements": "החשבון שלך אינו פעיל", - "weeklyRecaps": "סיכומים של פעילות החשבון שלכם בשבוע האחרון", + "weeklyRecaps": "סיכומים של פעילות החשבון שלכם בשבוע האחרון (שימו לב: כרגע אינו מאופשר בעקבות בעיות ביצועים, אך בכוונתנו להחזיר מיילים אלו בקרוב!)", "questStarted": "ההרפתקאה שלך החלה", "invitedQuest": "הוזמנת להרפתקאה", "kickedGroup": "הוצאת מקבוצה", - "remindersToLogin": "תזכורות לחזור להביטיה", - "subscribeUsing": "הרשם באמצעות", + "remindersToLogin": "תזכורות לחזור להאביטיקה", + "subscribeUsing": "הרשמו באמצעות", "unsubscribedSuccessfully": "הרישום בוטל בהצלחה!", "unsubscribedTextUsers": "ביטלת את הרשמתך מכל המיילים של Habitica. אתה יכול לאפשר רק מיילים שאתה רוצה לקבל מההגדרות (דורש התחברות).", - "unsubscribedTextOthers": "לא תקבל יותר אף הודעה מ-Habitica.", + "unsubscribedTextOthers": "לא תקבל יותר אף הודעה מהאביטיקה.", "unsubscribeAllEmails": "סמן כדי לבטל רישום ממיילים", "unsubscribeAllEmailsText": "על-ידי סימון תיבה זה, אני מצהיר שאני מבין שעל-ידי ביטול הרישום מכל המיילים, Habitica לעולם לא יוכל להודיע לי באמצעות דוא\"ל על שינויים חשובים לאתר או לחשבון שלי.", "correctlyUnsubscribedEmailType": "ביטלת רישומך בהצלחה ממיילים \"<%= emailType %>.", @@ -140,7 +140,7 @@ "mysticHourglass": "<%= amount %> שעוני-חול מיסטיים", "mysticHourglassText": "שעוני-חול מיסטיים מאפשרים לרכוש סטים של חפצים מיסתוריים מחודשים קודמים.", "purchasedPlanId": "$<%= price %> מתחדשים מידי <%= months %> חודש(ים) (<%= plan %>)", - "purchasedPlanExtraMonths": "You have <%= months %> months of extra subscription credit.", + "purchasedPlanExtraMonths": "יש לכם <%= months %> חודשים של ייתרת מנוי נוספת. ", "consecutiveSubscription": "מנוי רצוף", "consecutiveMonths": "חודשים רצופים:", "gemCapExtra": "סף אבני-חן נוספות:", @@ -148,6 +148,6 @@ "paypal": "פיי-פאל", "amazonPayments": "Amazon Payments", "timezone": "אזור זמן", - "timezoneUTC": "הביטיקה משתמשת באזור הזמן של המחשב שלכם, שהוא: <%= utc %> ", + "timezoneUTC": "האביטיקה משתמשת באזור הזמן של המחשב שלכם, שהוא: <%= utc %> ", "timezoneInfo": "אם אזור הזמן הזה לא נכון, ראשית - טענו מחדש את העמוד הזה באמצעות כפתור הטעינה מחדש של הדפדפן שלכם - כדי לוודא שהביטיקה עולה עם המידע העדכני ביותר. אם הוא עדיין שגוי, כוונו את אזור הזמן במחשב שלכם ונסו לטעון את הדף שוב.

אם אתם משתמשים בהביטיקה על מחשבים או מכשירים ניידים אחרים, אזור הזמן חייב להיות אותו הדבר על כולם. אם המטלות היומיות שלכם מתאפסות בזמן הלא נכון, חזרו על הפעולות האלו בכל המכשירים והדפדפנים בהם אתם משתמשים כדי לשחק בהביטיקה." } \ No newline at end of file diff --git a/common/locales/he/spells.json b/common/locales/he/spells.json index 2909b40044..2a5d48c7d2 100644 --- a/common/locales/he/spells.json +++ b/common/locales/he/spells.json @@ -10,7 +10,7 @@ "spellWarriorSmashText": "חבטה אכזרית", "spellWarriorSmashNotes": "אתם פוגעים במשימה עם כל הכח שלכם. היא נעשית יותר כחולה/פחות-אדומה, ואתם גורמים לנזק נוסף לאוייב! לחצו על המשימה כדי להטיל. (מתבסס על: כוח).", "spellWarriorDefensiveStanceText": "עמדה הגנתית", - "spellWarriorDefensiveStanceNotes": "אתם מכינים את עצמכם לשחיטה של המשימות שלכם. אתם מרוויחים תוסף לחוסן! (מתבסס על: חסן לפני התוסף)", + "spellWarriorDefensiveStanceNotes": "אתם מכינים את עצמכם לשחיטה של המשימות שלכם. אתם מרוויחים תוסף לחוסן! (מתבסס על: חוסן לפני התוסף)", "spellWarriorValorousPresenceText": "נוכחות אמיצה", "spellWarriorValorousPresenceNotes": "הנוכחות שלכם מעודדת את החבורה. כל החבורה שלכם מרוויחה תוסף לכוח! (מתבסס על: כוח לפני התוסף)", "spellWarriorIntimidateText": "מבט מאיים", @@ -20,17 +20,17 @@ "spellRogueBackStabText": "דקירה בגב", "spellRogueBackStabNotes": "אתם בוגדים במשימה מטופשת. אתם מרוויחים זהב וניסיון! לחצו על משימה כדי להטיל. (מבוסס על: כוח).", "spellRogueToolsOfTradeText": "כלי המקצוע", - "spellRogueToolsOfTradeNotes": "אתם חולקים את הכישרון שלכם עם חברים. כל החבורה שלכם מרוויחה תוסף לתפיסה! (מבוסס על: תפס לפני התוסף)", + "spellRogueToolsOfTradeNotes": "אתם חולקים את הכישרון שלכם עם חברים. כל החבורה שלכם מרוויחה תוסף לתפיסה! (מבוסס על: תפיסה לפני התוסף)", "spellRogueStealthText": "חשאיות", "spellRogueStealthNotes": "אתם חמקנים מכדי שיבחינו בכם. חלק מהמטלות היומיות שלכם לא יגרמו הלילה לנזק, והרצף/צבע לא ישתנו. (הטילו כמה פעמים כדי להשפיע על מטלות נוספות)", "spellHealerHealText": "אור מרפא", - "spellHealerHealNotes": "אור מכסה את הגוף שלכם, מרפא את הפציעות. אתם מבריאים! (מבוסס על: חסן ותבנ)", + "spellHealerHealNotes": "אור מכסה את הגוף שלכם, מרפא את הפציעות. אתם מבריאים! (מבוסס על: חוסן ותבונה)", "spellHealerBrightnessText": "בוהק מסמא", - "spellHealerBrightnessNotes": "פרץ של אור מסנוור את המשימות שלכם. הן נעשות כחולות יותר ופחות אדומות! (מבוסס על תבנ)", + "spellHealerBrightnessNotes": "פרץ של אור מסנוור את המשימות שלכם. הן נעשות כחולות יותר ופחות אדומות! (מבוסס על תבונה)", "spellHealerProtectAuraText": "הילה מגוננת", - "spellHealerProtectAuraNotes": "אתם מגנים על החבורה שלכם מפני נזק. כל החבורה שלכם זוכה בתוסף לחוסן! (מבוסס על: חסן לפני התוסף)", + "spellHealerProtectAuraNotes": "אתם מגנים על החבורה שלכם מפני נזק. כל החבורה שלכם זוכה בתוסף לחוסן! (מבוסס על: חוסן לפני התוסף)", "spellHealerHealAllText": "ברכה", - "spellHealerHealAllNotes": "הילה מרגיעה מקיפה אתכם. כל החבורה שלכם מבריאה! (מבוסס על: חסן ותבנ)", + "spellHealerHealAllNotes": "הילה מרגיעה מקיפה אתכם. כל החבורה שלכם מבריאה! (מבוסס על: חוסן ותבונה)", "spellSpecialSnowballAuraText": "כדור שלג", "spellSpecialSnowballAuraNotes": "השליכו כדור שלג על החבר שלכם, מה כבר יקרה? נמשך עד היום הבא של החבר הפגוע.", "spellSpecialSaltText": "מלח", diff --git a/common/locales/he/subscriber.json b/common/locales/he/subscriber.json index 7a885b0eeb..96bff0af20 100644 --- a/common/locales/he/subscriber.json +++ b/common/locales/he/subscriber.json @@ -4,8 +4,8 @@ "subDescription": "רכשו אבני חן עם זהב, קבלו חפצים חודשיים מסתוריים, שימרו על היסטוריית התקדמות, הכפילו את גבולות הנפילות היומיות, תמכו במפתחים. לחצו כאן למידע נוסף.", "buyGemsGold": "קנה אבני חן עם זהב", "buyGemsGoldText": "אלכסנדר הסוחר ימכור לכם אנבי חן תמורת <%= gemCost %> זהב עבור כל אבן חן. המשלוחים החודשיים שלו מוגבלים בתחילה ל <%= gemLimit %> אבני חן לחודש, אך גבול זה גדל ב 5 אבני חן בעבור כל 3 חודשי מנוי רצופים, עד למקסימום של 50 אבני חן בחודש!", - "retainHistory": "Retain additional history entries", - "retainHistoryText": "Makes completed To-Dos and task history available for longer.", + "retainHistory": "שמר רשומות היסטוריה נוספות", + "retainHistoryText": "גורם למטרות שהושלמו והיסטוריית משימות להיות זמינות זמן רב יותר.", "doubleDrops": "הגבלת הביזה היומית מוכפלת", "doubleDropsText": "כך תוכלו למלא את האורווה שלכם מהר יותר!", "mysteryItem": "חפצים חודשיים ייחודיים", @@ -30,7 +30,7 @@ "cancelSub": "ביטול תרומה", "canceledSubscription": "מנויים שבוטלו", "adminSub": "תרומת מנהלים", - "morePlans": "תכניות קרובות
יגיעו בקרוב", + "morePlans": "תוכניות נוספות
בקרוב", "organizationSub": "ארגון פרטי", "organizationSubText": "חברי הארגון משחקים מחוץ לhabitRPG עצמו, כדי לספק להם מיקוד.", "hostingType": "סוג אחסון", @@ -96,7 +96,9 @@ "mysterySet201510": "סט גובלין מקורנף", "mysterySet201511": "סט לוחם העץ", "mysterySet201512": "סט להבות חורף", - "mysterySet201601": "Champion of Resolution Set", + "mysterySet201601": "סט אלוף של החלטיות", + "mysterySet201602": "סט שוברי לבבות", + "mysterySet201603": "סט תלתן מזל", "mysterySet301404": "סט סטימפאנק רגיל", "mysterySet301405": "סט סטימפאנק אקססוריז", "mysterySetwondercon": "וונדרקון", diff --git a/common/locales/he/tasks.json b/common/locales/he/tasks.json index 8d4ad1af8b..b037512ce4 100644 --- a/common/locales/he/tasks.json +++ b/common/locales/he/tasks.json @@ -112,5 +112,5 @@ "rewardHelp2": "ציוד משפיע על התכונות שלכם (<%= linkStart %>משתמש > תכונות והישגים<%= linkEnd %>).", "rewardHelp3": "ציוד מיוחד יופיע כאן בזמן ״אירועים עולמיים״.", "rewardHelp4": "אל תחשושו להכין פרסים מותאמים אישית! ראו כמה דוגמאות כאן.", - "clickForHelp": "לחץ לעזרה" + "clickForHelp": "לחצו לעזרה" } \ No newline at end of file diff --git a/common/locales/hu/backgrounds.json b/common/locales/hu/backgrounds.json index 129c66620d..794c32ae70 100644 --- a/common/locales/hu/backgrounds.json +++ b/common/locales/hu/backgrounds.json @@ -127,7 +127,7 @@ "backgroundSunsetOasisText": "Naplemente Oázis", "backgroundSunsetOasisNotes": "Sütkérezz a Naplemente Oázisban.", "backgrounds122015": "SET 19: Released December 2015", - "backgroundAlpineSlopesText": "Alpine Slopes", + "backgroundAlpineSlopesText": "Alpesi lejtők", "backgroundAlpineSlopesNotes": "Ski on the Alpine Slopes.", "backgroundSnowySunriseText": "Snowy Sunrise", "backgroundSnowySunriseNotes": "Gaze at the Snowy Sunrise.", @@ -138,7 +138,7 @@ "backgroundFrozenLakeNotes": "Skate on a Frozen Lake.", "backgroundSnowmanArmyText": "Snowman Army", "backgroundSnowmanArmyNotes": "Lead a Snowman Army.", - "backgroundWinterNightText": "Winter Night", + "backgroundWinterNightText": "Téli éjszaka", "backgroundWinterNightNotes": "Look at the stars of a Winter Night.", "backgrounds022016": "SET 21: Released February 2016", "backgroundBambooForestText": "Bamboo Forest", @@ -146,5 +146,19 @@ "backgroundCozyLibraryText": "Cozy Library", "backgroundCozyLibraryNotes": "Read in the Cozy Library.", "backgroundGrandStaircaseText": "Grand Staircase", - "backgroundGrandStaircaseNotes": "Stride down the Grand Staircase." + "backgroundGrandStaircaseNotes": "Stride down the Grand Staircase.", + "backgrounds032016": "SET 22: Released March 2016", + "backgroundDeepMineText": "Deep Mine", + "backgroundDeepMineNotes": "Find precious metals in a Deep Mine.", + "backgroundRainforestText": "Rainforest", + "backgroundRainforestNotes": "Venture into a Rainforest.", + "backgroundStoneCircleText": "Circle of Stones", + "backgroundStoneCircleNotes": "Cast spells in a Circle of Stones.", + "backgrounds042016": "SET 23: Released April 2016", + "backgroundArcheryRangeText": "Archery Range", + "backgroundArcheryRangeNotes": "Practice on the Archery Range.", + "backgroundGiantFlowersText": "Giant Flowers", + "backgroundGiantFlowersNotes": "Frolic atop Giant Flowers.", + "backgroundRainbowsEndText": "End of the Rainbow", + "backgroundRainbowsEndNotes": "Discover gold at the End of the Rainbow." } \ No newline at end of file diff --git a/common/locales/hu/character.json b/common/locales/hu/character.json index 467348d926..744796bb9a 100644 --- a/common/locales/hu/character.json +++ b/common/locales/hu/character.json @@ -1,7 +1,7 @@ { "statsAch": "Karakterlap és kitűntetések", "profile": "Profil", - "avatar": "Avatár", + "avatar": "Customize Avatar", "other": "Egyéb", "fullName": "Teljes név", "displayName": "Megjelenítendő név", @@ -34,6 +34,7 @@ "beard": "Szakáll", "mustache": "Bajusz", "flower": "Virág", + "wheelchair": "Wheelchair", "basicSkins": "Alap bőrszínek", "rainbowSkins": "Szívárvány bőrszínek", "pastelSkins": "Pasztell bőrszínek", @@ -83,7 +84,7 @@ "allocateInt": "Intelligenciára költött pontok:", "allocateIntPop": "Egy pont hozzáadása az Intelligenciához:", "noMoreAllocate": "Most, hogy elérted a 100-as szintet, nem kapsz több pontot a tulajdonságaidhoz. A szintedet tovább növelheted, vagy egy újabb kalandba kezdhetsz az Újjászületés Gömbjével, ami mostantól ingyenesen elérhető a piacon.", - "stats": "Karakterlap", + "stats": "Avatar Stats", "strength": "Erő", "strengthText": "Az erő növeli a \"kritikus csapások\" esélyét, növeli az arany és a tapasztalat szerzést, valamint a zsákmányok szerzésének esélyét. Továbbá segít a főellenségek sebzésében.", "constitution": "Szervezettség", @@ -125,8 +126,8 @@ "mageText": "A Mágusok gyorsan tanulnak, hamarabb lépnek Szintet, mint más kasztok, továbbá sokkal több Mana pontjuk van a különleges képességeikhez. Játssz Mágust, ha szereted a Habit taktikai elemeit és erősen motivál a szintlépés és a haladó funkciók feloldása.", "rogueText": "A Tolvajok imádnak gyűjtögetni, ezért mindenki másnál jobbak Arany szerzésében és véletlenszerű tárgyak megtalálásában. Az ikonikus Lopakodás képességük képessé teszi őket arra, hogy elkerüljék a kihagyott Napi feladatok következményeit. Játssz Tolvajt, ha motiválnak a Jutalmak és a Kitűntetések, ha igyekszel minél több zsákmányt és kitűzőt bezsebelni!", "healerText": "A Gyógyítók érzéketlenek a sebzésre és meg tudják védeni a többieket is. A Kihagyott Napi feladatok és rossz Szokások nem hozzák őket annyira zavarba és vannak lehetőségeik az Életerő pontok visszaszerzésére. Játssz Gyógyítót, ha szeretsz másokon segíteni a Csapatban, vagy ha inspirál, hogy kijátszhatod a Halált kemény munkával", - "optOutOfClasses": "Opt Out", - "optOutOfPMs": "Opt Out", + "optOutOfClasses": "Kiszáll", + "optOutOfPMs": "Kiszáll", "optOutOfClassesText": "Can't be bothered with classes? Want to choose later? Opt out - you'll be a warrior with no special abilities. You can read about the class system later on the wiki and enable classes at any time under User -> Stats.", "select": "Kiválaszt", "stealth": "Lopakodás", @@ -136,7 +137,7 @@ "respawn": "Újraéledés!", "youDied": "Meghaltál!", "dieText": "Elvesztettél egy Szintet, minden Aranyad és egy véletlenszerű Tárgyadat.\nKelj fel, Kalandor és próbálkozz újra! Zabolázd meg azokat a fránya rossz szokásokat, figyelj a Napi feladatokra és tartsd magadtól távol a halált egy Életerő itallal!", - "sureReset": "Biztos vagy benne? Ez lenullázza a karaktered kasztját és kiosztott tulajdonság pontjait (később ezeket újra kioszthatod), valamint 3 drágakőbe kerül.", + "sureReset": "Are you sure? This will reset your character's class and allocated points (you'll get them all back to re-allocate), and costs 3 gems.", "purchaseFor": "Megveszed <%= cost %> drágakőért?", "notEnoughMana": "Nincs elég mana.", "invalidTarget": "Érvénytelen célpont", @@ -160,5 +161,8 @@ "str": "ERŐ", "con": "ÁLL", "per": "ÉSZ", - "int": "INT" + "int": "INT", + "showQuickAllocation": "Show stat allocation", + "hideQuickAllocation": "Hide stat allocation", + "quickAllocationLevelPopover": "Each level earns you one point to assign to an attribute of your choice. You can do so manually, or let the game decide for you using one of the Automatic Allocation options found in User -> Stats." } \ No newline at end of file diff --git a/common/locales/hu/communityguidelines.json b/common/locales/hu/communityguidelines.json index fa13c7888d..7429cc875b 100644 --- a/common/locales/hu/communityguidelines.json +++ b/common/locales/hu/communityguidelines.json @@ -29,7 +29,7 @@ "commGuidePara013": "Egy ilyen nagy közösségben mint a Habitica, a felhasználok jönnek mennek, és néha a moderátoroknak is le kell tenniük nemes köpenyüket és pihenniük. Ők a Moderators Emeritus-ok, azaz a Nyugalmazott Moderátorok. Nekik mar nincs meg a Moderátori hatalmuk, de tiszteljük őket továbbra is az elvégzett munkájukért!", "commGuidePara014": "Nyugalmazott Moderátorok:", "commGuideHeadingPublicSpaces": "Nyilvános helyek Habitica-n", - "commGuidePara015": "Habitca-n két féle közösségi hely van: nyilvános és privát. Nyilvános helyek például a Kocsma, a Nyilvános Céhek, GitHub, Trello és a Wiki. A privát helyek a Privát Céhek, csoport chat és a privát üzenetek.", + "commGuidePara015": "Habitica has two kinds of social spaces: public, and private. Public spaces include the Tavern, Public Guilds, GitHub, Trello, and the Wiki. Private spaces are Private Guilds, party chat, and Private Messages. All Display Names must comply with the public space guidelines. To change your Display Name, go on the website to User > Profile and click on the \"Edit\" button.", "commGuidePara016": "Amikor a Habitica nyilvános helyein mozogsz, akkor be kell tartanod néhány egyszerű szabályt, hogy mindenki biztonságban és boldogan érezhesse magát. Ez könnyű kell, hogy legyen olyan kalandoroknak, mint Neked!", "commGuidePara017": "Tiszteljétek egymást. Légy udvarias, kedves, barátságos és segítőkész. Ne feledd: Habitica lakói mindenfelől érkeztek és nagyon eltérő tapasztalatokkal rendelkeznek. Ez az a plusz, amitől a Habitica annyira menő. Egy közösséget építeni annyit jelent, hogy tiszteljük és ünnepeljük a különbözőségeinket és hasonlóságunkat. Íme néhány egyszerű tanács, hogy tiszteljük egymást:", "commGuideList02A": "Tartsd be az összes Általános Szerződési Feltételt.", @@ -40,8 +40,8 @@ "commGuideList02F": "Comply immediately with any Mod request to cease a discussion or move it to the Back Corner. Last words, parting shots and conclusive zingers should all be delivered (courteously) at your \"table\" in the Back Corner, if allowed.", "commGuideList02G": "Adj magadnak időt gondolkodni, mint sem haragból válaszolni ha valaki azt mondja neked, rosszul esett neki, amit mondtál neki vagy tettel vele. Nagy bátorság és erő kell ahhoz, hogy őszintén tudjunk bocsánatot kerni valakitől. Ha úgy érzed, hogy nem a megfelelő módon válaszoltak neked, akkor vedd fel a kapcsolatot egy moderátorral, ahelyett hogy a nyilvánosság előtt szidjatok egymást.", "commGuideList02H": "Divisive/contentious conversations should be reported to mods. If you feel that a conversation is getting heated, overly emotional, or hurtful, cease to engage. Instead, email leslie@habitica.com to let us know about it. It's our job to keep you safe.", - "commGuideList02I": "Do not spam. Spamming may include, but is not limited to: posting the same comment or query in multiple places, posting links without explanation or context, posting nonsensical messages, or posting many messages in a row. Repeatedly begging for gems or a subscription may also be considered spamming.", - "commGuidePara019": "In private spaces, users have more freedom to discuss whatever topics they would like, but they still may not violate the Terms and Conditions, including posting any discriminatory, violent, or threatening content.", + "commGuideList02I": "Do not spam. Spamming may include, but is not limited to: posting the same comment or query in multiple places, posting links without explanation or context, posting nonsensical messages, or posting many messages in a row. Asking for gems or a subscription in any of the chat spaces or via Private Message is also considered spamming.", + "commGuidePara019": "In private spaces, users have more freedom to discuss whatever topics they would like, but they still may not violate the Terms and Conditions, including posting any discriminatory, violent, or threatening content. Note that, because Challenge names appear in the winner's public profile, ALL Challenge names must obey the public space guidelines, even if they appear in a private space.", "commGuidePara020": "Private Messages (PMs) have some additional guidelines. If someone has blocked you, do not contact them elsewhere to ask them to unblock you. Additionally, you should not send PMs to someone asking for support (since public answers to support questions are helpful to the community). Finally, do not send anyone PMs begging for a gift of gems or a subscription, as this can be considered spamming.", "commGuidePara021": "Továbbá, néhány nyilvános helynek Habitica-n megvannak a saját szabályai.", "commGuideHeadingTavern": "A fogadó", diff --git a/common/locales/hu/content.json b/common/locales/hu/content.json index cdd120c84e..bdf692aa35 100644 --- a/common/locales/hu/content.json +++ b/common/locales/hu/content.json @@ -31,7 +31,7 @@ "dropEggCactusAdjective": "tüskés", "dropEggBearCubText": "Medvebocs", "dropEggBearCubMountText": "Medve", - "dropEggBearCubAdjective": "ennivaló", + "dropEggBearCubAdjective": "a brave", "questEggGryphonText": "Griff", "questEggGryphonMountText": "Griff", "questEggGryphonAdjective": "büszke", @@ -46,27 +46,27 @@ "questEggEggAdjective": "a colorful", "questEggRatText": "Patkány", "questEggRatMountText": "Patkány", - "questEggRatAdjective": "koszos", + "questEggRatAdjective": "a sociable", "questEggOctopusText": "Polip", - "questEggOctopusMountText": "Octopus", + "questEggOctopusMountText": "Polip", "questEggOctopusAdjective": "a slippery", "questEggSeahorseText": "Csikóhal", - "questEggSeahorseMountText": "Seahorse", - "questEggSeahorseAdjective": "a prize", + "questEggSeahorseMountText": "Csikóhal", + "questEggSeahorseAdjective": "jutalom", "questEggParrotText": "Papagáj", - "questEggParrotMountText": "Parrot", + "questEggParrotMountText": "Papagáj", "questEggParrotAdjective": "a vibrant", "questEggRoosterText": "Kakas", - "questEggRoosterMountText": "Rooster", + "questEggRoosterMountText": "Kakas", "questEggRoosterAdjective": "a strutting", "questEggSpiderText": "Pók", - "questEggSpiderMountText": "Spider", + "questEggSpiderMountText": "Pók", "questEggSpiderAdjective": "a creepy", "questEggOwlText": "Bagoly", - "questEggOwlMountText": "Owl", + "questEggOwlMountText": "Bagoly", "questEggOwlAdjective": "a wise", "questEggPenguinText": "Pingvin", - "questEggPenguinMountText": "Penguin", + "questEggPenguinMountText": "Pingvin", "questEggPenguinAdjective": "a perspicacious", "questEggTRexText": "Tyrannosaurus", "questEggTRexMountText": "Tyrannosaur", @@ -75,41 +75,44 @@ "questEggRockMountText": "Rock", "questEggRockAdjective": "a lively", "questEggBunnyText": "Nyuszi", - "questEggBunnyMountText": "Bunny", + "questEggBunnyMountText": "Nyuszi", "questEggBunnyAdjective": "a snuggly", "questEggSlimeText": "Pillecukor ragacs", "questEggSlimeMountText": "Marshmallow Slime", - "questEggSlimeAdjective": "a sweet", + "questEggSlimeAdjective": "édes", "questEggSheepText": "Bárány", - "questEggSheepMountText": "Sheep", + "questEggSheepMountText": "Bárány", "questEggSheepAdjective": "a woolly", "questEggCuttlefishText": "Tintahal", "questEggCuttlefishMountText": "Cuttlefish", "questEggCuttlefishAdjective": "ennivaló", "questEggWhaleText": "Bálna", - "questEggWhaleMountText": "Whale", + "questEggWhaleMountText": "Bálna", "questEggWhaleAdjective": "a splashy", "questEggCheetahText": "Gepárd", - "questEggCheetahMountText": "Cheetah", + "questEggCheetahMountText": "Gepárd", "questEggCheetahAdjective": "an honest", - "questEggHorseText": "Horse", - "questEggHorseMountText": "Horse", + "questEggHorseText": "Ló", + "questEggHorseMountText": "Ló", "questEggHorseAdjective": "a galloping", - "questEggFrogText": "Frog", - "questEggFrogMountText": "Frog", + "questEggFrogText": "Béka", + "questEggFrogMountText": "Béka", "questEggFrogAdjective": "a princely", - "questEggSnakeText": "Snake", - "questEggSnakeMountText": "Snake", + "questEggSnakeText": "Kígyó", + "questEggSnakeMountText": "Kígyó", "questEggSnakeAdjective": "a slithering", - "questEggUnicornText": "Unicorn", + "questEggUnicornText": "Egyszarvú", "questEggUnicornMountText": "Winged Unicorn", - "questEggUnicornAdjective": "a magical", + "questEggUnicornAdjective": "varázslatos", "questEggSabretoothText": "Sabretooth Tiger", "questEggSabretoothMountText": "Sabretooth Tiger", "questEggSabretoothAdjective": "a ferocious", - "questEggMonkeyText": "Monkey", - "questEggMonkeyMountText": "Monkey", + "questEggMonkeyText": "Majom", + "questEggMonkeyMountText": "Majom", "questEggMonkeyAdjective": "a mischievous", + "questEggSnailText": "Snail", + "questEggSnailMountText": "Snail", + "questEggSnailAdjective": "a slow but steady", "eggNotes": "Find a hatching potion to pour on this egg, and it will hatch into <%= eggAdjective(locale) %> <%= eggText(locale) %>.", "hatchingPotionBase": "Alap", "hatchingPotionWhite": "Fehér", @@ -122,7 +125,7 @@ "hatchingPotionCottonCandyBlue": "Kék vattacukor", "hatchingPotionGolden": "Arany", "hatchingPotionSpooky": "Spooky", - "hatchingPotionPeppermint": "Peppermint", + "hatchingPotionPeppermint": "Borsmenta", "hatchingPotionNotes": "Öntsd ezt egy tojásra, és egy <%= potText(locale) %> háziállat fog belőle kikelni.", "premiumPotionAddlNotes": "Not usable on quest pet eggs.", "foodMeat": "Hús", diff --git a/common/locales/hu/contrib.json b/common/locales/hu/contrib.json index 10ec7d2396..9d4408f7ed 100644 --- a/common/locales/hu/contrib.json +++ b/common/locales/hu/contrib.json @@ -28,11 +28,11 @@ "helped": "Segített a Habitica fejlődésében", "helpedText1": "Segített a Habitica fejlődésében azzal hogy kitöltötte", "helpedText2": "ezt a kérdőívet", - "hall": "Csarnok", + "hall": "Hall of Heroes", "contribTitle": "Közreműködői rang (pl. \"Kovács\")", "contribLevel": "Támogatói szint", "contribHallText": "1-7-es szint a támogatóknak jár, 8-as a moderátoroknak, 9-es az üzemeltetőknek. Ez meghatározza mely tárgyak, háziállatok és hátasok elérhetők, továbbá meghatározza a névcimke színét. A 8-9-es szint automatikusan admin státuszt kap.", - "hallHeroes": "Hősök Csarnoka", + "hallContributors": "Hall of Contributors", "hallPatrons": "Mecénások Csarnoka", "rewardUser": "Felhasználói jutalmak", "UUID": "Egyedi azonosító", @@ -60,5 +60,5 @@ "blurbGuildsPage": "Guilds are common-interest chat groups created by the players, for players. Browse through the list and join the Guilds that interest you!", "blurbChallenges": "Challenges are created by your fellow players. Joining a Challenge will add its tasks to your task dashboard, and winning a Challenge will give you an achievement and often a gem prize!", "blurbHallPatrons": "This is the Hall of Patrons, where we honor the noble adventurers who backed Habitica's original Kickstarter. We thank them for helping us bring Habitica to life!", - "blurbHallHeroes": "This is the Hall of Heroes, where open-source contributors to Habitica are honored. Whether through code, art, music, writing, or even just helpfulness, they have earned gems, exclusive equipment, and prestigious titles. You can contribute to Habitica, too! Find out more here. " + "blurbHallContributors": "This is the Hall of Contributors, where open-source contributors to Habitica are honored. Whether through code, art, music, writing, or even just helpfulness, they have earned gems, exclusive equipment, and prestigious titles. You can contribute to Habitica, too! Find out more here. " } \ No newline at end of file diff --git a/common/locales/hu/front.json b/common/locales/hu/front.json index 0dfa8b166c..6da9f4bb78 100644 --- a/common/locales/hu/front.json +++ b/common/locales/hu/front.json @@ -2,52 +2,52 @@ "FAQ": "GYIK", "accept1Terms": "Az alábbi gomb megnyomásával elfogadom a", "accept2Terms": "és az", - "alexandraQuote": "Nem tudtam NEM beszélni a [Habitikáról] a Madridi beszédem közben. Kötelező eszkőz minden szabaduszónak, akinek kell egy főnők!", - "althaireQuote": "Folyamatos aktív küldetés a legnagyobb motivációm arra, hogy minden napi feladatomat és tennivalómat elvégezzem. A legnagyobb motivációm az, hogy nem hagyhatom a csoportomat elbukni.", + "alexandraQuote": "Nem tudtam NEM beszélni a [Habiticáról] a madridi beszédem közben. Kötelező eszkőz minden olyan szabaduszónak, akinek főnökre van szüksége!", + "althaireQuote": "A olyamatos küldetések igazán motiválnak, hogy minden napi feladatomat és tennivalómat elvégezzem. A legnagyobb motivációm az, hogy nem hagyhatom a csapatom cserben.", "andeeliaoQuote": "Bámulatos termék, még csak néhány napja kezdtem el használni és már most tudatosabb és hatékonyabb vagyok az időmmel.", - "autumnesquirrelQuote": "Kevesebbet halogatom a munkám és a házimunkát, és a csekkeket is időben fizetem.", + "autumnesquirrelQuote": "Kevesebbet halogatom a munkám és a házimunkát, és a csekkeket is időben befizetem.", "businessSample1": "1 oldal nyilvántartás jóváhagyása", "businessSample2": "20 perc iktatás", "businessSample3": "Bejövő levelek rendezése és feldolgozása", - "businessSample4": "1 ügyféldokumentum elkészítése", - "businessSample5": "Ügyfeleket Felhívni/Hívásokat elhalasztani", - "businessText": "Használd a Habitica-t az üzleti életben", - "choreSample1": "Piszkos ruhákat a szennyestartóba", + "businessSample4": "1 dokumentum elkészítése az ügyfélnek", + "businessSample5": "Ügyfeleket felhívni/Hívásokat elhalasztani", + "businessText": "Használd a Habiticát az üzleti életben", + "choreSample1": "Piszkos ruhák szennyesbe rakása", "choreSample2": "20 perc házimunka", - "choreSample3": "Elmosogatni a piszkos edényeket", + "choreSample3": "Piszkos edények elmosogatása", "choreSample4": "Egy szoba kitakarítása", - "choreSample5": "Kimosni és megszárítani a ruhákat", + "choreSample5": "Ruhák kimosása és kiteregetése", "chores": "Házimunka", - "clearBrowserData": "Clear Browser Data", - "communityBug": "Programhiba bejelentése", + "clearBrowserData": "Böngésző előzmények törlése", + "communityBug": "Programhiba jelentése", "communityExtensions": "Kiegészítők és kiterjesztések", "communityFacebook": "Facebook", - "communityFeature": "Kérj egy új funkciót", + "communityFeature": "Új funkció kérése", "communityForum": "Fórum", "communityKickstarter": "Kickstarter", "communityReddit": "Reddit", - "companyAbout": "Hogyan is működik", + "companyAbout": "Hogyan működik", "companyBlog": "Blog", - "companyDonate": "Adományozz", + "companyDonate": "Adományozás", "companyExtensions": "Kiegészítők", "companyPrivacy": "Titoktartás", "companyTerms": "Feltételek", "companyVideos": "Videók", "contribUse": "Eszközök, amiket a Habitica közreműködök használnak", - "dragonsilverQuote": "I can't tell you how many time and task tracking systems I've tried over the decades... [Habitica] is the only thing I've used that actually helps me get things done rather than just list them.", - "dreimQuote": "When I discovered [Habitica] last summer, I had just failed about half of my exams. Thanks to the Dailies... I was able to organize and discipline myself, and I actually passed all my exams with really good grades a month ago.", + "dragonsilverQuote": "Nem tudom megmondani, hány idő- és feladatmenedzselő rendszert próbáltam ki az évek során... [A Habitica] az egyetlen olyan, ami ténylegesen segít is elvégezni a feladatokat, ahelyett, hogy csak felsorolnám őket.", + "dreimQuote": "Amikor felfedeztem [a Habiticát] múlt nyáron, éppen kistucat bukott vizsgán voltam túl. Hála a napi feladatoknak, sikeresen rendszereztem és fegyelmeztem magam, és sikeresen átmentem minden aktuális vizsgámon, ráadásul jó jegyekkel, alig egy hónapja.", "elmiQuote": "Minden reggel várom, hogy felkelhessek, hogy elkezdhessek aranyat gyűjteni!", - "email": "Email", + "email": "E-mail", "emailNewPass": "Új jelszó kérése", - "evagantzQuote": "My very first dentist appointment where the hygienist was actually excited about my flossing habits. Thanks [Habitica]!", - "examplesHeading": "Mire is használják a játékosok a Habitica-t...", - "featureAchievementByline": "Valami állatit csináltál? Szerezz egy jelvényt és dicsekedj vele!", + "evagantzQuote": "A legelső fogorvosi megbeszélésem, ahol a doki izgatottnak tűnt a fogápolási szokásaimmal kapcsolatban. Köszi [habitica]!", + "examplesHeading": "Erre használják a játékosok a Habiticát...", + "featureAchievementByline": "Valami fantasztikus dolgot csináltál? Szerezz egy jelvényt és dicsekedj vele!", "featureAchievementHeading": "Kitüntetések", - "featureEquipByline": "Vegyél magadnak a feladataid jutalmából korlátozott kiadású felszereléseket, italokat, és más virtuális cuccokat a Piacon.", + "featureEquipByline": "Vegyél magadnak a feladataid jutalmából korlátozott kiadású felszereléseket, főzeteket és más virtuális cuccokat a piacon.", "featureEquipHeading": "Felszerelés és extrák", - "featurePetByline": "Tojásokat és tárgyakat találhatsz, amikor teljesíted a feladataid. Légy a lehető legproduktívabb, hogy összegyűjtsd az állatokat és a hátasokat.", - "featurePetHeading": "Állatok és hátasok", - "featureSocialByline": "Csatlakozz közös érdeklődésű csoportba hasonló gondolkodású emberekkel. Hozz létre kihívásokat, így versenyezhetsz másik felhasználókkal.", + "featurePetByline": "Tojásokat és tárgyakat találhatsz, amikor teljesíted a feladataid. Légy a lehető legproduktívabb, hogy összegyűjthesd a háziállatokat és a hátasokat.", + "featurePetHeading": "Háziállatok és hátasok", + "featureSocialByline": "Csatlakozz közös érdeklődésű csoportokba hasonló gondolkodású emberekkel. Hozz létre kihívásokat, hogy versenyezhess más felhasználókkal.", "featureSocialHeading": "Közösségi élmény", "featuredIn": "Megjelent", "featuresHeading": "További lehetőségek...", @@ -56,130 +56,130 @@ "footerMobile": "Mobil", "footerSocial": "Közösség", "forgotPass": "Elfelejtettem a jelszavam", - "frabjabulousQuote": "[Habitica] is the reason I got a killer, high-paying job... and even more miraculous, I'm now a daily flosser!", - "free": "Join for free", + "frabjabulousQuote": "[A Habitica-nak] köszönhetem, hogy nagyszerű, jólfizető melót szereztem... És ami mégjobb, immár naponta ápolom a fogaim!", + "free": "Csatlakozz ingyen", "gamifyButton": "Tedd játékká az életed ma!", "goalSample1": "1 óra zongora gyakorlás", - "goalSample2": "Egy cikk a publikálashoz", - "goalSample3": "Blog cikk írása", - "goalSample4": "Japán lecke a Duolinguo-n", + "goalSample2": "Cikken való dolgozás", + "goalSample3": "Blogbejegyzés írása", + "goalSample4": "Japán lecke a Duolingon", "goalSample5": "Hasznos cikk elolvasása", "goals": "Célok", "health": "Egészség", - "healthSample1": "Víz/Üdítő ivás", + "healthSample1": "Víz/Üdítő fogyasztás", "healthSample2": "Rágózás/Dohányzás", "healthSample3": "Lépcsőzés/Liftezés", "healthSample4": "Egészséges étel/Gyorskaja", "healthSample5": "1 óra edzés", "history": "Előzmények", - "infhQuote": "[Habitica] has really helped me impart structure to my life in graduate school.", - "invalidEmail": "A jelszó resethez érvényes email cím szükséges.", - "irishfeet123Quote": "I've had horrible habits with clearing my place completely after meals and leaving cups all over the place. [Habitica] has cured that!", - "joinOthers": "Join <%= userCount %> people making it fun to achieve goals!", - "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.", - "landingadminlink": "adminisztratív csomagunkat", - "landingend": "Nem győzött még meg?", + "infhQuote": "[A Habitica] segített rendszert vinni az egyetemi életembe.", + "invalidEmail": "Új jelszó igényléséhez érvényes e-mail cím szükséges.", + "irishfeet123Quote": "Sosem voltam jó viszonyban a takarítással, minden étkezés után elképesztő mocskot hagytam magam után. [A Habitica] rendbehozta a dolgot!", + "joinOthers": "Csatlakozz <%= userCount %> emberhez és tedd élménnyé céljaid elérését te is!", + "kazuiQuote": "A [Habitica] előtt nem haladtam a szakdolgozatommal és elégedetlen voltam az önfegyelmemmel, a házimunkával, szótanulással, illetve elméletek tanulásával kapcsolatban. Mint kiderült, ezeket a nagy feladatokat kicsi, kezelhető feladatlistákra bontani hatalmas segítség és motiváió erő, hogy folyamatosan tudjak dolgozni.", + "landingadminlink": "adminisztratív csomagok", + "landingend": "Még nem győztünk meg??", "landingend2": "Lásd részletesebb listánkat", "landingend3": "Privátabb megközelítést keresel? Próbáld ki a mi", "landingend4": "amely tökéletes családoknak, tanároknak, támogató csoportoknak és cégeknek.", "landingfeatureslink": "a sajátosságainkról", - "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.", - "landingp2": "Akármikor, ha megerősítesz egy pozitív szokást, vagy befejezel egy napi feladatot, esetleg elkészülsz egy régi teentővel, a Habitica rögtön megjutalmaz tapasztalati pontokkal és arannyal. Ahogy kapod a tapasztalati pontokat, szintet léphetsz, amely növeli a tulajdonságaidat és új jellemzőket fed fel, mint pl. kasztok és háziállatok. Az aranyat játékbeli tárgyakra költheted, amik a játékélményen változtatnak, vagy testre szabott jutalmakat vásárolhatsz, amiket te hoztál létre magadnak. Ha a legkisebb siker is jutalommal kecsegtet, akkor kisebb eséllyel fogsz halogatni.", - "landingp2header": "Azonnali Jutalom", - "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.", + "landingp1": "A probléma a legtöbbb produktivitást elősegítő alkalmazással, hogy nem ösztönöznek, hogy folyamatosan használd őket. A Habitica ezt oldja meg azzal, hogy a szokás-építést játékká teszi. A sikereid díjazásával és a ballépéseid megbüntetésével a Habitica külső motivációt biztosít, hogy elvégezhesd a különböző teendőidet napról napra.", + "landingp2": "Akármikor, ha megerősítesz egy pozitív szokást, vagy befejezel egy napi feladatot, esetleg elkészülsz egy régi tennivalóval, a Habitica rögtön megjutalmaz tapasztalati pontokkal és arannyal. Ahogy kapod a tapasztalati pontokat, szintet léphetsz, amely növeli a tulajdonságaidat és új funkciókat tesz elérhetővé, mint pl. kasztok és háziállatok. Az aranyat játékbeli tárgyakra költheted, amik a játékélményen változtatnak, vagy testre szabott jutalmakat vásárolhatsz, amiket te hoztál létre magadnak. Ha a legkisebb siker is jutalommal kecsegtet, akkor kisebb eséllyel fogsz halogatni.", + "landingp2header": "Azonnali jutalom", + "landingp3": "Amikor engedsz egy rossz szokásnak, vagy nem végzed el a napi feladataidat, életerőt vesztesz. Ha az életerőd elfogy, elveszted a megszerzett dolgaid egy részét. Az azonnali következmények miatt, a Habitica segít leszokni a rossz szokásokról és a halogatásról, mielőtt problémákat okoznak a való életben.", "landingp3header": "Következmények", - "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": "Az aktív közösséggel, a Habitica számon kér, hogy a feladatokon maradjon a fókuszod. A csapat-rendszerrel, hozhatod a legközelebbi barátaid, hogy buzdítsanak. A céh-rendszer segítségével hasonló érdeklődésű, vagy problémával küzdő embereket találhatsz , így megoszthatjátok céljaitokat és kisegíthetitek egymást különböző tippekkel, amik szintén előre viszik a problémák megoldását. A Habiticán, a közösség nem csak a számonkérést, de a támogatást is biztosítja.", "landingp4header": "Elszámolási kötelezettség", - "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": "A Habitica egy ingyenes szokásépítő és produktivitást elősegítő alkalmazás, ami a való életeted játékként kezeli. A játékbeli jutalmakkal és büntetésekkel, illetve összetartó közösséggel segít téged motiválni. A Habitica segítségédre lehet, hogy elérhesd céljaidat, hogy egészséges legyél, szorgalmas és boldog.", "login": "Belépés", "loginAndReg": "Belépés / Regisztráció", "loginFacebookAlt": "Belépés / Regisztráció Facebookal", "logout": "Kijelentkezés", - "marketing1Header": "Fejleszd Játszva Szokásaidat", - "marketing1Lead1": "A Habitica egy videojáték, ami segít javítani a valós szokásaidon. Játékossá teszi az életedet azzal, hogy a feladataidat (szokások, napi feladatok, tennivalók) kis szörnyekké változatja, akiket legyőzhetsz. Minél jobb vagy ebben, annál jobban haladsz a játékban. Ia baklövéseket követsz el az életben, a játékban is elkezdesz visszacsúszni.", - "marketing1Lead2": "Szerezz Menő Cuccokat. Javíts a szokásaidon, hogy felépítsd az avatarod. Menőzz a cuccokkal, amiket megszereztél", - "marketing1Lead2Title": "Szerezz Menő Cuccokat", - "marketing1Lead3": "Találj véletlenszerű Jutalmakat. Egyeseknek a hazardírozás az, ami motiválja őket, egy rendszer, amit úgy hívnak, hogy \"véletlenszerű jutalmazás\". A Habitica tartalmazza az összes megerősítő stílust: pozitív, negatív, kiszámítható és véletlenszerű.", - "marketing1Lead3Title": "Találj különleges ajándékokat", - "marketing2Header": "Versenyezz Barátaiddal, Csatlakozz Érdekes Csoportokhoz", - "marketing2Lead1": "Habár játszhatod egyedül is a Habitica-t, akkor válik igazán érdekessé, amikor elkezdesz együttműködni, vetélkedni és egymást felelősségre vonni. A leghatékonyabb része az összes önfejlesztő programnak az a szociális elszámoltathatóság és mi más lenne a legjobb környezet ehhez egy videojátéknál?", - "marketing2Lead2": "Harcolj Főellenségek ellen. Milyen lenne egy szerepjáték csaták nélkül? Harcolj a csapatoddal főellenségek ellen. A főszörnyekkel harc az igazi \"super-elszámoltathatóság üzemmód\" - egy napig kihagyod a konditermet és a főellenség mindenkit sebez.", + "marketing1Header": "Fejleszd játszva szokásaidat", + "marketing1Lead1": "A Habitica egy videojáték, ami segít javítani a való életbeli szokásaidon. Játékossá teszi az életedet azzal, hogy a feladataidat (szokások, napi feladatok, tennivalók) kis szörnyekké változatja, akiket legyőzhetsz. Minél jobb vagy ebben, annál jobban haladsz a játékban. Ha baklövéseket követsz el az életben, a játékban is elkezdesz visszacsúszni.", + "marketing1Lead2": "Szerezz menő cuccokat. Javíts a szokásaidon, hogy felépítsd az avatarod. Menőzz a cuccokkal, amiket megszereztél", + "marketing1Lead2Title": "Szerezz menő cuccokat", + "marketing1Lead3": "Találj véletlenszerű jutalmakat. Egyeseknek a hazardírozás az, ami motiválja őket, egy rendszer, amit úgy hívnak, hogy \"véletlenszerű jutalmazás\". A Habitica tartalmazza az összes megerősítő stílust: pozitív, negatív, kiszámítható és véletlenszerű.", + "marketing1Lead3Title": "Találj véletlenszerű jutalmakat", + "marketing2Header": "Versenyezz barátaiddal, csatlakozz hasonló érdeklődésű csoportokhoz", + "marketing2Lead1": "Habár játszhatod egyedül is a Habiticát, akkor válik igazán érdekessé, amikor elkezdesz együttműködni, vetélkedni és számonkérni másokat. A leghatékonyabb része az összes önfejlesztő programnak az a szociális számonkérés és mi más lenne a legjobb környezet ehhez egy videojátéknál?", + "marketing2Lead2": "Harcolj főellenségek ellen. Milyen lenne egy szerepjáték csaták nélkül? Harcolj a csapatoddal főellenségek ellen. A főszörnyekkel harc az igazi \"szuper-számonkérő üzemmód\" - egy napig kihagyod a konditermet és a főellenség mindenkit megsebez.", "marketing2Lead2Title": "Főellenségek", - "marketing2Lead3": "A Kihívások lehetővé teszik számodra, hogy barátokkal és idegenekkel vetélkedj. Aki a legjobban teljesít a kihívás végére, az speciális jutalmakat nyer.", + "marketing2Lead3": "A kihívások lehetővé teszik számodra, hogy barátokkal és idegenekkel vetélkedj. Aki a legjobban teljesít a kihívás végére, az speciális jutalmakat nyer.", "marketing3Header": "Alkalmazások", - "marketing3Lead1": "Az iPhone & Android alkalmazás lehetővé teszi, hogy utazás közben is játssz. Tudjuk, hogy egy weblapra bejelentkezni és gombokat nyomkodni unalmassá válhat.", - "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", - "marketing4Header": "Céges Használat", - "marketing4Lead1": "Education is one of the best sectors for gamification. We all know how glued to phones and games students are these days; harness that power! Pit your students against eachother in friendly competition. Reward good behavior with rare prizes. Watch their grades and behavior soar.", + "marketing3Lead1": "Az iPhone és Android alkalmazások lehetővé teszik, hogy utazás közben is játssz. Tudjuk, hogy a weblapra bejelentkezni és gombokat nyomkodni nehézkes lehet.", + "marketing3Lead2": "Egyéb külső, 3. fél által üzemeltetett eszközök hozzákötik a Habiticát életed különböző részeihez. Az API kulccsal könnyen integrálhatóak olyan dolgok, mint a Chrome bővítmény, amely megbüntet különböző produktívnak nem mondható weblapok látogatásáért és megjutalmaz, ha produktív weblapokon szörfölsz. További információ", + "marketing4Header": "Céges használat", + "marketing4Lead1": "Az oktatás a játékosítás egyik legjobb ágazata. Mindnyájan tudjuk, mennyire hozzátapadnak manapság a diákok a mobiljaik képernyőjéhez - használjuk fel ezt az erőt! Biztassuk diákjainkat barátságos versenyzésre. Díjazzuk a jó teljesítményt ritka jutalmakkal. Nézzük, ahogy a jegyeik és a viselkedésük a csúcsra hág.", "marketing4Lead1Title": "Játékosítás az Oktatásban", - "marketing4Lead2": "Az egészségügyi költségek emelkedenek és ezen valahogy segíteni kell. Többszáz program készült a költségek csökkentésére és az egészség megőrzésére. Úgy hisszük, hogy a Habitica megalapozhatja az utat egy egészségesebb életstílus felé.", + "marketing4Lead2": "Az egészségügyi költségek emelkedenek és ezen valahogy segíteni kell. Többszáz program készült a költségek csökkentésére és az egészség megőrzésére. Hisszük, hogy a Habitica segíthet megalapozni az utat egy egészségesebb életstílus felé.", "marketing4Lead2Title": "Az egészséges életmód játkossá tétele", - "marketing4Lead3-1": "Szeretnéd játékossá tenni az életed?", + "marketing4Lead3-1": "Szeretnéd játékká tenni az életed?", "marketing4Lead3-2": "Szeretnél egy csoporttot vezetni oktatás, wellness, vagy egyéb témában?", "marketing4Lead3-3": "Szeretnél többet tudni?", "marketing4Lead3Title": "Játékosíts mindent", "mobileAndroid": "Android", "mobileIOS": "iOS", "motivate": "Motiváld magad és a csapatod!", - "motivate1": "Motiváld magad, hogy csinálj valamit.", - "motivate2": "Szerezz szervezettséget. Szerezz motivációt. Szerezz aranyat.", + "motivate1": "Motiváld magad, hogy bármit véghezvihess!", + "motivate2": "Légy szervezett. Légy motivált. Szerezz aranyat.", "passConfirm": "Jelszó megerősítése", - "passMan": "In case you are using a password manager (like 1Password) and have problems logging in, try typing your username and password manually.", + "passMan": "Abban az esetben, hogyha jelszó-megőrző programot használsz (mint a 1Password vagy LastPass) és problémáid akadnak a bejelentkezéssel, próbáld manuálisan bevinni a neved és a jelszavad.", "password": "Jelszó", "playButton": "Játssz", - "playButtonFull": "Játssz", + "playButtonFull": "Játssz a Habiticával", "presskit": "Sajtókészlet", "presskitDownload": "Összes kép letöltése:", - "presskitText": "Thanks for your interest in Habitica! The following images can be used for articles or videos about Habitica. For more information, please contact Siena Leslie at leslie@habitica.com.", + "presskitText": "Köszönjük a Habiticával kapcsolatos érdeklődésed! A következő képeket felhasználhatod a Habiticáról készített cikkekhez, vagy videókhoz. További információért, kérlek írj Siena Leslienek, a leslie@habitica.com címen.", "privacy": "Adatvédelmi nyilatkozat", "psst": "Psszt", "punishByline": "Szakíts a rossz szokásokkal és halogatással azonnali következményekkel.", "punishHeading1": "Kihagytál egy napi feladatot?", "punishHeading2": "Veszíts életerőt!", - "questByline1": "Ha barátokkal játszol felelős tudsz maradni a feladataidért.", - "questByline2": "Készítsetek kihívásokat egymásnak, hogy hamarabb elérjétek a céljaitokat.", - "questHeading1": "Harcolj szörnyek ellen a barátaiddal.", - "questHeading2": "Ha hanyag vagy, akkor mindenki megsérül.", + "questByline1": "A barátaiddal való játék segít feladatid számonkérésében.", + "questByline2": "Készítsetek kihívásokat egymásnak, hogy együtt érjétek el céljaitokat.", + "questHeading1": "Harcolj szörnyek ellen a barátaiddal!", + "questHeading2": "Ha hanyag vagy, akkor mindenki megsérül!", "register": "Regisztráció", - "rewardByline1": "Költsd el az aranyat virtuális és valós jutalmakra.", - "rewardByline2": "Azonnali jutalmak motiválnak folyamatosan.", + "rewardByline1": "Költs aranyat virtuális és valós jutalmakra.", + "rewardByline2": "Azonnali jutalmak segítenek, hogy folyamatosan motivált maradj!", "rewardHeading": "Teljesítsd a feladatod és szerezz aranyat!", "sampleDailies": "Minta napi feladatok", "sampleHabits": "Minta szokások", - "sampleToDo": "Minta Tennivalók", + "sampleToDo": "Minta tennivalók", "school": "Iskola", - "schoolSample1": "Befejezni 1 megbízást", + "schoolSample1": "Befejezni 1 feladatot", "schoolSample2": "1 óra tanulás", "schoolSample3": "Találkozni a tanulócsoporttal", "schoolSample4": "1 fejezetet kijegyzetelni", - "schoolSample5": "1 fejezet elolvasása", - "sixteenBitFilQuote": "I'm getting my jobs and tasks done in record time thanks to [Habitica]. I'm just always so eager to reach my next level-up!", - "skysailorQuote": "A csoportom és a küldetésünk a játékban tartanak, ami motivál a feladataim elvégzésében és jó irányban változtatja meg az életem", - "socialTitle": "Habitica | Játszd az életed", + "schoolSample5": "1 fejezetet elolvasni", + "sixteenBitFilQuote": "A megbízásaimmal és feladataimmal rekordidő alatt végzek, hála a [Habiticának]! Mindig vágyom rá, hogy elérhessem a következő szintet!", + "skysailorQuote": "A csapatom és a küldetésünk a játékban tartanak, ami motivál a feladataim elvégzésében és jó irányba tereli az életem", + "socialTitle": "Habitica - Játszd az életed", "supermouse35Quote": "Többet edzek és már hónapok óta nem felejtettem el bevenni a gyógyszereimet! Köszi, Habit. :D", "sync": "Szinkronizálás", "tasks": "Feladatok", "teamSample1": "Megbeszélés vázlat előkészítése keddre", - "teamSample2": "Brainstorm Growth Hacking", - "teamSample3": "Discuss this week's KPIs", + "teamSample2": "Ötletelés", + "teamSample3": "A hét ügyeinek megbeszélése", "teams": "Csoportok", - "terms": "Általános Szerződési Feltételeket", + "terms": "Általános Szerződési Feltételek", "testimonialHeading": "Játékosok véleménye...", - "localStorageTryFirst": "If you are experiencing problems with Habitica, click the button below to clear local storage for this website (other websites will not be affected). You will need to log in again after doing this, so first be sure that you know your log-in details, which can be found at Settings -> <%= linkStart %>Site<%= linkEnd %>.", - "localStorageTryNext": "If the problem persists, please <%= linkStart %>Report a Bug<%= linkEnd %> if you haven't already.", - "localStorageClearing": "Clearing Local Storage", - "localStorageClearingExplanation": "Your browser's local storage is being cleared. You will be logged out and redirected to the home page. Please wait.", - "localStorageClear": "Clear Local Storage", - "localStorageClearExplanation": "This button will clear local storage and log you out", + "localStorageTryFirst": "Ha problémáid akadnak a Habiticával, kattints az alábbi gombra, hogy a helyi tárhelyet kitisztítsd ehhez a webhelyhez (más webhelyeket nem érint). Ezután újra be kell majd jelentkezned, tehát először bizonyosodj meg arról, hogy tudod a bejelentkezéshez szükséges adataidat, melyet a beállítások közt találhatsz meg.<%= linkStart %>Honlap<%= linkEnd %>.", + "localStorageTryNext": "Ha a probléma ezután is fennáll, kérlek <%= linkStart %>jelentsd a hibát<%= linkEnd %> , ha még nem tetted volna meg.", + "localStorageClearing": "Helyi tárhely ürítése", + "localStorageClearingExplanation": "A böngésződ helyi tárhelye épp tisztítás alatt áll. Ezután az oldal kijelentkezik és visszairányít a kezdőlapra. Kérlek légy türelemmel.", + "localStorageClear": "Helyi tárhely ürítése", + "localStorageClearExplanation": "Ez a gomb kiüríti a helyi tárhelyet és kijelentkezik.", "tutorials": "Oktatóanyagok", "unlockByline1": "Érd el a céljaid és lépj szintet.", - "unlockByline2": "Oldj fel újabb motivációs eszközöket, mint például állat gyűjtés, véletlenszerű jutalmak, varázslás, és még sok más!", + "unlockByline2": "Oldj fel újabb motivációs eszközöket, mint például a kisállat gyűjtés, véletlenszerű jutalmak, varázslás, és még sok más!", "unlockHeadline": "Minél tovább maradsz produktív, annál több új tartalmat érhetsz el!", "useUUID": "Használj UUID / API Kulcs (Facebook felhasználóknak) párost", "username": "Felhasználónév", "watchVideos": "Nézz videókat", "work": "Munka", - "zelahQuote": "With [Habitica], I can be persuaded to go to bed on time by the thought of gaining points for an early night or losing health for a late one!", + "zelahQuote": "A [Habiticával] elértem, hogy időben feküdjek le, mert jutalmat kapok a korai lefekvésért és bosszant a gondolat, hogy ha későn fekszem le, életet vesztek!", "reportAccountProblems": "Fiók problémák jelentése", "reportCommunityIssues": "Közösségi problémák jelentése", "generalQuestionsSite": "Általános kérdések az oldalról", @@ -187,15 +187,15 @@ "merchandiseInquiries": "Termék információk", "marketingInquiries": "Marketing/Közösségi média információk", "tweet": "Tweet", - "apps": "Apps", - "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.", - "landingCopy3": "Join over <%= userCount %> people having fun as they improve their lives.", - "alreadyHaveAccount": "I already have an account!", - "getStartedNow": "Get Started Now!", - "altAttrNavLogo": "Habitica home", + "apps": "Alkalmazások", + "checkOutMobileApps": "Próbáld ki mobilos alkalmazásainkat!", + "imagine1": "Képzeld el, ha életet jobbá tétele olyan izgalmas lenne, mint egy játék.", + "landingCopy1": "Lépj előre a játékban valós feladataid elvégzésével.", + "landingCopy2": "Harcolj szörnyekkel, barátaid segítségével, hogy számonkérhető legyél a céljaidon.", + "landingCopy3": "Csatlakozz <%= userCount %> emberhez és érezd magad jól, miközben életed építed.", + "alreadyHaveAccount": "Már van fiókom!", + "getStartedNow": "Kezdj most!", + "altAttrNavLogo": "Habitica kezdőlap", "altAttrLifehacker": "Lifehacker", "altAttrNewYorkTimes": "The New York Times", "altAttrMakeUseOf": "MakeUseOf", diff --git a/common/locales/hu/gear.json b/common/locales/hu/gear.json index 4c4d3fe3fe..9931cb83cf 100644 --- a/common/locales/hu/gear.json +++ b/common/locales/hu/gear.json @@ -1,4 +1,5 @@ { + "set": "Set", "weapon": "Fegyver", "weaponBase0Text": "Nincs fegyvered", "weaponBase0Notes": "Nincs fegyvered.", @@ -142,6 +143,14 @@ "weaponSpecialWinter2016MageNotes": "Your moves are so sick, they must be magic! Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2015-2016 Winter Gear.", "weaponSpecialWinter2016HealerText": "Confetti Cannon", "weaponSpecialWinter2016HealerNotes": "WHEEEEEEEEEE!!!!!!! HAPPY WINTER WONDERLAND!!!!!!!! Increases Intelligence by <%= int %>. Limited Edition 2015-2016 Winter Gear.", + "weaponSpecialSpring2016RogueText": "Fire Bolas", + "weaponSpecialSpring2016RogueNotes": "You've mastered the ball, the club, and the knife. Now you advance to juggling fire! Awoo! Increases Strength by <%= str %>. Limited Edition 2016 Spring Gear.", + "weaponSpecialSpring2016WarriorText": "Cheese Mallet", + "weaponSpecialSpring2016WarriorNotes": "No one has as many friends as the mouse with tender cheeses. Increases Strength by <%= str %>. Limited Edition 2016 Spring Gear.", + "weaponSpecialSpring2016MageText": "Staff of Bells", + "weaponSpecialSpring2016MageNotes": "Abra-cat-abra! So dazzling, you might mesmerize yourself! Ooh... it jingles... Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2016 Spring Gear.", + "weaponSpecialSpring2016HealerText": "Spring Flower Wand", + "weaponSpecialSpring2016HealerNotes": "With a wave and a wink, you bring the fields and forests into bloom! Or bop troublesome mice on the head. Increases Intelligence by <%= int %>. Limited Edition 2016 Spring Gear.", "weaponMystery201411Text": "A lakmározás vasvillája", "weaponMystery201411Notes": "Szúrd le az ellenségeidet vagy túrj bele kedvenc eledeleidbe - ezzel a sokoldalú vasvillával mindent megtehetsz! Nem ad bónuszt. 2014 Novemberi előfizetői tárgy.", "weaponMystery201502Text": "A szeretet csillogó szárnyas botja és az igazságé is", @@ -176,6 +185,10 @@ "weaponArmoireBarristerGavelNotes": "Order! Increases Strength and Constitution by <%= attrs %> each. Enchanted Armoire: Barrister Set (Item 3 of 3).", "weaponArmoireJesterBatonText": "Jester Baton", "weaponArmoireJesterBatonNotes": "With a wave of your baton and some witty repartee, even the most complicated situations become clear. Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Jester Set (Item 3 of 3).", + "weaponArmoireMiningPickaxText": "Mining Pickax", + "weaponArmoireMiningPickaxNotes": "Mine the maximum amount of gold from your tasks! Increases Perception by <%= per %>. Enchanted Armoire: Miner Set (Item 3 of 3).", + "weaponArmoireBasicLongbowText": "Basic Longbow", + "weaponArmoireBasicLongbowNotes": "A serviceable hand-me-down bow. Increases Strength by <%= str %>. Enchanted Armoire: Basic Archer Set (Item 1 of 3).", "armor": "páncél", "armorBase0Text": "Egyszerű ruházat", "armorBase0Notes": "Átlagos ruházat. Nem ad semmi előnyt.", @@ -307,6 +320,14 @@ "armorSpecialWinter2016MageNotes": "The wisest wizard keeps well-bundled in the winter wind. Increases Intelligence by <%= int %>. Limited Edition 2015-2016 Winter Gear.", "armorSpecialWinter2016HealerText": "Festive Fairy Cloak", "armorSpecialWinter2016HealerNotes": "Festive Fairies wrap their body wings around themselves for protection as they use their head wings to catch headwinds and fly around Habitica at speeds of up to 100 mph, delivering gifts and spraying everyone with confetti. How droll. Increases Constitution by <%= con %>. Limited Edition 2015-2016 Winter Gear.", + "armorSpecialSpring2016RogueText": "Canine Camo Suit", + "armorSpecialSpring2016RogueNotes": "A clever pup knows to choose a brighter guise for concealment when everything is green and vibrant. Increases Perception by <%= per %>. Limited Edition 2016 Spring Gear.", + "armorSpecialSpring2016WarriorText": "Mighty Mail", + "armorSpecialSpring2016WarriorNotes": "Though you be but little, you are fierce! Increases Constitution by <%= con %>. Limited Edition 2016 Spring Gear.", + "armorSpecialSpring2016MageText": "Grand Malkin Robes", + "armorSpecialSpring2016MageNotes": "Brightly colored, so you won't be mistaken for a necromouser. Increases Intelligence by <%= int %>. Limited Edition 2016 Spring Gear.", + "armorSpecialSpring2016HealerText": "Fluffy Bunny Breeches", + "armorSpecialSpring2016HealerNotes": "Hippity hop! Bound from hill to hill, healing those in need. Increases Constitution by <%= con %>. Limited Edition 2016 Spring Gear.", "armorMystery201402Text": "Hirvivő köpeny", "armorMystery201402Notes": "Csillámlóak és erősek, ezeknek a köpenyeknek sok zsebük van levelek hordásához. Nem ad bónuszt. 2014 februári előfizetői tárgy.", "armorMystery201403Text": "Erdőjáró páncél", @@ -341,6 +362,8 @@ "armorMystery201511Notes": "Considering this armor was carved directly from a magical log, it's surprisingly comfortable. Confers no benefit. November 2015 Subscriber Item.", "armorMystery201512Text": "Cold Fire Armor", "armorMystery201512Notes": "Summon the icy flames of winter! Confers no benefit. December 2015 Subscriber Item.", + "armorMystery201603Text": "Lucky Suit", + "armorMystery201603Notes": "This suit is sewn from thousands of four-leafed clovers! Confers no benefit. March 2016 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", @@ -367,6 +390,10 @@ "armorArmoireBarristerRobesNotes": "Very serious and stately. Increases Constitution by <%= con %>. Enchanted Armoire: Barrister Set (Item 2 of 3).", "armorArmoireJesterCostumeText": "Jester Costume", "armorArmoireJesterCostumeNotes": "Tra-la-la! Despite the look of this costume, you are no fool. Increases Intelligence by <%= int %>. Enchanted Armoire: Jester Set (Item 2 of 3).", + "armorArmoireMinerOverallsText": "Miner Overalls", + "armorArmoireMinerOverallsNotes": "They may seem worn, but they are enchanted to repel dirt. Increases Constitution by <%= con %>. Enchanted Armoire: Miner Set (Item 2 of 3).", + "armorArmoireBasicArcherArmorText": "Basic Archer Armor", + "armorArmoireBasicArcherArmorNotes": "This camouflaged vest lets you slip unnoticed through the forests. Increases Perception by <%= per %>. Enchanted Armoire: Basic Archer Set (Item 2 of 3).", "headgear": "Fejviselet", "headBase0Text": "Nincs sisak", "headBase0Notes": "Nincs fejfedő", @@ -496,6 +523,14 @@ "headSpecialWinter2016MageNotes": "Keeps the snow out of your eyes while you're casting spells. Increases Perception by <%= per %>. Limited Edition 2015-2016 Winter Gear.", "headSpecialWinter2016HealerText": "Fairy Wing Helm", "headSpecialWinter2016HealerNotes": "Thesewingsfluttersoquicklythattheyblur! Increases Intelligence by <%= int %>. Limited Edition 2015-2016 Winter Gear.", + "headSpecialSpring2016RogueText": "Good Doggy Mask", + "headSpecialSpring2016RogueNotes": "Aww, what a cute puppy! Come here and let me pet your head. ...Hey, where did all my Gold go? Increases Perception by <%= per %>. Limited Edition 2016 Spring Gear.", + "headSpecialSpring2016WarriorText": "Mouse Guard Helm", + "headSpecialSpring2016WarriorNotes": "Never again shall you be bopped on the head! Let them try! Increases Strength by <%= str %>. Limited Edition 2016 Spring Gear.", + "headSpecialSpring2016MageText": "Grand Malkin Hat", + "headSpecialSpring2016MageNotes": "Apparel to set you above the mere alley-mages of the world. Increases Perception by <%= per %>. Limited Edition 2016 Spring Gear.", + "headSpecialSpring2016HealerText": "Blossom Diadem", + "headSpecialSpring2016HealerNotes": "It glints with the potential of new life ready to burst forth. Increases Intelligence by <%= int %>. Limited Edition 2016 Spring Gear.", "headSpecialGaymerxText": "Szívárványos harcisisak", "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", @@ -526,6 +561,10 @@ "headMystery201512Notes": "These flames burn cold with pure intellect. Confers no benefit. December 2015 Subscriber Item.", "headMystery201601Text": "Helm of True Resolve", "headMystery201601Notes": "Stay resolute, brave champion! Confers no benefit. January 2016 Subscriber Item.", + "headMystery201602Text": "Heartbreaker Hood", + "headMystery201602Notes": "Shield your identity from all your admirers. Confers no benefit. February 2016 Subscriber Item.", + "headMystery201603Text": "Lucky Hat", + "headMystery201603Notes": "This top hat is a magical good-luck charm. Confers no benefit. March 2016 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", @@ -570,6 +609,10 @@ "headArmoireBarristerWigNotes": "This bouncy wig is enough to frighten away even the fiercest foe. Increases Strength by <%= str %>. Enchanted Armoire: Barrister Set (Item 1 of 3).", "headArmoireJesterCapText": "Jester Cap", "headArmoireJesterCapNotes": "The bells on this hat might distract your opponents, but they just help you focus. Increases Perception by <%= per %>. Enchanted Armoire: Jester Set (Item 1 of 3).", + "headArmoireMinerHelmetText": "Miner Helmet", + "headArmoireMinerHelmetNotes": "Protect your head from falling tasks! Increases Intelligence by <%= int %>. Enchanted Armoire: Miner Set (Item 1 of 3).", + "headArmoireBasicArcherCapText": "Basic Archer Cap", + "headArmoireBasicArcherCapNotes": "No archer would be complete without a jaunty cap! Increases Perception by <%= per %>. Enchanted Armoire: Basic Archer Set (Item 3 of 3).", "offhand": "Balkezes tárgy", "shieldBase0Text": "Nincs balkezes felszerelés", "shieldBase0Notes": "Nincs pajzs vagy másodlagos fegyver.", @@ -653,6 +696,12 @@ "shieldSpecialWinter2016WarriorNotes": "Use this sled to block attacks, or ride it triumphantly into battle! Increases Constitution by <%= con %>. Limited Edition 2015-2016 Winter Gear.", "shieldSpecialWinter2016HealerText": "Pixie Present", "shieldSpecialWinter2016HealerNotes": "Open it open it open it open it open it open it!!!!!!!!! Increases Constitution by <%= con %>. Limited Edition 2015-2016 Winter Gear.", + "shieldSpecialSpring2016RogueText": "Fire Bolas", + "shieldSpecialSpring2016RogueNotes": "You've mastered the ball, the club, and the knife. Now you advance to juggling fire! Awoo! Increases Strength <%= str %>. Limited Edition 2016 Spring Gear.", + "shieldSpecialSpring2016WarriorText": "Cheese Wheel", + "shieldSpecialSpring2016WarriorNotes": "You braved fiendish traps to procure this defense-boosting food. Increases Constitution by <%= con %>. Limited Edition 2016 Spring Gear.", + "shieldSpecialSpring2016HealerText": "Floral Buckler", + "shieldSpecialSpring2016HealerNotes": "The April Fool claims this little shield will block Shiny Seeds. Don't believe him. Increases Constitution by <%= con %>. Limited Edition 2016 Spring Gear.", "shieldMystery201601Text": "Resolution Slayer", "shieldMystery201601Notes": "This blade can be used to parry away all distractions. Confers no benefit. January 2016 Subscriber Item.", "shieldMystery301405Text": "Óra pajzs", @@ -665,6 +714,8 @@ "shieldArmoireRoyalCaneNotes": "Hooray for the ruler, worthy of song! Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Royal Set (Item 2 of 3).", "shieldArmoireDragonTamerShieldText": "Dragon Tamer Shield", "shieldArmoireDragonTamerShieldNotes": "Distract enemies with this dragon-shaped shield. Increases Perception by <%= per %>. Enchanted Armoire: Dragon Tamer Set (Item 2 of 3).", + "shieldArmoireMysticLampText": "Mystic Lamp", + "shieldArmoireMysticLampNotes": "Light the darkest caves with this mystic lamp! Increases Perception by <%= per %>. Enchanted Armoire: Independent Item.", "back": "Back Accessory", "backBase0Text": "Nincs háti kiegészítő", "backBase0Notes": "Nincs háti kiegészítő.", @@ -680,6 +731,8 @@ "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.", + "backMystery201602Text": "Heartbreaker Cape", + "backMystery201602Notes": "With a swish of your cape, your enemies fall before you! Confers no benefit. February 2016 Subscriber Item.", "backSpecialWonderconRedText": "Tekintélyes köpeny", "backSpecialWonderconRedNotes": "Erőt és szépségtől sugárzik. Nem ad semmi előnyt. Külön kiadású tárgy.", "backSpecialWonderconBlackText": "Trükkös lepel", @@ -726,8 +779,16 @@ "headAccessorySpecialSpring2015MageNotes": "These ears listen keenly, in case somewhere a magician is revealing secrets. Confers no benefit. Limited Edition 2015 Spring Gear.", "headAccessorySpecialSpring2015HealerText": "Zöld cicafülek", "headAccessorySpecialSpring2015HealerNotes": "Ezektől az aranyos fülektől mindenkit a sárga irigység fog el. Nem ad bónuszt. Korlátozott példányszámú 2015-ös Tavaszi Felszerelés.", + "headAccessorySpecialSpring2016RogueText": "Green Dog Ears", + "headAccessorySpecialSpring2016RogueNotes": "With these, you can keep track of tricky Mages even if they turn invisible! Confers no benefit. Limited Edition 2016 Spring Gear.", + "headAccessorySpecialSpring2016WarriorText": "Red Mouse Ears", + "headAccessorySpecialSpring2016WarriorNotes": "To better hear your theme song across clamorous battlefields. Confers no benefit. Limited Edition 2016 Spring Gear.", + "headAccessorySpecialSpring2016MageText": "Yellow Cat Ears", + "headAccessorySpecialSpring2016MageNotes": "These sharp ears can detect the minute hum of ambient Mana, or the muted footfalls of a Rogue. Confers no benefit. Limited Edition 2016 Spring Gear.", + "headAccessorySpecialSpring2016HealerText": "Purple Bunny Ears", + "headAccessorySpecialSpring2016HealerNotes": "They stand like flags above the fray, letting others know where to run for help. Confers no benefit. Limited Edition 2016 Spring Gear.", "headAccessoryBearEarsText": "Medve fülek", - "headAccessoryBearEarsNotes": "Ezektől a fülektől úgy nézel ki, mint egy zabálnivaló mackó! Nem ad semmi előnyt.", + "headAccessoryBearEarsNotes": "These ears make you look like a brave bear! Confers no benefit.", "headAccessoryCactusEarsText": "Kaktusz fülek", "headAccessoryCactusEarsNotes": "Ezektől a fülektől úgy nézel ki, mint egy tüskés kaktusz! Nem ad semmi előnyt.", "headAccessoryFoxEarsText": "Róka fülek", @@ -754,6 +815,8 @@ "headAccessoryMystery201510Notes": "These fearsome horns are slightly slimy. Confers no benefit. October 2015 Subscriber Item.", "headAccessoryMystery301405Text": "Fejre-Szemüveg", "headAccessoryMystery301405Notes": "\"A szemüvegek a szemhez vannak,\" mondták \"Senki sem akar olyan szemüvegeket amit csak a fejeden hordhatsz,\" mondták. Ha! Jól megmutattad nekik!. Nem ad bónuszt. 3015 augusztusi előfizetői tárgy.", + "headAccessoryArmoireComicalArrowText": "Comical Arrow", + "headAccessoryArmoireComicalArrowNotes": "This whimsical item doesn't provide a stat boost, but it sure is good for a laugh! Confers no benefit. Enchanted Armoire: Independent Item.", "eyewear": "Eyewear", "eyewearBase0Text": "Nincs szemviselet.", "eyewearBase0Notes": "Nincs szemviselet.", diff --git a/common/locales/hu/generic.json b/common/locales/hu/generic.json index 72403119b6..96e4f46eaf 100644 --- a/common/locales/hu/generic.json +++ b/common/locales/hu/generic.json @@ -2,22 +2,22 @@ "languageName": "Magyar", "stringNotFound": "A(z) '<%= string %>' szöveg nem található.", "titleIndex": "Habitica | Az életed: a szerepjáték", - "habitica": "Habitika", + "habitica": "Habitica", "titleTasks": "Feladatok", - "titleAvatar": "Hős", + "titleAvatar": "Avatar", "titleBackgrounds": "Hátterek", - "titleStats": "Statisztika és kitüntetések", + "titleStats": "Jellemzők és kitüntetések", "titleProfile": "Profil", "titleInbox": "Bejövő üzenetek", "titleTavern": "Fogadó", "titleParty": "Csapat", - "titleHeroes": "Hősök Csarnoka", - "titlePatrons": "Hall of Patrons", - "titleGuilds": "Guilds", + "titleHeroes": "Hősök csarnoka", + "titlePatrons": "Pártfogók csarnoka", + "titleGuilds": "Céhek", "titleChallenges": "Kihívások", "titleDrops": "Piac", "titleQuests": "Küldetések", - "titlePets": "Állatok", + "titlePets": "Háziállatok", "titleMounts": "Hátasok", "titleEquipment": "Felszerelés", "titleTimeTravelers": "Időutazók", @@ -25,15 +25,15 @@ "titleSettings": "Beállítások", "expandToolbar": "Eszköztár lenyitása", "collapseToolbar": "Eszköztár összecsukása", - "markdownBlurb": "A Habitica markdown-t használ üzenetek formázáshoz. Nézd meg a Markdown Puskát további információkért.", + "markdownBlurb": "A Habitica markdown-t használ az üzenetek formázáshoz. Nézd meg a Markdown Puskát további információkért.", "showFormattingHelp": "Formázási segédlet mutatása", "hideFormattingHelp": "Formázási segédlet elrejtése", "youType": "Ezt írod:", "youSee": "Ezt látod:", - "italics": "*Dölt*", + "italics": "*Dőlt*", "bold": "**Félkövér**", "strikethrough": "~~Áthúzott~~", - "emojiExample": ":mosoly:", + "emojiExample": ":smile:", "markdownLinkEx": "[A Habitica nagyszerű!](https://habitica.com)", "markdownImageEx": "![kötelező szöveg](https://habitica.com/cake.png \"opcionális szöveg egér ráhúzásakor\")", "unorderedListHTML": "+ Első elem
+ Második elem
+ Harmadik elem", @@ -66,8 +66,8 @@ "accept": "Elfogad", "reject": "Elutasít", "neverMind": "Felejtsd el", - "buyMoreGems": "Több Drágakő vásárlása", - "notEnoughGems": "Nincs elég Drágakő", + "buyMoreGems": "Több drágakő vásárlása", + "notEnoughGems": "Nincs elég rendelkezésre álló drágakő", "alreadyHave": "Upsz! Ez a tárgy már megvan neked. Nem kell mégegyszer megvenni!", "delete": "Töröl", "gemsPopoverTitle": "Drágakövek", @@ -76,23 +76,23 @@ "moreInfo": "Több infó", "showMoreMore": "(mutass többet)", "showMoreLess": "(mutass kevesebbet)", - "gemsWhatFor": "Kattints ide, hogy Drágaköveket vásárolj. Drágakövekkel tudsz olyan különleges tárgyakat vásárolni, mint Küldetések, Avatár testreszabás és Szezonális felszerelés.", + "gemsWhatFor": "Kattints ide, hogy drágaköveket vásárolj. Drágakövekkel tudsz olyan különleges tárgyakat vásárolni, mint a küldetések, szezonális felszerelések, illetve ezeket használva szabhatod jobban testre avatarod.", "veteran": "Veterán", - "veteranText": "Mállasztotta a Szürke Szokást (az Angular előtti weblapunkat), és szerzett néhány sebhelyet a hibáitól.", + "veteranText": "Mállasztotta a \"Szürke Szokás\"-t (az Angular előtti weblapunkat), és szerzett néhány sebhelyet a hibáitól.", "originalUser": "Eredeti felhasználó!", - "originalUserText": "Az egyik nagyon korai felhasználó. Ő tud mesélni az alfa tesztről!", - "habitBirthday": "Habitica Születésnapi Banzáj", - "habitBirthdayText": "Megünnepelte a Habitica Születésnapi Banzájt!", - "habitBirthdayPluralText": "<%= number %> alkalommal ünnepelte meg a Habitica Születésnapi Banzájt!", - "habiticaDay": "Habitika Elnevezési Nap", - "habiticaDaySingularText": "Részt vettél Habitika Elnevezési Napján! Köszönjük, hogy ilyen fantasztikus felhasználó vagy.", - "habiticaDayPluralText": "Részt vettél <%= number %> Habitika Elnevezési Napon! Köszönjük, hogy ilyen fantasztikus felhasználó vagy.", - "achievementDilatory": "A halogatók megmentője", - "achievementDilatoryText": "Segített legyőzni a Rettenet Késlekedő Sárkányát a 2014 Nyári Loccsanás esemény alatt.", - "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!", - "memberSince": "- óta tag", + "originalUserText": "Az egyik nagyon korai felhasználók egyike. Alfa tesztelők, mi?", + "habitBirthday": "Habitica szülinapi móka", + "habitBirthdayText": "Részt vett a Habitica szülinapi mókán", + "habitBirthdayPluralText": "<%= number %> alkalommal vett részt a Habitica szülinapi mókán!", + "habiticaDay": "Habitica elnevezési nap", + "habiticaDaySingularText": "Részt vettél Habitica elnevezési napján! Köszönjük, hogy ilyen fantasztikus felhasználó vagy.", + "habiticaDayPluralText": "Részt vettél <%= number %> Habitica elnevezési napon! Köszönjük, hogy ilyen fantasztikus felhasználó vagy.", + "achievementDilatory": "A halogatók megváltója", + "achievementDilatoryText": "Segített legyőzni a halogató rémület sárkányát a 2014 nyári csobbanóbulin.", + "costumeContest": "Jelmez versenyző", + "costumeContestText": "Részt vett a Habitoween jelmez versenyén. Nézz meg pár versenyzőt a Habitica blogon!", + "costumeContestTextPlural": "Részt vett <%= number %> Habitoween jelmez versenyen. Nézz meg pár versenyzőt a Habitica blogon!", + "memberSince": "- Óta tag", "lastLoggedIn": "- Utolsó bejelentkezés", "notPorted": "Ezt a funkciót még nem helyeztük át az eredeti honlapról.", "buyThis": "Megveszed a <%= text %>-t <%= price %> drágakőért? Drágaköveid száma: <%= gems %>", @@ -110,16 +110,16 @@ "endTour": "Áttekintés befejezése", "audioTheme": "Hang téma", "audioTheme_off": "Kikapcsol", - "audioTheme_danielTheBard": "Daniel a bárd", - "audioTheme_wattsTheme": "Watts Témája", + "audioTheme_danielTheBard": "Daniel, a lantos", + "audioTheme_wattsTheme": "Watts témája", "audioTheme_gokulTheme": "Gokul téma", "audioTheme_luneFoxTheme": "LuneFox témája", "askQuestion": "Tegyél fel egy kérdést", "reportBug": "Programhiba jelentése", - "HabiticaWiki": "The Habitica Wiki", + "HabiticaWiki": "A Habitica Wiki", "HabiticaWikiFrontPage": "http://habitica.wikia.com/wiki/Habitica_Wiki", - "contributeToHRPG": "Hozzájárulás a Habitica-hez", - "overview": "Áttekintés Új Felhasználók számára", + "contributeToHRPG": "Hozzájárulás a Habitica-hoz", + "overview": "Áttekintés új felhasználók számára", "January": "Január", "February": "Február", "March": "Március", @@ -134,46 +134,49 @@ "December": "December", "dateFormat": "Dátum formátum", "achievementStressbeast": "Stoïkalm megmentője", - "achievementStressbeastText": "Segített legyőzni az Utálatos Stresszrémet a 2014-es Téli Csodaország esemény alatt!", - "achievementBurnout": "Virágzó Mezők megmentője", - "achievementBurnoutText": "Segített legyőzni Kiégést és visszaszerezte a Távozó Szellemeket a 2015-ös Őszi Fesztivál esemény alatt!", - "checkOutProgress": "Haladásom megtekintése Habitikán!", - "cardReceived": "Egy kártyád érkezett!", + "achievementStressbeastText": "Segített legyőzni az utálatos stressz-szörnyeteget a 2014-es téli csodaország alatt!", + "achievementBurnout": "Virágzó mezők megmentője", + "achievementBurnoutText": "Segített legyőzni Kiégést és visszaszerezte a kifárasztott szellemeket a 2015-ös őszi fesztivál alatt!", + "achievementBewilder": "Savior of Mistiflying", + "achievementBewilderText": "Helped defeat the Be-Wilder during the 2016 Spring Fling Event!", + "checkOutProgress": "Fejlődésem megtekintáse a Habiticán!", + "cardReceived": "Kártyád érkezett!", "cardReceivedFrom": "<%= userName %> küldött neked egy <%= cardType %>", "greetingCard": "Üdvözlőkártya", - "greetingCardExplanation": "Mindketten megkaptátok a Vidám Barát kitüntetést!", - "greetingCardNotes": "Küldj üdvözlőkártyát egy csapattagnak.", + "greetingCardExplanation": "Mindketten megkaptátok a vidám pajtás kitüntetést!", + "greetingCardNotes": "Küldj üdvözlőkártyát egy csapattagodnak.", "greeting0": "Szia!", "greeting1": "Csak beköszönök :)", "greeting2": "`örülten integet`", - "greeting3": "Csáó!", - "greetingCardAchievementTitle": "Vidám Barát", + "greeting3": "Hé, te!", + "greetingCardAchievementTitle": "Vidám pajtás", "greetingCardAchievementText": "Szia! Hali! Halló! Küldtél vagy kaptál <%= cards %> üdvözlőkártyát.", - "thankyouCard": "Köszönöm Kártya", - "thankyouCardExplanation": "Mindketten megkaptátok a Nagyon Hálás kitüntetést!", - "thankyouCardNotes": "Küldj Köszönöm Kártyát egy csapattagnak.", + "thankyouCard": "Köszönőkártya", + "thankyouCardExplanation": "Mindketten megkaptátok a hihetetlenül hálás kitüntetést!", + "thankyouCardNotes": "Küldj köszönőkártyát egy csapattagodnak.", "thankyou0": "Nagyon szépen köszönöm!", "thankyou1": "Köszönöm, köszönöm, köszönöm!", - "thankyou2": "Ezerhála neked.", + "thankyou2": "Ezer hála neked.", "thankyou3": "Nagyon hálás vagyok, köszönöm!", - "thankyouCardAchievementTitle": "Nagyon Hálás", - "thankyouCardAchievementText": "Köszönöm, hogy hálás vagy! Küldtél vagy kaptál <%= cards %> Köszönöm kártyát.", - "birthdayCard": "Birthday Card", - "birthdayCardExplanation": "You both receive the Birthday Bonanza achievement!", - "birthdayCardNotes": "Send a birthday card to a party member.", - "birthday0": "Happy birthday to you!", - "birthdayCardAchievementTitle": "Birthday Bonanza", - "birthdayCardAchievementText": "Many happy returns! Sent or received <%= cards %> birthday cards.", + "thankyouCardAchievementTitle": "Hihetetlenül hálás", + "thankyouCardAchievementText": "Köszönöm, hogy hálás vagy! Küldtél vagy kaptál <%= cards %> köszönőkártyát.", + "birthdayCard": "Szülinapi üdvözlőlap", + "birthdayCardExplanation": "Mindketten megkaptátok a szülinapi banzáj kitüntetést!", + "birthdayCardNotes": "Küldj egy szülinapi üdvözlőlapot egy csapattagodnak.", + "birthday0": "Boldog szülinapot!", + "birthdayCardAchievementTitle": "Szülinapi banzáj", + "birthdayCardAchievementText": "Még sok-sok ilyet! Küldtél vagy kaptál <%= cards %> szülinapi üdvözlőlapot.", "streakAchievement": "Széria-kitüntetést szereztél!", "firstStreakAchievement": "21 napos széria!", - "streakAchievementCount": "21 napos szériák", + "streakAchievementCount": "<%= streaks %> 21 napos széria", "twentyOneDays": "21 napot sikerült egymás után teljesítened!", "dontBreakStreak": "Remek munka, ne hagyd veszni a jó szériát!", "dontStop": "Mostmár nehogy megállj!", - "levelUpShare": "Szintet léptem a Habiticán, azzal, hogy javítottam való életbeli szokásaimon! ", - "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": "Szintet léptem a Habiticán, azzal, hogy javítottam való-életbeli szokásaimon! ", + "questUnlockShare": "Megszereztem egy új küldetést a habiticán!", + "hatchPetShare": "Kikeltettem egy új háziállatot, azzal, hogy való-életbeli feladatim elvégeztem!", + "raisePetShare": "Hátassá neveltem egy háziállatot, azzal, hogy való-életbeli tennivalóim elvégeztem!", "wonChallengeShare": "Megnyertem egy kihívást a Habiticán!", - "achievementShare": "Új kitüntetést szereztem a Habiticán!" + "achievementShare": "Új kitüntetést szereztem a Habiticán!", + "orderBy": "Order By <%= item %>" } \ No newline at end of file diff --git a/common/locales/hu/groups.json b/common/locales/hu/groups.json index ff8f8d22e0..e95a3c9a0d 100644 --- a/common/locales/hu/groups.json +++ b/common/locales/hu/groups.json @@ -1,5 +1,5 @@ { - "tavern": "Kocsma", + "tavern": "Tavern Chat", "innCheckOut": "Fogadó elhagyása", "innCheckIn": "Pihenj a fogadóban", "innText": "You're resting in the Inn! While checked-in, your Dailies won't hurt you at the day's end, but they will still refresh every day. Be warned: If you are participating in a Boss Quest, the Boss will still damage you for your party mates' missed Dailies unless they are also in the Inn! Also, your own damage to the Boss (or items collected) will not be applied until you check out of the Inn.", @@ -52,7 +52,7 @@ "groupDescr": "Leírás, amit a nyilvános Céh listában láthatsz (Használhatsz Markdown-t)", "logoUrl": "Logo URL", "assignLeader": "Jelölj ki Csoportvezetőt", - "members": "Members", + "members": "Tagok", "partyList": "Order for party members in header", "banTip": "Tag kirúgása", "moreMembers": "továbi tagok", @@ -101,7 +101,7 @@ "inbox": "Bejövő üzenetek", "abuseFlag": "Jelentsd a Közösségi Irányelvek megsértését", "abuseFlagModalHeading": "Jelented <%= name %>-t a megsértésért?", - "abuseFlagModalBody": "Are you sure you want to report this post? You should ONLY report a post that violates the <%= firstLinkStart %>Community Guidelines<%= linkEnd %> and/or <%= secondLinkStart %>Terms of Service<%= linkEnd %>. Inappropriately reporting a post is a violation of the Community Guidelines and may give you an infraction. Appropriate reasons to flag a post include but are not limited to:


", + "abuseFlagModalBody": "Are you sure you want to report this post? You should ONLY report a post that violates the <%= firstLinkStart %>Community Guidelines<%= linkEnd %> and/or <%= secondLinkStart %>Terms of Service<%= linkEnd %>. Inappropriately reporting a post is a violation of the Community Guidelines and may give you an infraction. Appropriate reasons to flag a post include but are not limited to:

", "abuseFlagModalButton": "Report Violation", "abuseReported": "Köszönjük ennek a megsértésnek a jelentését, értesítettük a moderátorokat.", "abuseAlreadyReported": "Már jelentetted ezt az üzenetet.", @@ -112,8 +112,8 @@ "messageWroteIn": "<%= user %> wrote in <%= group %>", "msgPreviewHeading": "Message Preview", "leaderOnlyChallenges": "Only group leader can create challenges", - "sendGift": "Send Gift", - "inviteFriends": "Invite Friends", + "sendGift": "Küldj ajándékot", + "inviteFriends": "Barátok meghívása", "inviteByEmail": "Invite by Email", "inviteByEmailExplanation": "If a friend joins Habitica via your email, they'll automatically be invited to your party!", "inviteFriendsNow": "Invite Friends Now", @@ -147,5 +147,9 @@ "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 %>Community Guidelines<%= linkEnd %> and then click the button below to indicate that you accept them.", + "partyUpName": "Party Up", + "partyOnName": "Party On", + "partyUpAchievement": "Joined a Party with another person! Have fun battling monsters and supporting each other.", + "partyOnAchievement": "Joined a Party with at least four people! Enjoy your increased accountability as you unite with your friends to vanquish your foes!" } \ No newline at end of file diff --git a/common/locales/hu/limited.json b/common/locales/hu/limited.json index 35bff4c123..aac26fa890 100644 --- a/common/locales/hu/limited.json +++ b/common/locales/hu/limited.json @@ -67,6 +67,10 @@ "witchyWizardSet": "Witchy Wizard (Mage)", "mummyMedicSet": "Mummy Medic (Healer)", "vampireSmiterSet": "Vampire Smiter (Rogue)", + "bewareDogSet": "Beware Dog (Warrior)", + "magicianBunnySet": "Magician's Bunny (Mage)", + "comfortingKittySet": "Comforting Kitty (Healer)", + "sneakySqueakerSet": "Sneaky Squeaker (Rogue)", "fallEventAvailability": "Available until October 31", "winterEventAvailability": "Available until December 31" } \ No newline at end of file diff --git a/common/locales/hu/npc.json b/common/locales/hu/npc.json index 33f3ff1ffb..8dbbaff7da 100644 --- a/common/locales/hu/npc.json +++ b/common/locales/hu/npc.json @@ -35,7 +35,7 @@ "amazonInstructions": "Kattints a gombra, hogy az Amazon Payments-el fizess.", "paymentMethods": "Purchase using", "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.", + "classGearText": "First: don't panic! Your old gear is in your inventory, and you're now wearing the apprentice equipment of your new class. Wearing your class's gear grants you a 50% bonus to stats. However, feel free to switch back to your old gear.", "classStats": "These are your class's stats; they affect the game-play. Each time you level up, you get one point to allocate to a particular stat. Hover over each stat for more information.", "autoAllocate": "Automatikus kiosztás", "autoAllocateText": "Ha az automatikus kiosztás ki van választva, akkor az avatarod automatikusan kap jellemzőket, a feladatok tulajdonságai alapján, amiket a FELADAT > Szerkeszt > Haladó > Tulajdonságok menüpont alatt találsz. Tehát, ha gyakran jársz az edzőterembe és az \"Edzés\" napi feladatod \"Fizikai\"-ra van állatva, akkor az erőd fog automatikusan növekedni.", @@ -45,7 +45,7 @@ "moreClass": "Több információért a kaszt-rendszerről, nézd meg a", "tourWelcome": "Welcome to Habitica! This is your To-Do list. Check off a task to proceed!", "tourExp": "Szép munka! Egy feladat kipipálása tapasztalatot és aranyat ad!", - "tourDailies": "This column is for Daily tasks. To proceed, enter a task you should do every day! Sample Dailies: Make Bed, Floss, Check Work Email", + "tourDailies": "This column is for Daily tasks. To proceed, enter a task you should do every day! Sample Dailies: Make Bed, Floss, Check Work Email", "tourCron": "Remek! A Napi Feladatok minden nap újrakezdődnek.", "tourHP": "Vigyázz! Ha nem teljesítesz egy Napi Feladatot éjfélig, akkor az sebezni fog téged!", "tourHabits": "This column is for good and bad Habits that you do many times a day! To proceed, click the pencil to edit the names, then click the checkmark to save.", diff --git a/common/locales/hu/pets.json b/common/locales/hu/pets.json index 64748b8632..871fde9233 100644 --- a/common/locales/hu/pets.json +++ b/common/locales/hu/pets.json @@ -17,8 +17,9 @@ "mantisShrimp": "Sáskarák", "mammoth": "Gyapjas Mamut", "orca": "Gyilkos bálna", - "royalPurpleGryphon": "Royal Purple Gryphon", - "phoenix": "Phoenix", + "royalPurpleGryphon": "Fenséges lila griffmadár", + "phoenix": "Főnix", + "bumblebee": "Bumblebee", "rarePetPop1": "Kattintas az arany mancsra, hogy megtudd hogyan tudod megszerezni ezt a ritka háziállatot úgy, hogy közreműködsz a Habitica-nek.", "rarePetPop2": "Hogyan szerezheted meg ezt a háziállatot!", "potion": "<%= potionType %> főzet", @@ -27,7 +28,7 @@ "eggSingular": "Tojás", "noEggs": "Nincs egy tojásod se.", "hatchingPotions": "Keltetőfőzetek", - "magicHatchingPotions": "Magic Hatching Potions", + "magicHatchingPotions": "Varázslatos keltetőfőzetek", "hatchingPotion": "keltetőfőzet", "noHatchingPotions": "Nincs keltetőfőzeted.", "inventoryText": "Kattintsa tojásra, hogy a lásd a használható főzeteket zöldben és kattints egy kijelölt főzetre, hogy kikeltesd a háziállatod. Ha nincs kijelölt főzet, akkor kattints a tojásra újra, hogy megszűntesd a kijelölést és kattints egy főzetre inkább, hogy lásd a tojásokat, amiken használhatod. A nem kívánt tárgyakat eladhatod Alexandernek, a kereskedőnek.", diff --git a/common/locales/hu/quests.json b/common/locales/hu/quests.json index 7d8adac0ae..96e2a904af 100644 --- a/common/locales/hu/quests.json +++ b/common/locales/hu/quests.json @@ -38,7 +38,7 @@ "bossDmg2": "Csak a résztvevők harcolnak a főellenséggel és ők osztják meg a küldetés zsákmányát is.", "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)...", "bossDmg2Broken": "Only participants will fight the boss and share in the quest loot...", - "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": "Complete Dailies and To-Dos and score positive Habits to damage the World Boss! Incomplete Dailies fill the Rage Bar. When the Rage 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...", "bossColl1": "Tárgygyűjtéshez végezd el a pozitív feladataidat. Küldetés tárgyak ugyanúgy esnek, mint normál tárgyak; bár ezeket nem látod a következő napig, amikor minden, amit találtál össze lesz vonva és hozzátéve a halomhoz.", "bossColl2": "Csak résztvevők kapják meg a tárgyat és részesülnek a kihívás zsákmányából.", diff --git a/common/locales/hu/questscontent.json b/common/locales/hu/questscontent.json index ccdb9275ac..50a8aaabd3 100644 --- a/common/locales/hu/questscontent.json +++ b/common/locales/hu/questscontent.json @@ -5,8 +5,8 @@ "questEvilSantaBoss": "Prémvadász mikulás", "questEvilSantaDropBearCubPolarMount": "Jegesmedve (hátas)", "questEvilSanta2Text": "Találd meg a kölyköt", - "questEvilSanta2Notes": "Amikor a prémvadász mikulás elfogta a jegesmedve hátast, a kisbocsa elfutott a végtelen jégmezők felé. Az erdő csendjében gallyak és a hó ropogását hallod. Mancsnyomok! Sietve elkezditek követni, merre vezetnek. Találd meg az össze nyomot és törött gallyat, és juss el a kisbocshoz!", - "questEvilSanta2Completion": "You've found the cub! It will keep you company forever.", + "questEvilSanta2Notes": "Amikor a prémvadász mikulás elfogta a jegesmedve hátast, a kisbocsa elfutott a végtelen jégmezők felé. Az erdő csendjében gallyak és a hó ropogását hallod. Mancsnyomok! Sietve elkezditek követni, merre vezetnek. Találd meg az összes nyomot és törött gallyat, és juss el a kisbocshoz!", + "questEvilSanta2Completion": "Megtaláltad a kölyköt ! Mindig is veled fog maradni.", "questEvilSanta2CollectTracks": "Nyomok", "questEvilSanta2CollectBranches": "Törött gallyak", "questEvilSanta2DropBearCubPolarPet": "Jegesmedve (háziállat)", @@ -39,27 +39,27 @@ "questOctopusCompletion": "Egy végső csapás után a szörnyet beszippantja az örvény, ahonnan jött. Nem tudod eldönteni, hogy @Urse boldog-e a győzelmetekkel, vagy szomórú, hogy eltűnt a bestia. Szótlanul rámutat három trutymákos, óriási tojásra, melyek egy fészeknyi arany között hevernek a mellettetek lévő dagálytérben. \"Valószínűleg csak polip-tojások\" - mondod idegesen. Az úton hazafele, @Urse viharosan firkál a naplójába, és az az érzésetek támad, hogy nem utoljára láttátok a hatalmas Polipszörnyet.", "questOctopusBoss": "Polipszörny", "questOctopusDropOctopusEgg": "Polip (tojás)", - "questOctopusUnlockText": "Unlocks purchasable octopus eggs in the Market", + "questOctopusUnlockText": "Elérhetővé teszi a polip-tojások vásárlását a piacon", "questHarpyText": "Segítség! Hárpia!", "questHarpyNotes": "A bátor kalandor @UncommonCriminal eltűnt az erdőben, miközben egy pár napja látott szárnyas szörny nyomát követte. Épp a keresését kezdenétek, amikor egy sebesült papagáj száll a karodra, aminek egy csúnya sebhely borítja gyönyörű tollazatát. A lábához rögzítve egy firkált üzenet található, amiben az szerepel, hogy a papagájok védelmezése közben @UncommonCriminal-t fogjul ejtette egy gonosz Hárpia és kétségbeesetten kell segítségetek a szökéséhez. Követitek a madarat, legyőzitek a Hárpiát és megmentitek @UncommonCriminal-t?", "questHarpyCompletion": "Egy utolsó csapás leteríti a Hárpiát és tollak repülnek minden irányba. Gyorsan felmásztok a fészkébe és megtaláljátok @UncommonCriminal-t és körülötte a papagáj tojásokat. Csapatmunkában gyorsan visszateszitek a tojásokat a környező fészkekbe. Az ijedt papagáj, amelyik megtalált benneteket hangosan károg, miközben több tojást a karjaitokba ejt. \"A Hárpia támadása miatt néhány tojás védelmezésre szorul,\" magyarázza @UncommonCriminal. \"Úgy tűnik, hogy tiszteletbeli papagájok lettetek.\"", "questHarpyBoss": "Hárpia", "questHarpyDropParrotEgg": "Papagáj (tojás)", - "questHarpyUnlockText": "Unlocks purchasable parrot eggs in the Market", + "questHarpyUnlockText": "Elérhetővé teszi a papagáj-tojások vásárlását a piacon", "questRoosterText": "A kakas tombolása", "questRoosterNotes": "A farmer @extrajordanary éveken át kakasokat használt ébresztőórának. De most egy hatalmas kakas megjelent és hangosabban károg, mint bármelyik más korábban - és felébreszt mindenkit Habiticában! Habitica alváshiányos lakói szenvednek a napi feladataikkal. @Pandoro úgy döntött, hogy itt az ideje véget vetni ennek. \"Kérem, van valaki aki csendesebb kukorékolásra tudná bírni a kakast?\" Önként jelentkezel, megközelíted a kakast egy korai reggelen - de megfordul, hatalmas szárnyaival csapkod, éles karmait megvillantja és egy harci rikoltást hallat.", "questRoosterCompletion": "Ravaszsággal és erővel megszelídítetted a vad bestiát. A fülei, amik korábban tollakkal és félig elfeledett teendőkkel voltak tele, már tiszták, mint a vízfolyás. Halkan kukorékol egyet neked és a válladnál átölel a csőrével. A következő nap, amikor már indulnál tovább, @EmeraldOx odarohan hozzád egy letakart kosárral. \"Várj! Amikor bementem a tanyára ma reggel, a kakas odanyomta ezeket az ajtóhoz, ahol aludtál. Szerintem azt szeretné, hogy ez a tied legyen.\" Felfeded a kosár tartalmát és három törékeny tojást látsz benne.", "questRoosterBoss": "Kakas", "questRoosterDropRoosterEgg": "Kakas (tojás)", - "questRoosterUnlockText": "Unlocks purchasable rooster eggs in the Market", + "questRoosterUnlockText": "Elérhetővé teszi a kakas-tojások vásárlását a piacon", "questSpiderText": "A fagyos pókféle", "questSpiderNotes": "Ahogy lehűl az idő, vékony dér kezdi beborítani Habitica lakóinak ablaküvegeit, csipkés hálók formájában...kivéve @Arcosine-nak, akinek az ablakait teljesen befagyasztotta a Zúzmarapók, ami beköltözött a házába. Jaj.", "questSpiderCompletion": "A Zúzmarapók összeesik és maga után hagy egy kis halom deret és egy párat az elbűvölt petezsákjából. @Arcosine fölöttébb sietve felajánlja Nektek, mint jutalmat - talán fel tudnátok nevelni néhány fenyegetést nem jelentő pókot, mint háziállatot?", "questSpiderBoss": "Pók", "questSpiderDropSpiderEgg": "Pók (tojás)", - "questSpiderUnlockText": "Unlocks purchasable spider eggs in the Market", + "questSpiderUnlockText": "Elérhetővé teszi a pók-tojások vásárlását a piacon", "questVice1Text": "Vice, Part 1: Free Yourself of the Dragon's Influence", - "questVice1Notes": "

Azt mondják, hogy egy szörnyű gonosz lakik Mt. Habitica barjangjaiban. Egy szörny, amely jelenléte elvetemíti az ország erős hőseinek akaratát, rossz szokások és lustaság felé fordítva őket! A szörny egy nagy sárkány, hatalmas erővel, és magukból az árnyakból alakult ki: Bűn, az álnok árnysárkány. Habitica bátor lakói, keljetek fel és győzéttek le ezt az aljas bestiát egyszer és mindenkorra, de csak akkor, ha úgy hiszitek, hogy ellen tudtok állni a roppant erejének.

Bűn, 1. rész:

Hogy várhatjátok, hogy megküzdtök a szörnyeteggel, ha már hatalma van felettetek? Ne essetek áldozatul a lustaságnak és a vétkezésnek! Dolgozzatok keményen, hogy harcoljatok a sárkány sötét befolyása ellen és kiszabaduljatok a markából!

", + "questVice1Notes": "

They say there lies a terrible evil in the caverns of Mt. Habitica. A monster whose presence twists the wills of the strong heroes of the land, turning them towards bad habits and laziness! The beast is a grand dragon of immense power and comprised of the shadows themselves: Vice, the treacherous Shadow Wyrm. Brave Habiteers, stand up and defeat this foul beast once and for all, but only if you believe you can stand against its immense power.

Vice Part 1:

How can you expect to fight the beast if it already has control over you? Don't fall victim to laziness and vice! Work hard to fight against the dragon's dark influence and dispel his hold on you!

", "questVice1Boss": "A Bűn Árnyékában", "questVice1DropVice2Quest": "Bűn 2. rész (tekercs)", "questVice2Text": "Vice, Part 2: Find the Lair of the Wyrm", @@ -74,30 +74,30 @@ "questVice3DropDragonEgg": "Sárkány (tojás)", "questVice3DropShadeHatchingPotion": "Árny keltetőfőzet", "questMoonstone1Text": "The Moonstone Chain, Part 1: The Moonstone Chain", - "questMoonstone1Notes": "

Szörnyű járvány sújtja Habitika Lakóit. Rossz szokások melyeket rég halottnak hittünk visszatértek méghozzá bosszúszomjasan. A mosatlanok hegyekben állnak, a tankönyvek elolvasatlanul hevernek és burjánzik a halogatás!


Követed néhány saját újraéledő rossz szokásodat a Tespedés Mocsarába és felfedezed az okozóját mindennek: A kísérteties Nekromantát, Visszavetőt. Azonnal megrohamozod és fegyvereddel nagyot sújtasz, ám az hasztalanul átsiklik szellemtestén.


\"Ne fáradj, \" sziszegi száraz kóró hangján. \"Egy holdköves Lánc nélkül senki sem árthat nekem – a holdköveket pedig @aurakami az ékszerészmester régen szétszórta szerte Habitikában!\" Kifulladva visszavonulót fújsz... de legalább tudod mit kell tenned.

", + "questMoonstone1Notes": "A terrible affliction has struck Habiticans. Bad Habits thought long-dead are rising back up with a vengeance. Dishes lie unwashed, textbooks linger unread, and procrastination runs rampant!

You track some of your own returning Bad Habits to the Swamps of Stagnation and discover the culprit: the ghostly Necromancer, Recidivate. You rush in, weapons swinging, but they slide through her specter uselessly.

\"Don’t bother,\" she hisses with a dry rasp. \"Without a chain of moonstones, nothing can harm me – and master jeweler @aurakami scattered all the moonstones across Habitica long ago!\" Panting, you retreat... but you know what you must do.", "questMoonstone1CollectMoonstone": "Holdkövek", "questMoonstone1DropMoonstone2Quest": "A Holdkő lánc 2.rész: Visszavető a Nekromanta (tekercs)", "questMoonstone2Text": "The Moonstone Chain, Part 2: Recidivate The Necromancer", - "questMoonstone2Notes": "

A derék fegyverkovács @Inventrix segítségével láncba fűzöd a bűvös holdköveket. Készen állsz, hogy szembeszállj Visszavetővel, de amint beteszed a lábad a Tespedés Mocsarába szörnyű dermedtség lesz úrrá rajtad.


rothadástól bűzlő lehelettel súgnak a füledbe. \"Már vissza is tértél? Milyen elragadó...\" Megpördülsz és szúrsz, és érzed hogy a Holdkő lánc fényénél fegyvered mélyen húsba vág. \"Lehet hogy újra ehhez a világhoz láncoltál,\" morogja Visszavető, \"de eljött az ideje hogy te elhagy azt!\"

", + "questMoonstone2Notes": "The brave weaponsmith @Inventrix helps you fashion the enchanted moonstones into a chain. You’re ready to confront Recidivate at last, but as you enter the Swamps of Stagnation, a terrible chill sweeps over you.

Rotting breath whispers in your ear. \"Back again? How delightful...\" You spin and lunge, and under the light of the moonstone chain, your weapon strikes solid flesh. \"You may have bound me to the world once more,\" Recidivate snarls, \"but now it is time for you to leave it!\"", "questMoonstone2Boss": "A Nekromanta", "questMoonstone2DropMoonstone3Quest": "A Holdkő lánc 3.rész: Visszavető Átalakul (tekercs)", "questMoonstone3Text": "The Moonstone Chain, Part 3: Recidivate Transformed", - "questMoonstone3Notes": "

Visszavető a földre rogy, te pedig lesújtasz rá a Holdkő lánccal. Legnagyobb rémületedre Visszavető győzelemtál ittas tekintettel ragadja meg a drágaköves láncot.


\"Te ostoba véglény!\" üvölti. \"Ezek a Holdkövek tényleg visszarántanak a fizikai valómba, de közel-sem úgy ahogy képzelted. Ahogy a Telihold fényesedik a sötétben, úgy erősödik az én hatalmam is, és az árnyakból megidézem a legfélelmetesebb ellenfeledet!\"


Egy beteges zöldes köd emelkedik fel a mocsár talajáról és Visszavető teste torz vonaglás közepette veszi fel az alakot mely mély rettegéssel tölt el – a Bűn élőholt szörnyű újjáéledt testét.

", - "questMoonstone3Completion": "

Kifulladtál és izzadtságod csípi a szemedet, mire az élőholt sárkánygyík összeomlik. Visszavető földi maradványai szürke köddé oszlanak, mely hamar eltűnik a friss szellő erejétől, és hallod Habitika lakóinak messzi, de erőre kapó kiáltásait ahogy egyszer és mindenkorra leszámolnak Rossz Szokásaikkal.


@Baconsaur egy griffmadár hátán száll le melléd. \"Láttam a csatád végét a magasból, és nagyon meghatódtam. Kérlek fogadd el ezt a bűvös tunikát – Bátorságod nemes szívre vall, és úgy hiszem ez téged illet.\"

", + "questMoonstone3Notes": "Recidivate crumples to the ground, and you strike at her with the moonstone chain. To your horror, Recidivate seizes the gems, eyes burning with triumph.

\"Foolish creature of flesh!\" she shouts. \"These moonstones will restore me to a physical form, true, but not as you imagined. As the full moon waxes from the dark, so too does my power flourish, and from the shadows I summon the specter of your most feared foe!\"

A sickly green fog rises from the swamp, and Recidivate’s body writhes and contorts into a shape that fills you with dread – the undead body of Vice, horribly reborn.", + "questMoonstone3Completion": "Your breath comes hard and sweat stings your eyes as the undead Wyrm collapses. The remains of Recidivate dissipate into a thin grey mist that clears quickly under the onslaught of a refreshing breeze, and you hear the distant, rallying cries of Habiticans defeating their Bad Habits for once and for all.

@Baconsaur the beast master swoops down on a gryphon. \"I saw the end of your battle from the sky, and I was greatly moved. Please, take this enchanted tunic – your bravery speaks of a noble heart, and I believe you were meant to have it.\"", "questMoonstone3Boss": "Előholt-Bűn", "questMoonstone3DropRottenMeat": "Rothadt Hús (Étel)", "questMoonstone3DropZombiePotion": "Zombi keltető főzet", "questGoldenknight1Text": "The Golden Knight, Part 1: A Stern Talking-To", - "questGoldenknight1Notes": "

Az Arany Lovag kezd rászállni a szegény Habitica lakók hibáira. Nem csináltad meg az összes Napi feladatod? Bepipáltál egy negatív szokást? Mindent felhasznál arra, hogy azzal zaklasson, hogy példát kéne venned tőle. Ő a ragyogó példánya egy tökéletes Habitica lakónak, és te egy semmi vagy, vagy inkább egy nagy kudarc. Nos, ez egyáltalán nem szép! Mindenki hibázhat. Nem kellene ilyen negatívan reagálni erre. Talán itt az ideje, hogy összegyűjtsünk jó néhány Tanúságtételt és az Arany Lovag is megkapja a maga Szigorú Lehordását!

", + "questGoldenknight1Notes": "The Golden Knight has been getting on poor Habiticans' cases. Didn't do all of your Dailies? Checked off a negative Habit? She will use this as a reason to harass you about how you should follow her example. She is the shining example of a perfect Habitican, and you are naught but a failure. Well, that is not nice at all! Everyone makes mistakes. They should not have to be met with such negativity for it. Perhaps it is time you gather some testimonies from hurt Habiticans and give the Golden Knight a stern talking-to!", "questGoldenknight1CollectTestimony": "Tanúságtételek", "questGoldenknight1DropGoldenknight2Quest": "The Golden Knight Chain Part 2: Gold Knight (Scroll)", "questGoldenknight2Text": "The Golden Knight, Part 2: Gold Knight", - "questGoldenknight2Notes": "

Több száz Habiticai lakos vallomásával felfegyverkezve, végre-valahára szembeszállsz az Arany Lovaggal. Egyenként felolvasod neki Habitica lakóinak panaszait. \"És @Pfeffernusse azt állítja, hogy a folytonos dicsekvésed-\" A lovag felemeli kezét hogy elcsendesítsen és gúnyosan megjegyzi, \"Kérlek, ezek az emberek csak irigykednek a sikereim láttán. Ahelyett, hogy panaszkodnak, egyszerűen csak olyan keményen kéne dolgozniuk mint én. Lehet, hogy meg kéne neked mutatnom az erőmet melyet ha úgy igyekszel mint én, elérhetsz!\" Ezzel felemeli a buzogányát és támadásba lendül!

", + "questGoldenknight2Notes": "Armed with hundreds of Habitican's testimonies, you finally confront the Golden Knight. You begin to recite the Habitcan's complaints to her, one by one. \"And @Pfeffernusse says that your constant bragging-\" The knight raises her hand to silence you and scoffs, \"Please, these people are merely jealous of my success. Instead of complaining, they should simply work as hard as I! Perhaps I shall show you the power you can attain through diligence such as mine!\" She raises her morningstar and prepares to attack you!", "questGoldenknight2Boss": "Arany Lovag", "questGoldenknight2DropGoldenknight3Quest": "Az Arany Lovag lánc 3. rész: A Vas Lovag (tekercs)", "questGoldenknight3Text": "The Golden Knight, Part 3: The Iron Knight", - "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!\"

", - "questGoldenknight3Completion": "

Egy elégtételt adó kondulás után a Vaslovag térdrehullik, majd elterül a földön. \"Rendkívül erős vagy.\" - zihálja. - \"Ma... megszégyenítettek.\" Az Aranylovag odalép hozzád és megszólal. \"Köszönöm. Azt hiszem, ma tanultunk némi alázatosságot tőled. Meg fogom vitatni atyámmal a rólunk szóló panaszokat. Talán kezdhetnénk azzal, hogy bocsánatot kérünk a többi habiticai lakostól.\" Eltöpreng, mielőtt visszafordulna hozzád. \"Tessék: kérlek, fogadd el ajándékul a buzogányomat. Mostantól a tiéd.\"

", + "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!\"", + "questGoldenknight3Completion": "With a satisfying clang, the Iron Knight falls to his knees and slumps over. \"You are quite strong,\" he pants. \"I have been humbled, today.\" The Golden Knight approaches you and says, \"Thank you. I believe we have gained some humility from our encounter with you. I will speak with my father and explain the complaints against us. Perhaps, we should begin apologizing to the other Habiticans.\" She mulls over in thought before turning back to you. \"Here: as our gift to you, I want you to keep my morningstar. It is yours now.\"", "questGoldenknight3Boss": "A Vas Lovag", "questGoldenknight3DropHoney": "Méz (Étel)", "questGoldenknight3DropGoldenPotion": "Arany Keltetőfőzet", @@ -112,7 +112,7 @@ "questEggHuntCollectPlainEgg": "Sima tojások", "questEggHuntDropPlainEgg": "Sima tojás", "questDilatoryText": "A Rettenet Sárkánya", - "questDilatoryNotes": "

Nem kellett volna figyelmen kívül hagynunk az intő jeleket.


Sötét, fénylő szemek. Ősi pikkelyek. Hatalmas állkapcs és villogó fogak. Valami borzasztót ébresztettünk fel a mélyben: Halogató Rettenet-Sárkányát! Ahogy üvöltése keresztülszántott a tengeren, sikoltó habiticai lakosok menekültek a szélrózsa minden irányába. A szörny rémisztően hosszú nyaka többszáz lábnyi hosszon nyúlt ki a tengerből és perzselő bődülésével betörte az ablakokat.


\"Ez lehet az, ami elsüllyesztette Halogatót!\" kiáltja Lemoness. \"Nem az elhanyagolt feladatok súlya - hanem a Mélyvörös Napi Teendők keltették fel a figyelmét!\"


\"Mágikus energiáktól izzik!\" üvölti @Baconsaur. \"Bizonyára képes az öngyógyításra, másképp nem élhetett volna eddig! Hogy győzhetnénk le?\"


Hát hogy máshogy, mint ahogy minden szörnyet: feladatok elvégzésével! Gyorsan, Habitica lakói, egyesítsétek erőiteket és végezzétek el a teendőiteket, hogy közösen megküzdhessünk ezzel a bestiával. (Nem szükséges az eddigi küldetéseidet abbahagyni - hiszünk benne, hogy képes vagy két legyet ütni egy csapásra!) Nem fog minket egyesével megtámadni, de minél több napi feladatot elmulasztunk, annál közelebb kerülünk, hogy használja a Mellőző Csapását - és nem tetszik, ahogy szemez a Fogadóval...

", + "questDilatoryNotes": "We should have heeded the warnings.

Dark shining eyes. Ancient scales. Massive jaws, and flashing teeth. We've awoken something horrifying from the crevasse: the Dread Drag'on of Dilatory! Screaming Habiticans fled in all directions when it reared out of the sea, its terrifyingly long neck extending hundreds of feet out of the water as it shattered windows with its searing roar.

\"This must be what dragged Dilatory down!\" yells Lemoness. \"It wasn't the weight of the neglected tasks - the Dark Red Dailies just attracted its attention!\"

\"It's surging with magical energy!\" @Baconsaur cries. \"To have lived this long, it must be able to heal itself! How can we defeat it?\"

Why, the same way we defeat all beasts - with productivity! Quickly, Habitica, band together and strike through your tasks, and all of us will battle this monster together. (There's no need to abandon previous quests - we believe in your ability to double-strike!) It won't attack us individually, but the more Dailies we skip, the closer we get to triggering its Neglect Strike - and I don't like the way it's eyeing the Tavern....", "questDilatoryBoss": "A Rettenet Sárkánya", "questDilatoryBossRageTitle": "Hanyag Csapás", "questDilatoryBossRageDescription": "Amikor ez a csík tele van, akkor a Rettenet Sárkánya hatalmasa pusztítást visz végbe Habitika felszínén", @@ -127,7 +127,7 @@ "questSeahorseCompletion": "A most megszelidített tengeri csikó engedelmesen úszik az oldaladon. \"Oh, nézd!\" - mondja Kiwibot. - \"Azt szeretné ha vigyáznál a gyerekeire\". Három tojást ad neked. \"Jól neveld fel őket!\" mondja. \"Várunk sok szeretettel a Halogató Lóverseny bármelyik napján!\"", "questSeahorseBoss": "Tengericsikó", "questSeahorseDropSeahorseEgg": "Csikóhal (tojás)", - "questSeahorseUnlockText": "Unlocks purchasable seahorse eggs in the Market", + "questSeahorseUnlockText": "Elérhetővé teszi a csikóhal-tojások vásárlását a piacon", "questAtom1Text": "Attack of the Mundane, Part 1: Dish Disaster!", "questAtom1Notes": "A jól megérdemelt pihenésedet töltöd a Tisztáramosott tó partján, s amint megérkezel észre veszel valamit..... A tó tele van mosatlan edényekkel! Hogy történhett ez? Ilyen állapotban nem hagyhatod a tavat. Csak egy dolgot tehetsz: elmosogatod az edényeket és megmented a nyaraló helyet. Jobb lesz ha találsz egy szappant és tisztára mosod a piszkot. Jó sok szappan fog kelleni...", "questAtom1CollectSoapBars": "Szappanok", @@ -140,19 +140,19 @@ "questAtom3Notes": "Fülsiketítő sikoltással és a szájából öt fajta íncsiklandozó sajttal hullva a Zabaszörny darabokra esik. \"HOGY MERÉSZELITEK!\" - hallotok egy vízfelszín alól jövő kiáltást. Egy köpenyes, kék alak jön ki a vízből, kezében egy varázslatos vécékefével. Szennyes ruhák kezdenek felúszni a tó felszínére. \"Én vagyok a Szennyesmágus\" - jelenti be mérgesen. \"Van képetek elmosni az örömtelien mosatlan tányérjaimat, elpusztítani a háziállatomat és belépni a birodalmamba ilyen tiszta ruhákban. Készüljetek a tiszta ruhák elleni mágiam átázott haragját megismerni!\"", "questAtom3Completion": "Legyőztétek a kőszívű Mosómágust! Frissen mosott ruhák esnek le körülöttetek halmokban. Minden sokkal szebben néz ki a környéken. Ahogy átgázolsz a frissen sajtolt páncélon, fém csillogására leszel figyelmes és egy ragyogó sisakot veszel észre. Habár nem ismered eme csillogó tárgy eredeti tulajdonosát, de ahogy felveszed, érzed egy nagylelkű lélek melengető jelenlétét. Kár, hogy nem varrták rá a tulajdonosa nevét.", "questAtom3Boss": "A Mosómágus", - "questAtom3DropPotion": "Base Hatching Potion", + "questAtom3DropPotion": "Alap keltetőfőzet", "questOwlText": "Az éjjeli bagoly", - "questOwlNotes": "The Tavern light is lit 'til dawn
Until one eve the glow is gone!
How can we see for our all-nighters?
@Twitching cries, \"I need some fighters!
See that Night-Owl, starry foe?
Fight with haste and do not slow!
We'll drive its shadow from our door,
And make the night shine bright once more!\"", + "questOwlNotes": "The Tavern light is lit 'til dawn
Until one eve the glow is gone!
How can we see for our all-nighters?
@Twitching cries, \"I need some fighters!
See that Night-Owl, starry foe?
Fight with haste and do not slow!
We'll drive its shadow from our door,
And make the night shine bright once more!\"", "questOwlCompletion": "The Night-Owl fades before the dawn,
But even so, you feel a yawn.
Perhaps it's time to get some rest?
Then on your bed, you see a nest!
A Night-Owl knows it can be great
To finish work and stay up late,
But your new pets will softly peep
To tell you when it's time to sleep.", "questOwlBoss": "Az éjjeli bagoly", "questOwlDropOwlEgg": "Bagoly (tojás)", - "questOwlUnlockText": "Unlocks purchasable owl eggs in the Market", + "questOwlUnlockText": "Elérhetővé teszi a bagoly-tojások vásárlását a piacon", "questPenguinText": "A Baromfi Hideg", "questPenguinNotes": "Habár egy forró nyári nap van Habitica legdélebbi csücskében, egy természetellenes fagy ereszkedett a Tóra. Erős, hideg szelek tombolnak, ahogy a part elkezd befagyni. Jégcsapok szögellnek ki a talajból, arrébb nyomva a füvet és a földet. @Melynnrose és @Breadstrings odaszalad hozzád.

\"Segíts!\" mondja @Melynnrose. \"Idehoztunk egy óriási pingvint, hogy befagyassza a tavat, hogy korcsolyázhassunk rajta, de elfogyott a halunk, amivel etethetjük!\"

\"Mérges lett és fagyos leheletével befagyaszt mindent amit lát!!\" mondja @Breadstrings. \"Kérlek, győzd le ezt a pingvint, mielőtt mindnyájunkat beborít jéggel!\" Úgy néz ki, hogy... le kell hűtened ezt a pingvint.", "questPenguinCompletion": "A pingvin legyőzésével elolvadt a jég is. Az óriás pingvin lenyugszik a napsütésben és elszürcsöl egy extra vödör halat, amit találtál. Arrébb korcsolyázik a tavon, finoman maga elé fújva, hogy sima, szikrázó jeget hozzon létre maga előtt. Milyen fura madár! \"Úgy tűnik, hogy egy pár tojást hátrahagyatott\" mondja @Painter de Cluster.

@Rattify felnevet. \"Talán majd ezek a pingvinek egy kicsit... higgadtabbak lesznek?\"", "questPenguinBoss": "Fagypingvin", "questPenguinDropPenguinEgg": "Pingvin (tojás)", - "questPenguinUnlockText": "Unlocks purchasable penguin eggs in the Market", + "questPenguinUnlockText": "Elérhetővé teszi a pingvinalakú-tojások vásárlását a piacon", "questStressbeastText": "A Stoïkalm Sztyeppék Utálatos Stresszörnye", "questStressbeastNotes": "Complete Dailies and To-Dos to damage the World Boss! Incomplete Dailies fill the Stress Strike Bar. When the Stress Strike bar is full, the World Boss will attack an NPC. A World Boss will never damage individual players or accounts in any way. Only active accounts who are not resting in the inn will have their incomplete Dailies tallied.

~*~

The first thing we hear are the footsteps, slower and more thundering than the stampede. One by one, Habiticans look outside their doors, and words fail us.

We've all seen Stressbeasts before, of course - tiny vicious creatures that attack during difficult times. But this? This towers taller than the buildings, with paws that could crush a dragon with ease. Frost swings from its stinking fur, and as it roars, the icy blast rips the roofs off our houses. A monster of this magnitude has never been mentioned outside of distant legend.

\"Beware, Habiticans!\" SabreCat cries. \"Barricade yourselves indoors - this is the Abominable Stressbeast itself!\"

\"That thing must be made of centuries of stress!\" Kiwibot says, locking the Tavern door tightly and shuttering the windows.

\"The Stoïkalm Steppes,\" Lemoness says, face grim. \"All this time, we thought they were placid and untroubled, but they must have been secretly hiding their stress somewhere. Over generations, it grew into this, and now it's broken free and attacked them - and us!\"

There's only one way to drive away a Stressbeast, Abominable or otherwise, and that's to attack it with completed Dailies and To-Dos! Let's all band together and fight off this fearsome foe - but be sure not to slack on your tasks, or our undone Dailies may enrage it so much that it lashes out...", "questStressbeastBoss": "Az Utálatos Stresszörny", @@ -178,43 +178,43 @@ "questTRexUndeadRageDescription": "Ez a csík akkor töltődik ha nem csinálod meg a Napi feladataidat. Ha megtelik, a Csontos Tirannoszaur a még meglévő életerejének 30%-ával felgyógyítja magát.", "questTRexUndeadRageEffect": "`A Csontos Tirannoszaur a CSONTVÁZ GYÓGYÍTÁST használja!`\n\nA szörny egy földöntúli üvöltést hallat, és néhány sérült, törött csontja újra összeforr!", "questTRexDropTRexEgg": "Tirannoszaur (tojás)", - "questTRexUnlockText": "Unlocks purchasable tyrannosaur eggs in the Market", + "questTRexUnlockText": "Elérhetővé teszi a tyrannosaurus-tojások vásárlását a piacon", "questRockText": "Menekülés a barlangszörny elől", "questRockNotes": "Néhány barátoddal Habitica Kanyargós Hegyein keresztül utazva tábort vertek egy éjszaka egy gyönyörű barlangban, ami csillogó ásványokkal van csipkézve. De amikor másnap reggel felébredtek, a bejárat eltűnt és talaj a lábatok alatt megmozdul.

\"A hegy él!\" kiabálja a társatok @pfeffernusse. \"Ezek nem kristályok - hanem fogak!\"

@Painter de Cluster elkapja a kezed. \"Találnunk kell egy másik kivezető utat - maradj velem és ne vonja el semmi a figyelmed, mert különben örökké itt ragadhatunk!\"", "questRockBoss": "Kristálykolosszus", "questRockCompletion": "A gondosságotok lehetővé tette, hogy egy biztonságos utat találjatok ami az élő hegyen keresztülvezet. A napsütésben állva a barátod @intune valami csillogót vesz észre a földön a barlang kijáratánál. Megálltok, hogy felvegyétek és látjátok, hogy ez egy kicsi kő, amin arany fut keresztül. Mellette több más fölöttébb furcsa alakú követ találtok. Majdnem úgy néznek ki, mint... a tojások?", - "questRockDropRockEgg": "Rock (Egg)", - "questRockUnlockText": "Unlocks purchasable rock eggs in the Market", - "questBunnyText": "The Killer Bunny", + "questRockDropRockEgg": "Kő (tojás)", + "questRockUnlockText": "Elérhetővé teszi a kő-tojások vásárlását a piacon.", + "questBunnyText": "A Gyilkos Nyuszi", "questBunnyNotes": "After many difficult days, you reach the peak of Mount Procrastination and stand before the imposing doors of the Fortress of Neglect. You read the inscription in the stone. \"Inside resides the creature that embodies your greatest fears, the reason for your inaction. Knock and face your demon!\" You tremble, imagining the horror within and feel the urge to flee as you have done so many times before. @Draayder holds you back. \"Steady, my friend! The time has come at last. You must do this!\"

You knock and the doors swing inward. From within the gloom you hear a deafening roar, and you draw your weapon.", - "questBunnyBoss": "Killer Bunny", + "questBunnyBoss": "Gyilkos Nyuszi", "questBunnyCompletion": "With one final blow the killer rabbit sinks to the ground. A sparkly mist rises from her body as she shrinks down into a tiny bunny... nothing like the cruel beast you faced a moment before. Her nose twitches adorably and she hops away, leaving some eggs behind. @Gully laughs. \"Mount Procrastination has a way of making even the smallest challenges seem insurmountable. Let's gather these eggs and head for home.\"", - "questBunnyDropBunnyEgg": "Bunny (Egg)", - "questBunnyUnlockText": "Unlocks purchasable bunny eggs in the Market", + "questBunnyDropBunnyEgg": "Nyuszi (tojás)", + "questBunnyUnlockText": "Elérhetővé teszi az nyuszi-tojások vásárlását a piacon", "questSlimeText": "The Jelly Regent", "questSlimeNotes": "As you work on your tasks, you notice you are moving slower and slower. \"It's like walking through molasses,\" @Leephon grumbles. \"No, like walking through jelly!\" @starsystemic says. \"That slimy Jelly Regent has slathered his stuff all over Habitica. It's gumming up the works. Everybody is slowing down.\" You look around. The streets are slowly filling with clear, colorful ooze, and Habiticans are struggling to get anything done. As others flee the area, you grab a mop and prepare for battle!", "questSlimeBoss": "Jelly Regent", "questSlimeCompletion": "With a final jab, you trap the Jelly Regent in an over-sized donut, rushed in by @Overomega, @LordDarkly, and @Shaner, the quick-thinking leaders of the pastry club. As everyone is patting you on the back, you feel someone slip something into your pocket. It’s the reward for your sweet success: three Marshmallow Slime eggs.", - "questSlimeDropSlimeEgg": "Marshmallow Slime (Egg)", + "questSlimeDropSlimeEgg": "Nyálkás Mályvacukor (tojás)", "questSlimeUnlockText": "Unlocks purchasable slime eggs in the Market", "questSheepText": "The Thunder Ram", "questSheepNotes": "As you wander the rural Taskan countryside with friends, taking a \"quick break\" from your obligations, you find a cozy yarn shop. You are so absorbed in your procrastination that you hardly notice the ominous clouds creep over the horizon. \"I've got a ba-a-a-ad feeling about this weather,\" mutters @Misceo, and you look up. The stormy clouds are swirling together, and they look a lot like a... \"We don't have time for cloud-gazing!\" @starsystemic shouts. \"It's attacking!\" The Thunder Ram hurtles forward, slinging bolts of lightning right at you!", "questSheepBoss": "Thunder Ram", "questSheepCompletion": "Impressed by your diligence, the Thunder Ram is drained of its fury. It launches three huge hailstones in your direction, and then fades away with a low rumble. Upon closer inspection, you discover that the hailstones are actually three fluffy eggs. You gather them up, and then stroll home under a blue sky.", - "questSheepDropSheepEgg": "Sheep (Egg)", - "questSheepUnlockText": "Unlocks purchasable sheep eggs in the Market", + "questSheepDropSheepEgg": "Bárány (tojás)", + "questSheepUnlockText": "Elérhetővé teszi a bárány-tojások vásárlását a piacon", "questKrakenText": "The Kraken of Inkomplete", "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!\"", "questKrakenBoss": "The Kraken of Inkomplete", "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.\"", - "questKrakenDropCuttlefishEgg": "Cuttlefish (Egg)", - "questKrakenUnlockText": "Unlocks purchasable cuttlefish eggs in the Market", + "questKrakenDropCuttlefishEgg": "Tintahal (tojás)", + "questKrakenUnlockText": "Elérhetővé teszi a tintahal-tojások vásárlását a piacon", "questWhaleText": "Wail of the Whale", "questWhaleNotes": "You arrive at the Diligent Docks, hoping to take a submarine to watch the Dilatory Derby. Suddenly, a deafening bellow forces you to stop and cover your ears. \"Thar she blows!\" cries Captain @krazjega, pointing to a huge, wailing whale. \"It's not safe to send out the submarines while she's thrashing around!\"

\"Quick,\" calls @UncommonCriminal. \"Help me calm the poor creature so we can figure out why she's making all this noise!\"", "questWhaleBoss": "Wailing Whale", "questWhaleCompletion": "After much hard work, the whale finally ceases her thunderous cry. \"Looks like she was drowning in waves of negative habits,\" @zoebeagle explains. \"Thanks to your consistent effort, we were able to turn the tides!\" As you step into the submarine, several whale eggs bob towards you, and you scoop them up.", - "questWhaleDropWhaleEgg": "Whale (Egg)", - "questWhaleUnlockText": "Unlocks purchasable whale eggs in the Market", + "questWhaleDropWhaleEgg": "Bálna (tojás)", + "questWhaleUnlockText": "Elérhetővé teszi a bálna-tojások vásárlását a piacon", "questDilatoryDistress1Text": "Dilatory Distress, Part 1: Message in a Bottle", "questDilatoryDistress1Notes": "A message in a bottle arrived from the newly rebuilt city of Dilatory! It reads: \"Dear Habiticans, we need your help once again. Our princess has disappeared and the city is under siege by some unknown watery demons! The mantis shrimps are holding the attackers at bay. Please aid us!\" To make the long journey to the sunken city, one must be able to breathe water. Fortunately, the alchemists @Benga and @hazel can make it all possible! You only have to find the proper ingredients.", "questDilatoryDistress1Completion": "You don the the finned armor and swim to Dilatory as quickly as you can. The merfolk and their mantis shrimp allies have managed to keep the monsters outside the city for the moment, but they are losing. No sooner are you within the castle walls than the horrifying siege descends!", @@ -228,27 +228,27 @@ "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!", "questDilatoryDistress2RageEffect": "`Water Skull Swarm uses SWARM RESPAWN!`\n\nEmboldened by their victories, more skulls pour forth from the crevasse, bolstering the swarm!", - "questDilatoryDistress2DropSkeletonPotion": "Skeleton Hatching Potion", - "questDilatoryDistress2DropCottonCandyBluePotion": "Cotton Candy Blue Hatching Potion", + "questDilatoryDistress2DropSkeletonPotion": "Csontváz keltetőfőzet", + "questDilatoryDistress2DropCottonCandyBluePotion": "Kék vattacukor keltetőfőzet", "questDilatoryDistress2DropHeadgear": "Fire Coral Circlet (Headgear)", "questDilatoryDistress3Text": "Dilatory Distress, Part 3: Not a Mere Maid", "questDilatoryDistress3Notes": "You follow the mantis shrimps deep into the Crevasse, and discover an underwater fortress. Princess Adva, escorted by more watery skulls, awaits you inside the main hall. \"My father has sent you, has he not? Tell him I refuse to return. I am content to stay here and practice my sorcery. Leave now, or you shall feel the wrath of the ocean's new queen!\" Adva seems very adamant, but as she speaks you notice a strange, ruby pendant on her neck glowing ominously... Perhaps her delusions would cease should you break it?", "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": "Fish (Food)", + "questDilatoryDistress3DropFish": "Hal (étel)", "questDilatoryDistress3DropWeapon": "Trident of Crashing Tides (Weapon)", "questDilatoryDistress3DropShield": "Moonpearl Shield (Shield-Hand Item)", "questCheetahText": "Such a Cheetah", "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!\"", - "questCheetahBoss": "Cheetah", - "questCheetahDropCheetahEgg": "Cheetah (Egg)", - "questCheetahUnlockText": "Unlocks purchasable Cheetah eggs in the Market", + "questCheetahBoss": "Gepárd", + "questCheetahDropCheetahEgg": "Gepárd (tojás)", + "questCheetahUnlockText": "Elérhetővé teszi a gepárd-tojások vásárlását a piacon", "questHorseText": "Ride the Night-Mare", "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", - "questHorseDropHorseEgg": "Horse (Egg)", + "questHorseDropHorseEgg": "Ló (tojás)", "questHorseUnlockText": "Unlocks purchasable Horse eggs in the Market", "questBurnoutText": "Burnout and the Exhaust Spirits", "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.\"", @@ -265,21 +265,21 @@ "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", - "questFrogDropFrogEgg": "Frog (Egg)", - "questFrogUnlockText": "Unlocks purchasable Frog eggs in the Market", + "questFrogBoss": "Zűrzavar Béka", + "questFrogDropFrogEgg": "Béka (tojás)", + "questFrogUnlockText": "Elérhetővé teszi a béka-tojások vásárlását a piacon", "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", + "questSnakeDropSnakeEgg": "Kígyó (tojás)", + "questSnakeUnlockText": "Elérhetővé teszi a kígyó-tojások vásárlását a piacon", "questUnicornText": "Convincing the Unicorn Queen", "questUnicornNotes": "Conquest Creek has become muddied, destroying Habit City's fresh water supply! Luckily, @Lukreja knows an old legend that claims that a unicorn's horn can purify the foulest of waters. Together with your intrepid guide @UncommonCriminal, you hike through the frozen peaks of the Meandering Mountains. Finally, at the icy summit of Mount Habitica itself, you find the Unicorn Queen amid the glittering snows. \"Your pleas are compelling,\" she tells you. \"But first you must prove that you are worthy of my aid!\"", "questUnicornCompletion": "Impressed by your diligence and strength, the Unicorn Queen at last agrees that your cause is worthy. She allows you to ride on her back as she soars to the source of Conquest Creek. As she lowers her golden horn to the befouled waters, a brilliant blue light rises from the water’s surface. It is so blinding that you are forced to close your eyes. When you open them a moment later, the unicorn is gone. However, @rosiesully lets out a cry of delight: the water is now clear, and three shining eggs rest at the creek’s edge.", "questUnicornBoss": "The Unicorn Queen", - "questUnicornDropUnicornEgg": "Unicorn (Egg)", - "questUnicornUnlockText": "Unlocks purchasable Unicorn eggs in the Market", + "questUnicornDropUnicornEgg": "Egyszarvú (tojás)", + "questUnicornUnlockText": "Elérhetővé teszi az egyszarvú-tojások vásárlását a piacon.", "questSabretoothText": "The Sabre Cat", "questSabretoothNotes": "A roaring monster is terrorizing Habitica! The creature stalks through the wilds and woods, then bursts forth to attack before vanishing again. It's been hunting innocent pandas and frightening the flying pigs into fleeing their pens to roost in the trees. @Inventrix and @icefelis explain that the Zombie Sabre Cat was set free while they were excavating in the ancient, untouched ice-fields of the Stoikalm Steppes. \"It was perfectly friendly at first – I don't know what happened. Please, you have to help us recapture it! Only a champion of Habitica can subdue this prehistoric beast!\"", "questSabretoothCompletion": "After a long and tiring battle, you wrestle the Zombie Sabre Cat to the ground. As you are finally able to approach, you notice a nasty cavity in one of its sabre teeth. Realising the true cause of the cat's wrath, you're able to get the cavity filled by @Fandekasp, and advise everyone to avoid feeding their friend sweets in future. The Sabre Cat flourishes, and in gratitude, its tamers send you a generous reward – a clutch of sabretooth eggs!", @@ -290,6 +290,23 @@ "questMonkeyNotes": "The Sloensteadi Savannah is being torn apart by the Monstrous Mandrill and his Mischief Monkeys! They shriek loudly enough to drown out the sound of approaching deadlines, encouraging everyone to avoid their duties and keep monkeying around. Alas, plenty of people ape this bad behavior. If no one stops these primates, soon everyone's tasks will be as red as the Monstrous Mandrill's face!

\"It will take a dedicated adventurer to resist them,\" says @yamato.

\"Quick, let's get this monkey off everyone's backs!\" @Oneironaut yells, and you charge into battle.", "questMonkeyCompletion": "You did it! No bananas for those fiends today. Overwhelmed by your diligence, the monkeys flee in panic. \"Look,\" says @Misceo. \"They left a few eggs behind.\"

@Leephon grins. \"Maybe a well-trained pet monkey can help you as much as the wild ones hinder you!\"", "questMonkeyBoss": "Monstrous Mandrill", - "questMonkeyDropMonkeyEgg": "Monkey (Egg)", - "questMonkeyUnlockText": "Unlocks purchasable Monkey eggs in the Market" + "questMonkeyDropMonkeyEgg": "Majom (tojás)", + "questMonkeyUnlockText": "Unlocks purchasable Monkey eggs in the Market", + "questSnailText": "The Snail of Drudgery Sludge", + "questSnailNotes": "You're excited to begin questing in the abandoned Dungeons of Drudgery, but as soon as you enter, you feel the ground under your feet start to suck at your boots. You look up to the path ahead and see Habiticans mired in slime. @Overomega yells, \"They have too many unimportant tasks and dailies, and they're getting stuck on things that don't matter! Pull them out!\"

\"You need to find the source of the ooze,\" @Pfeffernusse agrees, \"or the tasks that they cannot accomplish will drag them down forever!\"

Pulling out your weapon, you wade through the gooey mud.... and encounter the fearsome Snail of Drudgery Sludge.", + "questSnailCompletion": "You bring your weapon down on the great Snail's shell, cracking it in two, releasing a flood of water. The slime is washed away, and the Habiticans around you rejoice. \"Look!\" says @Misceo. \"There's a small group of snail eggs in the remnants of the muck.\"", + "questSnailBoss": "Snail of Drudgery Sludge", + "questSnailDropSnailEgg": "Snail (Egg)", + "questSnailUnlockText": "Unlocks purchasable Snail eggs in the Market", + "questBewilderText": "The Be-Wilder", + "questBewilderNotes": "The party begins like any other.

The appetizers are excellent, the music is swinging, and even the dancing elephants have become routine. Habiticans laugh and frolic amid the overflowing floral centerpieces, happy to have a distraction from their least-favorite tasks, and the April Fool whirls among them, eagerly providing an amusing trick here and a witty twist there.

As the Mistiflying clock tower strikes midnight, the April Fool leaps onto the stage to give a speech.

“Friends! Enemies! Tolerant acquaintances! Lend me your ears.” The crowd chuckles as animal ears sprout from their heads, and they pose with their new accessories.

“As you know,” the Fool continues, “my confusing illusions usually only last a single day. But I’m pleased to announce that I’ve discovered a shortcut that will guarantee us non-stop fun, without having to deal with the pesky weight of our responsibilities. Charming Habiticans, meet my magical new friend... the Be-Wilder!”

Lemoness pales suddenly, dropping her hors d'oeuvres. “Wait! Don’t trust--”

But suddenly mists are pouring into the room, glittering and thick, and they swirl around the April Fool, coalescing into cloudy feathers and a stretching neck. The crowd is speechless as an monstrous bird unfolds before them, its wings shimmering with illusions. It lets out a horrible screeching laugh.

“Oh, it has been ages since a Habitican has been foolish enough to summon me! How wonderful it feels, to have a tangible form at last.”

Buzzing in terror, the magic bees of Mistiflying flee the floating city, which sags from the sky. One by one, the brilliant spring flowers wither up and wisp away.

“My dearest friends, why so alarmed?” crows the Be-Wilder, beating its wings. “There’s no need to toil for your rewards any more. I’ll just give you all the things that you desire!”

A rain of coins pours from the sky, hammering into the ground with brutal force, and the crowd screams and flees for cover. “Is this a joke?” Baconsaur shouts, as the gold smashes through windows and shatters roof shingles.

PainterProphet ducks as lightning bolts crackle overhead, and fog blots out the sun. “No! This time, I don’t think it is!”

Quickly, Habiticans, don’t let this World Boss distract us from our goals! Stay focused on the tasks that you need to complete so we can rescue Mistiflying -- and hopefully, ourselves.", + "questBewilderCompletion": "The Be-Wilder is DEFEATED!

We've done it! The Be-Wilder lets out a ululating cry as it twists in the air, shedding feathers like falling rain. Slowly, gradually, it coils into a cloud of sparkling mist. As the newly-revealed sun pierces the fog, it burns away, revealing the coughing, mercifully human forms of Bailey, Matt, Alex.... and the April Fool himself.

Mistiflying is saved!

The April Fool has enough shame to look a bit sheepish. “Oh, hm,” he says. “Perhaps I got a little…. carried away.”

The crowd mutters. Sodden flowers wash up on sidewalks. Somewhere in the distance, a roof collapses with a spectacular splash.

“Er, yes,” the April Fool says. “That is. What I meant to say was, I’m dreadfully sorry.” He heaves a sigh. “I suppose it can’t all be fun and games, after all. It might not hurt to focus occasionally. Maybe I’ll get a head start on next year’s pranking.”

Redphoenix coughs meaningfully.

“I mean, get a head start on this year’s spring cleaning!” the April Fool says. “Nothing to fear, I’ll have Habit City in spit-shape soon. Luckily nobody is better than I at dual-wielding mops.”

Encouraged, the marching band starts up.

It isn’t long before all is back to normal in Habit City. Plus, now that the Be-Wilder has evaporated, the magical bees of Mistiflying bustle back to work, and soon the flowers are blooming and the city is floating once more.

As Habiticans cuddle the magical fuzzy bees, the April Fool’s eyes light up. “Oho, I’ve had a thought! Why don’t you all keep some of these fuzzy Bee Pets and Mounts? It’s a gift that perfectly symbolizes the balance between hard work and sweet rewards, if I’m going to get all boring and allegorical on you.” He winks. “Besides, they don’t have stingers! Fool’s honor.”", + "questBewilderCompletionChat": "`The Be-Wilder is DEFEATED!`\n\nWe've done it! The Be-Wilder lets out a ululating cry as it twists in the air, shedding feathers like falling rain. Slowly, gradually, it coils into a cloud of sparkling mist. As the newly-revealed sun pierces the fog, it burns away, revealing the coughing, mercifully human forms of Bailey, Matt, Alex.... and the April Fool himself.\n\n`Mistiflying is saved!`\n\nThe April Fool has enough shame to look a bit sheepish. “Oh, hm,” he says. “Perhaps I got a little…. carried away.”\n\nThe crowd mutters. Sodden flowers wash up on sidewalks. Somewhere in the distance, a roof collapses with a spectacular splash.\n\n“Er, yes,” the April Fool says. “That is. What I meant to say was, I’m dreadfully sorry.” He heaves a sigh. “I suppose it can’t all be fun and games, after all. It might not hurt to focus occasionally. Maybe I’ll get a head start on next year’s pranking.”\n\nRedphoenix coughs meaningfully.\n\n“I mean, get a head start on this year’s spring cleaning!” the April Fool says. “Nothing to fear, I’ll have Habit City in spit-shape soon. Luckily nobody is better than I at dual-wielding mops.”\n\nEncouraged, the marching band starts up.\n\nIt isn’t long before all is back to normal in Habit City. Plus, now that the Be-Wilder has evaporated, the magical bees of Mistiflying bustle back to work, and soon the flowers are blooming and the city is floating once more.\n\nAs Habiticans cuddle the magical fuzzy bees, the April Fool’s eyes light up. “Oho, I’ve had a thought! Why don’t you all keep some of these fuzzy Bee Pets and Mounts? It’s a gift that perfectly symbolizes the balance between hard work and sweet rewards, if I’m going to get all boring and allegorical on you.” He winks. “Besides, they don’t have stingers! Fool’s honor.”", + "questBewilderBossRageTitle": "Beguilement Strike", + "questBewilderBossRageDescription": "When this gauge fills, The Be-Wilder will unleash its Beguilement Strike on Habitica!", + "questBewilderDropBumblebeePet": "Bumblebee (Pet)", + "questBewilderDropBumblebeeMount": "Bumblebee (Mount)", + "questBewilderBossRageMarket": "`The Be-Wilder uses BEGUILEMENT STRIKE!`\n\nOh no! Despite our best efforts, we've gotten distracted by the Be-Wilder’s charming illusions and have forgotten to do some of our Dailies! With a cackling cry, the shining bird beats its wings, raising a swarm of mist around Alex the Merchant. When the fog clears, he has been possessed! “Have some free samples!” he shouts gleefully, and begins to hurl exploding eggs and potions at fleeing Habiticans. Not the most favorable of sales, to be sure.\n\nHurry! Let's stay focused on our Dailies to defeat this monster before it possesses someone else.", + "questBewilderBossRageStables": "`The Be-Wilder uses BEGUILEMENT STRIKE!`\n\nAhh!!! Once again the Be-Wilder has dazzled us into neglecting our Dailies, and now it has attacked Matt the Beast Master! With a swirl of mist, Matt transforms into a terrifying winged creature, and all the pets and mounts howl sadly in their stables. Quickly, stay focused on your tasks to defeat this dastardly distraction!", + "questBewilderBossRageBailey": "`The Be-Wilder uses BEGUILEMENT STRIKE!`\n\nLook out! In the middle of reporting the news, Bailey the Town Crier has been possessed by the Be-Wilder! She lets out an evil, uninformative screech as she rises into the air. Now how will we know what’s going on?\n\nDon't give up... we're so close to defeating this bothersome bird for once and for all!" } \ No newline at end of file diff --git a/common/locales/hu/settings.json b/common/locales/hu/settings.json index 4840f4bdbe..a7de66be0c 100644 --- a/common/locales/hu/settings.json +++ b/common/locales/hu/settings.json @@ -1,153 +1,153 @@ { "settings": "Beállítások", "language": "Nyelv", - "americanEnglishGovern": "Ha a fordításokban ellentmondás alakul ki, akkor az Amerikai Angol verzió a mérvadó.", - "helpWithTranslation": "Szeretnél a Habitica fordításában segédkezni? Nézd meg ezt a Trello kártyát.", + "americanEnglishGovern": "Ha a fordításokban ellentmondás alakul ki, akkor az amerikai angol verzió a mérvadó.", + "helpWithTranslation": "Szeretnél a Habitica fordításában segíteni? Nézd meg ezt a Trello kártyát.", "showHeaderPop": "Avatar, életerő/tapasztalat sávok és csapat mutatása.", "stickyHeader": "Tapadós fejléc", "stickyHeaderPop": "A képernyő tetejére ragasztja a fejlécet. Ha nincs kijelölve, akkor továbbgördül a képernyőn.", "newTaskEdit": "Új feladatok megnyitása szerkesztő módban", - "newTaskEditPop": "Ezzel a beállítással, az új feladat rögtön megnyílik neked és rögtön hozzáadhatsz cimkéket és leírásokat.", - "dailyDueDefaultView": "A napi feladatok \"hátralevő\" fülének mutatása alapértelmezettként", - "dailyDueDefaultViewPop": "Ezzel a beállítással alapértelmezetten a hátralévő napi feladatok lesznek mutatva és nem az összes.", - "reverseChatOrder": "Show chat messages in reverse order", + "newTaskEditPop": "Ezzel a beállítással, az új feladat rögtön megnyílik és rögtön hozzáadhatsz cimkéket és leírásokat.", + "dailyDueDefaultView": "A napi feladatok \"esedékes\" fülének mutatása alapértelmezettként", + "dailyDueDefaultViewPop": "Ezzel a beállítással alapértelmezetten az adott napon esedékes napi feladatok lesznek mutatva és nem az összes.", + "reverseChatOrder": "A chat üzenetek sorrendjének megfordítása", "startCollapsed": "A feladatok cimkelistája összecsukva indul", "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.", + "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": "Ne mutasd többet", - "suppressLevelUpModal": "Ne legyen felugró ablak szintlépéskor", - "suppressHatchPetModal": "Ne legyen felugró ablak háziállat kikelésekor", + "suppressLevelUpModal": "Ne legyen felugró ablak szintlépés után", + "suppressHatchPetModal": "Ne legyen felugró ablak háziállat kikeltése után", "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.", + "suppressStreakModal": "Ne legyen felugró ablak, amikor széria kitüntetést szerzel", + "showTour": "Bemutató mutatása", + "restartTour": "A bevezető újraindítása onnantól, hogy csatlakoztál a Habitica-hoz.", "showBailey": "Mutasd Bailey-t", "showBaileyPop": "Előhozza Bailey-t, a beharangozót a bujkálásból, így megnézheted a korábbi híreket.", "fixVal": "Karakter értékek helyreállítása", "fixValPop": "Manuálisan beállíthatod az értékeket, úgy mint életerő, szint és arany.", - "enableClass": "Kaszt rendszer engedélyezése", - "enableClassPop": "Kikapcsoltad a kasztrendszert korábban. Szeretnéd bekapcsolni?", - "classTourPop": "Megmutatja a kasztrendszer ismertetőjét.", + "enableClass": "Kaszt-rendszer engedélyezése", + "enableClassPop": "Kiszálltál a kaszt-rendszerből korábban. Szeretnéd bekapcsolni?", + "classTourPop": "Kaszt-rendszer ismertetőjének mutatása", "resetAccount": "Fiók újraindítása", "resetAccPop": "Újraindítás, elveszted az összes szinted, aranyad, felszerelésed, történeted és feladataid.", "deleteAccount": "Fiók törlése", - "deleteAccPop": "Mégse és a Habitica fiókod törlése.", + "deleteAccPop": "Habitica fiókod törlése és megszűntetése.", "qrCode": "QR kód", - "dataExport": "Adat exportálása", - "saveData": "Itt van néhány beállítás amellyel kimentheted a Habitica-s adataid.", + "dataExport": "Adatok exportálása", + "saveData": "Itt van néhány opció amellyel kimentheted a Habitica-s adataid.", "habitHistory": "Szokás előzmények", - "exportHistory": "előzmények exportálása", + "exportHistory": "Előzmények exportálása", "csv": "(CSV)", "userData": "Felhasználói adatok", - "exportUserData": "Felhasználó adatok exportálása", + "exportUserData": "Felhasználói adatok exportálása", "export": "Exportálás", "xml": "(XML)", "json": "(JSON)", - "customDayStart": "Egyedi nap indítás", - "changeCustomDayStart": "Change Custom Day Start?", - "sureChangeCustomDayStart": "Are you sure you want to change your custom day start?", - "nextCron": "Your Dailies will next reset the first time you use Habitica after <%= time %>. Make sure you have completed your Dailies before this time!", - "customDayStartInfo1": "Habitica defaults to check and reset your Dailies at midnight in your own time zone each day. You can customize that time here.", + "customDayStart": "Egyedi nap kezdet", + "changeCustomDayStart": "Megváltoztatod az egyedi nap kezdetet?", + "sureChangeCustomDayStart": "Biztosan meg akarod változtatni, mikor kezdődjön a nap?", + "nextCron": "A napi feladataid legközelebb akkor indulnak újra, amikor a Habiticat <%= time %> után használod. Bizonyosodj meg róla, hogy ez előtt az idő előtt befejezed a napi feladataid.", + "customDayStartInfo1": "A Habitican a napi feladataid újraindítása a saját időzónádbeli éjfélre van alapértelmezve. Ezt az időt itt tudod tesreszabni", "misc": "Egyéb", "showHeader": "Mutasd a fejlécet", "changePass": "Jelszó megváltoztatása", "changeUsername": "Bejelentkezési név megváltoztatása", - "changeEmail": "Email cím megváltoztatása", - "newEmail": "Új Email cím", + "changeEmail": "E-mail cím megváltoztatása", + "newEmail": "Új e-mail cím", "oldPass": "Régi jelszó", "newPass": "Új jelszó", "confirmPass": "Új jelszó megerősítése", "newUsername": "Új bejelentkezési név", "dangerZone": "Veszélyzóna", - "resetText1": "VIGYÁZAT! Ez alapállapotra állítja a fiókod sok részét. Nem ajánljuk, de pár embernek hasznos lehet az elején, miután még csak egy rövid ideig játszott.", - "resetText2": "El fogod veszíteni az összes szintedet, aranyadat és tapasztalati pontjaid. Minden feladatod véglegesen törlődik az előzményekkel együtt. Minden tárgyadat elveszíted, de ezeket később visszavásárolhatod a korlátozott példányszámú tárgyak és a Rejtélyes tárgyak esetében is, amiket most birtokolsz (megfelelő kasztúnak kell lenned, hogy a kaszt-specifikus tárgyakat megvehesd). A jelenlegi kasztod, háziállataid és hátasaid megmaradnak. Esetleg jobban jársz egy Újjászületés gömbjével, mely biztonságosabb opció és megőrzi a feladataidat is.", - "deleteText": "Biztos vagy benne? Ez végleg kitörli a fiókodat és soha nem tudod visszahozni! Újra kell regisztrálnod, hogy a Habitica-t újra használhasd. A Bankolt, vagy elköltött Drágaköveket nem kapod vissza. Ha abszolút biztos vagy, akkor írd be a <%= deleteWord %> szót a szövegdobozba.", + "resetText1": "VIGYÁZAT! Ez alapállapotra állítja a fiókod sok részét. Alapvetően nem ajánljuk, de pár embernek hasznos lehet az elején, miután még csak egy rövid ideig játszott.", + "resetText2": "El fogod veszíteni az összes szintedet, aranyadat és tapasztalati pontod. Minden feladatod véglegesen törlődik az előzményekkel együtt. Minden tárgyadat elveszíted, de ezeket később visszavásárolhatod a korlátozott példányszámú tárgyak és a Rejtélyes tárgyak esetében is, amiket most birtokolsz (megfelelő kasztúnak kell lenned, hogy a kaszt-specifikus tárgyakat megvehesd). A jelenlegi kasztod, háziállataid és hátasaid megmaradnak. Esetleg jobban jársz egy Újjászületés gömbjével, mely biztonságosabb opció és megőrzi a feladataidat is.", + "deleteText": "Biztos vagy benne? Ez végleg kitörli a fiókodat és soha nem tudod visszahozni! Újra kell regisztrálnod, hogy a Habiticat újra használhasd. A birtokolt, vagy elköltött drágaköveket nem kapod vissza. Ha abszolút biztos vagy, akkor írd be a <%= deleteWord %> szót az alábbi szövegdobozba.", "API": "API", - "APIText": "Másold ki ezeket, külső alkalmazások használatához. Egyébiránt úgy gondolj az API Kulcsodra, mint egy jelszó és ne oszd meg senkivel. Előfordulhat, hogy a Felhasználói Azonosítódat kérik, de soha ne írd be sehova az API Kulcsodat, ahol mások esetleg láthatják (pl.: Github).", + "APIText": "Másold ki ezt, külső alkalmazások használatához. Egyébiránt úgy gondolj az API Kulcsodra, mint egy jelszóra és ne oszd meg senkivel nyilvánosan. Előfordulhat, hogy a felhasználói azonosítódat kérik, de soha ne írd be sehova az API Kulcsodat, ahol mások esetleg láthatják, még a Githubra se.", "APIToken": "API Kulcs (ez egy jelszó - lásd a figyelmeztetést lejjebb)", "resetDo": "Csináld, indítsd újra a fiókomat!", "fixValues": "Értékek helyreállítása", - "fixValuesText1": "Ha egy hibával találkoztál, vagy te magad hibáztál, ami igazságtalanul megváltoztatta a karakteredet (sebzés, amit nem kellett volna elszenvedned, Arany, amiért nem dolgoztál meg, stb.), akkor a számokat kijavíthatod itt. Igen, ezzel csalhatsz is: használd ezt a funkciót bölcsen, különben szabotálod a saját szokás építésedet.", - "fixValuesText2": "Tudd, hogy itt nem tudsz visszaállítani Szériákat, vagy egyedi feladatokat. Hogy ezt megtedd, lépj be a Napi feladatba, menj a Haldó Beállításokra, ahol megtalálod a Széria visszaállítása mezőt.", - "disabledWinterEvent": "A Téli Varázs Esemény 4. része alatt kikapcsolva (mivel a jutalmakat arannyal megvásárolhatod).", - "fix21Streaks": "21 napos széria", + "fixValuesText1": "Ha egy hibával találkoztál, vagy te magad hibáztál, ami igazságtalanul megváltoztatta a karaktered értékeit (sebzés, amit nem kellett volna elszenvedned, arany, amiért nem dolgoztál meg, stb.), akkor a számokat kijavíthatod itt. Igen, ezzel csalhatsz is: használd ezt a funkciót bölcsen, különben szabotálod a saját fejlődésed.", + "fixValuesText2": "Tudd, hogy itt nem tudod visszaállítani a feladatok szériáit. Hogy ezt megtedd, lépj be az adott napi feladatba, menj a haladó beállításokra, ahol megtalálod a széria visszaállítása mezőt.", + "disabledWinterEvent": "A téli csodaország 4. része alatt kikapcsolva (mivel a jutalmakat arannyal megvásárolhatod).", + "fix21Streaks": "21 napos szériák", "discardChanges": "Változtatások elvetése", "deleteDo": "Csináld, töröld a fiókomat!", "enterNumber": "Kérlek üss be egy 0 és 24 közötti számot", "fillAll": "Kérlek töltsd ki a az össszes mezőt", "passwordSuccess": "A jelszó sikeresen módosítva", - "usernameSuccess": "sikeresen megváltoztattad a bejelentkezési nevedet", - "emailSuccess": "Az Email cím sikeresen módosítva", + "usernameSuccess": "Bejelentkezési név sikeresen módosítva", + "emailSuccess": "Az e-mail cím sikeresen módosítva", "detachFacebook": "Facebook regisztráció visszavonása", "detachedFacebook": "Sikeresen el lett távolítva a fiókodból a Facebook", - "addedLocalAuth": "Successfully added local authentication", + "addedLocalAuth": "Helyi hitelesítés sikeresen hozzáadva", "data": "Adatok", "exportData": "Adatok exportálása", - "emailChange1": "Az email címed megváltoztatásához kérjük küldj egy emailt a", + "emailChange1": "Az e-mail címed megváltoztatásához kérjük küldj egy e-mailt a", "emailChange2": "admin@habitica.com-ra", - "emailChange3": "a régi és az új email címeddel és a felhasználói azonosítóddal.", - "usernameOrEmail": "Login név vagy email cím", - "email": "Email", - "registeredWithFb": "Facebook-al regisztráltál", - "loginNameDescription1": "Ez az amivel be tudsz lépni a Habitica oldalra. Menj a", + "emailChange3": "a régi és az új e-mail címeddel és a felhasználói azonosítóddal.", + "usernameOrEmail": "Bejelentkezési név vagy e-mail cím", + "email": "E-mail", + "registeredWithFb": "Facebookon keresztül regisztrálva", + "loginNameDescription1": "Ez az amivel be tudsz lépni a Habiticára. Menj a", "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", + "loginNameDescription3": "oldalra, hogy megváltoztasd a nevedet ami a avatarodnál és a chat üzeneteknél megjelenik.", + "emailNotifications": "E-mail értesítések", "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 %>", - "giftedSubscription": "Ajándékoztál Előfizetést", + "newPM": "Kaptál egy privát üzenetet", + "giftedGems": "Drágakövek ajándékozva", + "giftedGemsInfo": "<%= amount %> drágakő <%= name %>-tól/től", + "giftedSubscription": "Előfizetés ajándékozva", "invitedParty": "Meghívva egy csapatba", "invitedGuild": "Meghívva egy céhbe", "importantAnnouncements": "A fiókod inaktív", - "weeklyRecaps": "Összefoglaló az elmúlt heti fiók aktivitásodról", + "weeklyRecaps": "Summaries of your account activity in the past week (Note: this is currently disabled due to performance issues, but we hope to have this back up and sending e-mails again soon!)", "questStarted": "A küldetésed elkezdődött", "invitedQuest": "Meghívva egy küldetésre", "kickedGroup": "Kirúgtak a csoportból", - "remindersToLogin": "Emlékeztetők a Habitica-be történő bejelentkezésre", - "subscribeUsing": "Subscribe using", + "remindersToLogin": "Emlékeztetők a Habiticara történő bejelentkezésre", + "subscribeUsing": "Feliratkozás a következőt használva:", "unsubscribedSuccessfully": "Sikeresen leiratkoztál!", - "unsubscribedTextUsers": "You have successfully unsubscribed from all Habitica emails. You can enable only the emails you want to receive from the settings (requires login).", - "unsubscribedTextOthers": "Ezentúl nem kapsz levelet a Habitica-től.", - "unsubscribeAllEmails": "Pipáld ki hogyha le akarsz iratkozni az Email-ekről", - "unsubscribeAllEmailsText": "Ennek a mezőnek a kipipálásával elismerem, hogy megértettem azt, hogyha leiratkozom minden emailről, akkor a Habitica nem fog tudni értesíteni engem Email-en keresztül semmilyen fontos változásról az oldallal vagy a felhasználói fiókommal kapcsolatban.", + "unsubscribedTextUsers": "Sikeresen leiratkoztál minden Habiticaval kapcsolatos e-mailről. Engdélyezheted azokat az e-maileket, amiket továbbra is meg szeretnél kapni, a beállításokban (bejelentkezés szükséges).", + "unsubscribedTextOthers": "Ezentúl nem kapsz leveleket a Habiticatól.", + "unsubscribeAllEmails": "Pipáld ki hogyha le akarsz iratkozni az e-mailekről", + "unsubscribeAllEmailsText": "Ennek a mezőnek a kipipálásával elismerem, hogy megértettem azt, hogyha leiratkozom minden e-mailről, akkor a Habitica nem fog tudni értesíteni engem e-mail-en keresztül semmilyen fontos változásról az oldallal vagy a felhasználói fiókommal kapcsolatban.", "correctlyUnsubscribedEmailType": "Sikeresen leiratkoztál a(z) \"<%= emailType %>\" e-mailekről.", - "subscriptionRateText": "Recurring $<%= price %> USD every <%= months %> months", - "recurringText": "recurring", + "subscriptionRateText": "Ismétlődő <%= price %> USD minden <%= months %> hónapban.", + "recurringText": "ismétlődő", "benefits": "Előnyök", "coupon": "Kupon", - "couponPlaceholder": "Írd be a Kupon kódodat", - "couponText": "We sometimes have events and give out coupon codes for special gear. (eg, those who stop by our Wondercon booth)", + "couponPlaceholder": "Írd be a kupon kódodat", + "couponText": "Időről időre vannak olyan események, ahol kupok kódokat osztunk ki, mellyel különleges felszerelések érhetőek el (például a Wondercon standunkon)", "apply": "Alkalmaz", "resubscribe": "Újra feliratkozás", "promoCode": "Promóciós kód", - "promoCodeApplied": "Promóciós kód elfogadva! Ellenőrizd le a tárgylistád", - "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", + "promoCodeApplied": "Promóciós kód elfogadva! Nézd meg a leltárad.", + "promoPlaceholder": "Írd be a promóciós kódodat", + "displayInviteToPartyWhenPartyIs1": "Mutasd a \"Meghívás a csapatba\" gombot, amikor a csapatnak csak 1 tagja van.", + "saveCustomDayStart": "Egyedi nap kezdet mentése", "registration": "Regisztráció", - "addLocalAuth": "Add local authentication:", - "generateCodes": "Generate Codes", - "generate": "Generate", - "getCodes": "Get Codes", - "webhooks": "Webhooks", - "enabled": "Enabled", - "webhookURL": "Webhook URL", - "add": "Add", - "buyGemsGoldCap": "Cap raised to <%= amount %>", - "mysticHourglass": "<%= amount %> Mystic Hourglass", - "mysticHourglassText": "Mystic Hourglasses allow purchasing a previous month's Mystery Item set.", - "purchasedPlanId": "Recurring $<%= price %> USD each <%= months %> Month(s) (<%= plan %>)", - "purchasedPlanExtraMonths": "You have <%= months %> months of extra subscription credit.", - "consecutiveSubscription": "Consecutive Subscription", - "consecutiveMonths": "Consecutive Months:", - "gemCapExtra": "Gem Cap Extra:", - "mysticHourglasses": "Mystic Hourglasses:", + "addLocalAuth": "Helyi hitelesítés hozzáadása:", + "generateCodes": "Kódgenerálás", + "generate": "Generálás", + "getCodes": "Kódok megszerzése", + "webhooks": "Webkampók", + "enabled": "Engedélyezve", + "webhookURL": "Webkampó URL", + "add": "Hozzáadás", + "buyGemsGoldCap": "Határ megemelve <%= amount %>-ra/re", + "mysticHourglass": "<%= amount %> misztikus óraüveg", + "mysticHourglassText": "A misztikus óraüvegek segítségével korábbi hónapok rejtélyes tárgykészleteit vásárolhatod meg.", + "purchasedPlanId": "Ismétlődő <%= price %> USD minden <%= months %> hónap(ok)ban (<%= plan %>)", + "purchasedPlanExtraMonths": "<%= months %> hónapnyi extra előfizetői kredited van.", + "consecutiveSubscription": "Egymást követő előfizetés", + "consecutiveMonths": "Egymást követő hónapok:", + "gemCapExtra": "Megemelt drágakő határ:", + "mysticHourglasses": "Misztikus óraüvegek:", "paypal": "PayPal", "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." + "timezone": "Időzóna", + "timezoneUTC": "A Habitica a számítógépeden beállított időzónát használja, ami a következő: <%= utc %>", + "timezoneInfo": "Ha az időzóna hibás, először frissítsd ezt a lapot a böngésződben, hogy megbizonyosodhass arról, hogy a Habitica a legújabb információk birtokában van. Ha még mindig hibás, változtasd meg a számítógéped időzónáját, majd töltsd újra ezt az oldalt.

Ha használod a Habiticát más számítógépeken, illetve mobilkészülékeken is, az időzónának minden készülénken egyeznie kell. Ha a napi feladataid rossz időben indulnak újra, ismételd meg ezt az ellenőrzést minden további számítógépen, illetve mobilkészüléken a böngészőben." } \ No newline at end of file diff --git a/common/locales/hu/subscriber.json b/common/locales/hu/subscriber.json index 865551a118..b26a814383 100644 --- a/common/locales/hu/subscriber.json +++ b/common/locales/hu/subscriber.json @@ -30,7 +30,7 @@ "cancelSub": "Leíratkozás", "canceledSubscription": "Megszüntetett előfizetés", "adminSub": "Adminisztrátor felíratkozások", - "morePlans": "További tervek
Hamarosan", + "morePlans": "More Plans
Coming Soon", "organizationSub": "Privát szervezet", "organizationSubText": "A szervezeted tagjai a Habitica-n kívül vesznek részt, hogy fókuszt biztosítván nekik", "hostingType": "Host típus", @@ -97,6 +97,8 @@ "mysterySet201511": "Wood Warrior Set", "mysterySet201512": "Winter Flame Set", "mysterySet201601": "Champion of Resolution Set", + "mysterySet201602": "Heartbreaker Set", + "mysterySet201603": "Lucky Clover Set", "mysterySet301404": "Steampunk Standard Set", "mysterySet301405": "Steampunk Accessories Set", "mysterySetwondercon": "Wondercon", diff --git a/common/locales/hu/tasks.json b/common/locales/hu/tasks.json index 645f499fca..e12d8b326c 100644 --- a/common/locales/hu/tasks.json +++ b/common/locales/hu/tasks.json @@ -1,7 +1,7 @@ { "clearCompleted": "Törlés kész", - "lotOfToDos": "A befejezett tennivalók automatikusan arhiválásra kerülnek 3 nap után. Letöltheted a Beállítások>Exportálás menüpontban.", - "deleteToDosExplanation": "Ha megnyomod a lenti gombot, akkor a kész és archív tennivalók végleg kitörlődnek. Exportáld ki őket, ha meg akarod őket őrizni.", + "lotOfToDos": "A befejezett tennivalók automatikusan arhiválásra kerülnek 3 nap után. A Beállítások>Exportálás menüpontban letöltheted őket.", + "deleteToDosExplanation": "Ha megnyomod a lenti gombot, akkor a már kész és archivált tennivalók végleg kitörlődnek. Exportáld ki őket, ha meg akarod őket őrizni.", "addmultiple": "Több hozzáadása", "addsingle": "Egy hozzáadása", "habit": "Szokás", @@ -22,7 +22,7 @@ "advancedOptions": "Haladó beállítások", "difficulty": "Nehézség", "difficultyHelpTitle": "Milyen nehéz ez a feladat?", - "difficultyHelpContent": "Minél nehezebb egy feladat, annál több tapasztalatot és aranyat kapsz, amikor kipipálod... de annál keményebben is sebez meg téged, ha egy napi feladat vagy rossz szokás!", + "difficultyHelpContent": "Minél nehezebb egy feladat, annál több tapasztalatot és aranyat kapsz, amikor kipipálod... de annál keményebben is sebez meg téged, ha napi feladat vagy rossz szokás!", "trivial": "Triviális", "easy": "Könnyű", "medium": "Közepes", @@ -77,18 +77,18 @@ "startDateHelpTitle": "Mikortól induljon a feladat?", "startDateHelp": "Állítsd be a feladat dátumát, amikortól aktív lesz. Előtte inaktív marad.", "streakName": "Széria kitűntetés", - "streakText": "<%= streaks %> darab 21-napos szériát teljesített napi feladatokból", + "streakText": "<%= streaks %> darab 21 napos szériát teljesített napi feladatokból", "streakSingular": "Szériázó", - "streakSingularText": "21-napos szériát teljesített egy napi feladaton", + "streakSingularText": "21 napos szériát teljesített egy napi feladaton", "perfectName": "Tökéletes nap", - "perfectText": "Minden esedékes napi feladatot megcsinált <%= perfects %> napon. Ezzelt a kitüntetéssel egy +szint/2 mértékű bónuszt kap minden tulajdonságára a következő nap. A 100 fölötti szintekért nem jár már magasabb mértékű bónusz.", + "perfectText": "Minden esedékes napi feladatot megcsinált <%= perfects %> napon. Ezzel a kitüntetéssel egy +szint/2 mértékű erősítést kap minden tulajdonságára a következő nap. A 100 fölötti szintekért nem jár már magasabb mértékű erősítés.", "perfectSingular": "Tökéletes nap", - "perfectSingularText": "Minden esedékes napi feladatot megcsinált az adott napon. Ezzelt a kitüntetéssel egy +szint/2 mértékű bónuszt kap minden tulajdonságára a következő nap. A 100 fölötti szintekért nem jár már magasabb mértékű bónusz.", - "streakerAchievement": "Megkaptad a \"Szériázó\" kitűntetést! A 21 napos sorozat egy mérföldkő a szokások kialakításában. Ezt a kitűntetést tovább gyűjtheted 21 naponként ezen és más feladatokon is.", + "perfectSingularText": "Minden esedékes napi feladatot megcsinált az adott napon. Ezzel a kitüntetéssel egy +szint/2 mértékű erősítést kap minden tulajdonságára a következő nap. A 100 fölötti szintekért nem jár már magasabb mértékű erősítés.", + "streakerAchievement": "Megkaptad a \"Szériázó\" kitűntetést! A 21 napos sorozat nagy mérföldkő az új szokások kialakításában. Ezt a kitűntetést tovább gyűjtheted 21 naponként ezen és más feladatokon is.", "fortifyName": "Erősítőfőzet", "fortifyPop": "Visszaállít minden feladatot semleges értékűre (sárga színűre), és feltölti az életerőt.", "fortify": "Megerősít", - "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!", + "fortifyText": "Az erősítés visszaállítja minden feladatodat semleges (sárga) állapotba, mintha csak most adtad volna őket hozzá, ezenkívül feltölti az életerődet. Ez egy remek lehetősége, ha a sok piros feladat túl nehézzé teszi a játékot, vagy a sok kék túl könnyűvé. Ha a friss kezdés motiválóbbnak hangzik, szándd rá a drágaköveket és fújj egyet!", "confirmFortify": "Biztos vagy benne?", "sureDelete": "Biztos vagy benne, hogy törölni szeretnéd a <%= taskType %>-t az alábbi szöveggel \"<%= taskText %>\"?", "streakCoins": "Széria bónusz!", @@ -102,15 +102,15 @@ "dailyHelp1": "A napi feladatok <%= emphasisStart %>minden nap<%= emphasisEnd %> ismétlődnek, amikor aktívak. Kattints a <%= pencilIcon %>-ra, hogy megváltoztasd, mely napokon esedékes a feladat.", "dailyHelp2": "Ha nem teljesíted az aktív napi feladataid, akkor életerőt vesztesz, amikor új nap kezdődik.", "dailyHelp3": "A napi feladatok<%= emphasisStart %>pirosabbá<%= emphasisEnd %> válnak, ha nem teljesíted őket, és <%= emphasisStart %>kékebbé<%= emphasisEnd %>, ha elvégzed őket. Minél pirosabb egy napi feladat, annál inkább megjutalmaz... vagy sebez.", - "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": "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": "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.", - "rewardHelp4": "Ne légy rest saját jutalmakat beállítani! Nézz meg néhány példa jutalmat.", - "clickForHelp": "Segítségért kattints" + "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 kezdethez.", + "dailyHelp5": "Ha egy kis inspirációra vágyszt, nézd meg ezeket a minta napi feladatokat!", + "toDoHelp1": "A tennivalók sárgán indulnak, és az idő előrehaladtával egyre pirosabbak (és értékesebbek) lesznek, így a hosszú, nehéz feladatok nagy jutalmakat ígérnek!", + "toDoHelp2": "A tennivalók sosem sebeznek meg! Csak aranyat és tapasztalatot adnak.", + "toDoHelp3": "Ha egy tennivalót listára bontasz, kevésbé lesz félelmetes, és nagyobb jutalmat fog adni!", + "toDoHelp4": "Ha egy kis ispirációra vágysz, nézd meg ezeket a minta tennivalókat!", + "rewardHelp1": "Az avatarodnak vásárolt felszerelést a <%= linkStart %>Leltár > Felszerelés<%= linkEnd %> alatt találod.", + "rewardHelp2": "A felszerelés hatással van a tulajdonságaidra (<%= linkStart %>Avatar > Stats<%= linkEnd %>).", + "rewardHelp3": "A különleges felszerelések itt jelennek meg a nagy eseményekkor.", + "rewardHelp4": "Ne légy rest saját jutalmakat beállítani! Nézz meg néhány példát jutalmakra.", + "clickForHelp": "Kattints ide segítségért" } \ No newline at end of file diff --git a/common/locales/it/backgrounds.json b/common/locales/it/backgrounds.json index 3f2f9620a0..d7ebb864b3 100644 --- a/common/locales/it/backgrounds.json +++ b/common/locales/it/backgrounds.json @@ -140,11 +140,25 @@ "backgroundSnowmanArmyNotes": "Guida un esercito di pupazzi di neve.", "backgroundWinterNightText": "Notte d'Inverno", "backgroundWinterNightNotes": "Osserva le stelle nella notte invernale.", - "backgrounds022016": "SET 21: Released February 2016", - "backgroundBambooForestText": "Bamboo Forest", - "backgroundBambooForestNotes": "Stroll through the Bamboo Forest.", - "backgroundCozyLibraryText": "Cozy Library", - "backgroundCozyLibraryNotes": "Read in the Cozy Library.", - "backgroundGrandStaircaseText": "Grand Staircase", - "backgroundGrandStaircaseNotes": "Stride down the Grand Staircase." + "backgrounds022016": "SERIE 21: Febbraio 2016", + "backgroundBambooForestText": "Foresta di bambù", + "backgroundBambooForestNotes": "Passeggia attraverso una foresta di bambù.", + "backgroundCozyLibraryText": "Biblioteca", + "backgroundCozyLibraryNotes": "Leggi in un'accogliente biblioteca.", + "backgroundGrandStaircaseText": "Grande Scalone", + "backgroundGrandStaircaseNotes": "Discendi delle maestose scale.", + "backgrounds032016": "SERIE 22: Marzo 2016", + "backgroundDeepMineText": "Miniera Profonda", + "backgroundDeepMineNotes": "Trova metalli preziosi in una profonda miniera.", + "backgroundRainforestText": "Foresta Pluviale", + "backgroundRainforestNotes": "Avventurati in una foresta pluviale.", + "backgroundStoneCircleText": "Cerchio di Pietre", + "backgroundStoneCircleNotes": "Lancia incantesimi all'interno di un Cerchio di Pietre.", + "backgrounds042016": "SET 23: Released April 2016", + "backgroundArcheryRangeText": "Archery Range", + "backgroundArcheryRangeNotes": "Practice on the Archery Range.", + "backgroundGiantFlowersText": "Giant Flowers", + "backgroundGiantFlowersNotes": "Frolic atop Giant Flowers.", + "backgroundRainbowsEndText": "End of the Rainbow", + "backgroundRainbowsEndNotes": "Discover gold at the End of the Rainbow." } \ No newline at end of file diff --git a/common/locales/it/character.json b/common/locales/it/character.json index ce24d5f206..a9b6e3819a 100644 --- a/common/locales/it/character.json +++ b/common/locales/it/character.json @@ -1,7 +1,7 @@ { "statsAch": "Statistiche e medaglie", "profile": "Profilo", - "avatar": "Avatar", + "avatar": "Personalizza Avatar", "other": "Altro", "fullName": "Nome completo", "displayName": "Nome mostrato", @@ -34,6 +34,7 @@ "beard": "Barba", "mustache": "Baffi", "flower": "Fiore", + "wheelchair": "Wheelchair", "basicSkins": "Skin base", "rainbowSkins": "Skin arcobaleno", "pastelSkins": "Skin pastello", @@ -83,7 +84,7 @@ "allocateInt": "Punti assegnati a Intelligenza:", "allocateIntPop": "Aggiungi un punto a Intelligenza (INT)", "noMoreAllocate": "Ora che hai raggiunto il livello 100, non guadagnerai altri Punti Attributo. Puoi continuare a salire di livello, o iniziare una nuova avventura dal livello 1 usando la Sfera della Rinascita, ora disponibile gratuitamente nel Mercato.", - "stats": "Statistiche", + "stats": "Statistiche Avatar", "strength": "Forza", "strengthText": "L'attributo Forza aumenta la probabilità di sferrare \"colpi critici\", aumentando l'oro, l'esperienza e la probabilità di drop che potrai guadagnare grazie ad essi. In più, permette di arrecare maggiori danni ai boss delle missioni.", "constitution": "Costituzione", @@ -136,7 +137,7 @@ "respawn": "Risorgi!", "youDied": "Sei morto!", "dieText": "Hai perso un livello, tutto il tuo oro, e un pezzo casuale dell'equipaggiamento. Risorgi, Habiteer, e provaci ancora! Metti un freno alle cattive abitudini, sii attento al completamento delle Daily, e tieni la morte a debita distanza con una Pozione di Salute se stai vacillando!", - "sureReset": "Sei sicuro? Questo resetterà la classe del tuo personaggio e i punti allocati (potrai ri-allocarli in seguito), e costa 3 Gemme", + "sureReset": "Sei sicuro? Questo resetterà la classe e i punti allocati del tuo personaggio (ti verranno ridati per poter essere ri-allocati), e ti costerà 3 gemme.", "purchaseFor": "Comprare per <%= cost %> Gemme?", "notEnoughMana": "Non hai abbastanza Mana.", "invalidTarget": "Bersaglio non valido", @@ -160,5 +161,8 @@ "str": "STR", "con": "CON", "per": "PER", - "int": "INT" + "int": "INT", + "showQuickAllocation": "Mostra allocazione delle statistiche", + "hideQuickAllocation": "Nascondi allocazione delle statistiche", + "quickAllocationLevelPopover": "Ogni volta che sali di livello ottieni un punto da assegnare ad un attributo a tua scelta. Puoi farlo manualmente, o lasciare che se ne occupi il gioco selezionando una delle opzioni di allocazione automatica che trovi in Utente -> Statistiche." } \ No newline at end of file diff --git a/common/locales/it/communityguidelines.json b/common/locales/it/communityguidelines.json index 8c29bd7350..e32a32da9d 100644 --- a/common/locales/it/communityguidelines.json +++ b/common/locales/it/communityguidelines.json @@ -29,7 +29,7 @@ "commGuidePara013": "In una community grande come Habitica, gli utenti vanno e vengono, e alcune volte un moderatore necessita di riporre il nobile mantello in soffitta e rilassarsi. Sono chiamati moderatori emeriti. Non hanno più i poteri di moderatore, ma dovremmo tutti quanti portare loro rispetto per il lavoro che hanno svolto!", "commGuidePara014": "Moderatori emeriti:", "commGuideHeadingPublicSpaces": "Spazi pubblici in Habitica", - "commGuidePara015": "Habitica dispone di due tipi di spazi sociali: pubblici e privati. Gli spazi pubblici includono la Taverna, le Gilde pubbliche, GitHub, Trello e la Wiki. Gli spazi privati sono le Gilde private, la chat di squadra e i messaggi privati.", + "commGuidePara015": "Habitica dispone di due tipi di spazi sociali: pubblico e privato. Gli spazi pubblici comprendono la Taverna, le Gilde Pubbliche, GitHub, Trello e la Wiki. Gli spazi privati sono le Gilde Private, la chat di squadra e i Messaggi Privati. Tutti i Nomi Mostrati devono rispettare le linee guida per gli spazi pubblici. Per cambiare il tuo Nome Mostrato, vai nel sito su Utente > Profilo e clicca sul pulsante \"Modifica\".", "commGuidePara016": "Quando navighi negli spazi pubblici di Habitica, ci sono delle regole generali che bisogna rispettare per mantenere tutti felici e al sicuro. Dovrebbero essere semplici per un avventuriero come te!", "commGuidePara017": "Rispettarsi a vicenda. Sii cortese, gentile, amichevole e disposto ad aiutare. Ricorda: gli Habitichesi hanno trascorsi diversi e possono quindi avere esperienze molto divergenti. Questo è parte di ciò che rende Habitica così speciale! Costruire una comunità significa rispettarsi ed esaltare le nostre differenze così come le nostre similitudini. Di seguito potrai trovare alcuni consigli per rispettare gli altri ed essere rispettati:", "commGuideList02A": "Obbedisci ai Termini e Condizioni di utilizzo.", @@ -40,8 +40,8 @@ "commGuideList02F": "Rispetta sempre le richieste dei Moderatori sulla conclusione di una discussione o il suo spostamento nella sezione off-topic (Back Corner). Ogni eventuale chiarimento conclusivo o disaccordo dovrebbe essere discusso (cortesemente) sul \"tavolo\" nella sezione off-topic, se concesso.", "commGuideList02G": "Rifletti prima di dare una risposta \"arrabbiata\" se qualcuno ti dice che qualcosa che hai detto o fatto lo mette a disagio. C'è una grande forza nel sapersi scusare sinceramente con qualcuno. Se senti che il modo in cui ti hanno risposto è inappropriato, contatta un moderatore invece che arrabbiarti e rispondere male pubblicamente.", "commGuideList02H": "Conversazioni contenziose/inappropriate devono essere riportate ai moderatori. Se ti sembra che una conversazione stia diventando inappropriata, eccessivamente emotiva o dolorosa, bisogna fermarla. Invia un'email a leslie@habitica.com per farci sapere dell'accaduto. E' nostro compito farti sentire al sicuro,", - "commGuideList02I": "Non pubblicare spam. Lo spam può includere, ma non è limitato a: postare lo stesso commento o domanda in posti diversi, postare link senza contesto o spiegazione, postare messaggi senza senso, o postare molti messaggi consecutivamente. Anche elemosinare continuamente gemme o abbonamenti è considerato spam.", - "commGuidePara019": "Negli spazi privati gli utenti hanno più libertà di discutere qualunque argomento vogliano, ma devono comunque fare attenzione a non violare i Termini e Condizioni, evitando inoltre post discriminatori, violenti o con contenuti minacciosi.", + "commGuideList02I": "Non pubblicare spam. Lo spam può includere, ma non essere limitato a: postare lo stesso commento o domanda in più luoghi diversi, postare link senza una spiegazione o un contesto, postare messaggi senza senso o postare molti messaggi uno dopo l'altro. Anche chiedere gemme o un abbonamento in una qualsiasi delle chat o per Messaggio Privato è considerato spam.", + "commGuidePara019": "Negli spazi privati, gli utenti hanno più libertà per discutere di qualunque argomento vogliano, ma devono comunque fare attenzione a non violare i Termini e Condizioni, inclusi post dal contenuto discriminatorio, violento o minaccioso. Inoltre, poiché i nomi delle Sfide appaiono nel profilo pubblico del vincitore, TUTTI i nomi delle Sfide devono rispettare le linee guida per gli spazi pubblici, anche se appaiono in uno spazio privato.", "commGuidePara020": "I Messaggi Privati (MP) hanno alcune linee guida aggiuntive. Se qualcuno ti ha bloccato, non contattarli da qualche altra parte per chiedergli di sbloccarti. Inoltre, non dovresti mandare un MP a qualcuno che richiede assistenza (dato che le risposte pubbliche alle richieste di assistenza sono utili a tutta la community). Infine, non mandare a nessuno un MP pregandolo di regalarti gemme o un abbonamento, questo può essere considerato spam.", "commGuidePara021": "Inoltre, alcuni spazi pubblici in Habitica hanno delle linee guida specifiche.", "commGuideHeadingTavern": "Taverna", diff --git a/common/locales/it/content.json b/common/locales/it/content.json index 0f80f48add..70c07be561 100644 --- a/common/locales/it/content.json +++ b/common/locales/it/content.json @@ -31,7 +31,7 @@ "dropEggCactusAdjective": "uno spinoso", "dropEggBearCubText": "Cucciolo di Orso", "dropEggBearCubMountText": "Orso", - "dropEggBearCubAdjective": "un grazioso", + "dropEggBearCubAdjective": "un coraggioso", "questEggGryphonText": "Grifone", "questEggGryphonMountText": "Grifone", "questEggGryphonAdjective": "un maestoso", @@ -46,7 +46,7 @@ "questEggEggAdjective": "un colorato", "questEggRatText": "Ratto", "questEggRatMountText": "Ratto", - "questEggRatAdjective": "uno sporco", + "questEggRatAdjective": "un socievole", "questEggOctopusText": "Polpo", "questEggOctopusMountText": "Polpo", "questEggOctopusAdjective": "un viscido", @@ -107,9 +107,12 @@ "questEggSabretoothText": "Tigre dai Denti a Sciabola", "questEggSabretoothMountText": "Tigre dai Denti a Sciabola", "questEggSabretoothAdjective": "una feroce", - "questEggMonkeyText": "Monkey", - "questEggMonkeyMountText": "Monkey", - "questEggMonkeyAdjective": "a mischievous", + "questEggMonkeyText": "Scimmia", + "questEggMonkeyMountText": "Scimmia", + "questEggMonkeyAdjective": "una dispettosa", + "questEggSnailText": "Chiocciola", + "questEggSnailMountText": "Chiocciola", + "questEggSnailAdjective": "un lento ma costante", "eggNotes": "Trova una pozione per far schiudere questo uovo, e nascerà <%= eggAdjective(locale) %> <%= eggText(locale) %>.", "hatchingPotionBase": "Base", "hatchingPotionWhite": "Bianco", diff --git a/common/locales/it/contrib.json b/common/locales/it/contrib.json index 675f6ab3a4..b2069b4a6e 100644 --- a/common/locales/it/contrib.json +++ b/common/locales/it/contrib.json @@ -7,7 +7,7 @@ "eliteFourth": "Quando il tuo quarto set di contributi verrà approvato, la Spada di Cristallo sarà resa disponibile nel negozio delle Ricompense. Come premio per il tuo impegno, riceverai anche 4 Gemme.", "champion": "Campione", "championFifth": "Quando il tuo quinto set di contributi verrà approvato, lo Scudo di Cristallo sarà reso disponibile nel negozio delle Ricompense. Come premio per il tuo incessante lavoro, riceverai anche 4 Gemme.", - "championSixth": "Quando il tuo sesto set di contributi verrà approvato, riceverai l'animale Idrat. Inoltre, riceverai 4 Gemme.", + "championSixth": "Quando il tuo sesto set di contributi verrà approvato, riceverai l'animale Idra. Inoltre, riceverai 4 Gemme.", "legendary": "Leggendario", "legSeventh": "Quando il tuo settimo set di contributi verrà approvato, riceverai 4 Gemme e diventerai un membro onorario della Gilda dei Sostenitori, conferendoti il privilegio di accedere al \"dietro le quinte\" di Habitica! Ulteriori contribuzioni non aumenteranno il tuo livello, ma potrai continuare ad ottenere Gemme e ulteriori titoli.", "moderator": "Moderatore", @@ -28,11 +28,11 @@ "helped": "Ha aiutato Habit a crescere", "helpedText1": "Ha aiutato Habitica a crescere, compilando", "helpedText2": "questo sondaggio.", - "hall": "Salone", + "hall": "Salone degli Eroi", "contribTitle": "Titolo onorifico (per esempio \"Fabbro\")", "contribLevel": "Livello di contribuzione", "contribHallText": "Dall'1 al 7 per i sostenitori normali, 8 per i moderatori, 9 per lo staff. Questo determina quali oggetti, animali e cavalcature sono disponibili, nonché il colore dell'etichetta del nome. Ai gradi 8 e 9 viene automaticamente attribuito lo status di admin (amministratore).", - "hallHeroes": "Salone degli Eroi", + "hallContributors": "Salone dei Collaboratori", "hallPatrons": "Salone dei Mecenati", "rewardUser": "Premia utente", "UUID": "UUID", @@ -60,5 +60,5 @@ "blurbGuildsPage": "Le Gilde sono gruppi di chat per persone con interessi comuni, create dai giocatori per i giocatori. Scorri la lista ed unisciti alle gilde che ti interessano!", "blurbChallenges": "Le Sfide sono create dagli utenti. Unirsi a una sfida aggiungerà degli elementi nella tua pagina delle attività. Vincere una sfida ti conferirà una medaglia e spesso un premio in Gemme!", "blurbHallPatrons": "Questo è il salone dei Mecenati, nel quale vengono onorati i nobili avventurieri che hanno sostenuto la nostra campagna su Kickstarter. Li ringraziamo per aver aiutato a far nascere Habitica!", - "blurbHallHeroes": "Questo è il Salone degli Eroi, dove viene reso onore agli aiutanti open-source di Habitica. Che sia attraverso codice, arte, musica, testi o anche semplice disponibilità, hanno guadagnato gemme, equipaggiamento esclusivo e titoli prestigiosi. Anche tu puoi contribuire ad Habitica! Clicca qui per avere maggiori informazioni." + "blurbHallContributors": "Questo è il Salone dei Collaboratori, dove coloro che hanno contribuito ad Habitica sono onorati. Che sia attraverso programmazione, arte, musica, scrittura, o anche solo disponibilità, hanno guadagnato gemme, equipaggiamento esclusivo, e titoli prestigiosi. Anche tu puoi contribuire ad Habitica! Scopri di più qui. " } \ No newline at end of file diff --git a/common/locales/it/faq.json b/common/locales/it/faq.json index 9d585d20b7..15d2f7d09a 100644 --- a/common/locales/it/faq.json +++ b/common/locales/it/faq.json @@ -10,18 +10,18 @@ "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?", - "iosFaqAnswer3": "Le tue attività cambiano colore in base alla serie di successi che compi su di esse! Ogni nuova attività è gialla all'inizio, ed ogni volta che riuscirai a svolgere una Daily o una Habits positiva diventeranno blu.\nDimenticando una Daily o compiendo un Bad Habit le attività diventeranno rosse. Più un'attività è rossa, più ti ricompenserà, ma se è una Daily o una Bad Habit ti farà più danno! Questo ti motiva a completare le attività che ti danno problemi.", + "iosFaqAnswer3": "Le tue attività cambiano colore in base quanto bene le stai completando! Ogni nuova attività è gialla all'inizio, ed ogni volta che riuscirai a svolgere una Giornaliera o una Abituidine positiva diventeranno più blu.\nDimenticando una Giornaliera o indulgendo in un'Abitudine negativa le attività diventeranno rosse. Più un'attività è rossa, più ti ricompenserà, ma se è una Giornaliera o una Abitudine negativa ti farà più danno! Questo ti motiva a completare le attività che ti danno problemi.", "webFaqAnswer3": "Le tue attività cambiano colore in base a quanto le stai completando bene! Ogni nuova attività è gialla all'inizio, ed ogni volta che riuscirai a svolgere una Giornaliera o una Abitudine positiva più frequentemente se sposteranno verso il blu.\nDimenticando una Giornaliera o compiendo un'Abitudine negativa le attività si sposteranno verso il rosso. Più un'attività è rossa, più ti ricompenserà, ma se è una Giornaliera o un'Abitudine negativa ti farà più danno! Questo ti motiva a completare le attività che ti danno problemi.", "faqQuestion4": "Perche' il mio personaggio ha perso dei punti vita e come faccio a ripristinarli?", - "iosFaqAnswer4": "Ci sono diverse ragioni per cui puoi venire ferito. Il motivo principale e' l'aver lasciato incompiute alcune tue Dailies durante la notte, queste mancanze ti danneggiano. In secondo luogo, se clicchi su di una Habit negativa, questa ti danneggera'. Ed in fine, se ti trovi a fronteggiare un Boss in una battaglia con la tua Squadra ed uno dei tuoi compagni non completa tutte le sue Dailies, il Boss vi attacchera'.\n\nLa via principale per riguadagnare i tuoi punti salute e' salire di livello, questo ti fara' recuperare completamente salute. Puoi inoltre comprare con dell'oro una Pozione Salute nella colonna delle Ricompense. Inoltre, dal livello 10 in poi, puoi scegliere di diventare un Guaritore ed imparerai cosi' degli incantesimi di guarigione. Se ti trovi in Squadra con un Guaritore, puoi beneficiare del suo aiuto.", - "webFaqAnswer4": "Ci sono diverse ragioni per cui puoi venire ferito. Il motivo principale e' l'aver lasciato incompiute alcune tue Dailies durante la notte, queste mancanze ti danneggiano. In secondo luogo, se clicchi su di una Habit negativa, questa ti danneggera'. Ed in fine, se ti trovi a fronteggiare un Boss in una battaglia con la tua Squadra ed uno dei tuoi compagni non completa tutte le sue Dailies, il Boss vi attacchera'.\n

\nLa via principale per riguadagnare i tuoi punti salute e' salire di livello, questo ti fara' recuperare completamente salute. Puoi inoltre comprare con dell'oro una Pozione Salute nella colonna delle Ricompense. Inoltre, dal livello 10 in poi, puoi scegliere di diventare un Guaritore ed imparerai cosi' degli incantesimi di guarigione. Se ti trovi in Squadra (cerca in Social > Squadra) con un Guaritore, puoi beneficiare del suo aiuto.", + "iosFaqAnswer4": "Ci sono diverse ragioni per cui puoi venire ferito. Il motivo principale e' l'aver lasciato incompiute alcune tue Giornaliere durante la notte, queste mancanze ti danneggiano. In secondo luogo, se clicchi su di una Abitudine negativa, questa ti danneggerà. Ed in fine, se ti trovi a fronteggiare un Boss in una battaglia con la tua Squadra ed uno dei tuoi compagni non completa tutte le sue Giornaliere, il Boss vi attacchera'.\n\nLa via principale per riguadagnare i tuoi punti salute e' salire di livello, questo ti fara' recuperare completamente salute. Puoi inoltre comprare con dell'oro una Pozione Salute nella colonna delle Ricompense. Inoltre, dal livello 10 in poi, puoi scegliere di diventare un Guaritore ed imparerai cosi' degli incantesimi di guarigione. Se ti trovi in Squadra con un Guaritore, puoi beneficiare del suo aiuto.", + "webFaqAnswer4": "Ci sono diverse ragioni per cui puoi venire ferito. Il motivo principale e' l'aver lasciato incompiute alcune tue Giornaliere durante la notte, queste mancanze ti danneggiano. In secondo luogo, se clicchi su di una Abitudine negativa, questa ti danneggerà. Ed in fine, se ti trovi a fronteggiare un Boss in una battaglia con la tua Squadra ed uno dei tuoi compagni non completa tutte le sue Giornaliere, il Boss vi attacchera'.\n

\nLa via principale per riguadagnare i tuoi punti salute e' salire di livello, questo ti fara' recuperare completamente salute. Puoi inoltre comprare con dell'oro una Pozione Salute nella colonna delle Ricompense. Inoltre, dal livello 10 in poi, puoi scegliere di diventare un Guaritore ed imparerai cosi' degli incantesimi di guarigione. Se ti trovi in Squadra con un Guaritore, puoi beneficiare del suo aiuto.", "faqQuestion5": "Come faccio per giocare in Habitica con i miei amici?", "iosFaqAnswer5": "Il miglior modo é invitarli in un Gruppo con te! I Gruppi possono intraprendere missioni, sconfiggere mostri, e usare abilità per sopportarsi l'un l'altro. Vai su Menu > Gruppo e clicca \"Crea Nuovo Gruppo\" se non ne hai ancora uno. Dopodiché tocca la lista dei Membri, e tocca Invita nell'angolo in alto a destra per invitare i tuoi amici inserendo il loro ID Utente (una serie di numeri e lettere che possono trovare sotto Impostazioni > Dettagli Account sull'app, e sotto Impostazioni > API sul sito). Sul sito, puoi anche invitare i tuoi amici via email, che aggiungeremo all'applicazione in un aggiornamento futuro.\n\nSul sito, tu e i tuoi amici potete anche unirvi a una Gilda, che sono chat room pubbliche. Le Gilde saranno aggiunte all'app in un aggiornamento futuro!", "webFaqAnswer5": "Il modo migliore e' quello di invitarli a fare Squadra con te, dal menu' Social > Squadra! Le Squadre possono partecipare alle missioni, combattere i mostri e dividersi le abilita' per aiutarsi a vicenda. Insieme potete inoltre unirvi alle Gilde (Social > Gilde). Le Gilde sono delle chat rivolte ad un interesse condiviso o al raggiungimento di un obiettivo comune, possono essere pubbliche o private. Puoi unirti a tutte le Gilde che desideri ma ad un'unica Squadra.\n

\nPer informazioni piu' dettagliate, puoi guardare sulla pagina wiki [Parties](http://habitrpg.wikia.com/wiki/Party) and [Guilds](http://habitrpg.wikia.com/wiki/Guilds).", "faqQuestion6": "Come ottengo un Animale o una Cavalcatura?", "iosFaqAnswer6": "Dopo il livello 3 sbloccherai il Sistema di Drop. Ogni volta che completi un'attività avrai una possibilità di vincere un Uovo, una Pozione di schiusura o del Cibo. Questi verranno archiviati in Menù > Inventario.\n\nPer far nascere un Animale avrai bisogno di un Uovo e di una Pozione di schiusura. Premi sull'uovo per scegliere la specie che vuoi far schiudere, e seleziona quindi la Pozione di Schiusura per determinare il colore! Torna su Menù > Animali per equipaggiare il tuo nuovo animale al tuo Avatar premendoci sopra.\n\nPuoi anche far evolvere i tuoi Animali in Cavalcature cibandoli in Menù > Animali. Clicca sul Cibo nel riquadro a destra \"Cibo e Selle\", quindi seleziona l'Animale. Dovrai alimentare l'Animale diverse volte prima di farlo diventare una Cavalcatura, ma se riesci a trovare il suo cibo preferito crescerà molto più in fretta. Fai diverse prove o [Spoiler qui](http://habitica.wikia.com/wiki/Food#Food_Preferences). Una volta che hai una Cavalcatura, vai in Menù > Cavalcature e selezionala per equipaggiarla al tuo avatar.\n\nPotrai inoltre ricevere Uova dalle Missioni Animali completandole.(Vedi sotto per saperne di più sulle Missioni)", "webFaqAnswer6": "Dopo il livello 3 sbloccherai il Sistema di Drop. Ogni volta che completi un'attività avrai una possibilità di vincere un Uovo, una Pozione di Schiusura o del Cibo. Questi verranno immagazzinati in Inventario > Mercato.\n

\nPer far nascere un Animale avrai bisogno di un Uovo e di una Pozione di schiusura. Premi sull'uovo per scegliere la specie che vuoi far schiudere, e seleziona quindi la Pozione di Schiusura per determinarne il colore! Vai su Inventario > Animali per equipaggiare il tuo nuovo animale al tuo Avatar cliccandoci sopra.\n

\nPuoi anche far evolvere i tuoi Animali in Cavalcature cibandoli in Inventario > Animali. Clicca su un animale e seleziona quindi un pezzo di Cibo dal menù a destra per dargli da mangiare! Dovrai alimentare l'Animale diverse volte prima di farlo diventare una Cavalcatura, ma se riesci a trovare il suo cibo preferito, crescerà molto più in fretta. Fai diverse prove, o [Spoiler qui](http://habitica.wikia.com/wiki/Food#Food_Preferences). Una volta che hai una Cavalcatura, vai in Inventario > Cavalcature e selezionala per equipaggiarla al tuo avatar.\n

\nPotrai inoltre ricevere Uova dalle Missioni Animali completandole. (Vedi sotto per saperne di più sulle Missioni.)", - "faqQuestion7": "Come faccio a diventare un Guerriero, un Mago, un'Assassino o un Guaritore?", + "faqQuestion7": "Come faccio a diventare un Guerriero, un Mago, un Ladro o un Guaritore?", "iosFaqAnswer7": "Al livello 10, puoi scegliere di diventare un Guerriero, un Mago, un Assassino, o un Guaritore. (Tutti i giocatori iniziano come Guerrieri per impostazione predefinita.) Ogni classe ha diverse opzioni di equipaggiamento, diverse abilità che possono lanciare dopo il livello 11, e diversi vantaggi. I Guerrieri possono facilmente danneggiare i Boss, sopportare più danni dalle loro attività, e contribuire a rendere la loro squadra più forte. Anche i Maghi possono facilmente danneggiare i Boss, così come possono salire di livello velocemente e ripristinare mana per la loro squadra. Gli Assassini guadagnano più oro e trovano più item drop, e possono aiutare la loro squadra a fare lo stesso. Infine, i Guaritori possono curare loro stessi e i loro compagni di squadra.\n\nSe non vuoi scegliere subito una Classe -- per esempio, se stai ancora lavorando per comprare tutto l'equipaggiamento della tua classe attuale -- puoi cliccare \"Decidi più tardi\" e riattivarla successivamente in Menu > Scegli Classe.", "webFaqAnswer7": "Al livello 10, puoi scegliere di diventare un Guerriero, un Mago, un Assassino, o un Guaritore. (Tutti i giocatori iniziano come Guerrieri per impostazione predefinita.) Ogni classe ha diverse opzioni di equipaggiamento, diverse abilità che possono lanciare dopo il livello 11, e diversi vantaggi. I Guerrieri possono facilmente danneggiare i Boss, sopportare più danni dalle loro attività, e contribuire a rendere la loro squadra più forte. Anche i Maghi possono facilmente danneggiare i Boss, così come possono salire di livello velocemente e ripristinare mana per la loro squadra. Gli Assassini guadagnano più oro e trovano più item drop, e possono aiutare la loro squadra a fare lo stesso. Infine, i Guaritori possono curare loro stessi e i loro compagni di squadra.\n

\nSe non vuoi scegliere subito una Classe -- per esempio, se stai ancora lavorando per comprare tutto l'equipaggiamento della tua classe attuale -- puoi cliccare \"Rinuncia\" e riattivarla successivamente in Utente > Statistiche.", "faqQuestion8": "Cos'è la barra blu che appare nell'intestazione dopo il livello 10? ", @@ -39,6 +39,6 @@ "faqQuestion12": "Come combatto un Boss Mondiale?", "iosFaqAnswer12": "I World boss sono mostri speciali che appaiono nella Taverna. Tutti i giocatori attivi sul sito combattono automaticamente questo tipo di boss e ogni attività compiuta e abilità reca danno al Boss. \n\nSi può, allo stesso tempo, avere una normale Sfida. Le tue attività e abilità conteranno sia contro il World boss che contro il boss della sfida che la tua squadra sta portandno avanti.\n\nUn World Boss non potrà mai danneggiare te o il tuo account, in nessun modo. Possiede però una barra indicatrice della rabbia che si riempie quando i giocatori saltano le loro attività giornaliere. Se la barra della collera si riempirà, il World boss attaccherà uno dei personaggio non giocatori del sito, la cui immagine cambierà.\n\nPuoi leggere altri contenuti sui [World boss precendenti](http://habitica.wikia.com/wiki/World_Bosses) sul wiki.", "webFaqAnswer12": "I Boss Mondiali sono mostri speciali che appaiono nella Taverna. Gli utenti attivi Automaticamente combattono il Boss e le loro attività danneggiano il Boss come al solito. \n

\nPuoi anche essere in una missione normale contemporaneamente e le tue attività e abilita' conteranno contro entrambi il Boss mondiale e il Boss/Missione nella tua squadra. \n

\nUn Boss Mondiale non danneggerà mai il tuo conto in qualsiasi modo. Invece, ha una sbarra Rabbia che si riempe quando utenti saltano Dailies. Se la sbarra rabbia e piena , attaccherà uno dei personaggi non giocatori e le loro immagini cambieranno.\n

\nPuoi leggere di più su precedenti boss mondiali [qui] (http://habitica.wikia.com/wiki/World_Bosses)", - "iosFaqStillNeedHelp": "If you have a question that isn't on this list or on the [Wiki FAQ](http://habitica.wikia.com/wiki/FAQ), 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 or on the [Wiki FAQ](http://habitica.wikia.com/wiki/FAQ), come ask in the [Newbies Guild](https://habitica.com/#/options/groups/guilds/5481ccf3-5d2d-48a9-a871-70a7380cee5a)! We're happy to help." + "iosFaqStillNeedHelp": "Se hai una domanda che non è presente in questa lista o nella [Wiki FAQ](http://habitica.wikia.com/wiki/FAQ), vieni a chiederla nella Taverna in Menu > Taverna! Saremo felici di aiutarti.", + "webFaqStillNeedHelp": "Se hai una domanda che non è presente in questa lista o nella [Wiki FAQ](http://habitica.wikia.com/wiki/FAQ), vieni a chiederla nella [Newbies Guild](https://habitica.com/#/options/groups/guilds/5481ccf3-5d2d-48a9-a871-70a7380cee5a)! Saremo felici di aiutarti." } \ No newline at end of file diff --git a/common/locales/it/front.json b/common/locales/it/front.json index 62750992fd..f1238c40aa 100644 --- a/common/locales/it/front.json +++ b/common/locales/it/front.json @@ -124,7 +124,7 @@ "motivate1": "Motivati a fare qualsiasi cosa.", "motivate2": "Organizzati. Motivati. Guadagnaci.", "passConfirm": "Conferma password", - "passMan": "In case you are using a password manager (like 1Password) and have problems logging in, try typing your username and password manually.", + "passMan": "Se stai usando un gestore delle password (come 1Password) ed hai problemi ad effettuare l'accesso, prova scrivendo manualmente il nome utente e la password.", "password": "Password", "playButton": "Gioca", "playButtonFull": "Gioca ad Habitica", @@ -165,7 +165,7 @@ "teams": "Squadre", "terms": "Termini e condizioni", "testimonialHeading": "Cosa dicono gli utenti...", - "localStorageTryFirst": "If you are experiencing problems with Habitica, click the button below to clear local storage for this website (other websites will not be affected). You will need to log in again after doing this, so first be sure that you know your log-in details, which can be found at Settings -> <%= linkStart %>Site<%= linkEnd %>.", + "localStorageTryFirst": "Se stai trovando problemi con Habitica, premi il bottone qui sotto per svuotare i dati locali in questo sito (gli altri non subiranno modifiche). Poi dovrai effettuare di nuovo l'accesso, perciò per prima cosa assicurati di conoscere in anticipo i dettagli del tuo log-in, che puoi trovare in Impostazioni-> <%= linkStart %>Site<%= linkEnd %>.", "localStorageTryNext": "Se il problema rimane, per favore <%= linkStart %>Riferite un Bug<%= linkEnd %> se non lo avete già fatto.", "localStorageClearing": "Vuotare la memoria locale", "localStorageClearingExplanation": "La memoria locale del browser è stata vuotata. Sarete disconnessi e inviati alla pagina iniziale. Per favore, attendete.", @@ -195,9 +195,9 @@ "landingCopy3": "Unisciti a più di <%= userCount %> persone che si divertono migliorando la propria vita.", "alreadyHaveAccount": "Ho già un account!", "getStartedNow": "Comincia ora!", - "altAttrNavLogo": "Habitica home", + "altAttrNavLogo": "Habitica Home", "altAttrLifehacker": "Lifehacker", - "altAttrNewYorkTimes": "The New York Times", + "altAttrNewYorkTimes": "Il New York Times", "altAttrMakeUseOf": "MakeUseOf", "altAttrForbes": "Forbes", "altAttrCnet": "CNet", diff --git a/common/locales/it/gear.json b/common/locales/it/gear.json index db3ea68020..64d8cd302c 100644 --- a/common/locales/it/gear.json +++ b/common/locales/it/gear.json @@ -1,4 +1,5 @@ { + "set": "Set", "weapon": "arma", "weaponBase0Text": "Nessuna arma", "weaponBase0Notes": "Non sei armato.", @@ -69,7 +70,7 @@ "weaponSpecialCriticalText": "Critico Martello Distruggi-Bug", "weaponSpecialCriticalNotes": "Questo campione ha annientato un pericoloso nemico su Github, dove molti guerrieri sono caduti. Adornato con le ossa del Bug, questo martello garantisce poderosi colpi critici. Aumenta la Forza e la Percezione di <%= attrs %>.", "weaponSpecialTridentOfCrashingTidesText": "Tridente delle Maree Fragorose", - "weaponSpecialTridentOfCrashingTidesNotes": "Concede l'abilità di comandare i pesci, e inoltre colpisce con forza le tue attività. Aumenta l'intelligenza di <%= int %>.", + "weaponSpecialTridentOfCrashingTidesNotes": "Conferisce l'abilità di comandare i pesci, e inoltre colpisce con forza le tue attività. Aumenta l'Intelligenza di <%= int %>.", "weaponSpecialYetiText": "Lancia dell'Addestra-Yeti", "weaponSpecialYetiNotes": "Questa lancia ti permette di domare gli yeti! Aumenta la Forza di <%= str %>. Edizione limitata, inverno 2013-2014.", "weaponSpecialSkiText": "Asta del Nevassassino", @@ -142,6 +143,14 @@ "weaponSpecialWinter2016MageNotes": "Le tue mosse sono così fantastiche, devono essere magiche! Aumenta l'Intelligenza di <%= int %> e la Percezione di <%= per %>. Edizione Limitata Equipaggiamento Invernale 2015-2016.", "weaponSpecialWinter2016HealerText": "cannone da coriandoli", "weaponSpecialWinter2016HealerNotes": "YUUHUUUU!!!!!!! BUON PAESE DELLE MERAVIGLIE SUL GHIACCIO!!!!!!!! Aumenta l'Intelligenza di <%= int %>. Edizione Limitata Equipaggiamento Invernale 2015-2016.", + "weaponSpecialSpring2016RogueText": "Bolas di fuoco", + "weaponSpecialSpring2016RogueNotes": "Hai acquisito la padronanza della palla, della clava e del coltello. Ora sei passato a manipolare il fuoco! Awoo! Aumenta la forza di <%= str %>. Edizione limitata, primavera 2016.", + "weaponSpecialSpring2016WarriorText": "Maglio di Formaggio", + "weaponSpecialSpring2016WarriorNotes": "Nessuno ha più amici del topo dei formaggi teneri. Aumenta la forza di <% = str%>. Edizione limitata Primavera 2016", + "weaponSpecialSpring2016MageText": "Bastone dei Campanelli", + "weaponSpecialSpring2016MageNotes": "Abra-gat-abra! Così abbagliante che potresti ipnotizzare te stesso! Ooh ... Tintinna ... Accresce l'intelligenza di <%= int %> e la Percezione di <%= per %>. Edizione limitata Primavera 2016", + "weaponSpecialSpring2016HealerText": "Bacchetta del Fiore Primaverile", + "weaponSpecialSpring2016HealerNotes": "Con un cenno e un occhiolino, fai fiorire campi e foreste! O dai un colpetto sulla testa dei topi dispettosi. Aumenta l’Intelligenza di <% = int%>. Edizione limitata Primavera 2016.\n", "weaponMystery201411Text": "Forcone dei festeggiamenti", "weaponMystery201411Notes": "Infilza i tuoi nemici o inforca i tuoi cibi preferiti - questo versatile forcone può fare di tutto! Non conferisce alcun bonus. Oggetto per abbonati, novembre 2014.", "weaponMystery201502Text": "Scintillante Scettro Alato dell'Amore e anche della Verità", @@ -155,7 +164,7 @@ "weaponArmoireLunarSceptreText": "Scettro Lunare Lenitivo", "weaponArmoireLunarSceptreNotes": "Il potere curativo di questa bacchetta cresce e diminuisce. Aumenta la Costituzione di <%= con %> e l'Intelligenza di <%= int %>. Baule Incantato: Set Luna Lenitiva (Oggetto 3 di 3)", "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)", + "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 Cowboy (Oggetto 3 di 3).", "weaponArmoireMythmakerSwordText": "Spada del Costruttore di Leggende", "weaponArmoireMythmakerSwordNotes": "Nonostante possa sembrare umile, questa spada ha forgiato numerosi eroi mitici. Aumenta la Percezione e la Forza di <%= attrs %> ciascuna. Baule Incantato: Set della Toga Dorata (Oggetto 3 di 3).", "weaponArmoireIronCrookText": "Uncino di Ferro", @@ -169,13 +178,17 @@ "weaponArmoireCrystalCrescentStaffText": "Bastone della Mezzaluna di Cristallo", "weaponArmoireCrystalCrescentStaffNotes": "Evoca il potere della luna crescente con questo splendente bastone! Aumenta l'Intelligenza e la Forza di <%= attrs %> ciascuna. Baule Incantato: Set della Mezzaluna di Cristallo (Oggetto 3 di 3).", "weaponArmoireBlueLongbowText": "Arco Lungo Blu", - "weaponArmoireBlueLongbowNotes": "Pronti... Mirare... Fuoco! Questo arco ha un grande raggio d'azione. Aumenta la Percezione di <%= per %>, la Costituzione di <%= con %> e la Forza di <%= str %>. Scrigno Incantato: oggetto indipendente.", + "weaponArmoireBlueLongbowNotes": "Pronti... Mirare... Fuoco! Questo arco ha un grande raggio d'azione. Aumenta la Percezione di <%= per %>, la Costituzione di <%= con %> e la Forza di <%= str %>. Baule Incantato: Oggetto indipendente.", "weaponArmoireGlowingSpearText": "Lancia Iridescente", - "weaponArmoireGlowingSpearNotes": "Questa lancia ipnotizza i compiti selvaggi, così tu puoi attaccarli. IAccresce la Forza di <%= str %>. Armatura Incantata: Oggetto indipendente", - "weaponArmoireBarristerGavelText": "Barrister Gavel", - "weaponArmoireBarristerGavelNotes": "Order! Increases Strength and Constitution by <%= attrs %> each. Enchanted Armoire: Barrister Set (Item 3 of 3).", - "weaponArmoireJesterBatonText": "Jester Baton", - "weaponArmoireJesterBatonNotes": "With a wave of your baton and some witty repartee, even the most complicated situations become clear. Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Jester Set (Item 3 of 3).", + "weaponArmoireGlowingSpearNotes": "Questa lancia ipnotizza i compiti selvaggi, così tu puoi attaccarli. Aumenta la Forza di <%= str %>. Baule Incantato: Oggetto indipendente.", + "weaponArmoireBarristerGavelText": "Martelletto del Magistrato", + "weaponArmoireBarristerGavelNotes": "Ordine! Aumenta la Forza e la Costituzione di <%= attrs %> ognuna. Baule Incantato: Set del Magistrato (Oggetto 3 di 3).", + "weaponArmoireJesterBatonText": "Bastone del Giullare", + "weaponArmoireJesterBatonNotes": "Con un movimento del tuo bastone e qualche replica arguta, anche le situazioni più complicate diventano chiare. Aumenta l'Intelligenza e la Percezione di <%= attrs %> ognuna. Baule Incantato: Set del Giullare (Oggetto 3 di 3).", + "weaponArmoireMiningPickaxText": "Piccone da Minatore", + "weaponArmoireMiningPickaxNotes": "Estrai quanto più oro possibile dalle tue attività! Aumenta la Percezione di <%= per %>. Baule Incantato: Set del Minatore (Oggetto 3 di 3).", + "weaponArmoireBasicLongbowText": "Basic Longbow", + "weaponArmoireBasicLongbowNotes": "A serviceable hand-me-down bow. Increases Strength by <%= str %>. Enchanted Armoire: Basic Archer Set (Item 1 of 3).", "armor": "armatura", "armorBase0Text": "Vestiti semplici", "armorBase0Notes": "Vestiario comune. Non conferisce alcun bonus.", @@ -239,8 +252,8 @@ "armorSpecialBirthdayNotes": "Buon compleanno, Habitica! Indossa queste Assurde Vesti da Festa per celebrare questo giorno fantastico. Non conferisce alcun bonus.", "armorSpecialBirthday2015Text": "Bizzarre Vesti da Festa", "armorSpecialBirthday2015Notes": "Buon compleanno, Habitica! Indossa queste Bizzarre Vesti da Festa per celebrare questo giorno fantastico. Non conferisce alcun bonus.", - "armorSpecialBirthday2016Text": "Ridiculous Party Robes", - "armorSpecialBirthday2016Notes": "Happy Birthday, Habitica! Wear these Ridiculous Party Robes to celebrate this wonderful day. Confers no benefit.", + "armorSpecialBirthday2016Text": "Ridicole Vesti da Festa", + "armorSpecialBirthday2016Notes": "Buon compleanno, Habitica! Indossa queste Ridicole Vesti da Festa per celebrare questa meravigliosa giornata. Non conferisce alcun bonus.", "armorSpecialGaymerxText": "Armatura del Guerriero Arcobaleno", "armorSpecialGaymerxNotes": "Per celebrare la Conferenza del 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.", "armorSpecialSpringRogueText": "Tuta Felina Elegante", @@ -307,6 +320,14 @@ "armorSpecialWinter2016MageNotes": "I maghi più saggi si coprono bene contro il vento invernale. Aumenta l'Intelligenza di <%= int %> . Edizione Limitata Equipaggiamento Invernale 2015-2016.", "armorSpecialWinter2016HealerText": "Mantello Fatato delle Feste", "armorSpecialWinter2016HealerNotes": "Le Fate delle Feste si avvolgono nelle ali del corpo per proteggersi, mentre usano le ali della testa per catturare i venti contrari e volare per Habitica fino a 100 miglia all'ora, consegnando regali e spargendo coriandoli dappertutto. Che bello. Aumenta la Costituzione di <%= con % >. Edizione Limitata Equipaggiamento Invernale 2015-2016.", + "armorSpecialSpring2016RogueText": "Mimetizzazione canina", + "armorSpecialSpring2016RogueNotes": "Un cucciolo intelligente sa scegliere una sembianza più brillante per mimetizzarsi quando tutto è verde e vibrante. Aumenta la percezione di <% = per%>. Edizione limitata Primavera 2016.", + "armorSpecialSpring2016WarriorText": "Cotta potente", + "armorSpecialSpring2016WarriorNotes": "Sei piccolo, ma fiero. Aumenta la Costituzione di <%= con %>. Edizione limitata Primavera 2016", + "armorSpecialSpring2016MageText": "Vesti del Grande Malkin", + "armorSpecialSpring2016MageNotes": "Vivacemente colorato, cosi non potrai essere scambiato per un Negroratto. Aumenta l’Intelligenza di <% = int%>. Edizione limitata Primavera 2016.", + "armorSpecialSpring2016HealerText": "Puffose braghette da coniglio", + "armorSpecialSpring2016HealerNotes": "Hoppalallà! Saltelli di collina in collina guarendo chi ne ha bisogno. Aumenta la Costituzione di <%= con %>. Edizione limitata Primavera 2016.", "armorMystery201402Text": "Vesti del Messaggero", "armorMystery201402Notes": "Lucenti e robuste, queste vesti hanno diverse tasche per trasportare le lettere. Non conferisce alcun bonus. Oggetto per abbonati, febbraio 2014.", "armorMystery201403Text": "Armatura del Proteggiforeste", @@ -341,6 +362,8 @@ "armorMystery201511Notes": "Considerando che questa armatura è stata intagliata direttamente da un tronco magico, è sorprendentemente comoda. Non conferisce alcun bonus. Oggetto per abbonati, novembre 2015.", "armorMystery201512Text": "Armatura del Fuoco Gelido", "armorMystery201512Notes": "Evoca le gelide fiamme dell'inverno! Non conferisce alcun bonus. Oggetto per Abbonati, Dicembre 2015.", + "armorMystery201603Text": "Completo della Fortuna", + "armorMystery201603Notes": "Questo completo è cucito con migliaia di quadrifogli! Non conferisce benefici. Oggetto per abbonati, marzo 2016.", "armorMystery301404Text": "Completo Steampunk", "armorMystery301404Notes": "Raffinato, a dir poco impeccabile! Non conferisce alcun bonus. Oggetto per abbonati, febbraio 3015.", "armorArmoireLunarArmorText": "Armatura Lunare Lenitiva", @@ -362,11 +385,15 @@ "armorArmoireCrystalCrescentRobesText": "Vesti della Mezzaluna di Cristallo", "armorArmoireCrystalCrescentRobesNotes": "Queste vesti magiche sono luminescenti di notte. Aumenta la Costituzione e la Percezione di <%= attrs %> ciascuna. Baule Incantato: Set della Mezzaluna di Cristallo (Oggetto 2 di 3).", "armorArmoireDragonTamerArmorText": "Armatura del Domatore di Draghi", - "armorArmoireDragonTamerArmorNotes": "Questa robusta armatura è impenetrabile alle fiamme. Accresce la Costituzione di <%= con %>. Armatura Incantata: Completo del Domatore di Draghi : (Oggetto 3 di 3)", - "armorArmoireBarristerRobesText": "Barrister Robes", - "armorArmoireBarristerRobesNotes": "Very serious and stately. Increases Constitution by <%= con %>. Enchanted Armoire: Barrister Set (Item 2 of 3).", - "armorArmoireJesterCostumeText": "Jester Costume", - "armorArmoireJesterCostumeNotes": "Tra-la-la! Despite the look of this costume, you are no fool. Increases Intelligence by <%= int %>. Enchanted Armoire: Jester Set (Item 2 of 3).", + "armorArmoireDragonTamerArmorNotes": "Questa robusta armatura è impenetrabile alle fiamme. Aumenta la Costituzione di <%= con %>. Baule Incantato: Set del Domatore di Draghi (Oggetto 3 di 3).", + "armorArmoireBarristerRobesText": "Toga del Magistrato", + "armorArmoireBarristerRobesNotes": "Molto seria e maestosa. Aumenta la Costituzione di <%= con %>. Baule Incantato: Set del Magistrato (Oggetto 2 di 3).", + "armorArmoireJesterCostumeText": "Costume del Giullare", + "armorArmoireJesterCostumeNotes": "Trallallà! A dispetto dell'aspetto, non sei affatto uno sciocco. Aumenta l'Intelligenza di <%= int %>. Baule Incantato: Set del Giullare (Oggetto 2 di 3).", + "armorArmoireMinerOverallsText": "Tuta da lavoro da Minatore", + "armorArmoireMinerOverallsNotes": "Può sembrare logora, ma è incantata per non sporcarsi. Aumenta la Costituzione di <%= con %>. Baule Incantato: Set del Minatore (Oggetto 2 di 3).", + "armorArmoireBasicArcherArmorText": "Basic Archer Armor", + "armorArmoireBasicArcherArmorNotes": "This camouflaged vest lets you slip unnoticed through the forests. Increases Perception by <%= per %>. Enchanted Armoire: Basic Archer Set (Item 2 of 3).", "headgear": "copricapo", "headBase0Text": "Nessun elmo", "headBase0Notes": "Non indossi nessun copricapo.", @@ -496,6 +523,14 @@ "headSpecialWinter2016MageNotes": "Impedisce che la neve ti vada negli occhi mentre lanci incantesimi. Aumenta la Percezione di <%= per %> Edizione Limitata Equipaggiamento Invernale 2015-2016.", "headSpecialWinter2016HealerText": "Elmo Ali di Fata", "headSpecialWinter2016HealerNotes": "Questealisbattonocosìvelocementechediventanoindistinte! Aumenta l'Intelligenza di <%= int %>. Edizione Limitata Equipaggiamento Invernale 2015-2016.", + "headSpecialSpring2016RogueText": "Buona maschera canina", + "headSpecialSpring2016RogueNotes": "Auuuuh! Che tenero cucciolotto! Vieni qui e lasciati grattare la testa.... Hei! dove è andato tutto il mio oro? Aumenta la percezione di <% = per%>. Edizione limitata Primavera 2016.", + "headSpecialSpring2016WarriorText": "Elmo della Guardia Topo", + "headSpecialSpring2016WarriorNotes": "Mai più ti batteranno in testa! Lascia che ci provino! Aumenta la Forza di <%= str %>. Edizione limitata, primavera 2016.", + "headSpecialSpring2016MageText": "Cappello del Grande Malkin", + "headSpecialSpring2016MageNotes": "Apparato che ti pone al di sopra delle semplici piste da maghi del mondo. Aumenta la Percezione di <%= per %>. Edizione limitata, primavera 2016.", + "headSpecialSpring2016HealerText": "Diadema Bocciolo", + "headSpecialSpring2016HealerNotes": "Abbaglia con il potenziale di una nuova vita pronta a esplodere. Aumenta l’Intelligenza di <% = int%>. Edizione limitata Primavera 2016.", "headSpecialGaymerxText": "Elmo del Guerriero Arcobaleno", "headSpecialGaymerxNotes": "Per celebrare la Conferenza del GaymerX, questa speciale elmetto è decorato con un raggiante e colorato tema arcobaleno! Il GaymerX è un evento dedicato al gaming e al \"LGBTQ\", ed è aperto a tutti.", "headMystery201402Text": "Elmo Alato", @@ -524,8 +559,12 @@ "headMystery201511Notes": "Conta il numero di anelli per sapere quanto è vecchia questa corona. Non conferisce alcun bonus. Oggetto per abbonati, novembre 2015.", "headMystery201512Text": "Fiamma Invernale", "headMystery201512Notes": "Queste fiamme bruciano fredde di puro intelletto. Oggetto per Abbonati Dicembre 2015", - "headMystery201601Text": "Helm of True Resolve", - "headMystery201601Notes": "Stay resolute, brave champion! Confers no benefit. January 2016 Subscriber Item.", + "headMystery201601Text": "Elmo dell'Autentica Determinazione", + "headMystery201601Notes": "Sii Risoluto, fiero campione! Non conferisce alcun bonus. Oggetto per abbonati, Gennaio 2016", + "headMystery201602Text": "Cappuccio del Rubacuori", + "headMystery201602Notes": "Nascondi la tua identità da tutti i tuoi ammiratori. Non conferisce alcun bonus. Oggetto per abbonati, febbraio 2016.", + "headMystery201603Text": "Cappello della Fortuna", + "headMystery201603Notes": "Questo cappello è un amuleto magico portafortuna. Non conferisce alcun bonus. Oggetto per abbonati, marzo 2016.", "headMystery301404Text": "Cilindro Elegante", "headMystery301404Notes": "Un cilindro per i più fini gentiluomini! Oggetto per abbonati, gennaio 3015. Non conferisce alcun bonus.", "headMystery301405Text": "Cilindro Base", @@ -539,7 +578,7 @@ "headArmoireGladiatorHelmText": "Elmo da Gladiatore", "headArmoireGladiatorHelmNotes": "Per essere un gladiatore non devi solo essere forte... Ma anche astuto. Aumenta l'Intelligenza di <%= int%> e la Percezione di <%= per %>. Baule Incantato: Set da Gladiatore (Oggetto 1 di 3).", "headArmoireRancherHatText": "Cappello da Cowboy", - "headArmoireRancherHatNotes": "Raggruppate i vostri animali e addestrate le vostre cavalcature mentre indossate questo magico Cappello Ranchero! Accresce la Forza di <%= str %>, la Percezione di <%= per %>e l’Intelligenza di <%= int %>. Armatura incantata: set del Ranchero (1 di 3). ", + "headArmoireRancherHatNotes": "Raggruppa i tuoi animali e addestra le tue cavalcature mentre indossi questo magico Cappello da Cowboy! Aumenta la Forza di <%= str %>, la Percezione di <%= per %>, e l’Intelligenza di <%= int %>. Baule Incantato: Set del Cowboy (Oggetto 1 di 3). ", "headArmoireBlueHairbowText": "Fiocchetto Blu", "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", @@ -565,11 +604,15 @@ "headArmoireCrystalCrescentHatText": "Cappello della Mezzaluna di Cristallo", "headArmoireCrystalCrescentHatNotes": "Il disegno su questo cappello cresce e cala seguendo le fasi della luna. Aumenta l'Intelligenza e la Percezione di <%= attrs %> ciasuna. Baule Incantato: Set della Mezzaluna di Cristallo (Oggetto 1 di 3).", "headArmoireDragonTamerHelmText": "Elmo del Domatore di Draghi", - "headArmoireDragonTamerHelmNotes": "Assomigli proprio ad un drago. Il camuffamento perfetto... Accresce l'Intelligenza di <%= int %>. Armatura Incantata: Completo del Domatore di Draghi : (Oggetto 1 di 3)", - "headArmoireBarristerWigText": "Barrister Wig", - "headArmoireBarristerWigNotes": "This bouncy wig is enough to frighten away even the fiercest foe. Increases Strength by <%= str %>. Enchanted Armoire: Barrister Set (Item 1 of 3).", - "headArmoireJesterCapText": "Jester Cap", - "headArmoireJesterCapNotes": "The bells on this hat might distract your opponents, but they just help you focus. Increases Perception by <%= per %>. Enchanted Armoire: Jester Set (Item 1 of 3).", + "headArmoireDragonTamerHelmNotes": "Assomigli proprio ad un drago. Il camuffamento perfetto... Aumenta l'Intelligenza di <%= int %>. Baule Incantato: Set del Domatore di Draghi (Oggetto 1 di 3).", + "headArmoireBarristerWigText": "Parrucca del Magistrato", + "headArmoireBarristerWigNotes": "Questa ondulata parrucca è sufficiente a spaventare a morte anche il più coriaceo avversario. Aumenta la Forza di <%= str %>. Baule Incantato: Set del Magistrato (Oggetto 1 di 3).", + "headArmoireJesterCapText": "Berretto del Giullare", + "headArmoireJesterCapNotes": "Le campanelle su questo cappello potrebbero distrarre i vostri avversari, ma aiutano voi a concentrarvi. Aumenta la Percezione di <%= per %>. Baule Incantato: Set del Giullare (Oggetto 1 di 3).", + "headArmoireMinerHelmetText": "Elmetto da Minatore", + "headArmoireMinerHelmetNotes": "Proteggi la tua testa dalle attività che cadono! Aumenta l'Intelligenza di<%= int %>. Baule Incantato: Set del Minatore (Oggetto 1 di 3).", + "headArmoireBasicArcherCapText": "Basic Archer Cap", + "headArmoireBasicArcherCapNotes": "No archer would be complete without a jaunty cap! Increases Perception by <%= per %>. Enchanted Armoire: Basic Archer Set (Item 3 of 3).", "offhand": "oggetto per mano da scudo", "shieldBase0Text": "Nessun equipaggiamento nella mano da scudo", "shieldBase0Notes": "Nessuno scudo o arma secondaria.", @@ -653,8 +696,14 @@ "shieldSpecialWinter2016WarriorNotes": "Usa questa slitta per bloccare gli attacchi, o cavalcalo trionfalmente in battaglia! Aumenta la Costituzione di <%= con %>. Edizione limitata Equipaggiamento Invernale 2015-2016.", "shieldSpecialWinter2016HealerText": "Regalo Pixie", "shieldSpecialWinter2016HealerNotes": "Aprilo aprilo aprilo aprilo aprilo aprilo!!!!!!!!! Aumenta la Costituzione di <%= con %>. Edizione Limitata Equipaggiamento Invernale 2015-2016.", - "shieldMystery201601Text": "Resolution Slayer", - "shieldMystery201601Notes": "This blade can be used to parry away all distractions. Confers no benefit. January 2016 Subscriber Item.", + "shieldSpecialSpring2016RogueText": "Bolas di fuoco", + "shieldSpecialSpring2016RogueNotes": "Hai padroneggiato la palla, la clava ed il coltello. Ora sei passato a destreggiarti col fuoco! Awoo! Aumenta la Forza di <%= str %>. Edizione limitata, primavera 2016.", + "shieldSpecialSpring2016WarriorText": "Ruota di formaggio", + "shieldSpecialSpring2016WarriorNotes": "Hai sfidato trappole diaboliche per procurarti questo alimentoChe amplifica la difesa. Aumenta la Costituzione di <%= con %>. Edizione limitata Primavera 2016.", + "shieldSpecialSpring2016HealerText": "Scudo Floreale", + "shieldSpecialSpring2016HealerNotes": "Il pesce d'aprile sostiene che questo piccolo scudo blocca i semi luccicanti. Non credetegli. Aumenta la Costituzione di <%= con %>. Edizione limitata Primavera 2016.", + "shieldMystery201601Text": "Risoluzione dell'Assassino", + "shieldMystery201601Notes": "Questa lama può essere usata per parare ogni distrazione. Non conferisce alcun bonus. Oggetto per abbonati, Gennaio 2016", "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", @@ -664,7 +713,9 @@ "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).", "shieldArmoireDragonTamerShieldText": "Scudo del Domatore di Draghi", - "shieldArmoireDragonTamerShieldNotes": "Distrai i nemici con questo Scudo a forma di drago. Accresce la Percezione di <%= per %>. Armatura Incantata: Completo del Domatore di Draghi : (Oggetto 2 di 3)", + "shieldArmoireDragonTamerShieldNotes": "Distrai i nemici con questo scudo a forma di drago. Aumenta la Percezione di <%= per %>. Baule Incantato: Set del Domatore di Draghi (Oggetto 2 di 3).", + "shieldArmoireMysticLampText": "Lanterna Mistica", + "shieldArmoireMysticLampNotes": "Illumina le caverne più buie con questa lanterna mistica! Aumenta la Percezione di <%= per %>. Baule Incantato: Oggetto Indipendente.", "back": "Accessorio da schiena.", "backBase0Text": "Nessun accessorio da schiena", "backBase0Notes": "Nessun accessorio da schiena.", @@ -680,6 +731,8 @@ "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. ", + "backMystery201602Text": "Mantello del Rubacuori", + "backMystery201602Notes": "Con un fruscio del tuo mantello, i tuoi nemici cadono ai tuoi piedi. Non conferisce alcun beneficio. Oggetto per abbonati, febbraio 2016.", "backSpecialWonderconRedText": "Mantello Maestoso", "backSpecialWonderconRedNotes": "Fruscia con forza ed eleganza. Non conferisce alcun bonus. Edizione speciale da convegno.", "backSpecialWonderconBlackText": "Mantello Furtivo", @@ -726,8 +779,16 @@ "headAccessorySpecialSpring2015MageNotes": "Queste orecchie ascoltano con attenzione, nel caso che qualche mago stia rivelando dei segreti. Non conferisce alcun bonus. Edizione limitata, primavera 2015.", "headAccessorySpecialSpring2015HealerText": "Orecchie Verdi Feline", "headAccessorySpecialSpring2015HealerNotes": "Queste graziose orecchie da gattino renderanno gli altri verdi dall'invidia. Non conferisce alcun bonus. Edizione limitata, primavera 2015.", + "headAccessorySpecialSpring2016RogueText": "Orecchie da Cane Verdi", + "headAccessorySpecialSpring2016RogueNotes": "Con queste, puoi rintracciare i maghi ingannevoli anche se si rendono invisibili! Non conferisce alcun bonus. Edizione limitata, primavera 2016.", + "headAccessorySpecialSpring2016WarriorText": "Orecchie da Topo Rosse", + "headAccessorySpecialSpring2016WarriorNotes": "Per sentire meglio la tua colonna sonora attraverso campi di battaglia clamorosi. Non conferisce alcun bonus. Edizione limitata, primavera 2016.", + "headAccessorySpecialSpring2016MageText": "Orecchie da Gatto Gialle", + "headAccessorySpecialSpring2016MageNotes": "Queste orecchie appuntite possono individuare il basso ronzio del Mana circostante, o il rumore smorzato dei passi di un Assassino. Non conferisce alcun bonus. Edizione limitata, primavera 2016.", + "headAccessorySpecialSpring2016HealerText": "Orecchie da Coniglio Viola", + "headAccessorySpecialSpring2016HealerNotes": "Si distinguono come bandiere sopra la mischia, così che gli altri sappiano dove correre per cercare aiuto. Non conferisce alcun bonus. Edizione limitata, primavera 2016.", "headAccessoryBearEarsText": "Orecchie da Orso", - "headAccessoryBearEarsNotes": "Queste orecchie ti faranno somigliare ad un coccoloso orso! Non conferisce alcun bonus.", + "headAccessoryBearEarsNotes": "Queste orecchie ti fanno sembrare un orso coraggioso! Non conferisce alcun bonus.", "headAccessoryCactusEarsText": "Orecchie da Cactus", "headAccessoryCactusEarsNotes": "Queste orecchie ti faranno somigliare ad uno spinoso cactus! Non conferisce alcun bonus.", "headAccessoryFoxEarsText": "Orecchie da Volpe", @@ -754,6 +815,8 @@ "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.", + "headAccessoryArmoireComicalArrowText": "Comical Arrow", + "headAccessoryArmoireComicalArrowNotes": "This whimsical item doesn't provide a stat boost, but it sure is good for a laugh! Confers no benefit. Enchanted Armoire: Independent Item.", "eyewear": "Occhiali", "eyewearBase0Text": "Nessuna benda", "eyewearBase0Notes": "Nessun occhiale o benda.", diff --git a/common/locales/it/generic.json b/common/locales/it/generic.json index 15f52a9f66..1cd9ed6db1 100644 --- a/common/locales/it/generic.json +++ b/common/locales/it/generic.json @@ -100,7 +100,7 @@ "errorUpCase": "ERRORE:", "newPassSent": "Nuova password inviata.", "serverUnreach": "Il server non è attualmente raggiungibile.", - "requestError": "Oh no, c'é stato un errore! Per favore, ricarica la pagina, la tua ultima azione potrebbe non essere stata salvata correttamente.", + "requestError": "Oh no, c'é stato un errore! Per favore, ricarica la pagina, la tua ultima azione potrebbe non essere stata salvata correttamente.", "seeConsole": "Se l'errore persiste, per favore segnalalo in Aiuto > Segnala un bug. Se sai come utilizzare la console del tuo browser, per favore allega eventuali messaggi di errore.", "error": "Errore", "menu": "Menù", @@ -116,7 +116,7 @@ "audioTheme_luneFoxTheme": "Tema di LuneFox", "askQuestion": "Fai una domanda", "reportBug": "Segnala un bug", - "HabiticaWiki": "The Habitica Wiki", + "HabiticaWiki": "La wiki di Habitica", "HabiticaWikiFrontPage": "http://habitica.wikia.com/wiki/Habitica_Wiki", "contributeToHRPG": "Contribuisci a migliorare Habitica", "overview": "Panoramica per nuovi utenti (in inglese)", @@ -137,6 +137,8 @@ "achievementStressbeastText": "Ha contribuito alla sconfitta dell'Abominevole Mostro dello Stress durante l'evento Winter Wonderland 2014!", "achievementBurnout": "Eroe dei Campi Fiorenti", "achievementBurnoutText": "Ha contribuito alla sconfitta degli Spiriti dell'Esaurimento durante l'evento Festival d'Autunno 2015!", + "achievementBewilder": "Savior of Mistiflying", + "achievementBewilderText": "Helped defeat the Be-Wilder during the 2016 Spring Fling Event!", "checkOutProgress": "Guarda i miei progressi su Habitica!", "cardReceived": "Hai ricevuto una cartolina!", "cardReceivedFrom": "<%= cardType %> da <%= userName %>", @@ -158,12 +160,12 @@ "thankyou3": "Hai tutta la mia gratitudine!", "thankyouCardAchievementTitle": "Grandemente Grato", "thankyouCardAchievementText": "Grazie per aver espresso la tua gratitudine! Inviate o ricevute <%= cards %> cartoline-grazie.", - "birthdayCard": "Birthday Card", - "birthdayCardExplanation": "You both receive the Birthday Bonanza achievement!", - "birthdayCardNotes": "Send a birthday card to a party member.", - "birthday0": "Happy birthday to you!", - "birthdayCardAchievementTitle": "Birthday Bonanza", - "birthdayCardAchievementText": "Many happy returns! Sent or received <%= cards %> birthday cards.", + "birthdayCard": "Cartolina di compleanno", + "birthdayCardExplanation": "Ricevete entrambi un Superbonus Compleanno", + "birthdayCardNotes": "Invia una cartolina di compleanno a un compagno di squadra.", + "birthday0": "Tanti auguri a te!", + "birthdayCardAchievementTitle": "Superbonus Compleanno", + "birthdayCardAchievementText": "Cento di questi giorni! Mandati o ricevuti <%= cards %> biglietti di compleanno", "streakAchievement": "Hai guadagnato una Medaglia Serie!", "firstStreakAchievement": "Serie di 21 giorni", "streakAchievementCount": "<%= streaks %> Serie di 21 giorni", @@ -175,5 +177,6 @@ "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!" + "achievementShare": "Ho guadagnato una nuova medaglia in Habitica!", + "orderBy": "Ordina per <%= item %>" } \ No newline at end of file diff --git a/common/locales/it/groups.json b/common/locales/it/groups.json index f3d07eb313..1b5f6a57d4 100644 --- a/common/locales/it/groups.json +++ b/common/locales/it/groups.json @@ -1,5 +1,5 @@ { - "tavern": "Taverna", + "tavern": "Chat della Taverna", "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.", @@ -101,7 +101,7 @@ "inbox": "Messaggi", "abuseFlag": "Segnala violazione delle linee guida della community", "abuseFlagModalHeading": "Segnalare <%= name %> per violazione?", - "abuseFlagModalBody": "Sei sicuro di voler segnalare questo post? Dovresti segnalare SOLO post che violano le <%= firstLinkStart %>Linee guida della community<%= linkEnd %> e/o i <%= secondLinkStart %>Termini del Servizio<%= linkEnd %>. Segnalare inappropriatamente un post è una violazione delle linee guida della community e può essere considerata come un'infrazione da parte tua. Esempi di ragioni per cui è opportuno segnalare un post:


", + "abuseFlagModalBody": "Sei sicuro di voler segnalare questo post? Dovresti segnalare SOLO i posti che violano le <%= firstLinkStart %>Linee guida della Community<%= linkEnd %> e/o i <%= secondLinkStart %>Termini di Servizio<%= linkEnd %>. Segnalare impropriamente un post viola le Linee guida della Community e può essere considerata come un'infrazione da parte tua. Motivazioni adeguate per segnalare un post possono essere:

", "abuseFlagModalButton": "Segnala", "abuseReported": "Grazie di aver segnalato questa violazione. I moderatori sono stati avvertiti.", "abuseAlreadyReported": "Hai già segnalato questo messaggio.", @@ -147,5 +147,9 @@ "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": "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." + "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.", + "partyUpName": "Party Up", + "partyOnName": "Party On", + "partyUpAchievement": "Ti sei unito ad una Squadra con un'altra persona! Divertiti a combattere mostri e a sostenervi a vicenda.", + "partyOnAchievement": "Ti sei unito ad una Squadra con almeno quattro persone! Goditi la tua maggiore responsabilità mentre ti unisci con i tuoi amici per sconfiggere i tuoi nemici!" } \ No newline at end of file diff --git a/common/locales/it/limited.json b/common/locales/it/limited.json index 92480ef56e..3566e899b9 100644 --- a/common/locales/it/limited.json +++ b/common/locales/it/limited.json @@ -67,6 +67,10 @@ "witchyWizardSet": "Magistregone (Mago)", "mummyMedicSet": "Medico Mummia (Guaritore)", "vampireSmiterSet": "Vampiro Castigatore (Assassino)", + "bewareDogSet": "Cane Attento (Guerriero)", + "magicianBunnySet": "Coniglio del Mago (Mago)", + "comfortingKittySet": "Gattino Confortante (Guaritore)", + "sneakySqueakerSet": "Roditore Furtivo (Assassino)", "fallEventAvailability": "Disponibile fino al 31 ottobre", "winterEventAvailability": "Disponibili fino al 31 dicembre" } \ No newline at end of file diff --git a/common/locales/it/npc.json b/common/locales/it/npc.json index f2da607ffa..0f349e70a8 100644 --- a/common/locales/it/npc.json +++ b/common/locales/it/npc.json @@ -35,7 +35,7 @@ "amazonInstructions": "Clicca sul bottone per pagare usando Amazon Payments", "paymentMethods": "Paga utilizzando", "classGear": "Equipaggiamento per Classi", - "classGearText": "Per prima cosa: non preoccuparti! Il tuo vecchio equipaggiamento è nel tuo inventario, ora stai indossando quello da <%= klass %> apprendista. Indossare un equipaggiamento apposito per la tua classe conferisce un bonus del 50% alle tue statistiche. In ogni caso, sentiti libero di tornare al tuo vecchio equipaggiamento.", + "classGearText": "Per prima cosa: niente panico! Il tuo vecchio equipaggiamento è nel tuo inventario, e ora stai indossando l'equipaggiamento da apprendista della tua nuova classe. Indossare l'equipaggiamento della tua classe conferisce alle tue statistiche un bonus del 50%. In ogni caso, sentiti libero di tornare al tuo vecchio equipaggiamento.", "classStats": "Queste sono le tue statistiche di classe; influenzano l'andamento del gioco. Ogni volta che sali di livello, ottieni un punto da assegnare ad una particolare statistica. Passa il cursore su ogni statistica per avere maggiori informazioni.", "autoAllocate": "Assegnazione automatica dei punti", "autoAllocateText": "Se l'opzione \"allocazione automatica\" è selezionata, il tuo avatar guadagna automaticamente statistiche basate sugli attributi delle attività che completi, che puoi trovare in ATTIVITA' > Modifica > Avanzate > Attributi. Per esempio, se vai spesso in palestra, e la tua Daily \"Palestra\" è impostata sull'attributo \"Fisico\", guadagnerai Forza automaticamente.", @@ -45,7 +45,7 @@ "moreClass": "Per avere maggiori informazioni sul sistema delle classi, vedi", "tourWelcome": "Benvenuto ad Habitica! Questa è la tua lista deile cose da fare (To-Do). Spunta un'attività per continuare!", "tourExp": "Ottimo lavoro! Completare un'attività ti fa guadagnare Esperienza ed Oro!", - "tourDailies": "Questa colonna è per le Daily. Per procedere, inserisci un'attività che dovresti fare ogni giorno! Esempi di Daily: Rifai il letto, Usa il filo interdentale, Controlla le email", + "tourDailies": "Questa colonna è per le Daily: attività quotidiane. Per procedere, inserisci un compito che dovresti fare tutti i giorni! Daily di esempio: Fare il letto, Usare il filo interdentale, Controllare le email di lavoro", "tourCron": "Splendido! Le tue Daily si resetteranno ogni giorno.", "tourHP": "Fai attenzione! Se non completi una Daily entro mezzanotte, ti danneggerà!", "tourHabits": "Questa colonna è per la buone e cattive abitudini (Habit) con cui hai a che fare diverse volte al giorno! Per procedere, clicca sulla matita per modificare i nomi, poi clicca sull'icona con la spunta per salvare le tue modifiche.", diff --git a/common/locales/it/pets.json b/common/locales/it/pets.json index e38789c5b3..30532bc78a 100644 --- a/common/locales/it/pets.json +++ b/common/locales/it/pets.json @@ -19,6 +19,7 @@ "orca": "Orca", "royalPurpleGryphon": "Grifone Viola Reale", "phoenix": "Fenice", + "bumblebee": "Bumblebee", "rarePetPop1": "Clicca sulla zampa d'oro per scoprire come ottenere questo raro animale contribuendo a migliorare Habitica!", "rarePetPop2": "Come ottenere questo animale?", "potion": "Pozione <%= potionType %>", @@ -37,13 +38,13 @@ "dropsExplanation": "Ottieni questi oggetti più velocemente con le Gemme se non vuoi aspettare di ottenerli come drop quando completi un'attività. Per saperne di più sul sistema di drop. ", "premiumPotionNoDropExplanation": "Le Pozioni di Schiusura Magiche non possono essere usate sulle uova ottenute dalle Missioni. L'unico modo per ottenere Pozioni di Schiusura Magiche è comprarle qui sotto, non da drop casuali.", "beastMasterProgress": "Progresso in Re delle Bestie", - "stableBeastMasterProgress": "Progresso in Re delle Bestie: <%= number %> Animali trovati", + "stableBeastMasterProgress": "Progresso in Re delle Bestie: <%= number %> animali trovati", "beastAchievement": "Hai ottenuto la medaglia \"Re delle Bestie\" per aver collezionato tutti gli animali!", "beastMasterName": "Re delle Bestie", - "beastMasterText": "Has found all 90 pets (incredibly difficult, congratulate this user!)", + "beastMasterText": "Ha trovato tutti i 90 animali (incredibilmente difficile, fate i complimenti a questo utente!)", "beastMasterText2": "e ha liberato i suoi animali un totale di <%= count %> volte", "mountMasterProgress": "Progresso in Re delle Cavalcature", - "stableMountMasterProgress": "Progresso in Re delle Cavalcature: <%= number %> Cavalcature Domate", + "stableMountMasterProgress": "Progresso in Re delle Cavalcature: <%= number %> cavalcature domate", "mountAchievement": "Hai ottenuto il titolo di \"Re delle Cavalcature\" per aver domato tutte le cavalcature!", "mountMasterName": "Re delle Cavalcature", "mountMasterText": "Ha domato tutte e 90 le cavalcature (ancora piú difficile, fate i complimenti a questo utente!)", @@ -64,7 +65,7 @@ "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": "Hai fatto crescere un <%= 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 6d0b66e20c..671c30e0b6 100644 --- a/common/locales/it/quests.json +++ b/common/locales/it/quests.json @@ -38,7 +38,7 @@ "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 potranno combattere il boss e dividersi il bottino della missione...", - "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.", + "tavernBossInfo": "Complete Dailies and To-Dos and score positive Habits to damage the World Boss! Incomplete Dailies fill the Rage Bar. When the Rage 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": "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.", diff --git a/common/locales/it/questscontent.json b/common/locales/it/questscontent.json index f1b954bb22..f6860edca0 100644 --- a/common/locales/it/questscontent.json +++ b/common/locales/it/questscontent.json @@ -32,7 +32,7 @@ "questRatNotes": "Spazzatura! Enormi montagne di Daily non completate sono sparse per tutta Habitica! Il problema è diventato così serio che ora stanno comparendo orde di ratti ovunque. Noti @Pandah accarezzare una delle proprie bestie con affetto. Lei spiega che i ratti sono creature pacifiche che si nutrono di Daily non completate. Il vero problema è che queste Daily sono cadute nelle fognature, creando una pericolosa fossa che va ripulita. Stai scendendo nelle fognature, quando all'improvviso un gigantesco ratto, con occhi rosso sangue e denti gialli e marcescenti, ti attacca, difendendo la propria orda di roditori. Fuggirai in preda al panico o affronterai il leggendario Re dei Ratti?", "questRatCompletion": "Il gigantesco ratto viene sopraffatto dall'energia del tuo colpo finale, e i suoi occhi sbiadiscono fino a diventare grigi. La bestia comincia a dividersi in tanti piccoli ratti, che fuggono via impauriti. Noti @Pandah dietro di te, che osserva quello che rimane della leggendaria creatura. Spiega che i cittadini di Habitica, ispirati dal tuo coraggio, stanno velocemente completando le proprie Daily. Avverte però che bisogna essere prudenti, poiché se abbassiamo la guardia, il Re dei Ratti tornerà. Come ricompensa, @Pandah ti offre diverse uova di ratto. Notando la tua espressione turbata, sorride e dice \"faranno nascere dei bellissimi animali!\".", "questRatBoss": "Re Ratto", - "questRatDropRatEgg": "Ratto (Uovo)", + "questRatDropRatEgg": "Ratto (uovo)", "questRatUnlockText": "Sblocca l'acquisto delle uova di ratto nel Mercato", "questOctopusText": "Il Richiamo di Octothulu", "questOctopusNotes": "@Urse, un'avventurosa giovane scrittrice, ha chiesto il tuo aiuto per esplorare una misteriosa caverna in riva al mare. Tra le varie pozzanghere formate dalla marea, c'è un gigantesco cancello di stalattiti e stalagmiti. Appena ti avvicini al cancello, un'oscuro vortice compare alla sua base. Cominci ad avere un brutto presentimento, mentre un minaccioso drago-calamaro esce dal vortice. \"Il tentacolare discendente delle stelle si è risvegliato\", strilla follemente @Urse. \"Dopo decilioni di anni, il grande Octothulu è di nuovo libero!\"", @@ -59,7 +59,7 @@ "questSpiderDropSpiderEgg": "Ragno (uovo)", "questSpiderUnlockText": "Sblocca l'acquisto delle uova di ragno nel Mercato", "questVice1Text": "Vyce, Parte 1: Liberati dall'Influsso del Drago", - "questVice1Notes": "

Dicono che una terribile minaccia si celi nelle caverne del monte Habitica. Un mostro la cui presenza stravolge la volontà dei forti eroi della terra, spingendoli verso le cattive abitudini e la pigrizia! La bestia è un enorme drago dall'immenso potere, ed è composto delle ombre stesse. Vyce, l'infida Viverna Oscura. Coraggio Habiteers, alzatevi e sconfiggete questa immonda creatura una volta per tutte, ma solo se vi ritenete all'altezza della sua incredibile potenza.

Vyce Parte 1:

Come potete aspettarvi di sconfiggere la bestia se essa ha già il controllo su di voi? Non cadete vittime della pigrizia e di Vyce! Lavorate duramente per liberarvi dall'influsso dell'oscuro drago!

", + "questVice1Notes": "

Dicono che nelle caverne del Monte Habitica giaccia un terribile male. Un mostro la cui presenza distorce le volontà dei forti eroi della terra, portandoli verso cattive abitudini e pigrizia! La bestia è un maestoso drago di immenso potere, composto dalle ombre stesse: Vice, l'infida Viverna dell'Ombra. Habiteers coraggiosi, alzatevi e sconfiggete questa bestia crudele una volta per tutte, ma solo se pensate di poter sostenere il suo immenso potere.

Vice Parte 1 :

Come puoi aspettarti di combattere la bestia se ha già il controllo su di te? Non cadere vittima di pigrizia e vizio! Lavora duramente per lottare contro l'influenza oscura del drago e dissipa la sua presa su di te!

", "questVice1Boss": "Ombra di Vyce", "questVice1DropVice2Quest": "Vyce - Parte 2 (Pergamena)", "questVice2Text": "Vyce, Parte 2: Trova la Tana della Viverna", @@ -74,30 +74,30 @@ "questVice3DropDragonEgg": "Drago (uovo)", "questVice3DropShadeHatchingPotion": "Pozione Ombra", "questMoonstone1Text": "La Catena di Pietre Lunari, Parte 1: La Catena di Pietre Lunari", - "questMoonstone1Notes": "

Una terribile disgrazia ha colpito Habitica. Cattive Abitudini ritenute sconfitte stanno risorgendo, tramando vendetta. I piatti sporchi si accumulano, i libri si coprono di polvere, si rimanda a dopodomani quello che si doveva fare oggi!


Insegui alcune delle tue ritornate Cattive Abitudini fino alla Palude del Ristagno e scopri il colpevole: il fantasma della Negromante, Recidivay! La attacchi mulinando le armi, che la attraversano senza effetto.


\"Non disturbarti\", sibila con voce roca, \"Senza una catena di Pietre Lunari, nulla può ostacolarmi! Il mastro gioiellere @aurakami ha disperso tutte le pietre per la terra di Habitica molto tempo fa!\". Ansimando, ti ritiri... ma adesso sai cosa devi fare.

", + "questMoonstone1Notes": "Un terribile calamità ha colpito gli abitanti di Habitica. Le Cattive Abitudini, ritenute morte da molto tempo, stanno ritornando e meditano vendetta. I piatti restano sporchi, i libri di testo rimangono non letti e la procrastinazione dilaga!

Seguendo le tracce di alcune tue Cattive Abitudini riapparse, scopri il colpevole nella Palude del Ristagno: il Negromante Spettrale, Recidivate. Corri verso di lui roteando le armi, ma queste scorrono inutilmente attraverso il suo spettro.

\"Non disturbarmi\", sibila seccamente con voce rauca. \"Senza una catena di Pietre Lunari, niente può farmi del male - e il maestro gioielliere @aurakami ha disperso ogni Pietra Lunare in tutta Habitica molto tempo fa!\" Ansimando, ti ritiri ... ma sai che cosa devi fare.", "questMoonstone1CollectMoonstone": "Pietre Lunari", "questMoonstone1DropMoonstone2Quest": "La Catena di Pietre Lunari - Parte 2: Recidivay la Negromante (pergamena)", "questMoonstone2Text": "La Catena di Pietre Lunari, Parte 2: Recidivay la Negromante", - "questMoonstone2Notes": "

Il prode fabbro @Inventrix ti aiuta a forgiare la magica catena di Pietre Lunari. Sei finalmente pronto per affrontare Recidivay ma, non appena entri nella Palude del Ristagno, un brivido ti corre lungo la schiena.


Sul collo senti un fiato rancido, e qualcosa ti sussurra nelle orecchie. \"Già di ritorno? Che dolce...\" Ti giri di scatto e colpisci, ed alla luce della catena di Pietre Lunari le tue armi affondano in solida carne. \"Potrai anche avermi legata a questo mondo ancora una volta\", sbraita Recidivay, \"ma per te è giunto il momento di lasciarlo!\"

", + "questMoonstone2Notes": "Il coraggioso armaiolo @Inventrix vi aiuta a montare le pietre di luna incantate in una catena. Siete pronti ad affrontare Recidivate alla fine, ma non appena entrati nelle Paludi di stagnazione, un terribile freddo si abbatte su di voi.

Marcio vi esala sussurri nell'orecchio. \"Di nuovo qui? Che piacere ...\" vi girate e affondate e, sotto la luce della catena di pietre di luna, l'arma colpisce carne solida. \"Puoi avermi ricacciato nel mondo ancora una volta,\" ringhia Recidivate\", ma ora per voi è il momento di lasciarlo!\"", "questMoonstone2Boss": "La Negromante", "questMoonstone2DropMoonstone3Quest": "La Catena di Pietre Lunari - Parte 3: La trasformazione di Recidivay (pergamena)", "questMoonstone3Text": "La Catena di Pietre Lunari, Parte 3: La trasformazione di Recidivay", - "questMoonstone3Notes": "

Recidivay crolla a terra, e subito la colpisci con la Catena di Pietre Lunari. Con tuo grande sgomento vedi Recidivay afferrare la Pietre, con un ghigno di trionfo dipinto sul volto.


\"Stupida creatura di carne!\" urla, \"Queste Pietre Lunari mi riporteranno alla mia forma fisica, è vero, ma non nel modo in cui credi! Quando la luna piena sorge dalle tenebre i miei poteri raggiungono l'apice, e dalle ombre evoco lo spettro del tuo più terribile nemico! \"


Una malsana nebbia verde si diffonde nella palude, e il corpo di Recidivay tra le convulsioni comincia ad assumere una forma che ti riempie di terrore -- il corpo non-morto di Vyce, mostruosamente rinato.

", - "questMoonstone3Completion": "

Il tuo respiro si fa affannoso e il sudore ti fa bruciare gli occhi, mentre la Viverna non-morta collassa. I resti di Recidivay svaniscono in una sottile nebbia grigia, che cede velocemente ad una sferzata di aria pura. In lontananza senti le voci degli abitanti di Habitica urlare di gioia per aver sconfitto le loro Cattive Abitudini una volta per tutte.


@Baconosaur, il domatore, plana vicino a te cavalcando un grifone. \"Ho visto dal cielo la conclusione della tua battaglia, e ne sono rimasto colpito. Prendi questa tunica incantata -- il tuo coraggio è la prova del tuo nobile cuore, e credo che tu sia destinato ad averla.\"

", + "questMoonstone3Notes": "Recidivate si accartoccia a terra, e voi la colpite con la catena di pietra lunare. Con vostro orrore, recidivate afferra le gemme, con gli occhi fiammeggianti per il trionfo.

\" Sciocche Creature di carne!\" grida. \"Queste pietre di luna mi riportano ad una forma fisica, è vero, ma non come immaginate. Come la luna piena risalta nel buio, così anche il mio potere rifiorisce, e dalle ombre io evoco lo spettro del vostro più temuto nemico!\"

Una nebbia verde malaticcia si alza dalla palude, e il corpo di recidivate si torce e si contorce in una forma che vi riempie di terrore - il corpo non morto di Vice, orribilmente rinato.", + "questMoonstone3Completion": "Il vostro respiro diventa pesante e il sudore vi punge gli occhi mentre la non morta Wyrm collassa . I resti di Recidivate si dissolvono in una grigia nebbia sottile che svanisce rapidamente sotto l'assalto di una brezza rinfrescante, e voi sentite le lontane, esultanti grida degli Habiticans che sconfiggono le loro Cattive Abitudini una volta per tutte.

@Baconsaur il maestro degli animali piomba su un grifone. \"Ho visto la fine della vostra battaglia dal cielo, e sono stato molto commosso. Vi prego, tenete questa tunica incantata -.. Il vostro coraggio parla di un nobile cuore, e credo che dobbiate averla\"", "questMoonstone3Boss": "Necro-Vyce", "questMoonstone3DropRottenMeat": "Carne ammuffita (Cibo)", "questMoonstone3DropZombiePotion": "Pozione di schiusura Zombie", "questGoldenknight1Text": "Il Cavaliere Dorato, Parte 1: Una Severa Ramanzina", - "questGoldenknight1Notes": "

Il Cavaliere d'Oro si sta intromettendo nelle questioni dei poveri abtanti di Habitica. Non hai fatto tutte le tue Attività? Hai segnato un'Abitudine negativa? Lei lo userà come ragione per importunarti su come dovresti seguire il suo esempio. Lei è il modello perfetto di abitante di Habitica, e tu non sei nient'altro che una delusione. Beh, questo non è per niente carino da parte sua! Tutti possono sbagliare, e nessuno dovrebbe essere trattato così duramente per questo. Forse è il momento che tu raccolga un po' di testimonianze da abitanti bistrattati Habitica e faccia una bella ramanzina al Cavaliere d'Oro!

", + "questGoldenknight1Notes": "La Pulzella d'oro si è lanciata sui casi dei poveri Habiticans'. Non avete terminato tutte le vostre Daily? Registrato un'abitudine negativa? Lei userà questo come un motivo per redarguirvi su come dovreste seguire il suo esempio. Lei è il fulgido esempio di una perfetta Habitican, e voi non siete altro che un fallimento. Beh, questo non è affatto carino! Tutti fanno degli errori. Essi non devono andare incontro a tanta negatività. Forse è giunto il momento di raccogliere alcune testimonianze dai malconci Habiticans e dare alla Pulzella d'Oro una decisa risposta!", "questGoldenknight1CollectTestimony": "Testimonianze", "questGoldenknight1DropGoldenknight2Quest": "La Catena del Cavaliere Dorato Parte 2: Il Cavaliere Dorato (Pergamena)", "questGoldenknight2Text": "Il Cavaliere Dorato, Parte 2: Cavaliere d'Oro", - "questGoldenknight2Notes": "

Armato di centinaia di testimonianze degli abitanti di Habitica, fronteggi finalmente il Cavaliere Dorato. Inizi a recitarle le lamentele degli abitanti una per una. \"E @Pfeffernusse sostiene che il tuo costante pavoneggiarti-\" Il cavaliere alza una mano per zittirti e sbuffa, \" Ma per favore, queste persone sono soltanto gelose del mio successo. Invece di lamentarsi, dovrebbero semplicemente lavorare sodo come faccio io! Forse dovrei dimostrarti quale potere è possibile ottenere grazie ad una diligenza come la mia!\" Solleva la sua mazza chiodata e si prepara ad attaccarti!

", + "questGoldenknight2Notes": "Armati di centinaia di testimonianze di Habitican, finalmente affrontate la Pulzella d'Oro. Iniziate a recitare le lagnanze degli Habitcan verso di lei, una per una. \"E @Pfeffernusse dice che le vostre costanti vanterie ...\" La Pulzella alza la mano per mettervi a tacere e vi sbeffeggia, \"Per favore, queste persone sono solo gelose del mio successo. Invece di lamentarsi, dovrebbero semplicemente lavorare duro come me! Forse io vi mosterò il potere che potreste raggiungere grazie ad una diligenza come la mia! \" Alza il Morningstar e si prepara ad attaccarvi!", "questGoldenknight2Boss": "Cavaliere d'Oro", "questGoldenknight2DropGoldenknight3Quest": "Il Cavaliere Dorato - Parte 3: Il Cavaliere di Ferro (Pergamena)", "questGoldenknight3Text": "Il Cavaliere Dorato, Parte 3: Il Cavaliere di Ferro", - "questGoldenknight3Notes": "

@Jon Arinbjorn grida disperatamente per ottenere la tua attenzione. In seguito alla vostra battaglia, è apparsa una nuova figura. Un cavaliere ricoperto di ferro nero si avvicina lentamente a te con la spada in mano. Il Cavaliere Dorato urla rivolta alla figura, \"Padre, no!\" ma il cavaliere non dà segno di volersi fermare. Si rivolge a te e dice, \"Mi dispiace. Sono stata una stupida, con la testa troppo piena di pensieri per vedere quanto fossi crudele. Ma mio padre è più spietato di quanto io sia stata. Se non viene fermato ci distruggerà tutti. Tieni, usa la mia mazza chiodata e ferma il Cavaliere di Ferro!\"

", - "questGoldenknight3Completion": "

Con un liberatorio *clang* il Cavaliere di Ferro cade sulle sue ginocchia e crolla. \"Sei parecchio forte\" ansima, \"oggi sono stato umiliato\". Il Cavaliere d'Oro ti si avvicina: \"Grazie\" dice, \"penso che abbiamo imparato un po' di modestia e umiltà dal nostro incontro con te. Parlerò con mio padre e gli riferirò le lamentele nei nostri confronti\". \"Forse dovremmo scusarci con tutti gli abitanti...\" Rimugina tra se e se, prima di parlarti di nuovo: \"Ecco, prendi questo in dono, voglio che tu tenga la mia Mazza chiodata. Ora ti appartiene.\"

", + "questGoldenknight3Notes": "@Jon Arinbjorn grida verso di voi per ottenere la vostra attenzione. All'indomani della battaglia, una nuova figura è apparsa. Un cavaliere rivestito di ferro brunito si avvicina lentamente a voi con la spada in mano. La Pulzella D'oro grida alla figura, \"Padre, no!\" ma il cavaliere non mostra segni di arresto. Si gira verso di voi e dice: \"Mi dispiace. Sono stata una sciocca, troppo cocciuta per vedere quanto sono stata crudele. Ma mio padre è più crudele di quanto io sia mai stata. Se non verrà fermato ci distruggerà tutti. Ecco, usate il mio Morningstar e fermate il Cavaliere di ferro! \"", + "questGoldenknight3Completion": "Con un clangore soddisfacente, il Cavaliere di Ferro cade in ginocchio e si accascia . \"Siete molto forti\", ansima. \"Sono stato umiliato, oggi.\" La Pulzella d'oro si avvicina a voi e dice: «Grazie. Credo che abbiamo acquisito una certa umiltà dal nostro incontro con voi. Io parlerò con mio padre e spiegherò le lamentele contro di noi. Forse, dovremmo cominciare a scusarci con gli altri Habiticans.\" Riflette un po' prima di tornare da voi. \"Ecco: come regalo, voglio che teniate la mia Morningstar È vostra ora.\"", "questGoldenknight3Boss": "Il Cavaliere di Ferro", "questGoldenknight3DropHoney": "Miele (cibo)", "questGoldenknight3DropGoldenPotion": "Pozione Oro", @@ -112,7 +112,7 @@ "questEggHuntCollectPlainEgg": "Uova Semplici", "questEggHuntDropPlainEgg": "Uovo Semplice", "questDilatoryText": "Il Drago Terrore dei Dilatori", - "questDilatoryNotes": "

Avremmo dovuto dar retta agli avvertimenti. .


Scintillanti occhi scuri. Scaglie antiche. Mascelle enormi, e denti luccicanti. Abbiamo risvegliato qualcosa di orripilante dal crepaccio: il Drago Terrore dei Dilatori! Gli abitanti di Habitica sono fuggiti in tutte le direzioni quando è sbucato fuori dal mare, con il suo collo spaventosamente lungo che si spingeva a centinaia di metri fuori dall'acqua, mentre fracassava finestre con il suo feroce ruggito.


\"Dev'essere stato questo a richiamare il Dilatori!\" grida Lemoness. \"Non era il peso delle nostre mansioni trascurate - le Giornaliere Rosso Scuro attiravano semplicemente la sua attenzione!\"


\"La sua energia magica sta traboccando!\", grida @Baconsaur. \"Per essere vissuto così a lungo, dev'essere in grado di curare sé stesso! Come possiamo fare a sconfiggerlo?\"


Ebbene, nello stesso modo in cui sconfiggiamo tutte le creature - con la produttività! In fretta, Habitica, riuniamoci e colpiamo a fondo le nostre mansioni, e tutti noi combatteremo questo mostro insieme. (Non c'è bisogno di abbandonare quest precedenti - crediamo nella vostra abilità di colpire doppiamente!) Non ci attaccherà individualmente, ma, più Giornaliere saltiamo, più alto sarà il rischio attivare il suo Colpo della Negligenza - e non mi piace il modo in cui sta adocchiando la Taverna...

", + "questDilatoryNotes": "We should have heeded the warnings.

Dark shining eyes. Ancient scales. Massive jaws, and flashing teeth. We've awoken something horrifying from the crevasse: the Dread Drag'on of Dilatory! Screaming Habiticans fled in all directions when it reared out of the sea, its terrifyingly long neck extending hundreds of feet out of the water as it shattered windows with its searing roar.

\"This must be what dragged Dilatory down!\" yells Lemoness. \"It wasn't the weight of the neglected tasks - the Dark Red Dailies just attracted its attention!\"

\"It's surging with magical energy!\" @Baconsaur cries. \"To have lived this long, it must be able to heal itself! How can we defeat it?\"

Why, the same way we defeat all beasts - with productivity! Quickly, Habitica, band together and strike through your tasks, and all of us will battle this monster together. (There's no need to abandon previous quests - we believe in your ability to double-strike!) It won't attack us individually, but the more Dailies we skip, the closer we get to triggering its Neglect Strike - and I don't like the way it's eyeing the Tavern....", "questDilatoryBoss": "Il Drago Terrore dei Dilatori", "questDilatoryBossRageTitle": "Colpo della Negligenza", "questDilatoryBossRageDescription": "Quando questa barra sarà completamente piena, il Drago Terrore dei Dilatori scatenerà il caos sul terreno di Habitica", @@ -124,9 +124,9 @@ "questDilatoryCompletion": "La Sconfitta del Terrificante Disturbo-Drago di Dilatory`\n\nCe l'abbiamo fatta! Con un ultimo ruggito, il Terrificante Disturbo-Drago collassa e nuota via lontano, lontano. Una folla di esultanti abitanti di Habitica ricopre la costa! Abbiamo aiutato Matt, Daniel, e Alex a ricostruire i propri edifici. Ma che succede?\n\n`I cittadini ritornano!`\n\nOra che il Disturbo-Drago è scappato, migliaia di colori scintillanti colori stanno risalendo il mare. È un banco arcobaleno di Canocchie... E tra loro, centinaia di sirene!\n\n\"Siamo i cittadini perduti di Dilatory!\" spiega la loro leader, Manta. \"Quando Dilatory fu sommersa, le Canocchie che abitavano queste acque ci trasformarono in sirene con un incantesimo in modo che potessimo sopravvivere. Ma nella sua furia, il Terrificante Disturbo-Drago ci ha intrappolati tutti in quell'oscuro crepaccio. Siamo stati prigionieri lì per centinaia di anni - ma adesso finalmente siamo liberi di poter ricostruire la nostra città!\"\n\n\"Come ringraziamento,\" dice il suo amico @Ottl, \"Per favore accetta questo Animale Canocchia e questa Cavalcatura Canocchia, oltre a XP, oro e la nostra eterna gratitudine.\"\n\n`Ricompense`\n* Animale Canocchia\n* Cavalcatura Canocchia\n* Cioccolata, Zucchero Filato Blu, Zucchero Filato Rosa, Pesce, Miele, Carne, Latte, Patata, Carne Corrotta, Fragola", "questSeahorseText": "Il Derby Dilatorio", "questSeahorseNotes": "Il Giorno del Derby è arrivato, e abitanti di ogni parte di Habitica sono giunti a Dilatory per far gareggiare i loro cavallucci di mare! All'improvviso dal tracciato della gara senti un frastuono di ringhi e tonfi nell'acqua. Lo stalliere di cavallucci marini @Kiwibot grida al di sopra del fragore delle onde: \"Tutti questi cavallucci hanno attirato lo Stallone di Mare! Distrugerà le stalle e rovinerà l'antico tracciato! Qualcuno può fermarlo?\"", - "questSeahorseCompletion": "Lo stallone marino, finalmente domato, nuota docile accanto a te. \"Oh, guarda!\" esclama Kiwibot \"Vuole che ci occupiamo dei suoi cuccioli.\" Ti porge tre uova, dicendo: \"Crescili bene! E sappi che sarai sempre il benvenuto al Derby Dilatorio!\"", + "questSeahorseCompletion": "Lo stallone marino, finalmente domato, nuota docile accanto a te. \"Oh, guarda!\" esclama Kiwibot, \"Vuole che ci occupiamo dei suoi cuccioli\". Ti porge tre uova, dicendo: \"Crescili bene! E sappi che sarai sempre il benvenuto al Derby Dilatorio!\"", "questSeahorseBoss": "Stallone Marino", - "questSeahorseDropSeahorseEgg": "Cavalluccio Marino (Uovo)", + "questSeahorseDropSeahorseEgg": "Cavalluccio Marino (uovo)", "questSeahorseUnlockText": "Sblocca l'acquisto delle uova di cavalluccio marino nel Mercato", "questAtom1Text": "Attacco del Mondano, Parte 1: Disastro di Stoviglie!", "questAtom1Notes": "Hai raggiunto le rive del Lago Lavapiatti per un po' di relax... Ma il lago è infestato da piatti da lavare! Come sarà successo? Beh, non puoi permettere che il lago rimanga in questo stato. C'è soltanto una cosa da fare: lavare i piatti e salvare il vostro luogo di villeggiatura! Sarà meglio trovare un po' di sapone per pulire questa porcheria. Molto sapone...", @@ -140,18 +140,18 @@ "questAtom3Notes": "Con un urlo assordante, e cinque deliziosi tipi di formaggio che cadono dalla sua bocca, il Mostro Senza-Snack cade in pezzi. \"COME OSI!\" echeggia una voce da sotto la superficie dell'acqua. Una figura che indossa una tunica blu emerge dall'acqua, brandendo uno spazzolino da water magico. Dalla superficie del lago, inizia ad emergere biancheria sporchissima. \"Sono il Bucatomante!\" annuncia rabbioso. \"Sei davvero coraggioso - lavare i miei piatti deliziosamente sporchi, distruggere il mio servitore, ed entrare nel mio regno con abiti così puliti. Preparati a sentire la sozza furia della mia magia anti-bucato\"!", "questAtom3Completion": "Il pazzo Bucatomante è stato sconfitto! Bucato pulito si deposita a pile intorno a te. Le cose sembrano andare molto bene da queste parti. Mentre inizi a farti strada tra le armature stirate da poco, un bagliore di metallo attrae la tua attenzione, ed il tuo sguardo si posa su un elmo luccicante. Non sai chi possa aver indossato prima questo oggetto luminoso, ma mentre lo indossi, senti la calda presenza di uno spirito generoso. Un peccato che non ci abbiano cucito sopra un'etichetta col nome.", "questAtom3Boss": "Il Bucatomante", - "questAtom3DropPotion": "Base Hatching Potion", + "questAtom3DropPotion": "Pozione di schiusura base", "questOwlText": "Il Gufo Notturno", - "questOwlNotes": "In Taverna tutta notte la luce è accesa
ma questa sera l’oscurità è scesa!
Come potran vedere i nottambuli avventori?
Si lamenta @Twitching: “Mi servon domatori!”
Vedi quel Gufo Notturno là appollaiato?
Combatti presto, non risparmiar fiato!
Scacceremo il suo buio fuori a pedate,
splendente tornerà la notte, a suon di mazzate!", + "questOwlNotes": "The Tavern light is lit 'til dawn
Until one eve the glow is gone!
How can we see for our all-nighters?
@Twitching cries, \"I need some fighters!
See that Night-Owl, starry foe?
Fight with haste and do not slow!
We'll drive its shadow from our door,
And make the night shine bright once more!\"", "questOwlCompletion": "Ben prima dell'alba svanisce il Gufo
ma comunque ormai tu sei stufo.
Forse è tempo di riposare un po'?
Poi sul giaciglio vedi un nido, ohibò!
Il Gufo Notturno sa che può esser bello
nella notte aspettar che canti il gallo
ma cinguetterà gentile il tuo gufetto
per dirti che è ora di andare a letto.", "questOwlBoss": "Il Gufo Notturno", - "questOwlDropOwlEgg": "Gufo (Uovo)", + "questOwlDropOwlEgg": "Gufo (uovo)", "questOwlUnlockText": "Sblocca l'acquisto delle uova di gufo nel Mercato", "questPenguinText": "Il Gelo Volatile", "questPenguinNotes": "Nonostante sia una calda giornata estiva nella punta più a sud di Habitica, un freddo innaturale è calato su Lago Lively. Soffiano forti, gelidi venti mentre la riva inizia a ghiacciarsi. Spuntoni di ghiaccio emergono dal suolo, lanciando via erba e terra. @Melynnrose e @Breadstrings corrono verso di te.

\"Aiuto!\" dice @Melynnrose. \"Abbiamo portato qui un pinguino gigante perchè congelasse il lago così avremmo potuto pattinare sul ghiaccio, ma abbiamo finito tutto il pesce con cui nutrirlo!\"

\"Si è arrabbiato e sta usando il suo soffio congelante su ogni cosa che vede!\" dice @Breadstrings. \"Ti prego, devi farlo calmare prima che ci ricopra tutti di ghiaccio!\" Sembra che questo pinguino debba... raffreddare i sui bollenti spiriti.", "questPenguinCompletion": "Una volta sconfitto il pinguino, il ghiaccio si scioglie. Il pinguino gignte si adagia al sole, gustandosi un secchio extra di pesce che hai trovato. Si allontana attraverso il lago pattinando, soffiando lievemente verso il basso per create del liscio, luccicante ghiaccio. Che strano volatile! \"Sembra che abbia anche lasciato qui qualche uovo,\" dice @Painter de Cluster.

@Rattify ride. \"Magari questi pinguini saranno un po' più... pacifici?\"", "questPenguinBoss": "Pinguino dei Ghiacci", - "questPenguinDropPenguinEgg": "Pinguino (Uovo)", + "questPenguinDropPenguinEgg": "Pinguino (uovo)", "questPenguinUnlockText": "Sblocca l'acquisto delle uova di pinguino nel Mercato", "questStressbeastText": "L' Abominevole Bestia dello Stress delle Steppe di Stoïkalm", "questStressbeastNotes": "Completa le tue Daily e i tuoi To-Do per infliggere danno al World Boss! Le Daily non completate riempono la barra del Colpo Stressante. Quando la barra del Colpo Stressante sarà piena, il World Boss attaccherà un NPC. Un World Boss non danneggerà mai i giocatori singoli o gli account in alcun modo. Solo le Daily dei giocatori attivi che non stanno riposando nella Locanda verranno tenute in conto.\n\n

~*~

Il primo suono percepito è quello dei passi, più lenti e tuonanti del solito fuggi fuggi. Uno alla volta gli abitanti di Habitica guardano fuori dalle proprie porte e rimangono a bocca aperta.

Ovviamente abbiamo tutti visto dei Mostri dello Stress prima d'ora - piccole creaturine malefiche che attaccano in momenti difficili. Ma questo? Questo torreggia sugli edifici, con zampe che sarebbero capaci di schiacciare un drago senza difficoltà. Il suo manto maleodorante emana un freddo gelido e, quando ruggisce, la ventata glaciale sradica i tetti dalle nostre case. Un mostro di questa portata non si era mai visto al di fuori di leggende remote.

\"State in guardia, abitanti di Habitica!\" urla SabreCat. \"Barricatevi in casa - questo non è altri che l'Abominevole Mostro dello Stress!\"

\"Dev'essere composto di secoli e secoli di stress!\" esclama Kiwibot, serrando la porta della Taverna e sigillando le finestre.

\"Le Steppe di Stoïkalm,\" dice Lemoness, scura in viso. \" Per tutto questo tempo abbiamo pensato che fossero placide e senza preoccupazioni, ma dovevano star segretamente nascondendo il loro stress da qualche parte. Per generazioni, stava crescendo fino a creare questo, e ora è scappato e ha attaccato loro - e noi!\"

C'è un solo modo per liberarsi di un Mostro dello Stress, che sia Abominevole o meno, ed è attaccarlo completando dailies e to-do! Uniamo le forze e combattiamo questo temibile nemico - ma assicuriamoci di non trascurare le nostre attività, o le nostre dailies non comletate potrebbero far infuriare il mostro così tanto da provocare un violento attacco...", @@ -177,43 +177,43 @@ "questTRexUndeadRageTitle": "Cura Scheletrica", "questTRexUndeadRageDescription": "Questa barra si riempie gradualmente quando non completi le tue Daily. Quando è piena, il Tirannosauro Scheletrico recupererà il 30% dei suoi punti vita rimanenti!", "questTRexUndeadRageEffect": "`Tirannosauro Scheletrico usa CURA SCHELETRICA!`\n\nIl mostro emette un ruggito sovrannaturale, e alcune delle sue ossa danneggiate si ricongiungono tra loro!", - "questTRexDropTRexEgg": "Tirannosauro (Uovo)", + "questTRexDropTRexEgg": "Tirannosauro (uovo)", "questTRexUnlockText": "Sblocca l'acquisto delle uova di tirannosauro nel Mercato", "questRockText": "Fuggi dalla Creatura della Caverna", "questRockNotes": "Attraversando le Serpeggianti Montagne di Habitica con alcuni amici, una notte vi accampate in una stupenda caverna decorata da minerali luccicanti. Ma al vostro risveglio la mattina seguente l'entrata è sparita, e il pavimento comincia a muoversi sotto i vostri piedi.

\"Le montagne sono vive!\" urla il tuo compagno @pfeffernusse. \"Questi non sono cristalli - sono denti!\"

@Painter de Cluster afferra la tua mano. \"Dovremo trovare un'altra via d'uscita - resta con me e non ti distrarre, o rimarremo intrappolati qui per sempre!\"", "questRockBoss": "Il Colosso di Cristallo", "questRockCompletion": "La tua diligenza ti ha permesso di trovare un sentiero sicuro tra le montagne viventi. In piedi al sole, il tuo amico @intune nota qualcosa di scintillante al suolo vicino all'uscita della caverna. Ti abbassi per raccoglierlo, e vedi che è una piccola roccia attraversata da una vena dorata. Al suo fianco ci sono svariate rocce dalla forma peculiare. Sembrano quasi... uova?", - "questRockDropRockEgg": "Roccia (Uovo)", + "questRockDropRockEgg": "Roccia (uovo)", "questRockUnlockText": "Sblocca l'acquisto delle uova di roccia nel Mercato", "questBunnyText": "La Coniglietta Assassina", "questBunnyNotes": "Dopo molti giorni difficili, raggiungi la cima del Monte Procrastinazione e ti trovi di fronte alle imponenti porte della Fortezza della Negligenza. Leggi l'inscrizione nella pietra. \"All'interno risiede la creatura che incarna le tue più grandi paure, la ragione dietro la tua mancanza di azione. Bussa e confronta il tuo demone!\" Tremi, immaginando l'orrore all'interno e senti l'istinto di scappare come hai fatto così tante volte in precedenza. @Draayder ti trattiene. \"Sta calmo, amico mio! È giunta l'ora. Devi affrontarlo!\"

Bussi e le porte si aprono verso l'interno. Dall'oscurità senti un ruggito assordante e sfoderi la tua arma.", "questBunnyBoss": "Coniglietta Assassina", "questBunnyCompletion": "Con un'ultimo colpo atterri la coniglietta assassina. Una nebbia luccicante si alaza dal suo corpo mentre si rimpicciolisce in una piccolissima coniglietta... Niente a che vedere con la crudele bestia che hai affrontato un attimo fa. Il suo naso si muove in modo adorabile e lei saltella via, lasciandosi alle spalle alcune uova. @Gully ride. \"Il Monte Procrastinazione ha i suoi modi per far sembrare insormontabili anche le più piccole sfide. Raccogliamo queste uova e torniamo a casa.\"", - "questBunnyDropBunnyEgg": "Coniglietto (Uovo)", + "questBunnyDropBunnyEgg": "Coniglietto (uovo)", "questBunnyUnlockText": "Sblocca l'cquisto delle uova di coniglietto nel Mercato", "questSlimeText": "Il Regente Gelatina", "questSlimeNotes": "Mentre lavori alle tue attività, noti che i tuoi movimenti si fanno sempre più lenti. \"È come camminare attraverso della melassa,\" borbotta @Leephon. \"No, è come camminare attraverso della gelatina!\" dice @starsystemic. \"Quel viscido Regente Gelatina ha spalmato la sua roba su tutta Habitica. Sta impantanando tutto. Tutti stanno rallentando.\" Ti guardi intorno. Le strade si stanno lentamente riempendo di una melma chiara e colorata, e gli abitanti di Habitica devono sforzarsi per riuscire a fare qualsiasi cosa. Mentre gli altri scappano, tu impugni uno mocio e ti prepari al combattimento!", "questSlimeBoss": "Regente Gelatina", "questSlimeCompletion": "Con un colpo finale, intrappoli il Regente Gelatina in una ciambella gigante, portata in fretta da @Overomega, @LordDarkly, e @Shaner, i leader dal pensiero veloce del club di pasticceria. Mentre tutti di danno pacche sulle spalle, senti che qualcuno fa scivolare qualcosa nella tua tasca. È la ricompensa per la tua dolce vittoria: tre uova di Gelatina di Marshmallow.", - "questSlimeDropSlimeEgg": "Gelatina di Marshmallow (Uovo)", + "questSlimeDropSlimeEgg": "Gelatina di Marshmallow (uovo)", "questSlimeUnlockText": "Sblocca l'acquisto delle uova di gelatina di marshmallow nel Mercato", "questSheepText": "L'Ariete Tuonante", "questSheepNotes": "Mentre vai in giro per le campagne di Taskan con degli amici, prendendoti una \"pausa veloce\" dai tuoi doveri, trovi un accogliente negozio di filati. Sei così assorbito dalla tua procrastinazione che ti accorgi a malapena delle nuvole minacciose che si alzano dall'orizzonte. \"Non ho per niente un be-e-e-el presentimento riguardo questo tempo,\" mormora @Misceo, e tu alzi gli occhi. Le nuvole di tempesta si intrecciano tra loro, e assomigliano molto a... \"Non c'è tempo per stare a guardare le nuvole!\" urla @starsystemic. \"Sta attaccando!\" L'Ariete Tuonante carica verso di voi, scagliandovi addosso fulmini e saette!", "questSheepBoss": "Ariete Tuonante", "questSheepCompletion": "Colpita dalla tua diligenza, l'Ariete Tuonante è prosciugata della sua furia. Lancia tre enormi chicchi di grandine nella tua direzione, e poi scompare con un cupo rombo. Guardandoli meglio, scopri che i chicchi di grandine sono in realtà tre uova morbide e pelose. Le raccogli, e ti incammini verso casa sotto un cielo azzurro.", - "questSheepDropSheepEgg": "Pecorella (Uovo)", + "questSheepDropSheepEgg": "Pecorella (uovo)", "questSheepUnlockText": "Sblocca l'acquisto delle uova di pecorella nel Mercato", "questKrakenText": "Il Kraken dell'Inkompletezza", "questKrakenNotes": "É un tiepido giorno di sole mentre tu veleggi attraverso la Baia Inkompleta, ma i tuoi pensieri sono offuscati dalla preoccupazione di tutto ciò che devi ancora fare. Sembra che appena finisci un'attività, un'altra salti fuori, e poi un'altra...

Improvvisamente, la barca ha un sussulto terribile, e tentacoli melmosi emergono dall'acqua da ogni lato! \"Stiamo venendo attaccati dal Kraken di Inkompleta!\" urla Wolvenhalo.

\"Presto!\" ti urla Lemoness. \"Colpisci quanti tentacoli e attività puoi, prima che di nuovi possano emergere a prendere il loro posto!\"", "questKrakenBoss": "The Kraken of Inkomplete", "questKrakenCompletion": "Mentre il Kraken fugge, alcune uova galleggiano sulla superficie dell'acqua. Lemoness le esamina, e la sua diffidenza si trasforma in gioia. \"Uova di seppia!\" dice. \"Ecco, prendile come ricompensa per tutto quello che hai fatto.\"", - "questKrakenDropCuttlefishEgg": "Seppia (Uovo)", + "questKrakenDropCuttlefishEgg": "Seppia (uovo)", "questKrakenUnlockText": "Sblocca l'acquisto delle uova di seppia nel Mercato", "questWhaleText": "Il Lamento della Balena", "questWhaleNotes": "Arrivi al Molo dei Diligenti, sperando di prendere un sottomarino per vedere il Dilatory Derby. Improvvisamente un muggito assordante ti costringe a fermarti e a coprirti le orecchie . \" Thar soffia! \" grida il capitano @krazjega, indicando un’enorme, gemente balena. \"Non è sicuro inviare i sottomarini, mentre lei si sta dimenando! \"

\"Presto,\" esclama @UncommonCriminal . \"Aiutami a calmare la povera creatura in modo che possiamo capire perché lei sta facendo tutto questo rumore !\"", "questWhaleBoss": "Balena Lamentosa", "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)", + "questWhaleDropWhaleEgg": "Balena (uovo)", "questWhaleUnlockText": "Sblocca l'acquisto delle uova di balena nel Mercato", "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. ", @@ -242,13 +242,13 @@ "questCheetahNotes": "Mentre attraversi la Savana di Sloensteadi con i tuoi amici @PainterProphet, @tivaquinn,@Unruly Hyena, e @Crawford, sei sorpreso di vedere un ghepardo ringhiante oltrepassarti con un nuovo Habiticante serrato tra le fauci. Sotto le acuminate zampe del ghepardo, I compiti bruciano come se fossero completati - prima che qualcuno abbia la possibilità di finirli in realtà! L’Habiticante vi vede e urla: \"Vi prego, aiutatemi! Questo ghepardo mi sta facendo salire di livello troppo in fretta, ma io non riesco a finire niente. Voglio rallentare e godermi il gioco. Fatelo smettere!\" Ti ricordi con tenerezza i tuoi giorni alle prime armi, e sai che si deve aiutare il newbie bloccando il ghepardo!", "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)", + "questCheetahDropCheetahEgg": "Ghepardo (uovo)", "questCheetahUnlockText": "Sblocca l'acquisto delle uova di ghepardo nel Mercato", "questHorseText": "Cavalca il Destriero dell'Incubo", "questHorseNotes": "Mentre ti rilassi in Taverna con @beffymaroo e @JessicaChase, il discorso si volge a vantarsi bonariamente del vostro operato di avventurieri. Orgogliosi delle vostre azioni, e forse lasciandovi un po’ trasportare, vi vantate di poter domare qualsiasi compito in giro. Uno sconosciuto lì accanto si volta verso di voi e sorride. I suoi occhi brillano mentre egli vi invita a provare la vostra pretesa cavalcando il suo cavallo.\nMentre vi dirigete in massa alle scuderie, @UncommonCriminal mormora, \"Forse avete fatto il passo più lungo della gamba. Questo non è per niente un cavallo – Questa è una Puledra Incubo ! \" Guardando gli zoccoli scalpitanti, cominciate a rimpiangere le vostre parole ...", "questHorseCompletion": "Serve tutta la tua abilità, ma finalmente il cavallo pesta un paio di zoccoli e strofina il muso sulla tua spalla prima di permetterti di cavalcarlo. Cavalchi brevemente ma con orgoglio intorno alla Taverna mentre i tuoi amici applaudono. Lo sconosciuto irrompe in un sorriso.\n\"Vedo che non era un vantarsi infondato! La tua determinazione è davvero impressionante. Prendi queste uova per allevare dei cavalli da solo, e forse un giorno ci incontreremo di nuovo.\" Prendi le uova, lo sconosciuto fa tanto di cappello... e sparisce.", "questHorseBoss": "Destriero dell'Incubo", - "questHorseDropHorseEgg": "Cavallo (Uovo)", + "questHorseDropHorseEgg": "Cavallo (uovo)", "questHorseUnlockText": "Sblocca l'acquisto delle uova di cavallo nel Mercato", "questBurnoutText": "Burnout e gli Spiriti Esausti", "questBurnoutNotes": "E' ben dopo mezzanotte, quieta e afosa, quando Redphoenix e la guida capitano Kiwibot irrompono attraverso le porte della città. \"Presto!\"

Kiwibot si aggrappa al muro mentre trattiene il respiro. Drena le energie delle persone e le trasforma in spiriti esausti! Ecco perché tutto è stato posticipato. Là è dove le persone scomparse sono andate. Sta rubando la loro energia!

\"'Esso?'\" chiede Lemoness.

E poi il calore prende forma.

Sorge dalla terra in una fluttuante massa ritorta e l'aria è satura dell'odore di fumo e zolfo. Le fiamme strisciano attraverso il terreno fuso e si attorcigliano dentro gli arti contorcendosi fino ad orrifiche altezze. Occhi fumanti si spalancano, e la creatura emette un profondo e scoppiettante squittio.

Kiwibot mormora una sola parola.

\"Burnout.\"", @@ -266,19 +266,19 @@ "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)", + "questFrogDropFrogEgg": "Rana (uovo)", "questFrogUnlockText": "Sblocca l'acquisto delle uova di rana nel Mercato", "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)", + "questSnakeDropSnakeEgg": "Serpente (uovo)", "questSnakeUnlockText": "Sblocca l'acquisto delle uova di serpente nel Mercato", "questUnicornText": "Convincere la Regina Unicorno", "questUnicornNotes": "Il Torrente della Conquista è diventato melmoso, distruggendo le riserve d'acqua di Habit City! Fortunatamente @Lucreja", "questUnicornCompletion": "Impressionata dalla tua diligenza e dalla tua forza, la Regina degli Unicorni è finalmente d'accordo sul fatto che la tua sia una causa meritevole. Ti permette di cavalcarla, mentre risale verso la fonte del Torrente della Conquista. Mentre china il suo corno dorato verso le acque intorbidate, una luce blu brillante sorge dalla siperfice dell'acqua. e' così accecante che sei costretto a chiudere gli occhi. Quando quando li riapri un momento dopo, l'unicorno se ne è andato. Tuttavia, @rosiesully emette un grido di delizia: l'acqua ora è chiara, e tre uova scintillanti sono posate sulla riva del torrente.\n", "questUnicornBoss": "La Regina Unicorno", - "questUnicornDropUnicornEgg": "Unicorno (Uovo)", + "questUnicornDropUnicornEgg": "Unicorno (uovo)", "questUnicornUnlockText": "Sblocca l'acquisto delle uova di unicorno nel Mercato", "questSabretoothText": "Il Gatto Sciabola", "questSabretoothNotes": "Un mostro ruggente sta terrorizzando Habitica ! La creatura si aggira attraverso le terre selvagge e i boschi, poi si lancia all'attacco prima di sparire di nuovo . E 'stato a caccia di panda innocenti e ha spaventato i maiali volanti, che lasciavano i loro recinti per appollaiarsi sugli alberi. @Inventrix e @icefelis spiegano che Il Gatto Sciabola Zombie è stato liberato mentre stavano scavando negli antichi, intatti campi di ghiaccio delle steppe di Stoikalm . \"All'inizio era davvero amichevole - Non so cosa sia successo. Per favore , devi aiutarci a riprenderlo! solo un campione di Habitica può sottomettere questa bestia preistorica !\"", @@ -286,10 +286,27 @@ "questSabretoothBoss": "Gatto Sciabola Zombie", "questSabretoothDropSabretoothEgg": "Dente a sciabola (Uovo)", "questSabretoothUnlockText": "Sblocca uova di Dente a Sciabola, acquistabili nel mercato", - "questMonkeyText": "Monstrous Mandrill and the Mischief Monkeys", - "questMonkeyNotes": "The Sloensteadi Savannah is being torn apart by the Monstrous Mandrill and his Mischief Monkeys! They shriek loudly enough to drown out the sound of approaching deadlines, encouraging everyone to avoid their duties and keep monkeying around. Alas, plenty of people ape this bad behavior. If no one stops these primates, soon everyone's tasks will be as red as the Monstrous Mandrill's face!

\"It will take a dedicated adventurer to resist them,\" says @yamato.

\"Quick, let's get this monkey off everyone's backs!\" @Oneironaut yells, and you charge into battle.", - "questMonkeyCompletion": "You did it! No bananas for those fiends today. Overwhelmed by your diligence, the monkeys flee in panic. \"Look,\" says @Misceo. \"They left a few eggs behind.\"

@Leephon grins. \"Maybe a well-trained pet monkey can help you as much as the wild ones hinder you!\"", - "questMonkeyBoss": "Monstrous Mandrill", - "questMonkeyDropMonkeyEgg": "Monkey (Egg)", - "questMonkeyUnlockText": "Unlocks purchasable Monkey eggs in the Market" + "questMonkeyText": "Il Mostruoso Mandrillo e le Scimmie Dispettose", + "questMonkeyNotes": "L'Oscura Savana è lacerata dal mostruoso Mandrillo e dalle sue Scimmie Dispettose! Essi strillano abbastanza forte da attutire il suono delle scadenze che si avvicinano, incoraggiando tutti ad evitare i loro doveri e a divagare qua e là. Purtroppo, un sacco di persone scimmiottano questo cattivo comportamento. Se nessuno fermerà questi primati, ben presto i compiti di ognuno saranno rossi come la faccia del Mostruoso Mandrillo!

\"Ci vorrà un volenteroso avventuriero per resistere loro\", dice @yamato.

\"Svelti, togliamo questa scimmia dalle spalle di tutti! \" urla @Oneironaut, e vi lanciate nella battaglia.", + "questMonkeyCompletion": "\nCe l'avete fatta! Niente banane per quei demoni oggi. Sopraffatte dalla vostra diligenza, le scimmie fuggono in preda al panico. \"Guarda \", dice @Misceo . \" Hanno lasciato indietro un paio di uova.

@Leephon sogghigna. \"Forse una scimmietta ben addestrata vi può aiutare tanto quanto quelle selvatiche vi ostacolano ! \"", + "questMonkeyBoss": "Mostruoso Mandrillo", + "questMonkeyDropMonkeyEgg": "Scimmia (uovo)", + "questMonkeyUnlockText": "Permette di acquistare le uova di Scimmia nel Mercato", + "questSnailText": "La Chiocciola della Fogna Sgobbosa", + "questSnailNotes": "Siete entusiasti di iniziare ad esplorare le Segrete abbandonate di Sgobbosa, ma non appena entrati, sentite che il terreno sotto i vostri piedi sta iniziando a risucchiarvi gli stivali. Scrutando il percorso davanti a voi e vedete alcuni Habiticans impantanati nella melma. @Overomega urla, \"hanno troppe attività e daily di poco conto, e sono rimasti bloccati su cose poco importanti! Tirateli fuori!\"

\"Dovete trovare la fonte della melma,\" concorda @Pfeffernusse , \"o le attività che non possono compiere li trascineranno a fondo per sempre! \"

Tirando fuori la vostra arma, guadate attraverso il fango appiccicoso .... e incontrate la temibile Lumaca della Fogna Sgobbosa. ", + "questSnailCompletion": "Affondate la vostra arma sul gran guscio della Chiocciola spaccandolo in due e liberando un flusso d'acqua. La melma è lavata via, e gli Habiticans intorno a voi gioiscono. \"Guardate!\" dice @Misceo. \"C'è un piccolo gruppo di uova di lumaca nei resti del limo.\"", + "questSnailBoss": "Chiocciola della Fogna Sgobbosa", + "questSnailDropSnailEgg": "Chiocciola (Uovo)", + "questSnailUnlockText": "Sblocca l'acquisto delle uova di chiocciola nel Mercato", + "questBewilderText": "The Be-Wilder", + "questBewilderNotes": "The party begins like any other.

The appetizers are excellent, the music is swinging, and even the dancing elephants have become routine. Habiticans laugh and frolic amid the overflowing floral centerpieces, happy to have a distraction from their least-favorite tasks, and the April Fool whirls among them, eagerly providing an amusing trick here and a witty twist there.

As the Mistiflying clock tower strikes midnight, the April Fool leaps onto the stage to give a speech.

“Friends! Enemies! Tolerant acquaintances! Lend me your ears.” The crowd chuckles as animal ears sprout from their heads, and they pose with their new accessories.

“As you know,” the Fool continues, “my confusing illusions usually only last a single day. But I’m pleased to announce that I’ve discovered a shortcut that will guarantee us non-stop fun, without having to deal with the pesky weight of our responsibilities. Charming Habiticans, meet my magical new friend... the Be-Wilder!”

Lemoness pales suddenly, dropping her hors d'oeuvres. “Wait! Don’t trust--”

But suddenly mists are pouring into the room, glittering and thick, and they swirl around the April Fool, coalescing into cloudy feathers and a stretching neck. The crowd is speechless as an monstrous bird unfolds before them, its wings shimmering with illusions. It lets out a horrible screeching laugh.

“Oh, it has been ages since a Habitican has been foolish enough to summon me! How wonderful it feels, to have a tangible form at last.”

Buzzing in terror, the magic bees of Mistiflying flee the floating city, which sags from the sky. One by one, the brilliant spring flowers wither up and wisp away.

“My dearest friends, why so alarmed?” crows the Be-Wilder, beating its wings. “There’s no need to toil for your rewards any more. I’ll just give you all the things that you desire!”

A rain of coins pours from the sky, hammering into the ground with brutal force, and the crowd screams and flees for cover. “Is this a joke?” Baconsaur shouts, as the gold smashes through windows and shatters roof shingles.

PainterProphet ducks as lightning bolts crackle overhead, and fog blots out the sun. “No! This time, I don’t think it is!”

Quickly, Habiticans, don’t let this World Boss distract us from our goals! Stay focused on the tasks that you need to complete so we can rescue Mistiflying -- and hopefully, ourselves.", + "questBewilderCompletion": "The Be-Wilder is DEFEATED!

We've done it! The Be-Wilder lets out a ululating cry as it twists in the air, shedding feathers like falling rain. Slowly, gradually, it coils into a cloud of sparkling mist. As the newly-revealed sun pierces the fog, it burns away, revealing the coughing, mercifully human forms of Bailey, Matt, Alex.... and the April Fool himself.

Mistiflying is saved!

The April Fool has enough shame to look a bit sheepish. “Oh, hm,” he says. “Perhaps I got a little…. carried away.”

The crowd mutters. Sodden flowers wash up on sidewalks. Somewhere in the distance, a roof collapses with a spectacular splash.

“Er, yes,” the April Fool says. “That is. What I meant to say was, I’m dreadfully sorry.” He heaves a sigh. “I suppose it can’t all be fun and games, after all. It might not hurt to focus occasionally. Maybe I’ll get a head start on next year’s pranking.”

Redphoenix coughs meaningfully.

“I mean, get a head start on this year’s spring cleaning!” the April Fool says. “Nothing to fear, I’ll have Habit City in spit-shape soon. Luckily nobody is better than I at dual-wielding mops.”

Encouraged, the marching band starts up.

It isn’t long before all is back to normal in Habit City. Plus, now that the Be-Wilder has evaporated, the magical bees of Mistiflying bustle back to work, and soon the flowers are blooming and the city is floating once more.

As Habiticans cuddle the magical fuzzy bees, the April Fool’s eyes light up. “Oho, I’ve had a thought! Why don’t you all keep some of these fuzzy Bee Pets and Mounts? It’s a gift that perfectly symbolizes the balance between hard work and sweet rewards, if I’m going to get all boring and allegorical on you.” He winks. “Besides, they don’t have stingers! Fool’s honor.”", + "questBewilderCompletionChat": "`The Be-Wilder is DEFEATED!`\n\nWe've done it! The Be-Wilder lets out a ululating cry as it twists in the air, shedding feathers like falling rain. Slowly, gradually, it coils into a cloud of sparkling mist. As the newly-revealed sun pierces the fog, it burns away, revealing the coughing, mercifully human forms of Bailey, Matt, Alex.... and the April Fool himself.\n\n`Mistiflying is saved!`\n\nThe April Fool has enough shame to look a bit sheepish. “Oh, hm,” he says. “Perhaps I got a little…. carried away.”\n\nThe crowd mutters. Sodden flowers wash up on sidewalks. Somewhere in the distance, a roof collapses with a spectacular splash.\n\n“Er, yes,” the April Fool says. “That is. What I meant to say was, I’m dreadfully sorry.” He heaves a sigh. “I suppose it can’t all be fun and games, after all. It might not hurt to focus occasionally. Maybe I’ll get a head start on next year’s pranking.”\n\nRedphoenix coughs meaningfully.\n\n“I mean, get a head start on this year’s spring cleaning!” the April Fool says. “Nothing to fear, I’ll have Habit City in spit-shape soon. Luckily nobody is better than I at dual-wielding mops.”\n\nEncouraged, the marching band starts up.\n\nIt isn’t long before all is back to normal in Habit City. Plus, now that the Be-Wilder has evaporated, the magical bees of Mistiflying bustle back to work, and soon the flowers are blooming and the city is floating once more.\n\nAs Habiticans cuddle the magical fuzzy bees, the April Fool’s eyes light up. “Oho, I’ve had a thought! Why don’t you all keep some of these fuzzy Bee Pets and Mounts? It’s a gift that perfectly symbolizes the balance between hard work and sweet rewards, if I’m going to get all boring and allegorical on you.” He winks. “Besides, they don’t have stingers! Fool’s honor.”", + "questBewilderBossRageTitle": "Beguilement Strike", + "questBewilderBossRageDescription": "When this gauge fills, The Be-Wilder will unleash its Beguilement Strike on Habitica!", + "questBewilderDropBumblebeePet": "Bumblebee (Pet)", + "questBewilderDropBumblebeeMount": "Bumblebee (Mount)", + "questBewilderBossRageMarket": "`The Be-Wilder uses BEGUILEMENT STRIKE!`\n\nOh no! Despite our best efforts, we've gotten distracted by the Be-Wilder’s charming illusions and have forgotten to do some of our Dailies! With a cackling cry, the shining bird beats its wings, raising a swarm of mist around Alex the Merchant. When the fog clears, he has been possessed! “Have some free samples!” he shouts gleefully, and begins to hurl exploding eggs and potions at fleeing Habiticans. Not the most favorable of sales, to be sure.\n\nHurry! Let's stay focused on our Dailies to defeat this monster before it possesses someone else.", + "questBewilderBossRageStables": "`The Be-Wilder uses BEGUILEMENT STRIKE!`\n\nAhh!!! Once again the Be-Wilder has dazzled us into neglecting our Dailies, and now it has attacked Matt the Beast Master! With a swirl of mist, Matt transforms into a terrifying winged creature, and all the pets and mounts howl sadly in their stables. Quickly, stay focused on your tasks to defeat this dastardly distraction!", + "questBewilderBossRageBailey": "`The Be-Wilder uses BEGUILEMENT STRIKE!`\n\nLook out! In the middle of reporting the news, Bailey the Town Crier has been possessed by the Be-Wilder! She lets out an evil, uninformative screech as she rises into the air. Now how will we know what’s going on?\n\nDon't give up... we're so close to defeating this bothersome bird for once and for all!" } \ No newline at end of file diff --git a/common/locales/it/rebirth.json b/common/locales/it/rebirth.json index 2d2a457cbf..b56135093c 100644 --- a/common/locales/it/rebirth.json +++ b/common/locales/it/rebirth.json @@ -12,7 +12,7 @@ "rebirthInList2": "Le sfide, le gilde e la tua squadra rimangono.", "rebirthInList3": "Gemme, gradi di sostenitore e livelli di contribuzione rimangono.", "rebirthInList4": "Gli oggetti trovati o ottenuti con le Gemme (come animali e cavalcature) rimangono, non potrai però utilizzarli fin quando non li avrai sbloccati di nuovo.", - "rebirthInList5": "Limited edition equipment you've purchased can be repurchased, even if its event has ended. To repurchase class-specific equipment, you must first change to the correct class.", + "rebirthInList5": "L'equipaggiamento in edizione limitata che avevi acquistato può essere ricomprato, anche se l'evento è finito. Per riacquistare oggetti specifici per una classe, devi prima passare a quella classe.", "rebirthEarnAchievement": "Ottieni inoltre una Medaglia per aver iniziato una nuova avventura!", "beReborn": "Rinasci", "rebirthAchievement": "Hai iniziato una nuova avventura! Questa è la rinascita numero <%= number %> per te, il livello più alto che hai raggiunto è <%= level %>. Per ottenere un'altra medaglia, inizia una nuova avventura quando avrai raggiunto un livello ancora più alto!", diff --git a/common/locales/it/settings.json b/common/locales/it/settings.json index ced46ce56e..9a1f1341ec 100644 --- a/common/locales/it/settings.json +++ b/common/locales/it/settings.json @@ -102,7 +102,7 @@ "invitedParty": "Ricevuto invito a unirti ad una squadra", "invitedGuild": "Ricevuto invito da una Gilda", "importantAnnouncements": "Il tuo account è inattivo", - "weeklyRecaps": "Sommari dell'attività del tuo account nell'ultima settimana", + "weeklyRecaps": "Riassunto delle attività del tuo account nell'ultima settimana (Nota: questa funzionalità al momento è stata disattivata a causa di problemi di prestazioni, ma speriamo di riattivarla e fare in modo che invii nuovamente e-mail al più presto!)", "questStarted": "La tua missione è cominciata", "invitedQuest": "Invito ad unirti ad una missione", "kickedGroup": "Espulsione da un gruppo", @@ -140,7 +140,7 @@ "mysticHourglass": "<%= amount %> Clessidra Mistica", "mysticHourglassText": "Le Clessidre Mistiche ti permettono di acquistare i set di Oggetti Misteriosi dei mesi precedenti.", "purchasedPlanId": "<%= price %>$ USD ogni <%= months %> mese/i (<%= plan %>)", - "purchasedPlanExtraMonths": "You have <%= months %> months of extra subscription credit.", + "purchasedPlanExtraMonths": "Hai <%= months %> mesi di abbonamento extra.", "consecutiveSubscription": "Abbonamento Consecutivo", "consecutiveMonths": "Mesi consecutivi:", "gemCapExtra": "Limite Gemme Extra:", diff --git a/common/locales/it/subscriber.json b/common/locales/it/subscriber.json index cfb67a80e6..1ff4d3b9db 100644 --- a/common/locales/it/subscriber.json +++ b/common/locales/it/subscriber.json @@ -4,8 +4,8 @@ "subDescription": "Compra le Gemme con l'oro, ottieni oggetti misteriosi ogni mese, mantieni i dati sui progressi delle attività, raddoppia il limite di drop giornaliero di oggetti, supporta gli sviluppatori. Clicca per avere maggiori informazioni.", "buyGemsGold": "Acquista Gemme usando l'oro", "buyGemsGoldText": "Alexander il Mercante ti venderà Gemme al prezzo di <%= gemCost %> Oro per ogni gemma. Le sue consegne mensili saranno inizialmente limitate a <%= gemLimit %> gemme al mese, ma questo limite aumenta di 5 gemme per ogni tre mesi di abbonamento consecutivi, fino a un massimo di 50 gemme al mese!", - "retainHistory": "Retain additional history entries", - "retainHistoryText": "Makes completed To-Dos and task history available for longer.", + "retainHistory": "Conserva più dati nella cronologia", + "retainHistoryText": "Rende la cronologia delle To-Do completate e delle altre attività disponibili più a lungo.", "doubleDrops": "Numero massimo di drop giornalieri raddoppiato", "doubleDropsText": "Riempi le tue scuderie più velocemente!", "mysteryItem": "Oggetti mensili esclusivi", @@ -30,7 +30,7 @@ "cancelSub": "Annulla abbonamento", "canceledSubscription": "Abbonamento annullato", "adminSub": "Abbonamento per amministratori", - "morePlans": "Altri piani
in arrivo", + "morePlans": "Altri Piani
In Arrivo", "organizationSub": "Organizzazione privata", "organizationSubText": "I membri dell'organizzazione partecipano separatamente dall'Habitica pubblico, permettendo maggiore concentrazione ai tuoi partecipanti.", "hostingType": "Tipo di hosting", @@ -90,13 +90,15 @@ "mysterySet201504": "Set ape operaia", "mysterySet201505": "Set cavaliere verde", "mysterySet201506": "Set sommozzatore neon", - "mysterySet201507": "completo del Surfer Tuttofare", + "mysterySet201507": "Set del Surfer Tuttofare", "mysterySet201508": "Set ghepardo", "mysterySet201509": "Set lupo mannaro", - "mysterySet201510": "completo del Folletto Cornuto", + "mysterySet201510": "Set del Folletto Cornuto", "mysterySet201511": "Set guerriero di legno", "mysterySet201512": "Set della Fiamma Invernale", - "mysterySet201601": "Champion of Resolution Set", + "mysterySet201601": "Set Campione della Risoluzione", + "mysterySet201602": "Set del Rubacuori", + "mysterySet201603": "Set Quadrifoglio", "mysterySet301404": "Set steampunk standard", "mysterySet301405": "Set accessori steampunk", "mysterySetwondercon": "Wondercon", diff --git a/common/locales/it/tasks.json b/common/locales/it/tasks.json index 39f19d4c26..7ccd6c6b5d 100644 --- a/common/locales/it/tasks.json +++ b/common/locales/it/tasks.json @@ -56,7 +56,7 @@ "complete": "Completi", "dated": "Con scadenza", "due": "Incomplete", - "notDue": "Non dovuto", + "notDue": "Non Scade", "grey": "Grigie", "score": "Punti", "reward": "Ricompensa", @@ -92,8 +92,8 @@ "confirmFortify": "Sei sicuro?", "sureDelete": "Vuoi davvero eliminare la <%= taskType %> con il testo \"<%= taskText %>\"?", "streakCoins": "Bonus serie!", - "pushTaskToTop": "Metti in cima alla lista. Tieni premuto CTRL per mettere in fondo.", - "emptyTask": "Inserisci prima il titolo dell'attività.", + "pushTaskToTop": "Metti in cima alla lista. Tieni premuto CTRL o cmd per mettere in fondo.", + "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 %>.", "habitHelp2": "Gli Habit Cattivi sono quelli che vuoi evitare. Ti tolgono Saluta ogni volta che clicchi <%= minusIcon %>.", @@ -111,6 +111,6 @@ "rewardHelp1": "L'equipaggiamento che compri per il tuo avatar viene messo in <%= linkStart %>Inventario > Equipaggiamento<%= linkEnd %>.", "rewardHelp2": "L'equipaggiamento condiziona le tue statistiche (<%= linkStart %>Utente > Statistiche<%= linkEnd %>).", "rewardHelp3": "Gli equipaggiamenti speciali compariranno qui durante gli Eventi Globali.", - "rewardHelp4": "Non aver paura di impostare le tue ricompense! Guarda qualche esempio qui.", + "rewardHelp4": "Non aver paura di creare le tue ricompense! Guarda qualche esempio qui.", "clickForHelp": "Fai click per suggerimenti" } \ No newline at end of file diff --git a/common/locales/ja/backgrounds.json b/common/locales/ja/backgrounds.json index f796cfa377..11657ed5ec 100644 --- a/common/locales/ja/backgrounds.json +++ b/common/locales/ja/backgrounds.json @@ -77,74 +77,88 @@ "backgroundFloralMeadowNotes": "花咲く牧草地でピクニックをしよう", "backgroundGumdropLandText": "ガムドロップランド", "backgroundGumdropLandNotes": "ガムドロップランドの景色をかじろう", - "backgrounds052015": "セット12: 2015年5月リリース済み", + "backgrounds052015": "セット12: 2015年5月リリース", "backgroundMarbleTempleText": "マーブル神殿", "backgroundMarbleTempleNotes": "マーブル神殿の前でポーズ", "backgroundMountainLakeText": "山の湖", "backgroundMountainLakeNotes": "慎重に山の湖につま先を浸す", "backgroundPagodasText": "仏塔", "backgroundPagodasNotes": "仏塔の頂上に登る", - "backgrounds062015": "セット13: 2015年6月リリース済み", + "backgrounds062015": "セット13: 2015年6月リリース", "backgroundDriftingRaftText": "漂流筏", "backgroundDriftingRaftNotes": "漂流筏を漕ぐ", "backgroundShimmeryBubblesText": "キラキラな泡", "backgroundShimmeryBubblesNotes": "キラキラな泡いっぱいの海に浮く", "backgroundIslandWaterfallsText": "島の滝", "backgroundIslandWaterfallsNotes": "島の滝の近くにピクニックする", - "backgrounds072015": "セット14: 2015年7月リリース済み", + "backgrounds072015": "セット14: 2015年7月リリース", "backgroundDilatoryRuinsText": "先延ばしの廃墟", "backgroundDilatoryRuinsNotes": "先延ばしの廃墟へ飛び込む", "backgroundGiantWaveText": "高波", "backgroundGiantWaveNotes": "高波に乗ろう!", "backgroundSunkenShipText": "沈没船", "backgroundSunkenShipNotes": "沈没船を探検する。", - "backgrounds082015": "セット15: 2015年8月を放れた", + "backgrounds082015": "セット15: 2015年8月リリース", "backgroundPyramidsText": "ピラミッド", - "backgroundPyramidsNotes": "ピラミッドを賞めてください。", - "backgroundSunsetSavannahText": "サンセットサバナ", - "backgroundSunsetSavannahNotes": "サンセットサバナの向かいに尾けて", - "backgroundTwinklyPartyLightsText": "パーティーのキラキラ光", - "backgroundTwinklyPartyLightsNotes": "パーティーのキラキラ光のしたにダンスする!", - "backgrounds092015": "セット16:2015年9月リリース済み", - "backgroundMarketText": "市のHabitica", - "backgroundMarketNotes": "市のHabiticaに買い物する", - "backgroundStableText": "馬小屋のHabitica", - "backgroundStableNotes": "Tend mounts in the Habitica Stable.", - "backgroundTavernText": "居酒屋のHabitica\n", - "backgroundTavernNotes": "居酒屋のHabiticaは行きましょ", - "backgrounds102015": "セット17:2015年10月リリース済み", + "backgroundPyramidsNotes": "ピラミッドをたたえよう。", + "backgroundSunsetSavannahText": "サバンナの夕日", + "backgroundSunsetSavannahNotes": "サバンナの夕日を追いかけよう。", + "backgroundTwinklyPartyLightsText": "キラキラのパーティーライト", + "backgroundTwinklyPartyLightsNotes": "キラキラのパーティーライトの下で踊れ!", + "backgrounds092015": "セット16:2015年9月リリース", + "backgroundMarketText": "Habitica マーケット", + "backgroundMarketNotes": "Habitica マーケットで買い物しよう。", + "backgroundStableText": "Habitica の動物小屋", + "backgroundStableNotes": "Habiticaの動物小屋で、乗用獣の世話をしましょう。", + "backgroundTavernText": "Habirica の居酒屋", + "backgroundTavernNotes": "Habitica の居酒屋に行ってみよう。", + "backgrounds102015": "セット17:2015年10月リリース", "backgroundHarvestMoonText": "名月", - "backgroundHarvestMoonNotes": "名月の下で笑う", + "backgroundHarvestMoonNotes": "名月の下で笑おう。", "backgroundSlimySwampText": "沼のぬるぬる", - "backgroundSlimySwampNotes": "Slog through a Slimy Swamp.", - "backgroundSwarmingDarknessText": "Swarming Darkness", - "backgroundSwarmingDarknessNotes": "Shiver in the Swarming Darkness.", - "backgrounds112015": "セット18:2015年11月リリース済み", + "backgroundSlimySwampNotes": "ぬるぬる沼を歩こう。", + "backgroundSwarmingDarknessText": "迫りくる闇", + "backgroundSwarmingDarknessNotes": "迫りくる闇の中で震えよう。", + "backgrounds112015": "セット18:2015年11月リリース", "backgroundFloatingIslandsText": "島の浮かべて", - "backgroundFloatingIslandsNotes": "Hop across the Floating Islands.", + "backgroundFloatingIslandsNotes": "浮かんでる島々を飛んで渡ろう。", "backgroundNightDunesText": "砂山の夜", - "backgroundNightDunesNotes": "夜の砂山にゆっくり歩く", + "backgroundNightDunesNotes": "夜の砂漠を心やすらかに歩こう。", "backgroundSunsetOasisText": "夕焼けの沃地", "backgroundSunsetOasisNotes": "夕焼けの沃地で休む", - "backgrounds122015": "セット19:2015年12月リリース済み", + "backgrounds122015": "セット19:2015年12月リリース", "backgroundAlpineSlopesText": "雪の山", "backgroundAlpineSlopesNotes": "雪の山にスキーする", "backgroundSnowySunriseText": "雪の日出", - "backgroundSnowySunriseNotes": "雪の日出を見る", + "backgroundSnowySunriseNotes": "雪の日の出を見よう。", "backgroundWinterTownText": "都市の冬", - "backgroundWinterTownNotes": "Bustle through a Winter Town.", - "backgrounds012016": "SET 20: Released January 2016", - "backgroundFrozenLakeText": "Frozen Lake", - "backgroundFrozenLakeNotes": "Skate on a Frozen Lake.", - "backgroundSnowmanArmyText": "Snowman Army", - "backgroundSnowmanArmyNotes": "Lead a Snowman Army.", - "backgroundWinterNightText": "Winter Night", - "backgroundWinterNightNotes": "Look at the stars of a Winter Night.", - "backgrounds022016": "SET 21: Released February 2016", - "backgroundBambooForestText": "Bamboo Forest", - "backgroundBambooForestNotes": "Stroll through the Bamboo Forest.", - "backgroundCozyLibraryText": "Cozy Library", - "backgroundCozyLibraryNotes": "Read in the Cozy Library.", - "backgroundGrandStaircaseText": "Grand Staircase", - "backgroundGrandStaircaseNotes": "Stride down the Grand Staircase." + "backgroundWinterTownNotes": "冬の街の雑踏を歩こう。", + "backgrounds012016": "セット20: 2016年1月リリース", + "backgroundFrozenLakeText": "凍った湖", + "backgroundFrozenLakeNotes": "凍った湖でスケートしよう。", + "backgroundSnowmanArmyText": "雪だるまの軍隊", + "backgroundSnowmanArmyNotes": "雪だるまの軍隊を指揮しよう。", + "backgroundWinterNightText": "冬の夜", + "backgroundWinterNightNotes": "冬の夜の星空を見よう。", + "backgrounds022016": "セット21: 2016年2月リリース", + "backgroundBambooForestText": "竹の森", + "backgroundBambooForestNotes": "竹の森を散歩しよう。", + "backgroundCozyLibraryText": "いい感じの図書館", + "backgroundCozyLibraryNotes": "いい感じの図書館で読書しよう。", + "backgroundGrandStaircaseText": "正面大階段", + "backgroundGrandStaircaseNotes": "正面大階段を滑り降りよう。", + "backgrounds032016": "セット22:2016年3月リリース", + "backgroundDeepMineText": "深い炭鉱", + "backgroundDeepMineNotes": "深い炭鉱で貴重な金属を探し出しましょう。", + "backgroundRainforestText": "熱帯雨林", + "backgroundRainforestNotes": "熱帯雨林を探検しましょう。", + "backgroundStoneCircleText": "石の円陣", + "backgroundStoneCircleNotes": "石の円陣で呪文を唱えましょう。", + "backgrounds042016": "SET 23: Released April 2016", + "backgroundArcheryRangeText": "Archery Range", + "backgroundArcheryRangeNotes": "Practice on the Archery Range.", + "backgroundGiantFlowersText": "Giant Flowers", + "backgroundGiantFlowersNotes": "Frolic atop Giant Flowers.", + "backgroundRainbowsEndText": "End of the Rainbow", + "backgroundRainbowsEndNotes": "Discover gold at the End of the Rainbow." } \ No newline at end of file diff --git a/common/locales/ja/challenge.json b/common/locales/ja/challenge.json index 218b89192b..916fb6e665 100644 --- a/common/locales/ja/challenge.json +++ b/common/locales/ja/challenge.json @@ -44,7 +44,7 @@ "selectGroup": "グループを選択して下さい", "challengeCreated": "チャレンジ作成終了", "sureDelCha": "チャレンジを消しますか?", - "sureDelChaTavern": "Are you sure you want to delete this challenge? Your gems will not be refunded.", + "sureDelChaTavern": "本当にこのチャレンジを削除しますか? 使ったジェムは返金されません。", "removeTasks": "タスクを消す", "keepTasks": "タスクを残す", "closeCha": "チャレンジを終了して・・・", @@ -57,11 +57,11 @@ "prizeValue": "<%= gemcount %> <%= gemicon %>賞", "clone": "クローン", "challengeNotEnoughGems": "このチャレンジをポストするためにジェムの数が足りません。", - "noPermissionEditChallenge": "You don't have permissions to edit this challenge", - "noPermissionDeleteChallenge": "You don't have permissions to delete this challenge", - "noPermissionCloseChallenge": "You don't have permissions to close this challenge", + "noPermissionEditChallenge": "このチャレンジを編集する権限がありません。", + "noPermissionDeleteChallenge": "このチャレンジを削除する権限がありません。", + "noPermissionCloseChallenge": "このチャレンジを閉じる権限がありません。", "congratulations": "おめでとう!", "hurray": "やった!", - "noChallengeOwner": "no owner", - "noChallengeOwnerPopover": "This challenge does not have an owner because the person who created the challenge deleted their account." + "noChallengeOwner": "所有者なし", + "noChallengeOwnerPopover": "このチャレンジを作成した方のアカウントが削除されたため、このチャレンジには所有者がいない状態です。" } \ No newline at end of file diff --git a/common/locales/ja/character.json b/common/locales/ja/character.json index a68b2ec55c..ae34376928 100644 --- a/common/locales/ja/character.json +++ b/common/locales/ja/character.json @@ -1,7 +1,7 @@ { "statsAch": "ステータスと実績", "profile": "プロフィール", - "avatar": "アバター", + "avatar": "アバターのカスタマイズ", "other": "その他", "fullName": "フルネーム", "displayName": "表示名", @@ -19,7 +19,7 @@ "bodySlim": "小さい", "bodyBroad": "大きい", "unlockSet": "セットをアンロックする - <%= cost %>", - "locked": "ロックされています", + "locked": "ロック", "shirts": "シャツ", "specialShirts": "限定シャツ", "bodyHead": "髪型と髪色", @@ -30,50 +30,51 @@ "hairBase": "付け根", "hairSet1": "髪型1", "hairSet2": "髪型2", - "bodyFacialHair": "顔の毛", - "beard": "ひげ", + "bodyFacialHair": "ひげ", + "beard": "あごひげ", "mustache": "くちひげ", "flower": "花", + "wheelchair": "Wheelchair", "basicSkins": "基本的な肌の色", "rainbowSkins": "虹の肌の色", "pastelSkins": "パステルスキン", - "spookySkins": "スプーキースキン", - "supernaturalSkins": "超自然的スキン", - "splashySkins": "派手色スキン", - "rainbowColors": "レインボーカラー", - "shimmerColors": "きらきらカラー", - "hauntedColors": "ホーンテッドカラー", - "winteryColors": "ウィンターカラー", + "spookySkins": "ぶきみな肌", + "supernaturalSkins": "スーパーナチュラル肌", + "splashySkins": "派手な肌", + "rainbowColors": "にじ色", + "shimmerColors": "きらきら色", + "hauntedColors": "お化け色", + "winteryColors": "冬っぽい色", "equipment": "装備", "equipmentBonus": "装備", - "equipmentBonusText": "能力ボーナスは装備したバトルギアからもらえます。所持品の装備タブでバトルギアを選択してください。", - "classBonus": "クラスの装備ボーナス", - "classBonusText": "あなたのクラスは同クラスの装備を他のクラスより効率的に使えます(まだクラスをアンロックしていないか他のクラスを選択していない場合は戦士になっています)。自分の現在のクラスから選んだ装備については、50%の能力ボーナスを得ることができます。", + "equipmentBonusText": "装備するアイテムによって能力値がアップします。所持品メニューの装備タブで、身に着ける武装を選んでください。", + "classBonus": "クラス別装備ボーナス", + "classBonusText": "戦士クラスは、ほかのクラスより、武器・防具などのアイテムをずっとうまく使えます。戦士クラスは、装備品から得られる能力値のボーナスが50%増しになります。 (クラスをアンロックしていないか、別のクラスを選んでいない場合は、戦士クラスです)", "classEquipBonus": "クラスボーナス", - "battleGear": "バトルギア", - "battleGearText": "これは身につけるバトル用の道具です。タスクに接するときの数字に影響を及ぼす。", + "battleGear": "武装", + "battleGearText": "こちらは、戦いのときに身に着けるアイテムです。タスクを達成したときに得られる数値に影響します。", "autoEquipBattleGear": "新しいギアを自動装備する", "costume": "衣装", - "costumeText": "もし装備中のギアより他のギアの見た目が好ましい場合、「衣装する」のボックスをチェックしてください。そうすると、バトルギアを着たまま衣装が表れます。", - "useCostume": "衣装する", - "useCostumeInfo1": "武具のステータスに影響しないようにアイテムをアバターに備えるために\"衣装する\"をクリックして!これで左に一番良いステータスのために備えて、右に装備でアバターを着飾れます。", - "useCostumeInfo2": "”衣装する”をクリックした後にアバターは基本に見えます。。。でも心配しないで!左に見て、武具はまだ備えてます。次に、アバターをファンシーにさせる!右に何でも備えてもステータスを影響しないけど、すごくカッコ良く見えることが出来ます。違うコンボを試して、セットを混ぜて、そうしてペットやマウントやバックグラウンドに衣装をコーディネートして見てください。

他の質問があって?ウィキでの衣装ページ をチェックしてください。完璧な衣装を見つけた?衣装カーニバルギルド で見せびらかしてや酒場に嘯いて", - "gearAchievement": "とあるクラスの最高級のギアセットを揃えたため「アルティメット・ギア」賞を受賞した!下記のクラスのフルセットを揃えた:", - "moreGearAchievements": "他のアルティメット・ギアのバッジを受賞するには、統計のページでクラスを変更して、新クラスのギアを買ってきてね!", - "armoireUnlocked": "そして、魔法の戸棚をアンロックした!魔法の戸棚のご褒美をクリックすると特別な装備が当たるかもしれない!でたらめにXPや食べ物が出る可能性もある。", - "ultimGearName": "アルティメット・ギア", - "ultimGearText": "以下のクラスの最高武器と防具セットを揃えた:", + "costumeText": "装備中のアイテムより、ほかのアイテムの方が見た目だけがいい場合、「衣装に使う」にチェックを入れてください。身に着けている武装の上に、見た目の衣装としてはおる感じです。", + "useCostume": "衣装に使う", + "useCostumeInfo1": "「衣装に使う」をクリックすると、武装による能力値への効果を変えないで、アバターに着せることができます! これは、左側でもっとも効果の高いアイテムを装備して、右側でアバターの見た目をコーディネートできる、ということです。", + "useCostumeInfo2": "一度「衣装に使う」をクリックして、アバターがカワいくなるのを確かめて...心配ありません! 左側で確認できるように、武装はそのまま着けています。次に、カッコよくしましょう! 右側でどんなアイテムを装備していても、能力値は変わらず見た目だけを超イケてる感じにできます。セットをミックスしたり、ペットや山、背景と衣装をコーディネートしたりと、いろんな組み合わせを試してみましょう。\n

質問がありますか? Wikiの 衣装のページ をご覧ください。完璧な衣装ができた? 衣装祭りギルドや酒場でつぶやいてください!", + "gearAchievement": "クラスで最高のアイテムセットにアップグレードできる、「究極のアイテム」の実績を解除しました! 以下の完全なセットを手にしました : ", + "moreGearAchievements": "他の「究極のアイテム」のバッジを手にするには、統計のページでクラスを変えて、新しいクラスのアイテムを買いましょう!", + "armoireUnlocked": "そして、魔法の戸棚をアンロックした! ごほうびで「魔法の戸棚」をクリックすると、特別な装備を当てるチャンス! XPや食べ物が当たるかもしれませんが。", + "ultimGearName": "「究極のアイテム」", + "ultimGearText": "以下のクラスで最高の武器と防具のセットにアップグレードしました : ", "level": "レベル", "levelUp": "レベルアップ!", "gainedLevel": "レベルが上がりました!", - "leveledUp": "実生活の目標達成によって、あなたはレベル<%= level %>になりました!", + "leveledUp": "実生活での目標達成で、レベル <%= level %>になりました!", "fullyHealed": "全部直りました!", "huzzah": "やった!", - "mana": "魔法", - "hp": "再生", - "mp": "魔法点", - "xp": "レベル点", - "health": "元気", + "mana": "マナ", + "hp": "HP", + "mp": "マナ", + "xp": "経験", + "health": "体力", "allocateStr": "力のポイント:", "allocateStrPop": "力にポイントを加える", "allocateCon": "体質のポイント:", @@ -82,83 +83,86 @@ "allocatePerPop": "知覚にポイントを加える", "allocateInt": "知能のポイント:", "allocateIntPop": "知能にポイントを加える", - "noMoreAllocate": "レベル100に到達したため、これ以上能力値を獲得できません。レベルアップを続けること、もしくは市場で無料で手に入る転生のオーブを使ってレベル1から新しい冒険を始めることもできます。", - "stats": "ステータス", + "noMoreAllocate": "レベル100に到達したので、これ以上能力値が増えません。レベルアップを続けることもできますし、マーケットで無料で手に入る「生まれかわりのオーブ」をつかって、レベル1 から新しい冒険を始めることもできます。", + "stats": "アバターのステータス", "strength": "力", - "strengthText": "力はクリティカルヒットの確率、また、そこから発生するゴールド、経験値とドロップ率を上げる。さらに、ボスモンスターへのダメージも増加します。", + "strengthText": "力は「会心の一撃」が出る確率と、ゴールド、経験値、そして何かが落ちるチャンスを上げます。さらに、ボスモンスターに与えるダメージも増えます。", "constitution": "体質", - "conText": "体質はネガティブな習慣を実施したり、日課を実施しなかったときに受けるダメージを減少させます。", + "conText": "性格は、悪い習慣を行ったり、日課を果たせなかったときに受けるダメージを減らします。", "perception": "知覚", - "perText": "知覚は得られるゴールドを増加させます。また市場をアンロックさせた後では、タスク実行時のアイテムを見つける確率を増加させます。", + "perText": "感覚は得られるゴールドを増やします。またマーケットをアンロックした後では、タスク達成時のアイテムを見つける確率が上がります。", "intelligence": "知能", - "intText": "知能は得られる経験値を増加させます。またクラスをアンロックした後は、クラスの能力を発揮させるためのマナの最大値に関係します。", + "intText": "知能は得られる経験値を増やします。またクラスをアンロックした後は、クラスの能力によって有効なマナの最大値を決定します。", "levelBonus": "レベルボーナス", - "levelBonusText": "レベルは半分の数(レベル - 1)ボーナスは全部の属性にもらう。", - "allocatedPoints": "割り当てるポイント", + "levelBonusText": "それぞれの能力値に、(現在のレベル - 1 ) ÷2 のボーナスが得られます。", + "allocatedPoints": "割りあてたポイント", "allocatedPointsText": "獲得した能力値は割り当てることができます。キャラクタービルドの項目からポイントの割り当てを行えます。", "allocated": "割り当て済み", "buffs": "バフ(補助魔法)", - "buffsText": "アビリティや業績から得られる一時的な属性ボーナスです。これらは一日の終わりに消失します。アンロックしたアビリティについてはタスクページの業績リストから確認できます。", + "buffsText": "一時的な属性ボーナスは、能力や実績から得られます。これらは一日の終わりに消失します。アンロックしたアビリティについてはタスクページの業績リストから確認できます。", "characterBuild": "キャラクタービルド", "class": "クラス", "experience": "経験値", "warrior": "戦士", - "healer": "神官", + "healer": "治療師", "rogue": "盗賊", "mage": "魔道士", - "mystery": "不思議な", - "changeClass": "クラスチェンジ、属性ポイントを戻します", - "levelPopover": "レベルが1あがるごとに、各属性に割り当て可能なポイントを1ポイント得ることができます。手動で好きなように割り当てることもできますし、システムに自動で割り振るように設定することもできます。", - "unallocated": "まだ割り当ててない属性ポイント", - "haveUnallocated": "割り当てられていない属性ポイントが<%= points %>ポイントあります。", - "autoAllocation": "自動的に割り当てる", - "autoAllocationPop": "レベルアップした時のポイントの振り方を決めることができます", - "evenAllocation": "平等に属性ポイントを配る", - "evenAllocationPop": "各々の属性に同じポイント数を割り当てます。", - "classAllocation": "クラスに基づいてポイントを分配する", - "classAllocationPop": "あなたのクラスに重要な属性により多くのポイントを割り当てます。", - "taskAllocation": "タスクの行動に基づいてポイントを分配する", - "taskAllocationPop": "完了するタスクに関連する物理的(体力)、心理的(知能)、社会的(体質)、とその他(知覚)というカテゴリーに基づいて、ポイントを割り振ります。", - "distributePoints": "未割り当てのポイントを分配する", - "distributePointsPop": "選択済の割り当てスキームに基づいて、未割り当ての全ポイントを割り振ります。", - "warriorText": "戦士はタスクを完了した際にクリティカルヒットが出やすく、その効果も高い。クリティカルヒットが出た場合、ゴールド、経験値、アイテムドロップの確率にボーナスが付き、ボスにも通常より大きなダメージを与える。もし予測不能の一攫千金タイプの報酬にモチベーションが上がるなら、もしくはボス戦でダメージを与えて活躍したいなら戦士を選ぼう!", - "mageText": "魔道士は迅速に学び、他のクラスよりも早く経験とレベルを獲得します。また、特別な能力を使用するマナの偉大な契約を獲得します。あなたが習慣の戦術的なゲームの側面を楽しむ場合、またはレベルアップおよび拡張機能のロック解除の強いモチベーションがある場合、魔道士をプレイしましょう!", - "rogueText": "悪者は富を蓄めること、誰よりもゴールド獲得することが大好きで、ランダムにアイテムを見つけることに長けています。その象徴的な忍びの術の能力は日課を実施しなかった結果を彼らのアヒルにすることができます。報酬と実績からの強いモチベーション、戦利品とバッジのための努力がある場合、悪者をプレイしましょう!", - "healerText": "治療者は害を通さないよう対抗して立ち、他の人にその保護を拡げます。日課を実施しなかったことや悪い習慣はあまり彼らを困らせません。彼らは障害から健康を回復する方法があります。メンバーの他の人を支援することを楽しむ場合、またはハードワークを通して死を回避する考えがあなた鼓舞した場合、治療者をプレイしましょう!", - "optOutOfClasses": "見合わせる", - "optOutOfPMs": "見合わせる", - "optOutOfClassesText": "Can't be bothered with classes? Want to choose later? Opt out - you'll be a warrior with no special abilities. You can read about the class system later on the wiki and enable classes at any time under User -> Stats.", + "mystery": "ミステリー", + "changeClass": "クラスの変更、能力値ポイントの調整", + "levelPopover": "レベルが上がるたびに、能力値のどれかに割りあてできる1ポイントを得ることができます。手動で好きなように割りあてることもできますし、「自動割りあて」設定でシステムに任せることもできます。", + "unallocated": "未割りあての能力値ポイント", + "haveUnallocated": "<%= points %> ポイントが割りあてできます。", + "autoAllocation": "自動割りあて", + "autoAllocationPop": "レベルアップした時の能力値ポイントの割りあて方を決めます", + "evenAllocation": "均等に能力値ポイントを割りあてる", + "evenAllocationPop": "各々の能力値に均等にポイントを割りあてます。", + "classAllocation": "クラス基準でポイントを割りあてる", + "classAllocationPop": "あなたのクラスにとって重要な能力値に、多めにポイントを割りあてます。", + "taskAllocation": "タスクの実践基準でポイントを割りあてる", + "taskAllocationPop": "達成するタスクに関連して、肉体的 (力)、知的(知能) 、社会的(性格)、そして、その他(感覚)にポイントを割りあてます。", + "distributePoints": "未割りあてのポイントをふりわける", + "distributePointsPop": "選択したの割りあて方法にもとづいて、すべての未割りあてポイントをふりわけます。", + "warriorText": "戦士はタスクを完了したときに、「会心の一撃」が出やすく、その効果も高い。「会心の一撃」が出ると、ゴールド、経験値、アイテムドロップの確率にボーナスがつきます。また、戦士はボスに大きなダメージを与えます。予測できない一攫千金タイプの報酬でやる気が出る、もしくはボス クエストで活躍したいなら、戦士でプレーしましょう!", + "mageText": "魔道士は、すぐに身に着ける学習能力をもっています。経験値の取得とレベルアップが他のクラスより速いのです。また、魔道士は、特殊能力を使つためのマナをうまく集めます。Habitica の戦術的な面を楽しみたい、レベルアップや拡張機能のアンロックにすごくやる気が出るなら、魔道士でプレーしましょう!", + "rogueText": "盗賊は富を集めることを愛するのです。ほかのどのクラスよりもゴールドを稼ぎ、アイテムを見つける確率が高いのです。盗賊の特徴、忍びの術をもってすれば、日課をやらなかったとしても、性格的に傷つかない。戦利品や勲章――Habitica では、ごほうびと実績に強く心動かされるなら、盗賊でプレーしましょう!", + "healerText": "治療師は痛みに耐え、他人を守るのです。やらなかった日課や悪い習慣にも治療師は動揺せず、失敗から体力を回復させる能力を持っています。パーティーの他のメンバーを助けることに喜びを感じる、困難な仕事による死をも恐れぬ理想があるのなら、治療師でプレーしましょう!", + "optOutOfClasses": "やめる", + "optOutOfPMs": "やめる", + "optOutOfClassesText": "クラスなんてめんどくさい? 後で選びたい? 選ばなくても構いません。特殊能力のない戦士になります。クラスのしくみについてwiki を参照し、いつでも ユーザー -> ステータス で有効にすることができます。", "select": "選択", "stealth": "ステルス", - "stealthNewDay": "新たな一日が始まった時に、日課をやり残したことによるダメージを避けられるでしょう。", - "streaksFrozen": "ストリークが凍結されています", - "streaksFrozenText": "逃した日課のストリークが日の終わりにリセットされません。", - "respawn": "リスポーン!", - "youDied": "死んじゃった!", - "dieText": "レベルを1つ下がり、全ての金とランダムに1個の装備を失ってしまいました。起き上がれ、Habita人よ。もう一度試みるのだ!癖を抑えて、日課を怠らないようにし、もしためらったら、HPポーションで死を避けて!", - "sureReset": "これでキャラクターのクラス及び割り当てたポイント(再び割り当てる為に全てが戻されます)をリセットし、3ジェムがかかりますが、よろしいですか?", - "purchaseFor": "<%= cost %>ジェムで買いましょうか。", - "notEnoughMana": "MPが足りません。", - "invalidTarget": "不適切なターゲットです", + "stealthNewDay": "日があらたまったとき、前日にやり残した日課によるダメージを避けられます。", + "streaksFrozen": "連続実行のカウントを止めています", + "streaksFrozenText": "日があらたまっても、日課の連続実行をリセットしません。", + "respawn": "生き返った!", + "youDied": "あなたは死にました!", + "dieText": "レベルが1下がり、すべてのゴールドといくつかの装備品を失ってしまいました。Habitica の民よ、復活せよ! 悪い習慣をひかえ、日課をこなすことに気を配り、つまずいても体力回復の薬を使って、死の手が届かぬよう、もちこたえましょう!", + "sureReset": "よろしいのですか? この操作で、あなたのキャラクターのクラスと割り当てたポイントがリセットされます(獲得したポイントについては、再割り当てできる状態に戻ります)。また、3 ジェムが必要です。", + "purchaseFor": "<%= cost %> ジェムで購入しますか?", + "notEnoughMana": "マナが足りません。", + "invalidTarget": "ねらえません", "youCast": "<%= spell %>をかけました。", "youCastTarget": "<%= target %>に<%= spell %>をかけました。", - "youCastParty": "<%= spell %>をパーティに対してかけました。", - "critBonus": "クリティカルヒット!ボーナス:", - "displayNameDescription1": "酒場、ギルド、パーティチャットに投稿したメッセージは、あなたのアバターと一緒に表示されます。", - "displayNameDescription2": "設定->サイト", - "displayNameDescription3": "に行って、登録セクションでログイン名を変更できます。", - "unequipBattleGear": "バトルギアを脱ぐ", - "unequipCostume": "衣装を脱ぎます", + "youCastParty": "パーティに<%= spell %>をかけました。", + "critBonus": "会心の一撃! ボーナス : ", + "displayNameDescription1": "アバターといっしょに表示されます。また酒場、ギルド、パーティチャットへの投稿などのメッセージの中にも表示されます。", + "displayNameDescription2": "設定 -> サイト", + "displayNameDescription3": "で下にスクロールした「登録」でログイン名を変更できます。", + "unequipBattleGear": "武装を外す", + "unequipCostume": "衣装を脱ぐ", "unequipPetMountBackground": "ペットとマウントと背景をはずす", - "animalSkins": "動物スキン", - "chooseClassHeading": "クラスを選ぼう!あるいは、あとで選ぶために見合わせることも可能です。", + "animalSkins": "動物柄", + "chooseClassHeading": "クラスを選びましょう! あとで選ぶこともできます。", "warriorWiki": "戦士", "mageWiki": "魔道士", "rogueWiki": "盗賊", - "healerWiki": "神官", + "healerWiki": "治療師", "chooseClassLearn": "クラスについて", "str": "力", "con": "体質", "per": "知覚", - "int": "知能" + "int": "知能", + "showQuickAllocation": "割りあてを表示", + "hideQuickAllocation": "割りあてを非表示", + "quickAllocationLevelPopover": "レベルが上がるたびに、能力値のどれかに割りあてできる1ポイントを得ることができます。手動で好きなように割りあてることもできますし、「自動割りあて」設定でシステムに任せることもできます。" } \ No newline at end of file diff --git a/common/locales/ja/communityguidelines.json b/common/locales/ja/communityguidelines.json index be7b91bdae..5918cb89f6 100644 --- a/common/locales/ja/communityguidelines.json +++ b/common/locales/ja/communityguidelines.json @@ -11,9 +11,9 @@ "commGuideList01A": "助けあう精神。多くの人がコミュニティの新しいメンバーの手伝いや、案内に時間とエネルギーを捧げてます。例えば、初心者ギルドは、みんなの質問に答えることに専念しているギルドです。もし、あなたに何か助けられることがあれば、恥ずかしがらずに助けてあげてください!", "commGuideList01B": "熱心な態度。Habitica人は自分たちの生活を改善するだけでなく、サイトの構築を支援し、常にそのために懸命に働きます。オープンソースプロジェクトですが、我々は、常にこのウェブサイトが最高な場所になるように取り組んでいます。", "commGuideList01C": "支え合う姿勢。Habitica人は互いの勝利のために応援しあい、苦しい時は、互いを元気付けます。互いに力を貸し、互いに支えあって、互いに学びます。パーティでは、お互いの呪文で助け合い、チャットルームでは、親切で支えとなる言葉を掛け合っています。", - "commGuideList01D": "敬うマナー.私達には異なる背景、異なる技術、そして異なる意見があります。それが私たちのコミュニティーをとても素晴らしいものにしてくれます!Habitica人は、これらの違いを尊重し、それらを賛美します。ここにいれば、あなたはすぐに様々な背景や職業を持つ友だちができるでしょう。", + "commGuideList01D": "敬うマナー.私達には異なる背景、異なる技術、そして異なる意見があります。それが私たちのコミュニティーをとても素晴らしいものにしてくれます!Habitica人は、これらの違いを尊重し、それらを賛美します。ここにいれば、あなたはすぐに様々な背景や職業を持つ友達ができるでしょう。", "commGuideHeadingMeet": "モデレーターに会おう!", - "commGuidePara006": "Habiticaには、コミュニティを穏やかで、満足で、トロールが居ない状態に保つために、スタッフ・メンバーと力を合わせる疲れを知らない遍歴の騎士がいます。\nそれぞれ特定の領域を受け持っていますが、時々他のソーシャルな領域を担当するために呼ばれます。\nスタッフとモッズは、しばしば \"Mod Talk\"や\"Mod Hat On\" と呼ばれる公式声明をはじめます。", + "commGuidePara006": "Habitica には、コミュニティの平穏、満足、トロールが居ない状態を保つためにスタッフと力を合わせてくれる、疲れを知らない遍歴の騎士がおります。それぞれ特定の領域を受け持っていますが、ときには別の領域ともいえるコミュニティーに呼びだされます。スタッフとモデレーター(仲裁者)は、\"Mod Talk\" または \"Mod Hat On\" といった形で、公式見解を示します。", "commGuidePara007": "スタッフは王冠のマークが付いた紫色のタグがあります。彼らの肩書は「Heroic」です。", "commGuidePara008": "モデレーターは星印が付いた濃青色のタグが付いています。彼らの肩書は「Guardian」です。唯一例外のBaileyは、NPCとして、星印が付いた黒と緑のタグがあります。", "commGuidePara009": "現在のスタッフメンバーは次のとおりです(左から右へ):", @@ -25,24 +25,24 @@ "commGuidePara011b": "GitHub/Wikia上", "commGuidePara011c": "Wikia上", "commGuidePara011d": "GitHub上", - "commGuidePara012": "If you have an issue or concern about a particular Mod, please send an email to Lemoness (leslie@habitica.com).", - "commGuidePara013": "Habiticaほどの大きいコミュニティでは、ユーザーが行き来たりと大変ですので、時にはモデレーターは仕事を置いて、休みを取る必要があります。以下が引退したモデレーターたちです。彼らにはもうモデレーターの権限はありませんが、彼らの仕事を尊重しなければなりません。", - "commGuidePara014": "名誉あるモデレーター達:", - "commGuideHeadingPublicSpaces": "Habiticaでの公共の場", - "commGuidePara015": "Habiticaにはパブリックとプライベートの二種類のソーシャルスペースがあります。パブリックスペースは酒場、パブリックギルド、GitHub、Trello、Wikiを含みます。プライベートスペースはプライベートギルド、パーティーチャット、プライベートメッセージを含みます。", - "commGuidePara016": "Habiticaのパブリックスペースをナビゲートするときに、誰もが安全で楽しい雰囲気を保つためにいくつかの一般的なルールがあります。これらは、あなたのような冒険者ならば簡単なはずです!", - "commGuidePara017": "お互いを尊重しましょう。礼儀正しく、親切に、愛想よく、そして助け合いの精神を持って接しましょう。Habitica人は、さまざまな経歴を持ち、あなたとは全く違う経験をしてきた人であふれているということを、常に心にとどめておいてください。この多様性は、Habiticaをさらに楽しくしてくれる要素の一つでもあります。お互いの違いも共通点も尊重しあうということが、健全なコミュニティーを作ることにつながります。特に以下のことには気をつけてください。", - "commGuideList02A": "全ての規約に従うこと。", - "commGuideList02B": "暴力的、脅迫的、性的に露骨またはきわどいもの、またはどんな個人またはグループに対してでも差別、偏見、人種主義、性差別、憎悪、いやがらせまたは危害を加えるような画像やテキストは投稿しないでください。 ジョークだとしてもです。これは、中傷ならびに告知を含みます。\n誰でも同じユーモアセンスがあるというわけではありません。そして、あなたが冗談だと思った何かが他の人を傷つける場合があります。あなたの日課を攻撃し、互いには攻撃しないでください。", - "commGuideList02C": "全ての年齢層の言動に対して適切であるかを検討します。このサイトを利用する若いHabiticansが多くいます!それでは、人を傷つけないように、どのHabiticansでも目標に向かってることを妨げないようにしましょう。", - "commGuideList02D": "冒涜を避けてください。 これは他の場所では許容範囲かもしれない、より軽い、宗教的なののしり言葉も含みます-ここには様々な信仰と文化的な背景を持った人々がいます。そして、私たちは全ての人が公共の場で快適に感じて欲しいと考えています。また、中傷は利用規約への違反であり、非常に厳格に対処されます。", - "commGuideList02E": "不和を生じさせるような長い議論は、バックコーナー以外では避けてください。もし誰かが人を傷つけるような失礼な発言をしたと感じた場合は、言い返さないでください。「その冗談はちょっと・・・」など、一言だけの、礼儀正しいコメントは結構ですが、思いやりのないコメントに対して思いやりのないコメントで返すと、緊張状態が悪化し、Habiticaを居心地の悪い場所に変えてしまいます。親切心と礼儀をもって接すると、理解も得やすくなります。", - "commGuideList02F": "議論の停止やバックコーナーへの移動などのモデレーターの要求には直ちに従ってください。移動を条件に続けることが許された場合、決め台詞、捨て台詞、負け犬の遠吠えなどの行為は全てバックコーナーの”テーブル”で(礼儀正しく)行ってください。", - "commGuideList02G": "もし誰かにあなたの発言や行為が迷惑だと言われたら、怒って反論するのではなく、少し時間を取って反省しましょう。素直に謝れるということは、強さの証でもあります。もし相手の言い方が不適切であると感じたら、公共の場で相手に直接言うのではなく、モデレーターに連絡しましょう。", - "commGuideList02H": "Divisive/contentious conversations should be reported to mods. If you feel that a conversation is getting heated, overly emotional, or hurtful, cease to engage. Instead, email leslie@habitica.com to let us know about it. It's our job to keep you safe.", - "commGuideList02I": "スパムはやめてください。 スパム行為には以下のことが含まれますが、これに限定されるものではありません: 複数の場所に同じコメントまたは問合わせを掲示する、説明または前後関係なしでリンクを掲示する、無意味なメッセージを送る、一度に多くのメッセージを送る、などです。\nジェムや購読を繰り返し乞うことも、スパム行為とみなされる場合があります。", - "commGuidePara019": "プライベートな空間ではユーザーはどんな話題でも議論するより多くの自由があります。しかし、差別的、暴力的、脅しなどの投稿を含む利用規約には違反しないでください。", - "commGuidePara020": "プライベートメッセージ(PM)には、さらにいくらかのガイドラインがあります。誰かがあなたをブロックしたならば、あなたからアンブロックを頼むために、彼らに他の手段で連絡しないでください。さらに、支援を求めている誰かに、あなたはPMを送るべきでありません。(質問を支援する公開の答えがコミュニティに役だつため) 最後に、宝石や購読を願う人へのPMを送信はしないでください。これはスパム行為とみなされる場合があります。", + "commGuidePara012": "特定のモデレーターに問題があったり、検討を要する場合は、レモネス(leslie@habitica.com)あてのメールにてご連絡ください。", + "commGuidePara013": "Habitica ほどの大きいコミュニティでは、ユーザーの出入りがあり、モデレーターにも聖なる外とうを脱いで心を解き放つことが必要なときがあります。以下は退任した名誉モデレーターたちです。彼らにはもうモデレーターとしての力はもっていませんが、残した業績に敬意を表します。", + "commGuidePara014": "名誉モデレーター : ", + "commGuideHeadingPublicSpaces": "Habitica 上でのオープンな場所", + "commGuidePara015": "Habitica には、公開とプライベートの2種類のコミュニティー スペースがあります。公開スペースとしては、キャンプ場チャット、公開ギルド、GitHub、Trello、そしてWiki があります。プライベートスペースとしては、プライベート ギルド、パーティーでのチャット、そしてPM(プライベートメッセージ)があります。表示されるユーザーの表示名のすべては、公開スペースガイドラインを守られければなりません。表示名を変更するには、webサイトで ユーザー > プロフィール と進み、「編集」ボタンをクリックしてください。", + "commGuidePara016": "だれにとっても安全で楽しくあるために、Habitica のオープン スペースをぶらぶらするときの一般的なルールがいくつかあります。あなたのような冒険者なら、簡単なことです!", + "commGuidePara017": "たがいに尊重する。礼儀正しく、優しく、親しみやすく、協力的に。おぼえておいてください。Habitica の民は、さまざまな背景をもち、実に幅広い経験をもっています。Habitica がすごくステキなのはそれもあるから! コミュニティーをつくるということは、類似と同様、違いをも尊敬しほめたたえるということ。おたがいを尊敬する簡単な方法があります : ", + "commGuideList02A": "利用規約のすべてに従ってください。", + "commGuideList02B": "以下の画像やテキストの投稿は禁止します。暴力的、脅迫的、または露骨であれ暗示的であれ性的、またはいかなる個人またはグループに対する差別・偏見・人種主義・性差別・憎悪・いやがらせまたは危害を助長するもの。たとえ冗談だとしてもです。これは、口述された中傷も含みます。だれもが同じユーモアの感性ではなく、あなたが冗談だと思ったことが他人を傷つけるかもしれません。やっつけるべきは自分自身の日課であり、Habitica の民同士ではありません。", + "commGuideList02C": "すべての年齢に適切なやりとりをしましょう。このサイトを利用する若い Habitica の民がたくさんいます! 純真な者をけっして汚すことなく、目標にむかって進んでいるすべての Habitican の民を邪魔することのないようにしましょう。", + "commGuideList02D": "冒涜しない。 他の場所では許されるかもしれない、ちょっとして宗教的な悪口も含みます。ここにはすべての宗教的・文化的な背景をもった人びとがいます。そこで、オープンな場所で、すべての人々が気持ちよく過ごすことができるようにしたいと考えています。付記すれば、中傷は利用規約違反であり、きわめて厳格に対処します。", + "commGuideList02E": "バックコーナー以外では、不和を引き起こす長い議論は避ける。もしだれかの発言が無礼で人を傷つけていると感じた場合は、議論に加わらないでください。「その冗談に少々いやな思いをしました」など、ちょっとした、礼儀正しいコメントは構いません。しかし、荒々しく思いやりのないコメントに対する、荒々しく思いやりのない返信は、緊張を高め、Habitica をより近寄りがたい場所にしてしまいます。優しさと礼儀正しさは、自分の言わんとしていることを他者に理解してもらう上でも役に立ちます。", + "commGuideList02F": "議論の収束や片隅への移動など、モデレーターからの要請にはすぐに従ってください。決め台詞、捨て台詞、負け犬の遠吠えなどの行為は、すべて移動先のバックコーナーの”テーブル”で(礼儀正しく)行ってください。許可の上で。", + "commGuideList02G": "だれかが、あなたの言動を「気に入らない」といったとしても時間をおいてから回答しましょう、怒って反論するのではなく。 他人に心からの反省をできるということは、きわめて強い勇気をもっていることの証明です。あなたに対する他者の言動の方が不適切だと感じたら、オープンな場でケンカをふっかけるより、モデレーターに連絡をとりましょう。", + "commGuideList02H": "熱くなりすぎて、感情的になりすぎたり、暴力的になってきたり、そのためやる気がなくなってきたりしたのを感じたなら、対立や論争は、モデレーターに報告すべきです。
\nもしくは、メールで leslie@habitica.com あてに知らせてください。あなた方の安全を守ることは、私たちの仕事です。", + "commGuideList02I": "スパム禁止。 スパム行為には以下の行為が含まれ、かつまたそれに限定するものではありません : 同じコメントや質問を複数の場所に投稿すること、説明なしまたは話の流れと無関係にリンクを投稿すること、無意味なメッセージを投稿すること、大量のメッセージを連続的に投稿すること。\nチャット スペースやプライベートメッセージでジェムや寄付をもとめることもスパムと見なします。", + "commGuidePara019": "プライベート スペースにおいては、より自由な話題で議論することができますが、差別的、暴力的、または脅迫的な内容を投稿するなどの利用規約違反は許されません。 チャレンジの名前は、勝者の公開プロフィールに表示されますので、すべてのチャレンジの名前は、たとえそれがプライベートスペース内のものだったとしても、公開スペースガイドラインを守らなくてはならないことを付け加えておきます。", + "commGuidePara020": "プライベート メッセージ(PM)には、追加のガイドラインがあります。あなたがだれかにブロックされた場合、他のどんな手段であれ連絡してブロックの取り消しを求めることは禁止です。また、だれかにサポートに関するPMを送るべきではありません(サポートに関する質問と回答は、コミュニティー全体に役立つものだからです)。最後に、贈り物やジェム、寄付を求めるPMは、スパム行為とみなされます。", "commGuidePara021": "さらに、Habiticaの一部のパブリックスペースは、追加のガイドラインがあります。", "commGuideHeadingTavern": "酒場", "commGuidePara022": "酒場は、Habiticansが交流する主な場所です。\"Daniel the Barkeep\" はその場所を清潔に保ち、Lemonessはあなたが座って話す間、レモネードを首尾よく出します。ちょっと心に留めておいてください...", @@ -52,7 +52,7 @@ "commGuideHeadingPublicGuilds": "公共ギルド", "commGuidePara029": "公共ギルドは酒場と似ていますが、一般的な会話や雑談ではなく、ギルドごとにテーマがあります。公共ギルドのチャットは、このテーマについて話すところです。ですので例えば、作家ギルド内でメンバーが急にガーデニングの話で盛り上がり始めたら、それは場違いですし、ドラゴン愛好家ギルドのチャットで古代魔法の解読についての議論を交わすのはマナー違反です。ギルドによっては許容範囲が比較的広いところもありますが、一般的なルールとしては話が脱線しないように気をつけましょう!", "commGuidePara031": "一部の公共ギルドは、不景気、宗教、政治、その他の微妙なトピックを含みます。 そして、その中の会話が利用規約や公共スペースのルールを犯さない限り、その話題は継続できます。", - "commGuidePara033": "Public Guilds may NOT contain 18+ content. If they plan to regularly discuss sensitive content, they should say so in the Guild title. This is to keep Habitica safe and comfortable for everyone. If the guild in question has different kinds of sensitive issues, it is respectful to your fellow Habiticans to place your comment behind a warning (ex. \"Warning: references self-harm\"). Additionally, the sensitive material should be topical -- bringing up self-harm in a guild focused on fighting depression may make sense, but may be less appropriate in a music guild. If you see someone who is repeatedly violating this guideline, even after several requests, please email leslie@habitica.com with screenshots.", + "commGuidePara033": "オープン ギルドでは、18歳未満(未成年者)禁止の内容の投稿をしてはいけません。恒常的に刺激的な内容をふくむ議論をしたいのであれば、ギルドのタイトルに明記すべきです。 これは、Habitica がだれにとっても気持ちよくあるためです。ギルドでの質問に、主旨と違うセンシティブな問題をふくんでいる場合は、警告(例 : 「警告 : 自傷について」)とコメントをすることが、そのHabitica の仲間への敬意となります。くわえていえば、刺激的な内容は、限定的であるべきです。自傷を、うつ病とたたかうギルドであれば意味のあることですが、音楽のギルドではほぼ不適切です。何度か改善要求しても、くり返しこのガイドラインを破る人物を見つけた場合は、スクリーンショットを添付して leslie@habitica.comへメールでお知らせください。", "commGuidePara035": "公共であれプライベートであれ、団体や個人を攻撃する目的でギルドを作ってはいけません。そのようなギルドの作成は即時アカウント停止の対象になります。 仲間の冒険家とではなく、悪い習慣と戦いましょう!", "commGuidePara037": "すべてのターバンチャレンジと公共ギルドチャレンジは、同様にこれらの規則を遵守しなければなりません。", "commGuideHeadingBackCorner": "バックコーナー", @@ -72,7 +72,7 @@ "commGuidePara044": "以下のユーザーはHabitica レポジトリのメンバーです:", "commGuideHeadingWiki": "Wiki", "commGuidePara045": "Habitica wikiはこのサイトについての情報を集めています。Habiticaのギルドに似たいくつかのフォーラムも持っています。", - "commGuidePara046": "Habitica wikiはHabiticaの全てのデータベースであると考える事が出来ます。サイトの機能やゲームをプレイするガイドやあなたがHabiticaにどう貢献できるかのtipsを提供し、ギルドやパーティーの宣伝やトピックの投票の場を提供します。", + "commGuidePara046": "Habitica wiki は Habitica についてのすべてがつまったデータベースをめざしています。サイトの機能やプレーするにあたってのガイド、Habitica に貢献する方法についてのちょっとした情報や、ギルドやパーティーの宣伝や何かしらの話題についての投票といった場を提供しています。", "commGuidePara047": "wikiはWikiaにホストされているので、HabiticaやHabitica wikiのルールに加えてWikiaの規約も適用されます。", "commGuidePara048": "このwikiは編者たちによる全くの合作であり、いくつか以下の追加のガイドラインを含んでいます:", "commGuideList04A": "Trelloボードにおける新しいページや大きな変更の要望", @@ -101,7 +101,7 @@ "commGuideHeadingModerateInfractions": "中度の違反行為", "commGuidePara054": "違反への温和な対応は私たちのコミュニティを危険にしませんが不愉快にはなります。これらの違反は罰を与えられるでしょう。もし複数の違反が連動した場合は罰はより深刻になりえます。", "commGuidePara055": "以下はいくつかの深刻な違反行為の例です。これは、総合リストではありません。", - "commGuideList06A": "Ignoring or Disrespecting a Mod. This includes publicly complaining about moderators or other users/publicly glorifying or defending banned users. If you are concerned about one of the rules or Mods, please contact Lemoness via email (leslie@habitica.com).", + "commGuideList06A": "モデレーターへの無視や無礼。オープンな場でモデレーターや他のユーザーに不平をいうこと、規約違反によりアカウントを停止されたユーザーを賛美・擁護することもこの行為に含まれます。ルールやモデレーターに思うところがある方は、レモネス(Lemoness) にメール (leslie@habitica.com)で連絡をとってください。", "commGuideList06B": "後部座席モデレート。素早く関連するポイントを明確にするには易しいルールの記載が良いです。後部座席モデレートは、あなたが誤りを正すよう説明し誰かが行動をとることを、話し、要求し、強くほのめかすことで構成されています。彼らは罪に問われていることという事実をあなたは誰かに警告できます。ですが行動は要望しないでください、例えば「知っての通り、冒涜は酒場では落胆させられる。だからあなたはそれを消してほしいだろう」と言うことは、「あなたにそれを消してくれと頼まなければならないだろう」という言うよりも良いのです。", "commGuideList06C": "ガイドラインでの公共の場での繰り返し違反行為", "commGuideList06D": "軽度の違反行為の繰り返し", @@ -120,13 +120,13 @@ "commGuideHeadingSevereConsequences": "厳罰の例としては次の通りです。", "commGuideList09A": "アカウント停止", "commGuideList09B": "アカウントの削除", - "commGuideList09C": "貢献者層の進行を永遠に無効化(\"凍結\")", + "commGuideList09C": "貢献段位の進行を永遠に無効化(\"凍結\")", "commGuideHeadingModerateConsequences": "中度の結果の例", "commGuideList10A": "公開チャット特権の制限", "commGuideList10B": "プライベートチャット特権の制限", "commGuideList10C": "ギルド/チャレンジ作成特権の制限", - "commGuideList10D": "貢献者層の進行を一時的に無効化(\"凍結\")", - "commGuideList10E": "貢献者層の降格", + "commGuideList10D": "貢献段位の進行を一時的に無効化(\"凍結\")", + "commGuideList10E": "貢献段位の格下げ", "commGuideList10F": "ユーザーを「謹慎」とする", "commGuideHeadingMinorConsequences": "微罪の例としては次の通りです。", "commGuideList11A": "公共の場のガイドラインの注意喚起", @@ -139,7 +139,7 @@ "commGuidePara062": "あなたが受け取る、あなたの行動の結果(もしくはモデレータ/スタッフが公表する軽微な結果)を説明するメールはよい情報源です。押し付けられた制限と協力し、ペナルティを解除する条件を満たすよう努力してください。", "commGuidePara063": "もしあなたが自分の結果や違反行為の本質を理解しないなら、スタッフ/モデレータに質問し 将来違反を犯すことを防ぐ助けとしてください。", "commGuideHeadingContributing": "Habiticaへの貢献", - "commGuidePara064": "Habiticaはオープンソースのプロジェクトです。つまり、どのHabiticansでも歓迎します。次の段階に応じて与えれれう報酬:", + "commGuidePara064": "Habitica はオープンソースのプロジェクトです。つまり、Habitican ユーザーだれでも歓迎します。段位に応じて以下の報酬が与えられます : ", "commGuideList12A": "Habitica貢献者バッジ。3ジェム増やします", "commGuideList12B": "貢献者のアーマー、3ジェムを増やします。", "commGuideList12C": "貢献者のヘルメット、3ジェムを増やします。", @@ -147,12 +147,12 @@ "commGuideList12E": "貢献者の盾、4ジェムを増やします。", "commGuideList12F": "貢献者のペット、4ジェムを増やします。", "commGuideList12G": "貢献者のギルド招待、4ジェムを増やします。", - "commGuidePara065": "モデレータは第7貢献者層からスタッフと現モデレータによって選ばれます。第7貢献者層はサイトの利益のために熱心に働いており、彼らの全てがモデレータの権力者と話しているわけではない事に注意してください。", - "commGuidePara066": "貢献者層について気に留める重要なことがあります:", - "commGuideList13A": "層は自由裁量です。コミュニティでのあなたの仕事やその価値についての我々の認識といった多くの事実に基づいて、モデレータの裁量が与えられます。我々は我々の裁量において、特定のレベルやタイトルや報酬を変更する権利を留保しています。", - "commGuideList13B": "層はあなたが進むたび厳しくなります。もしひとつモンスターを作ったなら、もしくは小さなバグを直したら、それは最初の貢献者レベルとして十分でしょう。でも次に進むには十分ではありません。あらゆる良いRPGのように、レベルが増えれば挑戦もふえます!", - "commGuideList13C": "層は各フィールドで「やり直し」ません。難易度が上がると、我々はあなたの全ての貢献に着目します。芸術を少しやる人が小さいバグをなおしたり、wikiに手を出したりできるように。ひとつの仕事を一生懸命やる人よりも速く進めないとしても。これは物事を公平にする助けとなります。", - "commGuideList13D": "謹慎中のユーザは次の層へ進めません。モデレータは違反行為に起因するユーザーの進展を凍結する権限をもちます。これが起こると、ユーザは常にその決定とどうすれば正せるかを通知されます。違反や謹慎の結果として層は削除されます。", + "commGuidePara065": "モデレータは 7 段位以上の貢献者の中から、スタッフと現モデレータによって選ばれます。7 段貢献者はサイトの利益のために熱心に働いていますが、彼らの全員がモデレータの中枢と連絡を取り合っているのではないことに注意してください。", + "commGuidePara066": "貢献段位について付記しておくべき重要な点 :", + "commGuideList13A": "段位は自由裁量です。コミュニティでの仕事ぶりやその価値についての私たちの認識といった多くの事実にもとづいて、モデレータの裁量が与えられます。私たちは自らの裁量で、特定のレベルや肩書や報酬を変更する権利を留保しています。", + "commGuideList13B": "段位は上がるごとに厳しくなります。もしひとつモンスターを作ったなら、もしくは小さなバグを直したら、それは最初の貢献段位としては十分でしょう。でも次に進むには足りません。あらゆる良質なロールプレイングゲームのように、レベルが上がれば挑戦すべき課題も大きくなります!", + "commGuideList13C": "段位はそれぞれ「やり直し」できません。難易度が上がると、私たちはあなたの貢献のすべてを見ており、ちょっとしたアートを描き、小さなバグを直し、wikiに手を出したりという人が、ひとつの仕事を一生懸命やる人より速く段位が上がるということはありません。公平とはそういうことです。", + "commGuideList13D": "謹慎中のユーザは次の段位へ進めません。モデレータには、違反行為をおこなったユーザーの段位認定を凍結する権限があります。この権現が発動されると、該当ユーザーには常にその決定とどうすれば正せるかを通知されます。違反や謹慎の結果として段位は剥奪されます。", "commGuideHeadingFinal": "最後のセクション", "commGuidePara067": "コミュニティガイドラインを手に入れれば、あなたも勇敢なHabitican人です。\n全てを読めば困難を拭い去り、経験値を手に入れることができます。\nもし、コミュニティガイドラインについて質問や心配事があればLemonessにメールを送って下さい。(leslie@habitica.com)\n彼女は喜んで助けてくれるでしょう。", "commGuidePara068": "勇敢な冒険者よ、直ちに出かけて、日課を圧倒しましょう!", diff --git a/common/locales/ja/content.json b/common/locales/ja/content.json index ea0eeaac41..241efcf0a7 100644 --- a/common/locales/ja/content.json +++ b/common/locales/ja/content.json @@ -1,5 +1,5 @@ { - "potionText": "体力回復ポーション", + "potionText": "体力回復の薬", "potionNotes": "体力を15回復(瞬時)", "armoireText": "魔法の戸棚", "armoireNotesFull": "戸棚を開けるとランダムな装備、経験値、または食べ物が当たる!残りの装備数:", @@ -25,13 +25,13 @@ "dropEggFlyingPigAdjective": "気まぐれな", "dropEggDragonText": "ドラゴン", "dropEggDragonMountText": "ドラゴン", - "dropEggDragonAdjective": "強大な", + "dropEggDragonAdjective": "力強い", "dropEggCactusText": "サボテン", "dropEggCactusMountText": "サボテン", "dropEggCactusAdjective": "チクチクする", "dropEggBearCubText": "熊の子", "dropEggBearCubMountText": "熊", - "dropEggBearCubAdjective": "抱きしめたくなる", + "dropEggBearCubAdjective": "勇敢な", "questEggGryphonText": "グリフォン", "questEggGryphonMountText": "グリフォン", "questEggGryphonAdjective": "誇り高い", @@ -46,7 +46,7 @@ "questEggEggAdjective": "鮮やかな", "questEggRatText": "ネズミ", "questEggRatMountText": "ネズミ", - "questEggRatAdjective": "汚らしい", + "questEggRatAdjective": "社交的な", "questEggOctopusText": "タコ", "questEggOctopusMountText": "タコ", "questEggOctopusAdjective": "ぬるぬるした", @@ -107,10 +107,13 @@ "questEggSabretoothText": "サーベルタイガー", "questEggSabretoothMountText": "サーベルタイガー", "questEggSabretoothAdjective": "凶暴な", - "questEggMonkeyText": "Monkey", - "questEggMonkeyMountText": "Monkey", - "questEggMonkeyAdjective": "a mischievous", - "eggNotes": "孵化ポーションを見つけ出し、卵にかけると<%= eggAdjective(locale) %> <%= eggText(locale) %>が生まれます。", + "questEggMonkeyText": "さる", + "questEggMonkeyMountText": "さる", + "questEggMonkeyAdjective": "いたずら", + "questEggSnailText": "カタツムリ", + "questEggSnailMountText": "カタツムリ", + "questEggSnailAdjective": "遅いが着実", + "eggNotes": "たまごがえしの薬を見つけて、たまごにかけると、<%= eggAdjective(locale) %> <%= eggText(locale) %>が生まれます。", "hatchingPotionBase": "普通の", "hatchingPotionWhite": "白い", "hatchingPotionDesert": "砂漠の", @@ -123,8 +126,8 @@ "hatchingPotionGolden": "黄金の", "hatchingPotionSpooky": "不気味な", "hatchingPotionPeppermint": "ペパーミント", - "hatchingPotionNotes": "これをたまごに振りかけると、ペットとして<%= potText(locale) %>に孵化します。", - "premiumPotionAddlNotes": "クエストペットには使えません。", + "hatchingPotionNotes": "これをたまごにかけると、<%= potText(locale) %> のペットが生まれます。", + "premiumPotionAddlNotes": "ペットのたまごはクエストに使えません。", "foodMeat": "肉", "foodMilk": "ミルク", "foodPotatoe": "じゃがいも", @@ -134,14 +137,14 @@ "foodRottenMeat": "腐った肉", "foodCottonCandyPink": "ピンクの綿菓子", "foodCottonCandyBlue": "青い綿菓子", - "foodHoney": "蜂蜜", + "foodHoney": "はちみつ", "foodCakeSkeleton": "骨子だけのケーキ", "foodCakeBase": "基本のケーキ", "foodCakeCottonCandyBlue": "キャンディの青いケーキ", "foodCakeCottonCandyPink": "キャンディのピンク色のケーキ", "foodCakeShade": "チョコレートケーキ", "foodCakeWhite": "クリームケーキ", - "foodCakeGolden": "蜂蜜のケーキ", + "foodCakeGolden": "はちみつケーキ", "foodCakeZombie": "腐ったケーキ", "foodCakeDesert": "砂のケーキ", "foodCakeRed": "いちごケーキ", @@ -156,6 +159,6 @@ "foodCandyDesert": "サンドキャンディ", "foodCandyRed": "シナモンキャンディ", "foodSaddleText": "鞍", - "foodSaddleNotes": "すぐ1匹のペットをマウントに成長させる。", - "foodNotes": "ペットが頑丈な俊足に成長するようにこれを与える。" + "foodSaddleNotes": "ペットの 1 匹をすぐに乗用獣に成長させます。", + "foodNotes": "ペットが丈夫に育つように、これを与えましょう。" } \ No newline at end of file diff --git a/common/locales/ja/contrib.json b/common/locales/ja/contrib.json index 167ff100da..352ea9766d 100644 --- a/common/locales/ja/contrib.json +++ b/common/locales/ja/contrib.json @@ -8,31 +8,31 @@ "champion": "チャンピオン", "championFifth": "あなたが 5番目に 提出したセットが配置された時に、報酬ショップで クリスタルの盾 が購入できるようになります。あなたの仕事の継続的な報奨金として、あなたは、4 ジェム 受け取ることにもなります。", "championSixth": "あなたが 6番目に 提出したセットが配置された時に、あなたは ヒドラのペット を受け取ります。また、4 ジェム 受け取ることにもなります。", - "legendary": "伝説上", + "legendary": "伝説", "legSeventh": "あなたが 7番目に 提出したセットが配置された時に、あなたは 4 ジェム 受け取り、名誉貢献者ギルドのメンバーになり、Habiticaの舞台裏に詳しい顧問になります! さらなる貢献であなたの層は上がりませんが、ジェム報奨金やタイトルを獲得し続けることができます。", "moderator": "モデレーター", - "guardian": "保護者", - "guardianText": "モデレーターは、高い層の貢献者から慎重に選ばれているので、彼らを尊敬して、彼らの提案に耳を傾けてください。", - "staff": "幹部", + "guardian": "警備員", + "guardianText": "モデレーターは、高段位の貢献者から慎重に選ばれています。彼らを尊敬し、提案に耳を傾けてください。", + "staff": "スタッフ", "heroic": "英雄", - "heroicText": "英雄層にはHabiticaのスタッフやスタッフレベルの貢献者が含まれます。あなたがこのタイトルを持っている場合、あなたはそれに任命されました (または雇われました!)。", - "npcText": "NPCは最高層でHabiticaのKickstarterを後援しました。あなたはサイトの機能を見守っている彼らのアバターを見つけることができます!", - "modalContribAchievement": "貢献の達成", - "contribModal": "<%= name %>、あなたは素晴らしい人です! Habiticaへの支援を記念に、貢献者<%= level %> 層を差し上げます。", + "heroicText": "英雄段位は Habitica のスタッフやスタッフレベルの貢献者です。あなたがこのタイトルを持っているということは、あなたはそれに任命されました (または雇われました!)。", + "npcText": "NPC は Kickstarter で Habitica に資金提供していただいた最高段位です。あなたはサイトの機能で彼らのアバターを見つけることができます!", + "modalContribAchievement": "貢献 の実績!", + "contribModal": "<%= name %>、あなたは素晴らしい人です! Habitica へのご支援を表し、<%= level %> 段の貢献者とします。", "contribLink": "どんな景品が当たったか覗いてみてね!", "contribName": "貢献者", "contribText": "コード、デザイン、ピケセルアート、法律上の助言等でHabiticaに貢献を提供しました。このバッジが欲しいですか?", "readMore": "続きを読む", - "kickstartName": "Kickstarter 後援者 - $<%= tier %> 層", - "kickstartText": "Kickstarterプロジェクト後援者", - "helped": "Habitの成長を支援した。", - "helpedText1": "このアンケート回答による", - "helpedText2": "Habiticaの成長を支援しました。", - "hall": "記念館", + "kickstartName": "Kickstarter での資金協力 - $<%= tier %> 段", + "kickstartText": "Kickstarter プロジェクトでの資金提供", + "helped": "Habitの成長を支援しました。", + "helpedText1": "このアンケートへ回答し、", + "helpedText2": "Habitica の成長を支援しました。", + "hall": "英雄記念館", "contribTitle": "貢献者タイトル (例 \"Blacksmith\")", - "contribLevel": "貢献者層", - "contribHallText": "通常の貢献者は1-7、モデレーターは8、スタッフは9。これは利用可能なアイテム、ペット、乗り物を決定します。また、名札の色も決定します。8および9層は、自動的に与えられる管理ステータスです。", - "hallHeroes": "英雄の記念館", + "contribLevel": "貢献段位", + "contribHallText": "1 - 7 段は一般の貢献者、8 段はモデレーター、9 段はスタッフです。この段位によって、利用可能なアイテム、ペット、乗用獣が決まります。また名札の色も決まります。8 段および 9 段には、管理ステータスが自動的に与えられます。", + "hallContributors": "貢献者記念館", "hallPatrons": "後援者の記念館", "rewardUser": "ユーザーを報奨", "UUID": "UUID", @@ -42,14 +42,14 @@ "moreDetails2": "詳細(8-9)", "contributions": "手伝い", "admin": "管理者", - "notGems": "米ドルです。ジェムではありません。つまり、この数が1であれば、それは4ジェムの意味です。手動でプレイヤーに宝石を付与するときにのみ、このオプションを使用してください。貢献者層を付与するときには使用しないでください。貢献者層は自動的にジェムを追加します。", + "notGems": "米ドルです。ジェムではありません。つまり、この数が 1 であれば、それは 4 ジェムの意味です。手動でプレイヤーに宝石を付与するときにのみ、このオプションを使用してください。貢献ベルトを付与するときには使用しないでください。貢献ベルト授与者は自動的にジェムを追加します。", "gamemaster": "ゲームマスター(杖/モデレーター)", - "backerTier": "後援者層", + "backerTier": "資金協力段位", "balance": "残高", - "tierPop": "詳しく分かるように層のラベルを選んで下さい。", - "playerTiers": "プレイヤー層", - "tier": "層", - "visitHeroes": "ヒーローのハウスを訪ねる。 (助っ人など)", + "tierPop": "段をクリックして詳細を表示", + "playerTiers": "プレイヤー段位", + "tier": "段位", + "visitHeroes": "英雄(貢献者・資金提供者)記念館を訪ねる", "conLearn": "貢献者の報酬について学ぶ", "conLearnHow": "Habiticaの進展における参加", "surveysSingle": "アンケート回答によるHabiticaの成長を支援しました。現在アンケートは開催されていません。", @@ -58,7 +58,7 @@ "surveyWhen": "バッジは3月下旬アンケートが処理されたときに参加者全員に授与されます。", "blurbInbox": "ここはあなたの個人的なメッセージが保存される場所です!あなたは酒場、パーティー、またはギルドチャットで名前の隣にある封筒のアイコンをクリックすることで、メッセージを送信することができます。もしあなたが不適切なメッセージを受け取った場合は、Lemoness (leslie@habitica.com)にそのスクリーンショットを電子メールで送信してください。", "blurbGuildsPage": "ギルドは共通の興味を持つプレイヤー同士のためのチャットグループです。リストから興味のあるグループを探して参加しましょう!", - "blurbChallenges": "チャレンジはあなたの仲間のプレイヤーによって作成されます。チャレンジへ参加することで、あなたのタスクダッシュボードにそのタスクが追加されます。そして、チャレンジに成功することで、あなたには成果と多くの場合賞品のジェムが与えられるでしょう!", - "blurbHallPatrons": "This is the Hall of Patrons, where we honor the noble adventurers who backed Habitica's original Kickstarter. We thank them for helping us bring Habitica to life!", - "blurbHallHeroes": "This is the Hall of Heroes, where open-source contributors to Habitica are honored. Whether through code, art, music, writing, or even just helpfulness, they have earned gems, exclusive equipment, and prestigious titles. You can contribute to Habitica, too! Find out more here. " + "blurbChallenges": "チャレンジはあなたの仲間のプレイヤーによって作成されます。チャレンジへ参加することで、あなたのタスクダッシュボードにそのタスクが追加されます。そして、チャレンジに成功することで、あなたには実績と多くの場合は賞品のジェムが与えられるでしょう! ", + "blurbHallPatrons": "こちらは、資金協力で後援いただいた方々の記念館です。Habitica の源流となった Kickstarter で資金協力してくださった気高い冒険者のみなさんを誇りに思っています。Habitica に命を吹き込むことに手を貸してくれた彼らに感謝をささげましょう!", + "blurbHallContributors": "こちらは Habitica をオープンソースの世界で貢献してくださった方々を称える貢献者記念館です。貢献の内容は、コード、画像、音楽、執筆などです。彼らは献身的でありましたが、 ジェム、特別なアイテム、そして 名誉ある肩書きを手にしました。あなたも Habitica に貢献できます! 詳しくはこちらをご覧ください。" } \ No newline at end of file diff --git a/common/locales/ja/death.json b/common/locales/ja/death.json index 951b0ecf8f..28a3e68347 100644 --- a/common/locales/ja/death.json +++ b/common/locales/ja/death.json @@ -1,16 +1,16 @@ { - "lostAllHealth": "HPが 0 になった!", - "dontDespair": "絶望してはいけません!", - "deathPenaltyDetails": "レベル、コイン、装備品を失いますが、たくさん戦えば再び手に入ります!あなたが活躍することを期待しています。", - "refillHealthTryAgain": "HPが回復しました。もう一度チャレンジしましょう", - "dyingOftenTips": "よく発生していますか? ここにヒントがあります!", - "losingHealthWarning": "Careful - You're Losing Health!", - "losingHealthWarning2": "HPがゼロになると、レベルが一つ下がり、ゴールドと装備一つを失います。", - "toRegainHealth": "HPを回復するには:", - "lowHealthTips1": "レベルアップで全回復します。", - "lowHealthTips2": "報酬欄でポーションを買うと15HPが回復します。", - "losingHealthQuickly": "HP減るのが早すぎ?", - "lowHealthTips3": "未達成の日課は一晩おいたらダメージが受けるので、最初から追加しすぎに注意。", - "lowHealthTips4": "特定の日が締め切りではない日課は、鉛筆アイコンをクリックすれば解除できます。", - "goodLuck": "頑張って!" + "lostAllHealth": "体力がなくなった!", + "dontDespair": "絶望しないで!", + "deathPenaltyDetails": "レベル、ゴールド、いくつかの装備品を失ってしまいました。しかし、がんばればすべてを取りかえせます! あなたなら、きっとやれる――幸あらんことを。", + "refillHealthTryAgain": "体力を復活させて、もう一度", + "dyingOftenTips": "いつもやり直しですか? ここにヒントがあります! ", + "losingHealthWarning": "気をつけて - 体力が減っています!", + "losingHealthWarning2": "体力をゼロにしないように! 体力がゼロになると、レベルとゴールド、いくつかの装備を失います。", + "toRegainHealth": "体力を回復するには : ", + "lowHealthTips1": "レベルアップして、体力を復活させましょう!", + "lowHealthTips2": "ごほうびの中から「体力の薬」を買うと体力値が15回復します。", + "losingHealthQuickly": "体力が減るのが速すぎる?", + "lowHealthTips3": "日課をやらないで夜を越すとダメージを受けます。はじめにたくさんの日課を追加しすぎないように!", + "lowHealthTips4": "特定の日には日課をやらないでいいのなら、鉛筆アイコンをクリックして無効にします。", + "goodLuck": "がんばって!" } \ No newline at end of file diff --git a/common/locales/ja/defaulttasks.json b/common/locales/ja/defaulttasks.json index 15a21d9c90..6fe495b8e6 100644 --- a/common/locales/ja/defaulttasks.json +++ b/common/locales/ja/defaulttasks.json @@ -1,14 +1,14 @@ { - "defaultHabit1Text": "生産的な仕事 (鉛筆をクリックして編集する)", - "defaultHabit1Notes": "良い習慣の例: + 野菜を食べる +15分 生産的な仕事をする", - "defaultHabit2Text": "おやつを食べる(鉛筆アイコンをクリックして編集)", - "defaultHabit2Notes": "悪い習慣の例: - たばこ - 先延ばし", - "defaultHabit3Text": "階段を使う(鉛筆アイコンをクリックして編集)", - "defaultHabit3Notes": "良い/悪い習慣の例: +/- 階段を昇る/エレベーターにのる; +/- 水を飲む/ソーダを飲む", - "defaultTodoNotes": "このTo-Doは、完了、編集、または削除する事が可能です。", - "defaultTodo1Text": "Habiticaに参入する(チェックして完了しましょう!)", + "defaultHabit1Text": "生産的な仕事 (鉛筆をクリックして編集)", + "defaultHabit1Notes": "いい習慣の例 : + 野菜を食べる +15分の生産的な仕事", + "defaultHabit2Text": "ジャンクフードを食べる(鉛筆をクリックして編集)", + "defaultHabit2Notes": "悪い習慣の例 : - タバコ - 先延ばし", + "defaultHabit3Text": "階段・エレベーター(鉛筆をクリックして編集)", + "defaultHabit3Notes": "いい・悪い習慣の例 : +/- 階段で行く・エレベーターで行く; +/- 水を飲む・炭酸飲料を飲む", + "defaultTodoNotes": "このTo-Doを完了にする、または編集、削除できます。", + "defaultTodo1Text": "Habiticaに参加する(チェックして完了しましょう!)", "defaultReward1Text": "15分間の休憩", - "defaultReward1Notes": "カスタム報酬に設定できるものは様々です。例えば、お気に入りのテレビ番組を見るために一定のゴールドを支払わなければならないように設定する事もできます。", + "defaultReward1Notes": "自分で「ごほうび」にするものは様々です。例えば、ゴールドを支払わなければ、好きなテレビ番組を見られないようにしている人もいます。", "defaultTag1": "朝", "defaultTag2": "昼", "defaultTag3": "夜" diff --git a/common/locales/ja/faq.json b/common/locales/ja/faq.json index 80ae0605ba..05820dabc0 100644 --- a/common/locales/ja/faq.json +++ b/common/locales/ja/faq.json @@ -1,43 +1,43 @@ { "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, 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.", - "faqQuestion2": "用の見本は何ですか?", - "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": "用は色づく、どうして?", - "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?", - "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?", - "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": "ペットやマウントはどうやって手に入れるの?", - "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?", - "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?", - "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?", + "faqQuestion0": "わからないことがあって困っています。どこで一覧を見つけられますか?", + "iosFaqAnswer0": "まず、あなたの毎日の生活の中でやりたいタスクを設定します。そして実生活でそのタスクを完了したらチェックを入れます。すると、ゴールドと経験値を手に入ります。ゴールドでアバターの装備やお好みの「ごほうび」といったアイテムを買えます。経験値によってアバターがレベルアップし、新しいペット、スキルやクエストといった新しい機能をアンロックしていきます! アバターはメニュー >アバターのカスタマイズで設定できます。\n\nいくつかの基本操作 : 右上の (+) をクリックすると、新しいタスクの作成。すでにあるタスクをタップすると編集、左にスワイプすると削除できます。左上でタスクにタグをつけることで並べ替えができます。丸いチェックリストをクリックすることで、表示をたたんだり展開したりできます。", + "webFaqAnswer0": "まず、あなたの毎日の生活の中でやりたいタスクを設定します。そして実生活でそのタスクを完了したらチェックを入れます。すると、ゴールドと経験値を手に入ります。ゴールドでアバターの装備やお好みの「ごほうび」といったアイテムを買えます。経験値によってアバターがレベルアップし、新しいペット、スキルやクエストといった新しい機能をアンロックしていきます! 詳しくは [ヘルプ -> 新規ユーザーのための概要](https://habitica.com/static/overview) を読んでください。", + "faqQuestion1": "どのようにタスクをセットすればいいのですか?", + "iosFaqAnswer1": "いい習慣 ( + がついている習慣) は、「野菜を食べる」というように毎日何度でも行えるものです。悪い習慣( - がついている習慣) は、「つめをかむ」といったやるべきでないくせ・習慣です。+ と - の両方がついている習慣は、「階段で上るか、エレベーターを使うか」といった、いい選択と悪い選択の両方があるものです。いい習慣で経験値とゴールドが得られます。悪い習慣は体力を奪います。\n\n日課は、「歯をみがく」とか「メールをチェックする」といった毎日やるべきことです。日課をやるべき日・曜日を「編集」で調整します。やるべき日に日課を行わないと、アバターは夜中にダメージを受けます。あまりに多くの日課を一度に背負わないように注意が必要です。\n\nTo-Do は「やるべきこと」リストです。To-Do を完了すると、ゴールドと経験値を獲得できます。To-Doでは体力が減ることはありません。「編集」をタップすることで、To-Do のしめきりを設定できます。", + "webFaqAnswer1": "いい習慣 ( がついている習慣) は、「野菜を食べる」というように毎日何度でも行えるものです。悪い習慣( がついている習慣) は、「つめをかむ」といった避けるべきくせ・習慣です。 の両方がついている習慣は、「階段で上るか、エレベーターを使うか」といった、いい選択と悪い選択の両方があるものです。いい習慣で経験値とゴールドが得られます。悪い習慣は体力を奪います。\n\n日課は、「歯を磨く」とか「メールをチェックする」といった毎日やるべきことです。日課をやるべき日・曜日を「編集」で調整します。やるべき日に日課を行わないと、アバターは夜中にダメージを受けます。あまりに多くの日課を一度に背負わないように注意が必要です。\n\nTo-Do は「やるべきこと」リストです。To-Do を完了すると、ゴールドと経験値を獲得できます。To-Doでは体力が減ることはありません。「編集」をタップすることで、To-Do のしめきりを設定できます。", + "faqQuestion2": "タスクのサンプルはありますか?", + "iosFaqAnswer2": "参考のため、Wiki では4種類のタスクのサンプルを用意しています :\n

\n* [習慣のサンプル](http://habitica.wikia.com/wiki/Sample_Habits)\n* [日課のサンプル](http://habitica.wikia.com/wiki/Sample_Dailies)\n* [To-Do のサンプル](http://habitica.wikia.com/wiki/Sample_To-Dos)\n* [自分好みの「ごほうび」のサンプル](http://habitica.wikia.com/wiki/Sample_Custom_Rewards)", + "webFaqAnswer2": "参考のため、Wiki では4種類のタスクのサンプルを用意しています :\n* [習慣のサンプル](http://habitica.wikia.com/wiki/Sample_Habits)\n* [日課のサンプル](http://habitica.wikia.com/wiki/Sample_Dailies)\n* [To-Do のサンプル](http://habitica.wikia.com/wiki/Sample_To-Dos)\n* [自分好みの「ごほうび」のサンプル](http://habitica.wikia.com/wiki/Sample_Custom_Rewards)", + "faqQuestion3": "なぜタスクの色が変わるんですか ?", + "iosFaqAnswer3": "タスクの色は、最近あなたがどれだけタスクをこなしたかによって変化します! 新しいタスクは中間的な黄色でスタートします。たくさん日課をこなしたり、いい習慣をこなすと青に近づいていきます。日課をやりそこねたり、悪い習慣を行うと赤に近づいていきます。赤くなったタスクは、完了するとより多くの経験値やゴールドなどの報酬が得られますが、それが日課や悪い習慣であれば、よりたくさんのダメージを受けます! あなたにとって面倒なタスクほど、やる気を出すのに役立つことでしょう。", + "webFaqAnswer3": "タスクの色は、最近あなたがどれだけタスクをこなしたかによって変化します! 新しいタスクは中間的な黄色でスタートします。たくさん日課やいい習慣をこなすと青に近づいていきます。日課をやりそこねたり、悪い習慣を行うと赤に近づいていきます。赤くなったタスクは、完了するとより多くの経験値やゴールドなどの報酬が得られますが、それが日課や悪い習慣であれば、よりたくさんのダメージを受けます! あなたにとって面倒なタスクほど、やる気を出すのに役立つことでしょう。", + "faqQuestion4": "なぜ私のアバターの体力 (HP) が減ったの? 回復する方法は?", + "iosFaqAnswer4": "ダメージを受け、体力が減るのにはいくつかの原因があります。1 つ目、日課をやらないまま夜を明かせば、ダメージを受けます。2 つ目、悪い習慣をチェックすれば、ダメージを受けます。最後に、パーティーでのボス戦の途中で、パーティーの仲間のだれかが日課をやり残した場合、ボスがあなたを攻撃します。\n\n主な回復方法はレベルを上げることで、レベルが上がると体力は全回復します。また、「ごほうび」欄の「体力回復の薬」をゴールドで買っても回復できます。そして、レベル10以上になると、治療師になることができ、回復の特殊能力を覚えます。もしパーティーの仲間に治療師がいれば、回復してもらうことがもきます。", + "webFaqAnswer4": "ダメージを受け、体力が減るのにはいくつかの原因があります。1 つ目、日課をやらないまま夜を明かせば、ダメージを受けます。2 つ目、悪い習慣をチェックすれば、ダメージを受けます。最後に、パーティーでのボス戦の途中で、パーティーの仲間のだれかが日課をやり残した場合、ボスがあなたを攻撃します。\n

\n主な回復方法はレベルを上げることで、レベルが上がると体力は全回復します。また、「ごほうび」欄の「体力回復の薬」をゴールドで買っても回復できます。そして、レベル10以上になると、治療師になることができ、回復の特殊能力を覚えます。もしパーティー( メニューの 「ソーシャル」 > 「パーティー」 ) の仲間に治療師がいれば、回復してもらうこともできます。", + "faqQuestion5": "友達といっしょに Habitica をプレーするには?", + "iosFaqAnswer5": "いちばんいいのは、あなたといっしょのパーティーに友達を誘うことです! パーティーでは、いっしょにクエストに参加して、いっしょにモンスターと戦い、お互いに特殊能力の魔法で助け合うことができます。もしあなたがまだパーティを組んでいないなら、メニュー > パーティー で、「新しいパーティを作る」をクリックしてください。その後、メンバーリストで、右上の「友達を招待する」ボタンをクリック、あなたの友達のユーザーID ( 設定 > アカウントの詳細 、Webサイト上では 設定 > API 確認できる英数文字列 ) を入力します。Webサイトから、友達にEmailを送って招待することもできます。アプリでの同様の機能は、将来の更新で追加する予定です。\n\nWebサイトでは、あなたと友達はギルドに参加することもできます。ギルドとは公開されたチャットルームです。アプリでのギルド機能は、将来の更新で追加する予定です!", + "webFaqAnswer5": "いちばんいいのは、ソーシャル > パーティー から、あなたといっしょのパーティーに友達を誘うことです! パーティーでは、いっしょにクエストに参加して、いっしょにモンスターと戦い、お互いに特殊能力の魔法で助け合うことができます。いっしょのギルドに入ることもできます ( ソーシャル > ギルド ) 。ギルドは共通の趣味を話題にしたり、共通のゴールを追求するためのチャットルームで、公開・非公開の設定ができます。ギルドは好きなだけ入ることができますが、パーティーは1つだけにしか参加できません。\n

\nより詳しい情報は、Wikiページの、「パーティー」( http://habitrpg.wikia.com/wiki/Party ) や「ギルド」( http://habitrpg.wikia.com/wiki/Guilds ) をご覧ください。", + "faqQuestion6": "ペットや乗用獣はどうやって手に入れるの?", + "iosFaqAnswer6": "レベル3になると「落し物」システムがアンロックされます。あなたがタスクを達成するたびに、「たまご」や「たまごがえしの薬」、または「えさ」を手に入れるチャンスが与えられます。手に入れたアイテムはメニュー > 所持品 に保存されています。\n\n「たまご」からペットをかえすには、「たまご」と「たまごがえし」の薬が必要です。かえしたいペットの卵をクリックすると、かえす「たまご」として選ばれます。次にペットの色にしたい「たまごがえしの薬」を選びます! メニュー > ペットでペットを選ぶと、アバターのそばにペットが表示されます。\n\nペットを育てて乗用獣にすることもできます。メニュー > ペット でえさをやりましょう。ペットをタップすると「えさをやるペット」として選ばれます。たくさんのえさをやらないと、ペットは乗用獣になりませんが、お気に入りのえさだと、より早く成長します。いろいろ試してみてください、もしくは [ 楽しみがなくなるかもしれませんが ] ( http://habitica.wikia.com/wiki/Food#Food_Preferences ) を見てください。乗用獣を手に入れたら、メニュー > 乗用獣 で、あなたのアバターに表示できます。\n\nクエストによっては、達成することでクエスト ペットのたまごが手に入ります。(クエストについての詳しくは、以下をご覧ください)", + "webFaqAnswer6": "レベル3になると「落し物」システムがアンロックされます。あなたがタスクを達成するたびに、「たまご」や「たまごがえしの薬」、または「えさ」を手に入れるチャンスが与えられます。手に入れたアイテムは 所持品 > 市場 に保存されています。\n

\n「たまご」からペットをかえすには、「たまご」と「たまごがえしの薬」が必要です。かえしたいペットの「たまご」をクリックすると、かえす「たまご」として選ばれます。次にペットの色にしたい「たまごがえしの薬」を選びます! 所持品 > ペットでペットを選ぶと、アバターのそばにペットが表示されます。\n

\nペットを育てて乗用獣にすることもできます。所持品 > ペット でえさをやりましょう。ペットをタップすると「えさをやるペット」として選ばれます。たくさんのえさをやらないと、ペットは乗用獣になりませんが、お気に入りのえさだと、より早く成長します。いろいろ試してみてください、もしくは [ 楽しみがなくなるかもしれませんが ] ( http://habitica.wikia.com/wiki/Food#Food_Preferences ) を見てください。乗用獣を手に入れたら、所持品 > 乗用獣 で、あなたのアバターに表示されます。\n

\nクエストによっては、達成することでクエスト ペットのたまごが手に入ります。(クエストについての詳しくは、以下をご覧ください)", + "faqQuestion7": "どうすれば戦士、魔道士、盗賊、治療師になれるの?", + "iosFaqAnswer7": "レベルが10になると、戦士、魔導士、盗賊、治療師のクラスを選べるようになります。( 標準では、すべてのプレイヤーは戦士でスタートします。) クラスによって、装備や、レベル11以降に使えるようになる特殊能力、そして長所が異なります。戦士はボスにダメージを与えるのがうまく、タスクからのダメージへの耐久力も高いので、パーティーがタフになります。魔導士もボスへのダメージを与えるのがうまく、レベルアップが速く、パーティーのマナを回復します。盗賊がいちばんゴールドと落ちているアイテムを獲得でき、パーティーにも同様の効果をもたらします。最後に、治療師は、自分自身とパーティーの仲間の体力を回復することができます。\n\nすぐにクラスを選びたくなければ――たとえば、いまのクラスの装備を買い集めている最中――「後で決める」をクリックし、後から選ぶときは メニュー > クラスを選ぶ で行います。", + "webFaqAnswer7": "レベルが10になると、戦士、魔導士、盗賊、治療師のクラスを選べるようになります。( 標準では、すべてのプレイヤーは戦士でスタートします。) クラスによって、装備や、レベル11以降に使えるようになる特殊能力、そして長所が異なります。戦士はボスにダメージを与えるのがうまく、タスクからのダメージへの耐久力も高いので、パーティーがタフになります。魔導士もボスへのダメージを与えるのがうまく、レベルアップが速く、パーティーのマナを回復します。盗賊がいちばんゴールドと落ちているアイテムを獲得でき、パーティーにも同様の効果をもたらします。最後に、治療師は、自分自身とパーティーの仲間の体力を回復することができます。\n

\nすぐにクラスを選びたくなければ――たとえば、いまのクラスの装備を買い集めている最中――「後で決める」をクリックし、後から選ぶときは メニュー > クラスを選ぶ で行います。", + "faqQuestion8": "レベル10以降、ヘッダーに表示される青いバーは何ですか?", + "iosFaqAnswer8": "レベル10になってクラスを選択すると表示される青いバーは、マナ バーです。レベルアップを続けると、マナを使う特殊能力の機能がアンロックされます。それぞれのクラスは異なった特殊能力をもっており、レベル11以降、メニュー > 特殊能力を使う に表示されます。体力バーと違って、マナ バーはレベルを上げてもリセットされません。マナは、いい習慣、日課、To-Do を達成することで増え、悪い週間を行うと減ります。夜が明けたときにも少し回復しますが、それはより多くの日課を完了しただけ、より回復します。", + "webFaqAnswer8": "レベル10になってクラスを選択すると表示される青いバーは、マナ バーです。レベルアップを続けると、マナを使う特殊能力の機能がアンロックされます。それぞれのクラスは異なった特殊能力をもっており、レベル11以降、「ごほうび」欄の特別な枠に表示されます。体力バーと違って、マナ バーはレベルを上げてもリセットされません。マナは、いい習慣、日課、To-Do を達成することで増え、悪い週間を行うと減ります。夜が明けたときにも少し回復しますが、それはより多くの日課を完了しただけ、より回復します。", + "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.", "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": "ジェムってなに?どこで手に入れるの?", "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": "バグとかリクエストってどこで報告すればいいの?", "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?", - "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.", + "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": "ワールドボスは酒場に現れる特別なモンスターです。全てのアクティブユーザーは自動的にこのボスと戦うことになります。プレイヤーが消化した日課や使用したスキルは、常にこのボスにダメージを与えます。\n\nあなたは通常のクエストボスと同時にワールドボスと戦うことが出来ます。あなたが消化したタスク、使用したスキルは通常のボス/もしくは物集めクエストとワールドボスの両方に効力を発揮するでしょう。\n\nワールドボスはあなたのアカウントには一切ダメージを与えません。その代わり、あなたが消化しそこねた日課に応じて怒りゲージが貯まります。このゲージがもし一杯になると、ボスはこのサイトに属するNPCに攻撃します。NPCのグラフィックは変わってしまうでしょう。\n\n [過去のワールドボス](http://habitica.wikia.com/wiki/World_Bosses) についての記事はこちらです。", "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 or on the [Wiki FAQ](http://habitica.wikia.com/wiki/FAQ), 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 or on the [Wiki FAQ](http://habitica.wikia.com/wiki/FAQ), come ask in the [Newbies Guild](https://habitica.com/#/options/groups/guilds/5481ccf3-5d2d-48a9-a871-70a7380cee5a)! We're happy to help." diff --git a/common/locales/ja/front.json b/common/locales/ja/front.json index 39855fd99a..0393a57f5c 100644 --- a/common/locales/ja/front.json +++ b/common/locales/ja/front.json @@ -1,9 +1,9 @@ { "FAQ": "よくある質問", - "accept1Terms": "下のボタンをクリックし、私は以下のことを承諾します。", + "accept1Terms": "私は以下のことを承諾し、ボタンをクリックします : ", "accept2Terms": "そして", "alexandraQuote": "マドリードのスピーチでは、[Habitica]のことを話さずにはいられませんでした。まだ上司が必要なフリーランスの方々には必需品です。", - "althaireQuote": "いつもクエストを設定しているおかげで日課とやるべきことに対するやる気が湧いてきます。パーティをがっかりさせたくないという気持ちが一番のモチベーションになっています。", + "althaireQuote": "いつもクエストがあることで、日課とTo-Doを全部やってやろうって、やる気がわいてきます。一番のモチベーションは、パーティーの仲間をがっかりさせたくないってことですね。", "andeeliaoQuote": "素晴らしい製品です。まだ数日前にはじめたばかりですが、既に私の時間がより意識的で生産的になりました。", "autumnesquirrelQuote": "私は、仕事や家事、期限までの請求の支払いを、先延ばしにすることが減りました。", "businessSample1": "持ち物の1ページを確認する", @@ -18,7 +18,7 @@ "choreSample4": "部屋を1つ掃除する", "choreSample5": "服を洗って乾かす。", "chores": "雑用", - "clearBrowserData": "Clear Browser Data", + "clearBrowserData": "ブラウザデータを削除する", "communityBug": "バグを登録する", "communityExtensions": "アドオン & 拡張機能", "communityFacebook": "Facebook", @@ -33,177 +33,177 @@ "companyPrivacy": "プライバシー", "companyTerms": "利用規約", "companyVideos": "ビデオ", - "contribUse": "Habiticaの寄稿者は使います", - "dragonsilverQuote": "今まで、どれだけのタスクマネージ機能を試しただろう・・・。今までやった中で、リストするだけでなく、やるべき事が終わらせられたプラグラムは、[Habitica]だけだよ。", - "dreimQuote": "When I discovered [Habitica] last summer, I had just failed about half of my exams. Thanks to the Dailies... I was able to organize and discipline myself, and I actually passed all my exams with really good grades a month ago.", - "elmiQuote": "ゴールドをゲットするため毎朝起きることを楽しみにしている!", + "contribUse": "Habitica 貢献者用", + "dragonsilverQuote": "この10年以上、どれだけの時間・仕事管理システムを試したことか...。その中で仕事をやり遂げるのを実際に手助けしてくれたのは、 [Habitica] だけだったよ。", + "dreimQuote": "去年の夏、試験の半分ぐらいがダメだったときに [Habitica] を見つけた。自分の生活に整理と規律をつくってくれて、1 カ月後の試験はホントにいい結果で通ったんだよ。日課の機能に「ありがとう」をいいたいな。", + "elmiQuote": "毎朝、早起きするのが楽しみ。だってゴールドをゲットできるから!", "email": "メール", "emailNewPass": "新しいパスワードをメールで受け取る", - "evagantzQuote": "初めての歯医者の予約で、歯医者さん、私のデンタルフロスの日課の事を聞いたらとても興奮してた。ありがとう、[Habitica]!", - "examplesHeading": "プレーヤーはHabiticaとして処する。。。", + "evagantzQuote": "初めての歯医者さんで、私がデンタルフロスを習慣にしていることを話したら、すごくうれしそうだった。ありがとう、[Habitica]!", + "examplesHeading": "ユーザーは Habitica をこんなふうに使っています : ", "featureAchievementByline": "とっても素晴らしいことをした?バッジを得てそれを見せびらかす!", - "featureAchievementHeading": "実績のバッジ", - "featureEquipByline": "マーケットで期間限定の装備、ポーション、その他のバーチャルグッズをあなたが獲得した報酬でゲットしよう!", - "featureEquipHeading": "装備とその他", - "featurePetByline": "タスクを終えてアイテムと卵が手に入れる。出来るだけ独創的にしてペットとマウントを集まってください!", - "featurePetHeading": "ペットとマウント", - "featureSocialByline": "共通の興味を共有するグループに参加しよう。チャレンジを作成して、ほかのユーザーたちと競争しよう。", - "featureSocialHeading": "ソーシャルプレーをして", + "featureAchievementHeading": "実績バッジ", + "featureEquipByline": "タスクをこなしたごほうびで、限定アイテム、薬、その他のゲーム内グッズを市場で買いましょう!", + "featureEquipHeading": "アイテムその他", + "featurePetByline": "タスクを終えたときに、たまごとアイテムが手に入ります。できるだけ生産的につとめ、ペットと乗用獣を集めましょう!", + "featurePetHeading": "ペットと乗用獣", + "featureSocialByline": "共通の趣味をもつ人たちが集まるグループに参加してみましょう。チャレンジを作成して、ほかのユーザーたちと競争しましょう。", + "featureSocialHeading": "グループ プレー", "featuredIn": "~で取り上げてます", - "featuresHeading": "私たちは~もフィーチャーします", + "featuresHeading": "こんな点もおすすめです...", "footerCommunity": "コミュニティ", "footerCompany": "会社", "footerMobile": "モバイル", "footerSocial": "ソーシャル", "forgotPass": "パスワードを忘れた", - "frabjabulousQuote": "私が一番の獲物、良い給料の仕事を仕留められたのは[Habitica]のおかげさ・・・。しかも、毎日のデンタルフロスも欠かしていない!", - "free": "参加は無料です", - "gamifyButton": "今日から人生のゲーム化開始!", + "frabjabulousQuote": "私が、超すごい、おいしい仕事につけたのは [Habitica] のおかげ。しかも、自分でも奇跡的だと思うけど、毎日デンタルフロスする人になっちゃった!", + "free": "参加無料", + "gamifyButton": "今日からあなたの人生がゲームに!", "goalSample1": "1時間ピアノを練習する", - "goalSample2": "掲載用の記事制作する", - "goalSample3": "ブログ記事を制作する", - "goalSample4": "Duolingoで日本語のレッスンを受ける", - "goalSample5": "情報量の多い記事を読む", + "goalSample2": "出版する記事を書く", + "goalSample3": "ブログの投稿をする", + "goalSample4": "Duolingo で英語を勉強する", + "goalSample5": "役に立つ記事を読む", "goals": "目標", "health": "健康", - "healthSample1": "水を飲む/ソーダを飲む", - "healthSample2": "ガムを噛む/タバコを吸う", - "healthSample3": "階段で昇り降りする/エレベーターに乗る", - "healthSample4": "健康的な食べ物を食べる/ジャンクフードを食べる", - "healthSample5": "1時間運動する", + "healthSample1": "水を飲む・炭酸飲料を飲む", + "healthSample2": "ガムを噛む・タバコを吸う", + "healthSample3": "階段で行く・エレベーターに乗る", + "healthSample4": "体にいいものを食べる・ジャンクフードを食べる", + "healthSample5": "1時間汗をかく", "history": "履歴", - "infhQuote": "[Habitica]は、学校に居たころ、私の学生生活にストラクチャーを加える大きな手助けだったわ。", - "invalidEmail": "パスワードをリセットするために有効なメールアドレスが必要です。", - "irishfeet123Quote": "僕は食後の食卓を片付けられないでコップをいろんなところに置きっぱなしの僕の最悪な癖があったんだ。それが治したのは[Habitica]だったよ!", - "joinOthers": "Join <%= userCount %> people making it fun to achieve goals!", - "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.", - "landingadminlink": "管理向けパッケージ", - "landingend": "まだ納得していませんか?", + "infhQuote": "大学院時代、[Habitica]は私の学生生活を形づくる大きな手助けだったわ。", + "invalidEmail": "パスワードのリセットに対応したメールアドレスではありません。", + "irishfeet123Quote": "ぼくには、食後のかたづけができないのと、カップをいろんなところに置いちゃうサイアクの癖があったんだ。[Habitica]がその癖を治してくれんだ。", + "joinOthers": "<%= userCount %> 人ものユーザーが、それぞれの目標を達成するのを楽しんでいます!", + "kazuiQuote": "[Habitica] をやる前は論文にいきづまってたし、同じように家事もできずに生活が乱れてて、語学やGo理論の勉強もうまくいってなかった。やるべきことを、小さく分割して管理できるチェックリストにしたことで、やる気が出たし、つづけられるようになったんだ。", + "landingadminlink": "管理者向けパッケージ", + "landingend": "まだ決心がつきませんか?", "landingend2": "詳細のリストをみる", - "landingend3": "よりクローズドな使い方をお探しですか?\n以下のものを調べてみてください。", - "landingend4": "これは家族や教師の方、サポートグループやビジネス用途に適しています。", + "landingend3": "よりプライベートな使い方をお望みですか?\nこちらをご覧ください : ", + "landingend4": "これは家族や教師の方、サポートグループ、そしてビジネス用途にぴったりです。", "landingfeatureslink": "機能", - "landingp1": "現在にある生産性アプリに関しての問題は使い続けるインセンティブを提供しません。常習を作ることが楽しくなるでHabiticaがこの問題を解説します!成功を報いて手違いを罰して、日々の活動を完成するために外部のモチベーションを提供します。", + "landingp1": "市場にある多くの生産性向上ツールには、使いつづけようとするインセンティブがありません。\nHabitica はこの問題を、習慣づけを楽しくすることで解決しました! 自分自身の成功にはごほうびを、失敗にはペナルティーを...。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 におけるコミュニティーの存在は、あなたに手助けと成功すべきという責任感という、 2 つの意義があるのです。", "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": "ログイン / Facebookのアカウントで登録", "logout": "ログアウト", - "marketing1Header": "ゲームで遊びながら習慣を改善する", - "marketing1Lead1": "Habiticaはあなたの実生活の習慣を改善させるためのゲームです。あなたの全てのタスク(習慣タスク、日課、やるべきことタスク) を、あなたが倒すべきモンスターたちに変換することで、あなたの人生をゲームのようにします。これらのタスクにより多く取り組むことで、あなたはゲームの中で成長することができます。一方で実生活で失敗してしまうと、ゲーム内のあなたのキャラクターも後戻りしてしまうでしょう。", - "marketing1Lead2": "素晴らしい装備を手に入れよう. あなたのアバターを作り上げるために、習慣を改善していきましょう。手に入れた装備を使ってオリジナリティのあるアバターを作りましょう!", - "marketing1Lead2Title": "素晴らしい装備を手に入れよう", - "marketing1Lead3": "ランダムな報酬を探そう. ギャンブル的要素によりやる気を引き起こされる人たちがいます。このシステムは「確率的報酬」と呼ばれています。Habiticaは下記のやる気を引き起こすスタイルを提供しています。ポジティブなもの、ネガティブなもの、予測可能なもの、そしてランダムのものです。", - "marketing1Lead3Title": "ランダムな報酬を探そう", - "marketing2Header": "友達と競争しましょう!面白そうなグループに入りましょう!", - "marketing2Lead1": "Habiticaは一人でプレイすることもできますが、他の人との協力や競争、目標のコミットメントを始めることで、より可能性が広がっていきます。自分を向上させるあらゆるプログラムにおける最も効果的な要素は社会的な責任であり、これら責任や競争のための環境としてはビデオゲームこそが最良の環境なのです。", - "marketing2Lead2": "ボス戦はRPGには欠かせません。パーティを作ってボスと戦いましょう。ボスと戦うときは 「連帯責任モード」になります。あなたがタスクに失敗すれば、ボスは パーティ全員にダメージを与えます。", + "marketing1Header": "ゲームで遊んで習慣を改善する", + "marketing1Lead1": "Habitica は実生活での習慣を改善するゲームです。すべてのタスク(習慣、日課、To-Do) を倒すべき小さなモンスターとみなすことで、あなたの人生を「ゲーム化」します。あなたがよりよく生きれば、ゲームも前進します。一方、実生活で失敗すると、ゲーム内の分身であるキャラクターも後戻りしてしまいますよ。", + "marketing1Lead2": "すばらしい装備を手に入れよう。アバターを成長させるために、習慣を改善しましょう。タスクの完了で稼いだすごいアイテムを見せびらかしましょう。", + "marketing1Lead2Title": "すばらしい装備を手に入れよう", + "marketing1Lead3": "ときどきボーナスが入ります。ギャンブルこそがやる気につながる、そんな人たちには、「確率的報酬」とよんでいるシステムがあります。Habiticaには、積極的、消極的、確実、気まぐれ…すべてのやる気対策が入っています。", + "marketing1Lead3Title": "ときどきボーナスが入ります", + "marketing2Header": "友達と競争しましょう! 興味のあるグループに参加しましょう!", + "marketing2Lead1": "Habiticaは一人でプレーすることもできます。しかし、他の人と協力したり、競争したり、それぞれの責任をもったりするプレーを始めると、まるでスイッチが入ったように感じるでしょう。どんな自己啓発プログラムであってももっとも効果的な一要素は、人びととの責任の分担です。分担と競争の環境としては、テレビゲームがいちばんじゃありませんか?", + "marketing2Lead2": "ボス キャラと戦おう。戦いのないロールプレイングゲームがありますか? あなたの仲間のパーティーでボスと戦いましょう。ボス戦は 「連帯責任モード」になります。あなたがスポーツジムに行くのをさぼった日は、ボスが パーティ全員にダメージを与えます。", "marketing2Lead2Title": "ボス", - "marketing2Lead3": "チャレンジ 友達や周りの人たちと競い合いましょう。チャレンジが終了したときにトップにいた人に特別な報酬が渡されます。", + "marketing2Lead3": "チャレンジ で友達やHabiticaで出会った人と競争してみましょう。チャレンジの勝者は特別な賞を手にすることができます。", "marketing3Header": "アプリ", - "marketing3Lead1": "iPhone & Android アプリを用いると、外出先でも作業することができます。ウェブサイトにログインしてボタンをクリックすることはドラッグのようであるとを我々は実感しています。", - "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", + "marketing3Lead1": "iPhone もしくは Android アプリを使えば、外出先でも Habitica が操作できます。私たちは ログインするのに webサイトでボタンをクリックするのは、めんどうだと気づきました。", + "marketing3Lead2": "その他のサードパーティーのツールは、あなたの生活のさまざまな側面を Habitica に関連づけします。Habitica が提供している API は、非生産的な Web ページを見ていたらポイントを奪い、生産的なページを見ていたらポイントを加えるChrome 拡張機能のように簡単に統合できます。詳しくはこちら", "marketing4Header": "組織での利用", - "marketing4Lead1": "Education is one of the best sectors for gamification. We all know how glued to phones and games students are these days; harness that power! Pit your students against eachother in friendly competition. Reward good behavior with rare prizes. Watch their grades and behavior soar.", + "marketing4Lead1": "教育分野は、ゲーミフィケーションのもっとも適した場所の一つです。近年、どれだけ電話機とゲームが学生・生徒たちと一体になっていることか。力を解き放つのです! 学生・生徒たちを友達同士の競争のスタートラインに並べましょう。よい態度にはレアな賞をあげましょう。学生・生徒の成績と態度がまいあがっていくのを見つめましょう。", "marketing4Lead1Title": "教育におけるゲーミフィケーション", - "marketing4Lead2": "健康管理のコストは増大の一途をたどっており、社会や企業に与える影響も大きくなっています。数多くのプログラムが健康管理のコストを削減し、健康を促進するために計画されています。Habiticaも健康なライフスタイルに向かうための、しっかりとした道を築きあげるものだと私たちは考えています。", - "marketing4Lead2Title": "健康管理のゲーミフィケーション", - "marketing4Lead3-1": "あなたの生活をゲームにしたいですか?", - "marketing4Lead3-2": "教育や健康管理、その他の活動中のグループに興味がありますか?", + "marketing4Lead2": "健康管理のコストは増大の一途をたどっており、その影響も大きくなっています。コストを削減し、健康を促進するために無数の計画が立てられています。Habitica も健康的なライフスタイルへの、しっかりとした道を築きあげるものであると私たちは信じています。", + "marketing4Lead2Title": "健康維持・向上のゲーミフィケーション", + "marketing4Lead3-1": "あなたの人生をゲームにするのはどうですか?", + "marketing4Lead3-2": "教育、健康管理、その他に Habitica でとりくんでいるグループのことに興味がありますか?", "marketing4Lead3-3": "もっと深く知りたいですか?", - "marketing4Lead3Title": "全てをゲームにしよう", + "marketing4Lead3Title": "すべてをゲーム化しましょう", "mobileAndroid": "Android", "mobileIOS": "iOS", - "motivate": "あなたやチームの動機付けをしましょう!", - "motivate1": "あなたが何かをやる動機付けをしましょう。", - "motivate2": "計画を得よう。動機を得よう。ゴールドを得よう。", + "motivate": "自分自身やチームのやる気を引き上げましょう!", + "motivate1": "どんなことにでもとりくむやる気を引き上げましょう。", + "motivate2": "整理される。やる気になる。ゴールドを得る。", "passConfirm": "新しいパスワードを確認する", - "passMan": "In case you are using a password manager (like 1Password) and have problems logging in, try typing your username and password manually.", + "passMan": "パスーワード管理ソフト(例 : 1Password )を使用している場合、ログイン時に問題が発生する場合があります。その場合は、ユーザー名とパスワードを手で入力してください。", "password": "パスワード", "playButton": "遊ぶ", "playButtonFull": "Habiticaで遊ぶ", - "presskit": "プレスキット", - "presskitDownload": "全ての画像をダウンロード", - "presskitText": "Habiticaに関心を持てありがとうございます!次の意イメージはHabiticaについての記事やビデオに使うことが出来ます。詳細についてはleslie@habitica.comでSiena Leslieさんへ連絡して下さい。", + "presskit": "報道関係者向け", + "presskitDownload": "すべての画像をダウンロード", + "presskitText": "Habitica に興味を持っていただき、ありがとうございます! 以下の画像データは、Habitica に関する記事や動画においてお使いください。詳細は、leslie@habitica.com あてで、Siena Leslie へご連絡ください。", "privacy": "プライバシーポリシー", - "psst": "ほら!", - "punishByline": "Break bad habits and procrastination cycles with immediate consequences.", - "punishHeading1": "デーリー目的を忘れた?", - "punishHeading2": "HPを減る!", - "questByline1": "仲間と一緒にプレーをしたら自分のタスクに責任を感じさせます。", - "questByline2": "チャレンジを受けては送っては、一緒にゴールを果たします。", - "questHeading1": "友達と怪物を戦う!", - "questHeading2": "If you slack off, they all get hurt!", + "psst": "しーっ", + "punishByline": "悪い習慣や、すぐに「あとでやろう」と思ってしまう先延ばしぐせをやっつけましょう。", + "punishHeading1": "日課をやり忘れた?", + "punishHeading2": "体力が減りました!", + "questByline1": "友達といっしょにプレーすると、自分のタスクへの責任感がつづきます。", + "questByline2": "それぞれのチャレンジをかかげて、いっしょにゴールを果たしましょう!", + "questHeading1": "友達といっしょにモンスターたちと戦いましょう!", + "questHeading2": "あなたがサボると、みんなの体力が減ります!", "register": "登録", - "rewardByline1": "バーチャルとリアルなご褒美にゴールドを使う。", - "rewardByline2": "Instant rewards keep you motivated!", - "rewardHeading": "タスクをクリアするとゴールドをゲット!", - "sampleDailies": "日課サンプル例", - "sampleHabits": "習慣サンプル例", - "sampleToDo": "やることサンプル例", + "rewardByline1": "ゴールドをゲーム内と実生活で使いましょう。", + "rewardByline2": "すぐにもらえる報酬でやる気がつづきます!", + "rewardHeading": "タスクをかたづけて、ゴールドをゲットしましょう!", + "sampleDailies": "日課の例", + "sampleHabits": "習慣の例", + "sampleToDo": "To-Doの例", "school": "学校", - "schoolSample1": "課題を1つ仕上げる", + "schoolSample1": "課題を1つ終わらせる", "schoolSample2": "1時間勉強する", - "schoolSample3": "勉強会をする", - "schoolSample4": "1章のノートを書く", + "schoolSample3": "仲間といっしょに勉強する", + "schoolSample4": "1章分のノートをつける", "schoolSample5": "1章を読む", - "sixteenBitFilQuote": "I'm getting my jobs and tasks done in record time thanks to [Habitica]. I'm just always so eager to reach my next level-up!", - "skysailorQuote": "My party and our quests keep me engaged in the game, which keeps me motivated to get things done and change my life in positive ways", - "socialTitle": "Habitica あなたの人生をゲームにしましょう!", - "supermouse35Quote": "I'm exercising more and I haven't forgotten to take my meds for months! Thanks, Habit. :D", + "sixteenBitFilQuote": "仕事やタスクを時間内に終わらせられた。ありがとう、[Habitica]。いつも次にレベルアップするのが楽しみだったんだ!", + "skysailorQuote": "ゲーム内のパーティーとクエストを気にすることで、タスクをこなし、前向きな方向で人生に挑戦するやる気がつづきました。", + "socialTitle": "Habitica ――あなたの人生がゲームに", + "supermouse35Quote": "運動をやることが増えたし、何カ月も薬を飲み忘れることがなかった! ありがとう、Habitica (^o^)", "sync": "同期", "tasks": "タスク", - "teamSample1": "火曜日の会議予定表を作る", - "teamSample2": "Brainstorm Growth Hacking", - "teamSample3": "Discuss this week's KPIs", + "teamSample1": "火曜の会議のイメージをつくる", + "teamSample2": "成長戦略をブレインストーミングする", + "teamSample3": "今週の進捗について議論する", "teams": "チーム", - "terms": "諸条件", - "testimonialHeading": "口コミ", - "localStorageTryFirst": "If you are experiencing problems with Habitica, click the button below to clear local storage for this website (other websites will not be affected). You will need to log in again after doing this, so first be sure that you know your log-in details, which can be found at Settings -> <%= linkStart %>Site<%= linkEnd %>.", - "localStorageTryNext": "If the problem persists, please <%= linkStart %>Report a Bug<%= linkEnd %> if you haven't already.", - "localStorageClearing": "Clearing Local Storage", - "localStorageClearingExplanation": "Your browser's local storage is being cleared. You will be logged out and redirected to the home page. Please wait.", - "localStorageClear": "Clear Local Storage", - "localStorageClearExplanation": "This button will clear local storage and log you out", + "terms": "利用規約", + "testimonialHeading": "みなさんの評価は...", + "localStorageTryFirst": "Habitica で問題があったら、下のボタンをクリックして、このWebサイトのローカル保存領域を消去してください(他のWebサイトには影響を与えません)。この作業後には、再度ログインする必要があり、そのためにはログイン情報を確認してください。確認するには、設定 -> <%= linkStart %>サイト<%= linkEnd %>へ。", + "localStorageTryNext": "問題が解決しないせず、未報告の場合は、<%= linkStart %>バグを報告してください<%= linkEnd %>。", + "localStorageClearing": "ローカル保存領域の消去", + "localStorageClearingExplanation": "ブラウザのローカル保存領域が消去されました。自動的にログアウトされホームページに戻ります。お待ちください。", + "localStorageClear": "ローカル保存領域を消去する", + "localStorageClearExplanation": "このボタンを押すと、ローカル保存領域が消去されログアウトします", "tutorials": "チュートリアル", - "unlockByline1": "自分で設定するゴールを達成しながらレベルアップ。", - "unlockByline2": "ペット集め、ランダムなご褒美、魔法使いなどの新しい方法でやる気を活かす!", - "unlockHeadline": "活動成果が生み出せば生み出すほど新コンテンツを発見!", - "useUUID": "UUIDかAPI Token(Facebookユーザ向け)を使用する", + "unlockByline1": "ゴールを達成してレベルアップ。", + "unlockByline2": "ペット集め、ごほうびのチャンス、魔法などなど、やる気の出る新しい能力をアンロックしましょう!", + "unlockHeadline": "生産的であれば、新しい機能がアンロックできます!", + "useUUID": "UUID ・API Token を使う (Facebookユーザ向け)", "username": "ユーザー名", "watchVideos": "動画を見る", "work": "仕事", - "zelahQuote": "With [Habitica], I can be persuaded to go to bed on time by the thought of gaining points for an early night or losing health for a late one!", + "zelahQuote": "[Habitica] は、早く寝てポイントを増やすか夜ふかしして体力を失うかと考えさせて、ぼくを定刻にベッドに行くよう言い聞かせてくれたよ。", "reportAccountProblems": "アカウントの問題を報告する", "reportCommunityIssues": "コミュニティの問題を報告する", - "generalQuestionsSite": "サイトに関するご質問", - "businessInquiries": "ビジネスに関するお問い合わせ", - "merchandiseInquiries": "商品化窓口お問い合わせ", - "marketingInquiries": "マーケティング・ソーシャルメディアに関するお問い合わせ", - "tweet": "ツイート", - "apps": "Apps", - "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.", - "landingCopy3": "Join over <%= userCount %> people having fun as they improve their lives.", - "alreadyHaveAccount": "I already have an account!", - "getStartedNow": "Get Started Now!", - "altAttrNavLogo": "Habitica home", + "generalQuestionsSite": "サイトについての一般的なご質問", + "businessInquiries": "ビジネスのお問い合わせ", + "merchandiseInquiries": "商品化についてのお問い合わせ", + "marketingInquiries": "マーケティングやソーシャルメディアについてのお問い合わせ", + "tweet": "Tweet", + "apps": "アプリ", + "checkOutMobileApps": "スマホアプリもチェックしてください!", + "imagine1": "ゲームで遊ぶみたいに自分の生活を向上させられたら、と想像してみてください。", + "landingCopy1": "実生活のタスクをこなすことで、ゲームが進みます。", + "landingCopy2": "自分のゴールへの責任感をもって、友達といっしょにモンスターたちと戦いましょう。", + "landingCopy3": "<%= userCount %>人が、生活をよりよくすることを楽しんでいるゲームに参加しましょう。", + "alreadyHaveAccount": "アカウントをもってるよ!", + "getStartedNow": "すぐにやってみましょう!", + "altAttrNavLogo": "Habitica ホーム", "altAttrLifehacker": "Lifehacker", - "altAttrNewYorkTimes": "The New York Times", - "altAttrMakeUseOf": "MakeUseOf", - "altAttrForbes": "Forbes", - "altAttrCnet": "CNet", - "altAttrFastCompany": "Fast Company", - "altAttrKickstarter": "Kickstarter", - "altAttrDiscover": "Discover Magazine", + "altAttrNewYorkTimes": "「ニューヨークタイムズ」", + "altAttrMakeUseOf": "「MakeUseOf」", + "altAttrForbes": "「フォーブス」", + "altAttrCnet": "「CNet」", + "altAttrFastCompany": "「Fast Company」", + "altAttrKickstarter": "「Kickstarter」", + "altAttrDiscover": "「Discover Magazine」", "altAttrFrabjabulous": "Frabjabulous:", "altAttrAlexandraSo": "_AlexandraSo_:", "altAttrEvaGantz": "EvaGantz:", diff --git a/common/locales/ja/gear.json b/common/locales/ja/gear.json index ec8c93eab3..baf5070352 100644 --- a/common/locales/ja/gear.json +++ b/common/locales/ja/gear.json @@ -1,4 +1,5 @@ { + "set": "セット", "weapon": "武器", "weaponBase0Text": "武器がありません", "weaponBase0Notes": "武器がありません。", @@ -45,7 +46,7 @@ "weaponWizard6Text": "黄金の杖", "weaponWizard6Notes": "強力で貴重な金で錬金されたオリハルコンによって作られている。知能が<%= int %>、知覚が<%= per %>上がる。", "weaponHealer0Text": "初心者のロッド", - "weaponHealer0Notes": "ヒーラーの訓練用杖。効果なし。", + "weaponHealer0Notes": "訓練中の治療師用のつえ。効果なし。", "weaponHealer1Text": "侍祭の杖", "weaponHealer1Notes": "治療者の入会式中制作された。知能が<%= int %>上がる。", "weaponHealer2Text": "クォーツロッド", @@ -68,7 +69,7 @@ "weaponSpecial3Notes": "対戦、モンスター、倦怠感: 処理した!すりつぶせ!力、知能、そして体質がそれぞれ <%= attrs %> 上がる。", "weaponSpecialCriticalText": "バグクラッシャーのクリティカルハンマー", "weaponSpecialCriticalNotes": "多くの戦士が倒れたところ、このチャンピオンはクリティカルなGitHubの敵を殺した。バグの骨から作られたこのハンマーは、強力な会心の一撃を与える。力と知覚がそれぞれ <%= attrs %> 上がる。", - "weaponSpecialTridentOfCrashingTidesText": "Trident of Crashing Tides", + "weaponSpecialTridentOfCrashingTidesText": "ざざっと波の三叉", "weaponSpecialTridentOfCrashingTidesNotes": "Gives you the ability to command fish, and also deliver some mighty stabs to your tasks. Increases Intelligence by <%= int %>.", "weaponSpecialYetiText": "雪男テイマースピア", "weaponSpecialYetiNotes": "この槍の使い手はどんな雪男にも命令できる。力が <%= str %> 上がる。2013年-2014年冬季限定版装備。", @@ -126,24 +127,32 @@ "weaponSpecialSummer2015MageNotes": "この棒の宝石に隠然が輝く。知性を<%= per %>点、知覚を<%= per %>点上げる。2015年夏季限定装備。", "weaponSpecialSummer2015HealerText": "波のワンド", "weaponSpecialSummer2015HealerNotes": "船酔いと海の病気を治す!知性を<%= int %>点上げる。2015年夏季限定装備。", - "weaponSpecialFall2015RogueText": "Bat-tle Ax", + "weaponSpecialFall2015RogueText": "戦斧", "weaponSpecialFall2015RogueNotes": "Fearsome To-Dos cower before the flapping of this ax. Increases Strength by <%= str %>. Limited Edition 2015 Autumn Gear.", - "weaponSpecialFall2015WarriorText": "Wooden Plank", + "weaponSpecialFall2015WarriorText": "木の板", "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.", - "weaponSpecialWinter2016RogueText": "Cocoa Mug", + "weaponSpecialWinter2016RogueText": "ココアのマグカップ", "weaponSpecialWinter2016RogueNotes": "Warming drink, or boiling projectile? You decide... Increases Strength by <%= str %>. Limited Edition 2015-2016 Winter Gear.", - "weaponSpecialWinter2016WarriorText": "Sturdy Shovel", + "weaponSpecialWinter2016WarriorText": "丈夫なシャベル", "weaponSpecialWinter2016WarriorNotes": "Shovel overdue tasks out of the way! Increases Strength by <%= str %>. Limited Edition 2015-2016 Winter Gear.", - "weaponSpecialWinter2016MageText": "Sorcerous Snowboard", + "weaponSpecialWinter2016MageText": "呪術的なスノーボードー", "weaponSpecialWinter2016MageNotes": "Your moves are so sick, they must be magic! Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2015-2016 Winter Gear.", - "weaponSpecialWinter2016HealerText": "Confetti Cannon", + "weaponSpecialWinter2016HealerText": "紙吹雪大砲", "weaponSpecialWinter2016HealerNotes": "WHEEEEEEEEEE!!!!!!! HAPPY WINTER WONDERLAND!!!!!!!! Increases Intelligence by <%= int %>. Limited Edition 2015-2016 Winter Gear.", + "weaponSpecialSpring2016RogueText": "Fire Bolas", + "weaponSpecialSpring2016RogueNotes": "You've mastered the ball, the club, and the knife. Now you advance to juggling fire! Awoo! Increases Strength by <%= str %>. Limited Edition 2016 Spring Gear.", + "weaponSpecialSpring2016WarriorText": "チーズの杵", + "weaponSpecialSpring2016WarriorNotes": "No one has as many friends as the mouse with tender cheeses. Increases Strength by <%= str %>. Limited Edition 2016 Spring Gear.", + "weaponSpecialSpring2016MageText": "鈴の杖", + "weaponSpecialSpring2016MageNotes": "Abra-cat-abra! So dazzling, you might mesmerize yourself! Ooh... it jingles... Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2016 Spring Gear.", + "weaponSpecialSpring2016HealerText": "春花の杖", + "weaponSpecialSpring2016HealerNotes": "With a wave and a wink, you bring the fields and forests into bloom! Or bop troublesome mice on the head. Increases Intelligence by <%= int %>. Limited Edition 2016 Spring Gear.", "weaponMystery201411Text": "ごちそうの熊手", - "weaponMystery201411Notes": "あなたの敵を突き刺したり、あなたの好きな食べ物のために掘る - この何にでも使える熊手がそれをすべてを行う!効果なし。2014年11月購読者アイテム。", + "weaponMystery201411Notes": "敵を突き刺したり、あなたの好きな食べ物のために掘る - この何にでも使える熊手がそれをすべてを行う!効果なし。2014年11月寄付会員アイテム。", "weaponMystery201502Text": "愛ならびに真実の輝く羽の杖", "weaponMystery201502Notes": "羽のために!愛のために!ならびに真実のために!効果なし。2015年2月購読者アイテム。", "weaponMystery201505Text": "グリーンナイトランス", @@ -160,9 +169,9 @@ "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).", - "weaponArmoireGoldWingStaffText": "Gold Wing Staff", + "weaponArmoireGoldWingStaffText": "黄金な羽の杖", "weaponArmoireGoldWingStaffNotes": "The wings on this staff constantly flutter and twist. Increases all attributes by <%= attrs %> each. Enchanted Armoire: Independent Item.", - "weaponArmoireBatWandText": "Bat Wand", + "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).", @@ -170,12 +179,16 @@ "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 <%= per %>, Constitution by <%= con %>, and Strength by <%= str %>. Enchanted Armoire: Independent Item.", - "weaponArmoireGlowingSpearText": "Glowing Spear", + "weaponArmoireGlowingSpearText": "輝く槍", "weaponArmoireGlowingSpearNotes": "This spear hypnotizes wild tasks so you can attack them. Increases Strength by <%= str %>. Enchanted Armoire: Independent Item.", "weaponArmoireBarristerGavelText": "Barrister Gavel", "weaponArmoireBarristerGavelNotes": "Order! Increases Strength and Constitution by <%= attrs %> each. Enchanted Armoire: Barrister Set (Item 3 of 3).", "weaponArmoireJesterBatonText": "Jester Baton", "weaponArmoireJesterBatonNotes": "With a wave of your baton and some witty repartee, even the most complicated situations become clear. Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Jester Set (Item 3 of 3).", + "weaponArmoireMiningPickaxText": "Mining Pickax", + "weaponArmoireMiningPickaxNotes": "Mine the maximum amount of gold from your tasks! Increases Perception by <%= per %>. Enchanted Armoire: Miner Set (Item 3 of 3).", + "weaponArmoireBasicLongbowText": "Basic Longbow", + "weaponArmoireBasicLongbowNotes": "A serviceable hand-me-down bow. Increases Strength by <%= str %>. Enchanted Armoire: Basic Archer Set (Item 1 of 3).", "armor": "鎧", "armorBase0Text": "無地の服", "armorBase0Notes": "普通の服。効果なし。", @@ -214,7 +227,7 @@ "armorHealer2Text": "医術士のローブ", "armorHealer2Notes": "戦闘で負傷した者の手当をする時に着用します。体質が<%= con %>上がる。", "armorHealer3Text": "守護者のマント", - "armorHealer3Notes": "攻撃を避けるためにヒーラー自身に魔法がかかるよう切り替わります。体質が<%= con %>上がる。", + "armorHealer3Notes": "攻撃を避けるため、治療師の魔法が自分にかかるよう切り替わります。性格が<%= con %>上がる。", "armorHealer4Text": "医師のマント", "armorHealer4Notes": "権威を表し、呪いを解く。体質が<%= con %>上がる。", "armorHealer5Text": "王家のマント", @@ -293,7 +306,7 @@ "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", + "armorSpecialFall2015WarriorText": "案山子の鎧", "armorSpecialFall2015WarriorNotes": "Despite being stuffed with straw, this armor is extremely hefty! Increases Constitution by <%= con %>. Limited Edition 2015 Autumn Gear.", "armorSpecialFall2015MageText": "Stitched Robes", "armorSpecialFall2015MageNotes": "Every stitch in this armor shimmers with enchantment. Increases Intelligence by <%= int %>. Limited Edition 2015 Autumn Gear.", @@ -307,6 +320,14 @@ "armorSpecialWinter2016MageNotes": "The wisest wizard keeps well-bundled in the winter wind. Increases Intelligence by <%= int %>. Limited Edition 2015-2016 Winter Gear.", "armorSpecialWinter2016HealerText": "Festive Fairy Cloak", "armorSpecialWinter2016HealerNotes": "Festive Fairies wrap their body wings around themselves for protection as they use their head wings to catch headwinds and fly around Habitica at speeds of up to 100 mph, delivering gifts and spraying everyone with confetti. How droll. Increases Constitution by <%= con %>. Limited Edition 2015-2016 Winter Gear.", + "armorSpecialSpring2016RogueText": "Canine Camo Suit", + "armorSpecialSpring2016RogueNotes": "A clever pup knows to choose a brighter guise for concealment when everything is green and vibrant. Increases Perception by <%= per %>. Limited Edition 2016 Spring Gear.", + "armorSpecialSpring2016WarriorText": "Mighty Mail", + "armorSpecialSpring2016WarriorNotes": "Though you be but little, you are fierce! Increases Constitution by <%= con %>. Limited Edition 2016 Spring Gear.", + "armorSpecialSpring2016MageText": "Grand Malkin Robes", + "armorSpecialSpring2016MageNotes": "Brightly colored, so you won't be mistaken for a necromouser. Increases Intelligence by <%= int %>. Limited Edition 2016 Spring Gear.", + "armorSpecialSpring2016HealerText": "Fluffy Bunny Breeches", + "armorSpecialSpring2016HealerNotes": "Hippity hop! Bound from hill to hill, healing those in need. Increases Constitution by <%= con %>. Limited Edition 2016 Spring Gear.", "armorMystery201402Text": "使者のローブ", "armorMystery201402Notes": "かすかに光って、強くて、これらのローブは、手紙を運ぶために多くのポケットがある。効果なし。2014年2月購読者アイテム。", "armorMystery201403Text": "フォレストウォーカーアーマー", @@ -333,14 +354,16 @@ "armorMystery201504Notes": "このローブを獲得することで忙しい蜂のように生産的になれるでしょう!効果なし。2015年4月購読者アイテム。", "armorMystery201506Text": "Snorkel Suit", "armorMystery201506Notes": "Snorkel through a coral reef in this brightly-colored swim suit! Confers no benefit. June 2015 Subscriber Item.", - "armorMystery201508Text": "Cheetah Costume", + "armorMystery201508Text": "チータの衣装", "armorMystery201508Notes": "Run fast as a flash in the fluffy Cheetah Costume! Confers no benefit. August 2015 Subscriber Item.", - "armorMystery201509Text": "Werewolf Costume", + "armorMystery201509Text": "人狼のコスチューム", "armorMystery201509Notes": "これ本当に衣装だよね?効果なし。2015年9月購読者アイテム。", - "armorMystery201511Text": "Wooden Armor", + "armorMystery201511Text": "木の鎧", "armorMystery201511Notes": "Considering this armor was carved directly from a magical log, it's surprisingly comfortable. Confers no benefit. November 2015 Subscriber Item.", - "armorMystery201512Text": "Cold Fire Armor", + "armorMystery201512Text": "冷やし炎の鎧", "armorMystery201512Notes": "Summon the icy flames of winter! Confers no benefit. December 2015 Subscriber Item.", + "armorMystery201603Text": "Lucky Suit", + "armorMystery201603Notes": "This suit is sewn from thousands of four-leafed clovers! Confers no benefit. March 2016 Subscriber Item.", "armorMystery301404Text": "スチームパンクスーツ", "armorMystery301404Notes": "小粋な、そして、颯爽とした!効果なし。3015年2月購読者アイテム。", "armorArmoireLunarArmorText": "Soothing Lunar Armor", @@ -357,7 +380,7 @@ "armorArmoirePlagueDoctorOvercoatNotes": "An authentic overcoat worn by the doctors who battle the Plague of Procrastination! Increases Intelligence by <%= int %>, Strength by <%= str %>, and Constitution by <%= con %>. Enchanted Armoire: Plague Doctor Set (Item 3 of 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", + "armorArmoireRoyalRobesText": "王立の法服", "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).", @@ -367,9 +390,13 @@ "armorArmoireBarristerRobesNotes": "Very serious and stately. Increases Constitution by <%= con %>. Enchanted Armoire: Barrister Set (Item 2 of 3).", "armorArmoireJesterCostumeText": "Jester Costume", "armorArmoireJesterCostumeNotes": "Tra-la-la! Despite the look of this costume, you are no fool. Increases Intelligence by <%= int %>. Enchanted Armoire: Jester Set (Item 2 of 3).", - "headgear": "ヘッドギア", + "armorArmoireMinerOverallsText": "Miner Overalls", + "armorArmoireMinerOverallsNotes": "They may seem worn, but they are enchanted to repel dirt. Increases Constitution by <%= con %>. Enchanted Armoire: Miner Set (Item 2 of 3).", + "armorArmoireBasicArcherArmorText": "Basic Archer Armor", + "armorArmoireBasicArcherArmorNotes": "This camouflaged vest lets you slip unnoticed through the forests. Increases Perception by <%= per %>. Enchanted Armoire: Basic Archer Set (Item 2 of 3).", + "headgear": "帽子・かぶと", "headBase0Text": "兜なし", - "headBase0Notes": "ヘッドギアなし", + "headBase0Notes": "帽子・かぶとなし", "headWarrior1Text": "レザーヘルム", "headWarrior1Notes": "頑丈な革の帽子。力が<%= str %>上がる。", "headWarrior2Text": "チェーンコイフ", @@ -480,11 +507,11 @@ "headSpecialSummer2015HealerNotes": "船員の帽子を頭にかぶってあれば、どんな荒波でも航行できる!知性を<%= int %>点上げる。2015年夏季限定装備。", "headSpecialFall2015RogueText": "Bat-tle Wings", "headSpecialFall2015RogueNotes": "Echolocate your enemies with this powerful helm! Increases Perception by <%= per %>. Limited Edition 2015 Autumn Gear.", - "headSpecialFall2015WarriorText": "Scarecrow Hat", + "headSpecialFall2015WarriorText": "案山子の帽子", "headSpecialFall2015WarriorNotes": "Everyone would want this hat--if they only had a brain. Increases Strength by <%= str %>. Limited Edition 2015 Autumn Gear.", - "headSpecialFall2015MageText": "Stitched Hat", + "headSpecialFall2015MageText": "縫った帽子", "headSpecialFall2015MageNotes": "Every stitch in this hat augments its power. Increases Perception by <%= per %>. Limited Edition 2015 Autumn Gear.", - "headSpecialFall2015HealerText": "Hat of Frog", + "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.", "headSpecialNye2015Text": "Ridiculous Party Hat", "headSpecialNye2015Notes": "You've received a Ridiculous Party Hat! Wear it with pride while ringing in the New Year! Confers no benefit.", @@ -496,6 +523,14 @@ "headSpecialWinter2016MageNotes": "Keeps the snow out of your eyes while you're casting spells. Increases Perception by <%= per %>. Limited Edition 2015-2016 Winter Gear.", "headSpecialWinter2016HealerText": "Fairy Wing Helm", "headSpecialWinter2016HealerNotes": "Thesewingsfluttersoquicklythattheyblur! Increases Intelligence by <%= int %>. Limited Edition 2015-2016 Winter Gear.", + "headSpecialSpring2016RogueText": "Good Doggy Mask", + "headSpecialSpring2016RogueNotes": "Aww, what a cute puppy! Come here and let me pet your head. ...Hey, where did all my Gold go? Increases Perception by <%= per %>. Limited Edition 2016 Spring Gear.", + "headSpecialSpring2016WarriorText": "Mouse Guard Helm", + "headSpecialSpring2016WarriorNotes": "Never again shall you be bopped on the head! Let them try! Increases Strength by <%= str %>. Limited Edition 2016 Spring Gear.", + "headSpecialSpring2016MageText": "Grand Malkin Hat", + "headSpecialSpring2016MageNotes": "Apparel to set you above the mere alley-mages of the world. Increases Perception by <%= per %>. Limited Edition 2016 Spring Gear.", + "headSpecialSpring2016HealerText": "Blossom Diadem", + "headSpecialSpring2016HealerNotes": "It glints with the potential of new life ready to burst forth. Increases Intelligence by <%= int %>. Limited Edition 2016 Spring Gear.", "headSpecialGaymerxText": "虹色の戦士の兜", "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": "羽かぶと", @@ -516,16 +551,20 @@ "headMystery201501Notes": "この兜のなかで星座が揺らめきぐるぐる回ります。身につけた者を精神集中へ導きます。効果なし。2015年1月購読者アイテム。", "headMystery201505Text": "グリーンナイトヘルム", "headMystery201505Notes": "この鉄のヘルメットに飾っている緑色の羽は得々に揺れる。効果なし。2015年5月購読者限定アイテム。", - "headMystery201508Text": "Cheetah Hat", + "headMystery201508Text": "チータの帽子", "headMystery201508Notes": "This cozy cheetah hat is very fuzzy! Confers no benefit. August 2015 Subscriber Item.", - "headMystery201509Text": "Werewolf Mask", + "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.", - "headMystery201512Text": "Winter Flame", + "headMystery201512Text": "冬の炎", "headMystery201512Notes": "These flames burn cold with pure intellect. Confers no benefit. December 2015 Subscriber Item.", - "headMystery201601Text": "Helm of True Resolve", + "headMystery201601Text": "誓いの兜", "headMystery201601Notes": "Stay resolute, brave champion! Confers no benefit. January 2016 Subscriber Item.", + "headMystery201602Text": "Heartbreaker Hood", + "headMystery201602Notes": "Shield your identity from all your admirers. Confers no benefit. February 2016 Subscriber Item.", + "headMystery201603Text": "幸運の帽子", + "headMystery201603Notes": "This top hat is a magical good-luck charm. Confers no benefit. March 2016 Subscriber Item.", "headMystery301404Text": "ファンシートップハット", "headMystery301404Notes": "最上の良家の人々のためのファンシートップハット!3015年1月購読者アイテム。効果なし。", "headMystery301405Text": "ベーシックトップハット", @@ -540,23 +579,23 @@ "headArmoireGladiatorHelmNotes": "剣闘士になるには強いだけではなく、賢くなければならない。知能を<%= int %>、知覚を<%= per %>上げる。魔法の戸棚:剣闘士セット (3アイテム中1番)。", "headArmoireRancherHatText": "牧童の帽子", "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": "Blue Hairbow", + "headArmoireBlueHairbowText": "青いリボン", "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.", - "headArmoireRoyalCrownText": "Royal Crown", + "headArmoireRoyalCrownText": "王の冠", "headArmoireRoyalCrownNotes": "Hooray for the ruler, mighty and strong! Increases Strength by <%= str %>. Enchanted Armoire: Royal Set (Item 1 of 3).", "headArmoireGoldenLaurelsText": "Golden Laurels", "headArmoireGoldenLaurelsNotes": "These golden laurels reward those who have conquered bad habits. Increases Perception and Constitution by <%= attrs %> each. Enchanted Armoire: Golden Toga Set (Item 2 of 3).", "headArmoireHornedIronHelmText": "Horned Iron Helm", "headArmoireHornedIronHelmNotes": "Fiercely hammered from iron, this horned helmet is nearly impossible to break. Increases Constitution by <%= con %> and Strength by <%= str %>. Enchanted Armoire: Horned Iron Set (Item 1 of 3).", - "headArmoireYellowHairbowText": "Yellow Hairbow", + "headArmoireYellowHairbowText": "黄色のリボン", "headArmoireYellowHairbowNotes": "Become perceptive, strong, and smart while wearing this beautiful Yellow Hairbow! Increases Perception, Strength, and Intelligence by <%= attrs %> each. Enchanted Armoire: Independent Item.", "headArmoireRedFloppyHatText": "Red Floppy Hat", "headArmoireRedFloppyHatNotes": "Many spells have been sewn into this simple hat, giving it a radiant red color. Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Independent Item.", "headArmoirePlagueDoctorHatText": "Plague Doctor Hat", "headArmoirePlagueDoctorHatNotes": "An authentic hat worn by the doctors who battle the Plague of Procrastination! Increases Strength by <%= str %>, Intelligence by <%= int %>, and Constitution by <%= con %>. Enchanted Armoire: Plague Doctor Set (Item 1 of 3).", - "headArmoireBlackCatText": "Black Cat Hat", + "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.", - "headArmoireOrangeCatText": "Orange Cat Hat", + "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.", @@ -570,6 +609,10 @@ "headArmoireBarristerWigNotes": "This bouncy wig is enough to frighten away even the fiercest foe. Increases Strength by <%= str %>. Enchanted Armoire: Barrister Set (Item 1 of 3).", "headArmoireJesterCapText": "Jester Cap", "headArmoireJesterCapNotes": "The bells on this hat might distract your opponents, but they just help you focus. Increases Perception by <%= per %>. Enchanted Armoire: Jester Set (Item 1 of 3).", + "headArmoireMinerHelmetText": "Miner Helmet", + "headArmoireMinerHelmetNotes": "Protect your head from falling tasks! Increases Intelligence by <%= int %>. Enchanted Armoire: Miner Set (Item 1 of 3).", + "headArmoireBasicArcherCapText": "Basic Archer Cap", + "headArmoireBasicArcherCapNotes": "No archer would be complete without a jaunty cap! Increases Perception by <%= per %>. Enchanted Armoire: Basic Archer Set (Item 3 of 3).", "offhand": "利き手でないほうの手のアイテム", "shieldBase0Text": "利き手でないほうの手の装備はありません", "shieldBase0Notes": "盾、またはセカンドウェポンがありません。", @@ -647,24 +690,32 @@ "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.", - "shieldSpecialWinter2016RogueText": "Cocoa Mug", + "shieldSpecialWinter2016RogueText": "ココアのマグカップ", "shieldSpecialWinter2016RogueNotes": "Warming drink, or boiling projectile? You decide... Increases Strength by <%= str %>. Limited Edition 2015-2016 Winter Gear.", - "shieldSpecialWinter2016WarriorText": "Sled Shield", + "shieldSpecialWinter2016WarriorText": "橇の盾", "shieldSpecialWinter2016WarriorNotes": "Use this sled to block attacks, or ride it triumphantly into battle! Increases Constitution by <%= con %>. Limited Edition 2015-2016 Winter Gear.", "shieldSpecialWinter2016HealerText": "Pixie Present", "shieldSpecialWinter2016HealerNotes": "Open it open it open it open it open it open it!!!!!!!!! Increases Constitution by <%= con %>. Limited Edition 2015-2016 Winter Gear.", + "shieldSpecialSpring2016RogueText": "Fire Bolas", + "shieldSpecialSpring2016RogueNotes": "You've mastered the ball, the club, and the knife. Now you advance to juggling fire! Awoo! Increases Strength <%= str %>. Limited Edition 2016 Spring Gear.", + "shieldSpecialSpring2016WarriorText": "チェーズの輪", + "shieldSpecialSpring2016WarriorNotes": "You braved fiendish traps to procure this defense-boosting food. Increases Constitution by <%= con %>. Limited Edition 2016 Spring Gear.", + "shieldSpecialSpring2016HealerText": "Floral Buckler", + "shieldSpecialSpring2016HealerNotes": "The April Fool claims this little shield will block Shiny Seeds. Don't believe him. Increases Constitution by <%= con %>. Limited Edition 2016 Spring Gear.", "shieldMystery201601Text": "Resolution Slayer", "shieldMystery201601Notes": "This blade can be used to parry away all distractions. Confers no benefit. January 2016 Subscriber Item.", "shieldMystery301405Text": "クロックシールド", "shieldMystery301405Notes": "このそびえ立つクロックシールドとともに時はあなたの側にある!効果なし。3015年購読者アイテム。", "shieldArmoireGladiatorShieldText": "剣闘士の盾", "shieldArmoireGladiatorShieldNotes": "剣闘士になるには…あー、もうどうでもいいや、盾で殴っとけ。体質を<%= con %>、力を<%= str %>上げる。魔法の戸棚:剣闘士セット (3アイテム中3番)。", - "shieldArmoireMidnightShieldText": "Midnight Shield", + "shieldArmoireMidnightShieldText": "闇の盾", "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", + "shieldArmoireRoyalCaneText": "王立の杖", "shieldArmoireRoyalCaneNotes": "Hooray for the ruler, worthy of song! Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Royal Set (Item 2 of 3).", "shieldArmoireDragonTamerShieldText": "Dragon Tamer Shield", "shieldArmoireDragonTamerShieldNotes": "Distract enemies with this dragon-shaped shield. Increases Perception by <%= per %>. Enchanted Armoire: Dragon Tamer Set (Item 2 of 3).", + "shieldArmoireMysticLampText": "Mystic Lamp", + "shieldArmoireMysticLampNotes": "Light the darkest caves with this mystic lamp! Increases Perception by <%= per %>. Enchanted Armoire: Independent Item.", "back": "背中アクセサリー", "backBase0Text": "バックアクセサリーがありません", "backBase0Notes": "バックアクセサリーがありません。", @@ -680,6 +731,8 @@ "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.", + "backMystery201602Text": "Heartbreaker Cape", + "backMystery201602Notes": "With a swish of your cape, your enemies fall before you! Confers no benefit. February 2016 Subscriber Item.", "backSpecialWonderconRedText": "マイティケープ", "backSpecialWonderconRedNotes": "強さと美しさにヒュッと音がします。効果なし。コンベンション特別版アイテム。", "backSpecialWonderconBlackText": "卑劣なケープ", @@ -705,11 +758,11 @@ "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.", - "headAccessory": "ヘッドアクセサリー", + "headAccessory": "頭部につけるアクセサリー", "accessories": "装飾品", "animalEars": "獣耳", - "headAccessoryBase0Text": "ヘッドアクセサリーがありません", - "headAccessoryBase0Notes": "ヘッドアクセサリーがありません。", + "headAccessoryBase0Text": "頭部のアクセサリーなし", + "headAccessoryBase0Notes": "頭部につけるアクセサリーがありません。", "headAccessorySpecialSpringRogueText": "紫色の猫耳", "headAccessorySpecialSpringRogueNotes": "これら猫耳は危機が近づくのに気づくとピクピク動きます。効果なし。2014年春季限定装備。", "headAccessorySpecialSpringWarriorText": "緑色のウサ耳", @@ -726,8 +779,16 @@ "headAccessorySpecialSpring2015MageNotes": "どこかで魔法使いが秘密を明かすような場合には、これらの耳は鋭敏に聴きとります。効果なし。2015年春季限定装備。", "headAccessorySpecialSpring2015HealerText": "緑色の猫耳", "headAccessorySpecialSpring2015HealerNotes": "これら可愛い猫耳は他者をとてもうらやましがらせます。効果なし。2015年春季限定装備。", + "headAccessorySpecialSpring2016RogueText": "Green Dog Ears", + "headAccessorySpecialSpring2016RogueNotes": "With these, you can keep track of tricky Mages even if they turn invisible! Confers no benefit. Limited Edition 2016 Spring Gear.", + "headAccessorySpecialSpring2016WarriorText": "赤色のネズミ耳", + "headAccessorySpecialSpring2016WarriorNotes": "騒がしい戦場を越えてテーマ曲を聞こえるように。効果なし。2016年春季限定版装備。", + "headAccessorySpecialSpring2016MageText": "黄色の猫耳", + "headAccessorySpecialSpring2016MageNotes": "These sharp ears can detect the minute hum of ambient Mana, or the muted footfalls of a Rogue. Confers no benefit. Limited Edition 2016 Spring Gear.", + "headAccessorySpecialSpring2016HealerText": "Purple Bunny Ears", + "headAccessorySpecialSpring2016HealerNotes": "They stand like flags above the fray, letting others know where to run for help. Confers no benefit. Limited Edition 2016 Spring Gear.", "headAccessoryBearEarsText": "くま耳", - "headAccessoryBearEarsNotes": "この耳があなたをかわいらしいテディベアのように見せる!効果なし。", + "headAccessoryBearEarsNotes": "These ears make you look like a brave bear! Confers no benefit.", "headAccessoryCactusEarsText": "サボテン耳", "headAccessoryCactusEarsNotes": "この耳があなたをとげだらけのサボテンのように見せる!効果なし。", "headAccessoryFoxEarsText": "狐耳", @@ -752,8 +813,10 @@ "headAccessoryMystery201502Notes": "あなたの想像を飛び立たせ!効果なし。2015年2月購読者限定アイテム。", "headAccessoryMystery201510Text": "Goblin Horns", "headAccessoryMystery201510Notes": "These fearsome horns are slightly slimy. Confers no benefit. October 2015 Subscriber Item.", - "headAccessoryMystery301405Text": "ヘッドウェアゴーグル", + "headAccessoryMystery301405Text": "アイウェア", "headAccessoryMystery301405Notes": "「ゴーグルはかけるものだ」、「かぶりものにしか使えないゴーグルなんてだれも要らないぞ」って何だ!ほら!違うだろう?効果なし。3015年8月購読者限定アイテム。", + "headAccessoryArmoireComicalArrowText": "Comical Arrow", + "headAccessoryArmoireComicalArrowNotes": "This whimsical item doesn't provide a stat boost, but it sure is good for a laugh! Confers no benefit. Enchanted Armoire: Independent Item.", "eyewear": "眼鏡", "eyewearBase0Text": "眼鏡がありません", "eyewearBase0Notes": "眼鏡がありません。", diff --git a/common/locales/ja/generic.json b/common/locales/ja/generic.json index dfc6dd1381..c56c16dc67 100644 --- a/common/locales/ja/generic.json +++ b/common/locales/ja/generic.json @@ -1,55 +1,55 @@ { "languageName": "日本語", "stringNotFound": "文字例 '<%= string %>' が見つかりません。", - "titleIndex": "Habitica | あなたの人生のRPG", + "titleIndex": "Habitica | あなたの人生のロールプレイングゲーム", "habitica": "Habitica", "titleTasks": "タスク", "titleAvatar": "アバター", "titleBackgrounds": "背景", "titleStats": "ステータスと実績", "titleProfile": "プロフィール", - "titleInbox": "Inbox", - "titleTavern": "酒場", + "titleInbox": "受信トレイ", + "titleTavern": "キャンプ場", "titleParty": "パーティー", - "titleHeroes": "Hall of Heroes", - "titlePatrons": "Hall of Patrons", + "titleHeroes": "英雄記念館", + "titlePatrons": "後援者記念館", "titleGuilds": "ギルド", "titleChallenges": "チャレンジ", "titleDrops": "市場", "titleQuests": "クエスト", "titlePets": "ペット", - "titleMounts": "マウントペット", + "titleMounts": "乗用獣", "titleEquipment": "装備", - "titleTimeTravelers": "タイムトラベラーズ", - "titleSeasonalShop": "季節品ショップ", + "titleTimeTravelers": "タイムトラベラー", + "titleSeasonalShop": "期間限定ショップ", "titleSettings": "設定", "expandToolbar": "ツールバーを開く", "collapseToolbar": "ツールバーを閉じる", - "markdownBlurb": "Habiticaはmarkdownのメッセージフォーマティングを利用しています。詳しくはMarkdown Cheat Sheetを見てください。", - "showFormattingHelp": "フォーマッティング・ヘルプを表示する", - "hideFormattingHelp": "フォーマッティング・ヘルプを隠す", - "youType": "これを記入すれば:", - "youSee": "これが表示される:", + "markdownBlurb": "Habiticaはメッセージの書式にマークダウンを利用しています。詳しくはマークダウン便利表をご覧ください。", + "showFormattingHelp": "書式ヘルプを表示", + "hideFormattingHelp": "書式ヘルプを非表示", + "youType": "こう入力すると : ", + "youSee": "こう表示 : ", "italics": "*イタリック体*", "bold": "**太字**", "strikethrough": "~~取り消し線~~", - "emojiExample": ":にっこり:", + "emojiExample": ":smile:", "markdownLinkEx": "[Habitica最高!](https://habitica.com)", "markdownImageEx": "![mandatory alt text](https://habitica.com/cake.png \"任意のマウスオーバーする際表示されるタイトル\")", "unorderedListHTML": "+ アイテム①
+ アイテム②
+ アイテム③", "unorderedListMarkdown": "+ アイテム①\n+ アイテム②\n+ アイテム③", "code": "`コード`", - "achievements": "業績", - "modalAchievement": "業績達成!", + "achievements": "実績", + "modalAchievement": "実績を解除!", "special": "スペシャル", "site": "サイト", "help": "ヘルプ", "user": "ユーザー", "market": "市場", - "subscriberItem": "不思議なアイテム", - "newSubscriberItem": "新しい不思議なアイテム", - "subscriberItemText": "Each month, subscribers will receive a mystery item. This is usually released about one week before the end of the month. See the wiki's 'Mystery Item' page for more information.", - "all": "全ての", + "subscriberItem": "ミステリー アイテム", + "newSubscriberItem": "新しいミステリー アイテム", + "subscriberItemText": "毎月、寄付会員にはミステリー アイテムが贈られます。通常、月の終わりの1週間前ごろにお届けします。詳しくはWiki の「ミステリー アイテム」のページをご覧ください。", + "all": "すべて", "none": "なし", "or": "または", "and": "かつ", @@ -63,52 +63,52 @@ "add": "追加", "undo": "元に戻す", "continue": "続ける", - "accept": "受け入れる", - "reject": "拒否する", + "accept": "承諾", + "reject": "拒否", "neverMind": "なんでもない", "buyMoreGems": "ジェムを買う", - "notEnoughGems": "ジェムが足りない", - "alreadyHave": "おっと!既にこのアイテムを持っています。改めて買う必要はありません!", + "notEnoughGems": "ジェムが足りません", + "alreadyHave": "おっと! もうこのアイテムを持っています。もう一度買う必要はありません!", "delete": "削除", "gemsPopoverTitle": "ジェム", "gems": "ジェム", - "gemButton": "現在ジェム <%= number %>個を持っています。", + "gemButton": "現在ジェムを <%= number %>個持っています。", "moreInfo": "詳細情報", "showMoreMore": "(もっと表示する)", "showMoreLess": "(表示を減らす)", - "gemsWhatFor": "クリックしてジェムを買おう! クエストやアバターカスタマイズや季節限定装備のような特別なアイテムがジェムで購入できます。", + "gemsWhatFor": "クリックしてジェムの購入へ! クエストやアバターカスタマイズや期間限定装備のような特別なアイテムがジェムで買えます。", "veteran": "ベテラン", "veteranText": "Habit The Grey (以前のウェブサイト)は役目を終え、数々のバグから多くの教訓を得ることができました。", - "originalUser": "オリジナルユーザー", - "originalUserText": "当初からのアーリーアダプターの一人です。アルファーテスターについてお話しください!", + "originalUser": "最初からのユーザー!", + "originalUserText": "サービス開始当初からのとくに早く利用をはじめたユーザーの一人です。アルファテスターについてお話しください!", "habitBirthday": "Habiticaの誕生日パーティ", "habitBirthdayText": "Habiticaの誕生日パーティーを祝いました!", "habitBirthdayPluralText": "Habiticaの誕生日パーティを<%= number %>回祝ったことがあります。", - "habiticaDay": "Habitica命名の日", - "habiticaDaySingularText": "Celebrated Habitica's Naming Day! Thanks for being a fantastic user.", - "habiticaDayPluralText": "Celebrated <%= number %> Naming Days! Thanks for being a fantastic user.", + "habiticaDay": "Habitica命名記念日", + "habiticaDaySingularText": "Habitica の命名記念日を迎えました! すばらいユーザーであったことに感謝申しあげます。", + "habiticaDayPluralText": "<%= number %>回目のHabitica 命名記念日を迎えました! すばらいユーザーであったことに感謝申しあげます。", "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!", + "achievementDilatoryText": "2014年夏のスプラッシュイベントで「先延ばしのドレッド・ドラゴン」打倒に協力しました!", + "costumeContest": "衣装コンテスト", + "costumeContestText": "Habitween (Habitica ハロウィン)の衣装コンテストに出場しました。一部のエントリーは、Habitica ブログでご覧いただけます!", + "costumeContestTextPlural": "第 <%= number %> 回Habitween (Habitica ハロウィン)の衣装コンテストに出場しました。一部のエントリーは、Habitica ブログでご覧いただけます!", "memberSince": "メンバー登録日", "lastLoggedIn": "最近ログイン", "notPorted": "この機能はオリジナルサイトからまだ移植されていません", - "buyThis": "この<%= text %>を手持ちの<%= gems %>個から<%= price %>個のジェムで買いますか?", - "noReachServer": "現在サーバ側の反応がありません。後でもう一度お試しください。", + "buyThis": "<%= price %> ジェムのこの<%= text %>を、手持ちの<%= gems %> ジェムから買いますか?", + "noReachServer": "現在、サーバーに到達できません。後ほどもう一度お試しください。", "errorUpCase": "エラー:", "newPassSent": "新しいパスワードを送信しました。", - "serverUnreach": "現在サーバ側の反応がありません。", - "requestError": "Yikes, an error occurred! Please reload the page, your last action may not have been saved correctly.", - "seeConsole": "もしエラーがずっと続くなら、どうか\"Help > Report a Bug\"からお伝えください。もしあなたが使っているブラウザコンソールに詳しいのであれば、どんなエラーメッセージでも含めてお願いします。", + "serverUnreach": "現在サーバーに到達できません。", + "requestError": "エラーが発生しました。ページを再読み込みしてください。おそらく最後に行った操作は、正しく反映されていないと思われます。", + "seeConsole": "もしエラーがくり返されるなら、ヘルプ -> バグを報告する、からご報告ください。ブラウザーコンソールにお詳しいのでしたら、エラーメッセージもふくめてご報告ください。", "error": "エラー", "menu": "メニュー", "notifications": "通知", "noNotifications": "新しいメッセージはありません", "clear": "クリア", "endTour": "ツアーを終える", - "audioTheme": "オーディオテーマ", + "audioTheme": "BGMテーマ", "audioTheme_off": "オフ", "audioTheme_danielTheBard": "吟遊詩人ダニエル", "audioTheme_wattsTheme": "Wattのテーマ", @@ -116,7 +116,7 @@ "audioTheme_luneFoxTheme": "LuneFoxのテーマ", "askQuestion": "質問をする", "reportBug": "バグを報告する", - "HabiticaWiki": "The Habitica Wiki", + "HabiticaWiki": "Habitica Wiki", "HabiticaWikiFrontPage": "http://habitica.wikia.com/wiki/Habitica_Wiki", "contributeToHRPG": "Habiticaに貢献してください", "overview": "新規ユーザーのための概要", @@ -134,46 +134,49 @@ "December": "12月", "dateFormat": "日付の形式", "achievementStressbeast": "Stoïkalmの救世主", - "achievementStressbeastText": "Helped defeat the Abominable Stressbeast during the 2014 Winter Wonderland Event!", - "achievementBurnout": "Savior of the Flourishing Fields", - "achievementBurnoutText": "Helped defeat Burnout and restore the Exhaust Spirits during the 2015 Fall Festival Event!", - "checkOutProgress": "私のHabaticaの進展を見てください!", - "cardReceived": "カードを受けた!", - "cardReceivedFrom": "<%= userName %>からの<%= cardType %>", - "greetingCard": "挨拶のカード", - "greetingCardExplanation": "You both receive the Cheery Chum achievement!", - "greetingCardNotes": "パーティメンバーに挨拶のカードを送ろう", - "greeting0": "今日は!", - "greeting1": "Just saying hello :)", - "greeting2": "`waves frantically`", - "greeting3": "そこのあなた!", - "greetingCardAchievementTitle": "Cheery Chum", - "greetingCardAchievementText": "こんにちは!ハロー!<%= cards %>挨拶のカードを送るか受け取りました。", - "thankyouCard": "Thank-You Card", - "thankyouCardExplanation": "You both receive the Greatly Grateful achievement!", - "thankyouCardNotes": "Send a Thank-You card to a party member.", - "thankyou0": "ありがとうございました!", - "thankyou1": "ありがとう、ありがとう、ありがとう!", - "thankyou2": "Sending you a thousand thanks.", - "thankyou3": "心よりありがとうございました。", - "thankyouCardAchievementTitle": "Greatly Grateful", - "thankyouCardAchievementText": "Thanks for being thankful! Sent or received <%= cards %> Thank-You cards.", - "birthdayCard": "Birthday Card", - "birthdayCardExplanation": "You both receive the Birthday Bonanza achievement!", - "birthdayCardNotes": "Send a birthday card to a party member.", - "birthday0": "Happy birthday to you!", - "birthdayCardAchievementTitle": "Birthday Bonanza", - "birthdayCardAchievementText": "Many happy returns! Sent or received <%= cards %> birthday 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!", - "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!" + "achievementStressbeastText": "2014年冬のワンダーランドイベントで「忌まわしきストレスのけだもの」の打倒に協力しました!", + "achievementBurnout": "繁栄の地の救世主", + "achievementBurnoutText": "2015年秋の収穫祭イベントで「燃えつきと消耗の悪霊」の打倒に協力しました!", + "achievementBewilder": "Savior of Mistiflying", + "achievementBewilderText": "Helped defeat the Be-Wilder during the 2016 Spring Fling Event!", + "checkOutProgress": "Habatica での進行状況を見てください!", + "cardReceived": "カードが届きました!", + "cardReceivedFrom": "<%= userName %> からの <%= cardType %>", + "greetingCard": "あいさつのカード", + "greetingCardExplanation": "お二人とも、Kawaii 実績を解除しました!", + "greetingCardNotes": "パーティーの仲間にあいさつのカードを送りましょう。", + "greeting0": "こんにちは!", + "greeting1": "ちょっとあいさつしてみただけ (^_^)", + "greeting2": "(割れんばかりの拍手)", + "greeting3": "そこのあなた!", + "greetingCardAchievementTitle": "Kawaii", + "greetingCardAchievementText": "やあ! よう!  こんにちは! <%= cards %> のあいさつのカードを送信または受信しました。", + "thankyouCard": "ありがとうのカード", + "thankyouCardExplanation": "お二人とも、 大いなる感謝 の実績を解除しました!", + "thankyouCardNotes": "ありがとうのカードをパーティーの仲間に送りました。", + "thankyou0": "ありがとうございました!", + "thankyou1": "ありがと、ありがと、ありがとうっ!", + "thankyou2": "あなたにたくさんの感謝が寄せられています。", + "thankyou3": "心より感謝しています。ありがとうございました。", + "thankyouCardAchievementTitle": "大いなる感謝", + "thankyouCardAchievementText": "感謝の気持ちにありがとう! <%= cards %>のありがとうのカードを送信または受信しました。", + "birthdayCard": "誕生日カード", + "birthdayCardExplanation": "お二人とも、誕生日プレゼント の実績を解除しました!", + "birthdayCardNotes": "パーティの仲間に誕生日カードを送りましょう。", + "birthday0": "誕生日おめでとう! ", + "birthdayCardAchievementTitle": "誕生日プレゼント", + "birthdayCardAchievementText": "たくさんの幸せがめぐっています。<%= cards %>の誕生日カードを送信または受信しました。", + "streakAchievement": "連続実行 の実績を解除しました!", + "firstStreakAchievement": "21日連続実行", + "streakAchievementCount": "<%= streaks %> 21日連続実行", + "twentyOneDays": "日課を21日連続で実行しました!", + "dontBreakStreak": "いい仕事してますね。連続実行を止めないで。", + "dontStop": "つづけよう!", + "levelUpShare": "実生活での習慣が向上したので、Habitica でレベルアップしました!", + "questUnlockShare": "Habitica で新しいクエストをアンロックしたよ!", + "hatchPetShare": "実生活でタスクを達成して、たまごから新しいペットがかえったよ!", + "raisePetShare": "実生活でタスクを達成して、ペットが乗れるほど大きくなったよ!", + "wonChallengeShare": "Habitica のチャレンジに成功したよ!", + "achievementShare": "Habitica で新しい実績を解除したよ!", + "orderBy": "並び順 : <%= item %>" } \ No newline at end of file diff --git a/common/locales/ja/groups.json b/common/locales/ja/groups.json index 8cde464abb..ec6f4709d5 100644 --- a/common/locales/ja/groups.json +++ b/common/locales/ja/groups.json @@ -1,9 +1,9 @@ { - "tavern": "酒場", + "tavern": "キャンプ場チャット", "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": "小辞典", @@ -13,30 +13,30 @@ "community": "コミュニティフォーラム", "dataTool": "データ表示ツール", "resources": "リソース", - "askQuestionNewbiesGuild": "Ask a Question (Newbies Guild)", + "askQuestionNewbiesGuild": "質問する (初心者ギルドへ)", "tavernTalk": "居酒屋トーク", "tavernAlert1": "注意: バグを報告する場合、開発者はここを見ません。どうか、", - "tavernAlert2": "use GitHub instead", - "moderatorIntro1": "酒場やギルドモデレーターは、次のとおりです:", - "communityGuidelines": "コミュニティーガイドライン", + "tavernAlert2": "代わりに GitHub をご利用ください。", + "moderatorIntro1": "キャンプ場とギルドのモデレーター : ", + "communityGuidelines": "コミュニティー ガイドライン", "communityGuidelinesRead1": "チャットする前に", "communityGuidelinesRead2": "を読んでください。", "party": "パーティー", "createAParty": "パーティーを作る", "updatedParty": "パーティの設定が更新されました。", - "noPartyText": "あなたがパーティにいないか、パーティのロードに時間がかかっているかのどちらかです。あなたはパーティを作成して友人を招待するか、または既存のパーティーに参加したい場合は、下に固有のユーザーIDを入力して、その後でここに戻って来て招待状を待つかの、いずれかができます:", + "noPartyText": "あなたがパーティにいないか、パーティのロードに時間がかかっているかのどちらかです。あなたはパーティを作成して友達を招待するか、または既存のパーティーに参加したい場合は、下にあなた固有のユーザーIDを入力し、その後でここに戻って来て招待状を待つかの、いずれかができます:", "LFG": "新しいパーティーの宣伝かパーティーに参加するなら、 <%= linkStart %> パーティ求む (グループを探す)<%= linkEnd %>ギルドへ行きましょう。", - "wantExistingParty": "Want to join an existing party? Go to the <%= linkStart %>Party Wanted Guild<%= linkEnd %> and post this User ID:", - "joinExistingParty": "Join Someone Else's Party", + "wantExistingParty": "すでにあるパーティーに加わりたいですか? <%= linkStart %>パーティー募集ギルド<%= linkEnd %>で、以下の User ID を投稿してみましょう:", + "joinExistingParty": "すでにあるパーティーに参加する", "create": "作る", "userId": "ユーザーID", "invite": "招待する", "leave": "やめる", "invitedTo": "<%= name %>に招待されました", - "invitedToNewParty": "You were invited to join a party! Do you want to leave this party and join <%= partyName %>?", + "invitedToNewParty": "パーティーの仲間として招待されました! こちらのパーティーを辞めて、<%= partyName %> のパーティーに参加しますか?", "joinNewParty": "新しいパーティーに参加する", - "declineInvitation": "Decline Invitation", - "loadingNewParty": "Your new party is loading. Please wait...", + "declineInvitation": "招待を断る", + "loadingNewParty": "新しいパーティーを読み込んでいます。お待ちください...", "newMsg": "\"<%= name %>\"で新しいメッセージがあります", "chat": "チャット", "sendChat": "チャット送信", @@ -53,7 +53,7 @@ "logoUrl": "ロゴURL", "assignLeader": "グループリーダー指定", "members": "メンバー", - "partyList": "Order for party members in header", + "partyList": "ヘッダーに表示するパーティーの仲間の順番", "banTip": "メンバーを解雇", "moreMembers": "メンバー一覧", "invited": "招待された方", @@ -101,7 +101,7 @@ "inbox": "受信トレイ", "abuseFlag": "コミュニティガイドライン違反を報告する", "abuseFlagModalHeading": "<%= name %> を違反で報告しますか?", - "abuseFlagModalBody": "Are you sure you want to report this post? You should ONLY report a post that violates the <%= firstLinkStart %>Community Guidelines<%= linkEnd %> and/or <%= secondLinkStart %>Terms of Service<%= linkEnd %>. Inappropriately reporting a post is a violation of the Community Guidelines and may give you an infraction. Appropriate reasons to flag a post include but are not limited to:


", + "abuseFlagModalBody": "本当にこの投稿について報告しますか?  投稿の報告は、それが<%= firstLinkStart %>コミュニティー ガイドライン<%= linkEnd %>および<%= secondLinkStart %>利用規約<%= linkEnd %>のいずれかまたは両方に違反している場合に限定すべきです。不適切に報告することは、コミュニティ ー ガイドライン上の違反行為であり、あなたが違反者とみなされます。投稿を報告すべき適切な理由は以下の通りであり、またこれらに限定するものではありません :

", "abuseFlagModalButton": "違反を報告する", "abuseReported": "違反報告ありがとうございます。モデレータに通知されます。", "abuseAlreadyReported": "このメッセージは報告済みです。", @@ -115,15 +115,15 @@ "sendGift": "贈り物を送る", "inviteFriends": "友達を招待する", "inviteByEmail": "メールで招待する", - "inviteByEmailExplanation": "If a friend joins Habitica via your email, they'll automatically be invited to your party!", - "inviteFriendsNow": "Invite Friends Now", + "inviteByEmailExplanation": "あなたのメールから友達が Habitica に参加したら、自動的にあなたのパーティーの仲間に招待されます。", + "inviteFriendsNow": "すぐに友達を招待する", "inviteFriendsLater": "後で友達を招待する", - "inviteAlertInfo": "If you have friends already using Habitica, invite them by User ID here.", - "inviteExistUser": "Invite Existing Users", + "inviteAlertInfo": "もう Habitica をつかっている友達がいるなら、友達のユーザー IDを指定して、招待しましょう。", + "inviteExistUser": "既存のユーザーを招待する", "byColon": "で", - "inviteNewUsers": "Invite New Users", - "sendInvitations": "Send Invitations", - "invitationsSent": "Invitations sent!", + "inviteNewUsers": "Habitica をつかってない人を招待する", + "sendInvitations": "招待状を送る", + "invitationsSent": "招待状を送りました!", "inviteAlertInfo2": "もしくはこのリンクを共有する(コピー/ペースト):", "sendGiftHeading": "<%= name %>に贈り物を送る", "sendGiftGemsBalance": "<%= number %>個のジェムから", @@ -131,21 +131,25 @@ "sendGiftFromBalance": "残高から", "sendGiftPurchase": "購入する", "sendGiftMessagePlaceholder": "個人メッセージ(任意)", - "sendGiftSubscription": "<%= months %> Month(s): $<%= price %> USD", + "sendGiftSubscription": "<%= months %> カ月 : <%= price %> 米ドル", "battleWithFriends": "フレンドと一緒にモンスターと戦う", - "startPartyWithFriends": "Start a Party with your friends!", + "startPartyWithFriends": "友達といっしょにパーティーをつくりましょう!", "startAParty": "チームを作る", "addToParty": "チームに誰かを入れる", "likePost": "「いいね!」とすればクリックします。", - "partyExplanation1": "Play Habitica with friends to stay accountable!", - "partyExplanation2": "Battle monsters and create Challenges!", - "partyExplanation3": "Invite friends now to earn a Quest Scroll!", + "partyExplanation1": "Habitica を友達といっしょにプレーすると責任感が生まれます!", + "partyExplanation2": "モンスターと戦い、チャレンジをつくりましょう!", + "partyExplanation3": "友達を招待して、クエストの巻物をゲットしましょう!", "wantToStartParty": "パーティーを作りますか?", - "exclusiveQuestScroll": "Inviting a friend to your party will grant you an exclusive Quest Scroll to battle the Basi-List together!", - "nameYourParty": "Name your new party!", - "partyEmpty": "You're the only one in your party. Invite your friends!", - "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.", + "exclusiveQuestScroll": "パーティーに友達を招待すると、いっしょにバシ・リストと戦う二人だけのクエストの巻物を手にすることができます。", + "nameYourParty": "新しいパーティーに名前をつけましょう!", + "partyEmpty": "パーティーのメンバーはあなただけです。友達を招待しましょう!", + "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 %>を読み、それを認めたうえで下のボタンを押してください。", + "partyUpName": "パーティー立ち上げ", + "partyOnName": "パーティー参加", + "partyUpAchievement": "別の人のパーティーに参加しました! 楽しんで、モンスターと戦ってお互いを助け合いましょう。", + "partyOnAchievement": "4人以上のパーティーに参加しました! 責任感が強くなったことを楽しんで、自分自身の敵と戦うために友達と協力しましょう!" } \ No newline at end of file diff --git a/common/locales/ja/limited.json b/common/locales/ja/limited.json index 444e539f1c..2f4ea7122d 100644 --- a/common/locales/ja/limited.json +++ b/common/locales/ja/limited.json @@ -1,72 +1,76 @@ { "limitedEdition": "限定版", "seasonalEdition": "季節限定版", - "winterColors": "ウィンターカラー", - "annoyingFriends": "迷惑なユーザー", - "annoyingFriendsText": "パーティメンバーから <%= snowballs %> 回雪玉を受けました。", - "alarmingFriends": "憂慮すべきフレンド", - "alarmingFriendsText": "パーティメンバーから <%= spookDust %> 回おどかされました。", - "agriculturalFriends": "農業の友人", - "agriculturalFriendsText": "パーティメンバーによって<%= seeds %>回花に変化させられました。", + "winterColors": "冬っぽい色", + "annoyingFriends": "困った友達", + "annoyingFriendsText": "パーティーの仲間から <%= snowballs %> 回、雪玉を投げられました。", + "alarmingFriends": "要注意の友達", + "alarmingFriendsText": "パーティーの仲間から <%= spookDust %> 回、オバケにされました。", + "agriculturalFriends": "ぶざまな友達", + "agriculturalFriendsText": "パーティーの仲間から <%= seeds %> 回、花にされました。", "aquaticFriends": "水の中の仲間たち", - "aquaticFriendsText": "パーティメンバーから <%= seafoam %>回、水をかけられました。", + "aquaticFriendsText": "パーティーの仲間から <%= seafoam %>回、水の生き物に変えられました。", "valentineCard": "バレンタインカード", - "valentineCardExplanation": "For enduring such a saccharine poem, you both receive the \"Adoring Friends\" badge!", + "valentineCardExplanation": "チョコレートのようなあま~いポエムをがまんしたので、お二人は「愛情あふれる友達」のバッジを手に入れました。", "valentineCardNotes": "パーティメンバーにバレンタインカードを送ろう", - "valentine0": "\"Roses are red\n\nMy Dailies are blue\n\nI'm happy that I'm\n\nIn a Party with you!\"", - "valentine1": "『薔薇は赤く\n\n紫は美しい\n\n今こそ共に\n\n悪と戦おう!』", - "valentine2": "『薔薇は赤く\n\nこの文体は古い\n\nそれでも貴方が気に入ってるといいな\n\nだってこれは10ゴールド分かかっているから』", - "valentine3": "\"Roses are red\n\nIce Drakes are blue\n\nNo treasure is better\n\nThan time spent with you!\"", - "valentineCardAchievementTitle": "仲の良いフレンド", - "valentineCardAchievementText": "ああ、貴方と貴方の友達はとっても仲がいいんですね!<%= cards %> 個のバレンタインカードを送信または受信しました。", + "valentine0": "バラは赤く\n\n私の日課は青い\n\n私はしあわせ\n\nだって、あなたといっしょの\nパーティーだから", + "valentine1": "バラは赤く\n\n紫は美しい\n\nともに手をとりあって\n\n悪(い習慣)と戦おう!", + "valentine2": "バラは赤く\n\nこの詩は古くさい\n\nあなたのお気に召すことを希望する\n\nだって10ゴールド払ったんだもの", + "valentine3": "バラは赤く\n\n氷のドレークは青い\n\nアイテムがなくたってかまわない\n\nあなたとの時間の方が価値があるのだから!", + "valentineCardAchievementTitle": "愛情あふれる友達", + "valentineCardAchievementText": "ああ、あなたと友達は、本当にお互いを大切にしているんですね! <%= cards %> 通のバレンタインデー・カードを送信または受信しました。", "polarBear": "シロクマ", "turkey": "シチメンチョウ", - "gildedTurkey": "Gilded Turkey", + "gildedTurkey": "金ピカのシチメンチョウ", "polarBearPup": "シロクマの子", "jackolantern": "ジャック・オ・ランタン", - "seasonalShop": "季節品ショップ", - "seasonalShopClosedTitle": "<%= linkStart %>Leslie<%= linkEnd %>", - "seasonalShopTitle": "<%= linkStart %>季節限定魔女<%= linkEnd %>", - "seasonalShopClosedText": "The Seasonal Shop is currently closed!! I don't know where the Seasonal Sorceress is now, but I bet she'll be back during the next Grand Gala!", - "seasonalShopText": "季節限定ショップへようこそ! 春の 季節限定版グッズを揃えています。ここにあるものはすべて毎年スプリングフリング期間中に買う事ができますが、4月30日までしかオープンしていません。ですので今買い備えないと、買うのにまた一年またなければなりませんよ!", + "seasonalShop": "期間限定ショップ", + "seasonalShopClosedTitle": "<%= linkStart %>レズリー<%= linkEnd %>", + "seasonalShopTitle": "<%= linkStart %>期間限定の魔女<%= linkEnd %>", + "seasonalShopClosedText": "期間限定マーケットは、現在閉店しています!! いまどこに期間限定の魔女がいるのかはわかりませんが、きっと、次の大祭の間には、戻ってくるでしょう!", + "seasonalShopText": "季節限定ショップへようこそ!! ただいま春の季節限定版商品をとりそろえております。ここにあるものはすべて年に 1 度のスプリング・フリング イベント期間中にお買い上げいただけますが、4月30日までしかオープンしていませんのでこの期間を逃しますと、また 1 年お待ちいただくことになりますよ!", "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!", - "seasonalShopWinterText": "Welcome to the Seasonal Shop!! We're stocking winter Seasonal Edition goodies at the moment. Everything here will be available to purchase during the Winter Wonderland event each year, but we're only open until January 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.", - "candycaneSet": "キャンディケイン (魔道士)", - "skiSet": "スキーアサシン(盗賊)", - "snowflakeSet": "雪の結晶(神官)", - "yetiSet": "イエティ テイマー(戦士)", + "seasonalShopFallText": "いらっしゃいませ、ようこそ期間限定ショップへ!! ただいま秋の期間限定版グッズをとりそろえております。こちらはいずれも、毎年の秋まつりイベント期間のみの商品で、当店は10月31日までの限定オープンです。今すぐお買い上げいただかないと、来年までお待ちいただくことになりますよ!", + "seasonalShopWinterText": "いらっしゃいませ、期間限定ショップへようこそ!! ただいま冬の期間限定版グッズをとりそろえております。こちらはいずれも、毎年の冬のワンダーランド イベント期間のみの商品で、当店は1月31日までの限定オープンです。今すぐお買い上げいただかないと、来年までお待ちいただくことになりますよ!", + "seasonalShopFallTextBroken": "ああ......期間限定ショップへよくぞお越しを...いまは秋の期間限定版グッズやなんかをとりそろえ...こちらはどれも、毎年の秋まつりイベント期間のみの商品で、当店は10月31日までの限定オープン...今すぐ買っておかないと、ずっと...ずっと...ずっと待つことになる...(ため息)", + "seasonalShopRebirth": "「生まれかわりのオーブ」を使ったあとは、ごほうび列から再び購入することができます。最初は現在のクラス ( 標準では戦士) 用のものしか購入できませんが、ご心配なく。クラスを変更したあとでは、それぞれのクラス用のものが購入できるようになります。", + "candycaneSet": "キャンディー ステッキ (魔道士)", + "skiSet": "スキー暗殺者(盗賊)", + "snowflakeSet": "雪の結晶 (治療師)", + "yetiSet": "雪男つかい (戦士)", "northMageSet": "北の魔女(魔道士)", - "icicleDrakeSet": "Icicle Drake (Rogue)", - "soothingSkaterSet": "Soothing Skater (Healer)", - "gingerbreadSet": "Gingerbread Warrior (Warrior)", + "icicleDrakeSet": "つららのドラゴン (盗賊)", + "soothingSkaterSet": "慰めのスケーター (治療師)", + "gingerbreadSet": "ジンジャークッキーの戦士 (戦士)", "toAndFromCard": "<%= toName %> へ、<%= fromName %> より", "nyeCard": "年賀状", - "nyeCardExplanation": "For celebrating the new year together, you both receive the \"Auld Acquaintance\" badge!", + "nyeCardExplanation": "いっしょに新年を祝ったので、あなた方両方が「旧知の間がら」バッジを獲得しました。", "nyeCardNotes": "パーティメンバーに年賀状を送ろう", "seasonalItems": "季節商品", - "nyeCardAchievementTitle": "Auld Acquaintance", + "nyeCardAchievementTitle": "旧知の間がら", "nyeCardAchievementText": "あけましておめでとうございます!<%= cards %>年賀状を送りました、または届きました。", - "nye0": "あけましておめでとうございます!あなたが悪い習慣をたくさんやめられますように。", - "nye1": "Happy New Year! May you reap many Rewards.", - "nye2": "Happy New Year! May you earn many a Perfect Day.", - "nye3": "Happy New Year! May your To-Do list stay short and sweet.", - "nye4": "Happy New Year! May you not get attacked by a raging Hippogriff.", + "nye0": "あけましておめでとう! 今年あなたがたくさんの悪い習慣をやっつけられますように。", + "nye1": "あけましておめでとう! 今年あなたがたくさんのごほうびを獲得できますように。", + "nye2": "あけましておめでとう! 今年あなたがたくさんの「パーフェクトな日」を達成できますように。", + "nye3": "あけましておめでとう! 今年あなたのTo-Doがどれも早く片づき、リストがきれいでありますように。", + "nye4": "あけましておめでとう! 今年あなたが怒りくるったヒッポグリフの攻撃を受けませんように。", "holidayCard": "クリスマスカードが届きました!", "mightyBunnySet": "強大なウサギ(戦士)", "magicMouseSet": "魔法のネズミ(魔道士)", - "lovingPupSet": "忠実な子犬(神官)", + "lovingPupSet": "かわいい子犬 (治療師)", "stealthyKittySet": "ステルスキティ(盗賊)", "daringSwashbucklerSet": "不適な海賊(戦士)", "emeraldMermageSet": "エメラルドマーメイジ(魔道士)", - "reefSeahealerSet": "さんご礁のシーヒーラー(神官)", + "reefSeahealerSet": "さんご礁のシーヒーラー (治療師)", "roguishPirateSet": "いたずら好きな海賊(盗賊)", - "monsterOfScienceSet": "Monster of Science (Warrior)", - "witchyWizardSet": "Witchy Wizard (Mage)", - "mummyMedicSet": "ミイラメディック (神官)", - "vampireSmiterSet": "Vampire Smiter (Rogue)", - "fallEventAvailability": "Available until October 31", - "winterEventAvailability": "Available until December 31" + "monsterOfScienceSet": "科学のモンスター (戦士)", + "witchyWizardSet": "魔女のような魔法使い (魔道士)", + "mummyMedicSet": "ミイラの衛生兵 (治療師)", + "vampireSmiterSet": "吸血鬼のボクサー (盗賊)", + "bewareDogSet": "注意すべき猛犬 (戦士)", + "magicianBunnySet": "魔術師のウサギ (魔道士)", + "comfortingKittySet": "くつろいだネコ (治療師)", + "sneakySqueakerSet": "こそこそしたピヨピヨ (盗賊)", + "fallEventAvailability": "10月31日まで有効", + "winterEventAvailability": "12月31日まで有効" } \ No newline at end of file diff --git a/common/locales/ja/messages.json b/common/locales/ja/messages.json index a9d6607e2b..5a3c553846 100644 --- a/common/locales/ja/messages.json +++ b/common/locales/ja/messages.json @@ -5,7 +5,7 @@ "messageTagNotFound": "タグが見つかりません", "messagePetNotFound": ":pet が user.items.pets 上に見つかりません", "messageFoodNotFound": ":food が user.items.food 上に見つかりません", - "messageNotAvailable": "This item is not currently available for purchase.", + "messageNotAvailable": "このアイテムは現在購入できません。", "messageCannotFeedPet": "このペットにはエサをあげられません", "messageAlreadyMount": "既にそのマウントは所持しています。他のペットにエサをあげてみましょう。", "messageEvolve": "<%= egg %> はあなたに懐きました。 一緒に出かけましょう!", @@ -13,44 +13,44 @@ "messageDontEnjoyFood": "<%= egg %>は<%= foodText %>を食べましたが 、あまり好きではないようです。", "messageBought": "<%= itemText %> を購入しました", "messageEquipped": "<%= itemText %>を装備しました", - "messageUnEquipped": "<%= itemText %> を外しました。", - "messageMissingEggPotion": "たまごか孵化ポーションのいずれかが不足しています", - "messageInvalidEggPotionCombo": "You can't hatch Quest Pet Eggs with Magic Hatching Potions! Try a different egg.", + "messageUnEquipped": "<%= itemText %>を外しました。", + "messageMissingEggPotion": "「たまご」か「たまごがえしの薬」のどちらかがありません。", + "messageInvalidEggPotionCombo": "クエストペットのたまごを魔法のたまごがえしの薬でかえすことはできません! 別のたまごに試してください。", "messageAlreadyPet": "既にそのペットは所持しています。別の組み合わせを試してみましょう!", - "messageHatched": "たまごが孵りました! 小屋に向かい、ペットを装備しましょう!", + "messageHatched": "たまごからペットが生まれました! 動物小屋でペットを連れに行きましょう!", "messageNotEnoughGold": "ゴールドが不足しています", - "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 %>.", + "messageTwoHandedEquip": "<%= twoHandedText %>は両手を使って振り回すので、<%= offHandedText %>を装備から外しました。", + "messageTwoHandedUnequip": "<%= offHandedText %>を装備したので、両手を使って振り回す<%= twoHandedText %>を装備から外しました。", "messageDropFood": "<%= dropArticle %><%= dropText %> を見つけました! <%= dropNotes %>", "messageDropEgg": "<%= dropText %>のたまごを見つけました! <%= dropNotes %>", - "messageDropPotion": "<%= dropText %>孵化ポーションを見つけました! <%= dropNotes %>", + "messageDropPotion": "<%= dropText %>「たまごがえしの薬」を見つけました! <%= dropNotes %>", "messageDropQuest": "クエストを見つけました!", "messageDropMysteryItem": "箱を開け、<%= dropText %> を見つけた!", "messageFoundQuest": "\"<%= questText %>\" のクエストを見つけました!", - "messageAlreadyPurchasedGear": "前にこのギアを買えましたが、今は有しません。再びタスクページの報酬列で買えられます。", - "messageAlreadyOwnGear": "あなたはこのアイテムをすでに持っています。装備のページに行って装備して下さい。", - "armoireEquipment": "<%= image %>戸棚で珍しい装備を見つけました:<%= dropText %>! 素晴らしい!", - "armoireFood": "<%= image %>戸棚で漁って <%= dropArticle %><%= dropText %>. を見つけます。何でこの所に?", - "armoireExp": "戸棚と組み付いてエクスペリエンスを得ます。持ってけ!", - "messageInsufficientGems": "ジェムが足りない!", - "messageAuthPasswordMustMatch": ":password and :confirmPassword don't match", - "messageAuthCredentialsRequired": ":username, :email, :password, :confirmPassword required", + "messageAlreadyPurchasedGear": "以前にこの装備を購入しましたが、いまはもっていません。タスク ページの「ごほうび」からもう一度買えます。", + "messageAlreadyOwnGear": "このアイテムをすでに持っています。所持品のページに行って装備して下さい。", + "armoireEquipment": "<%= image %>戸棚で貴重な装備を見つけました : <%= dropText %>! 素晴らしい!", + "armoireFood": "<%= image %>戸棚をあさって<%= dropArticle %><%= dropText %>を見つけました。何でこんな所に?", + "armoireExp": "戸棚と格闘して、経験値を得ました。どうぞっ!", + "messageInsufficientGems": "ジェムが足りません!", + "messageAuthPasswordMustMatch": ":password と :confirmPassword が一致していません。", + "messageAuthCredentialsRequired": ":username, :email, :password, :confirmPassword は必須です。", "messageAuthUsernameTaken": "そのユーザー名は既に使われています", "messageAuthEmailTaken": "そのEmailアドレスは既に使われています", "messageAuthNoUserFound": "ユーザーが見つかりませんでした。", - "messageAuthMustBeLoggedIn": "あなたはログインする必要があります。", - "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!", - "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" + "messageAuthMustBeLoggedIn": "まずログインしてください。", + "messageAuthMustIncludeTokens": "トークンとUID ( ユーザーID ) の両方が必要です。", + "messageGroupNotFound": "グループが見つからなかったか、アクセスできません。", + "messageGroupAlreadyInParty": "もし既にパーティに入っているならページを更新してください。", + "messageGroupOnlyLeaderCanUpdate": "グループ リーダーだけがグループの更新できます。", + "messageGroupRequiresInvite": "招待されていないグループに参加することはできません。", + "messageGroupCannotRemoveSelf": "自分自身を削除することはできません!", + "messageGroupChatBlankMessage": "空っぽのメッセージを送ることはできません。", + "messageGroupChatLikeOwnMessage": "自分のメッセージに「いいね」はできません。そんな人にならないで。", + "messageGroupChatFlagOwnMessage": "自分のメッセージは報告できません。", + "messageGroupChatFlagAlreadyReported": "このメッセージは報告済みです。", + "messageGroupChatNotFound": "メッセージが見つかりません!", + "messageGroupChatAdminClearFlagCount": "フラグ数をクリアーできるのは管理者だけです!", + "messageUserOperationProtected": "「<%= operation %>」パスは、保護されたパスなので保存できません。", + "messageUserOperationNotFound": "<%= operation %> の操作は見つかりません" } \ No newline at end of file diff --git a/common/locales/ja/noscript.json b/common/locales/ja/noscript.json index b6d70d0dcd..9926a209f0 100644 --- a/common/locales/ja/noscript.json +++ b/common/locales/ja/noscript.json @@ -1,5 +1,5 @@ { - "jsDisabledHeading": "哀れ、あなたのブラウザジャバスクリプトを非許容です", + "jsDisabledHeading": "うわっ! あなたのブラウザは JavaScript が有効になっていません。", "jsDisabledHeadingFull": "哀れ、あなたのブラウザジャバスクリプトを非許容です。だから、ハビチカは機能出来ません", "jsDisabledText": "ハビチカはウェブサイトの展示をジャバスクリプト無し出来せん", "jsDisabledLink": "ジャバスクリプトは許す、お願いします!" diff --git a/common/locales/ja/npc.json b/common/locales/ja/npc.json index 358d48c7a1..be2c005171 100644 --- a/common/locales/ja/npc.json +++ b/common/locales/ja/npc.json @@ -1,89 +1,89 @@ { "npc": "NPC", - "npcText": "最大のレベルで Kickstarterプロジェクトを後援する!", + "npcText": "Kickstarter プロジェクトへ最高レベルで資金提供!", "mattBoch": "マット・バック", - "mattShall": "マウントを連れてきましょうか、<%= name %>?ペットに十分なエサを与えたら、そのペットはマウントになって、ここに現れます。マウントをクリックして乗ってみたらどうですか?", - "mattBochText1": "ステーブルへようこそ!私はマット、獣のマスターだよ。レベルが4になったら、タマゴとポーションを使って、ペットを孵化させることができる。ペットをクリックして、アバターを飾ることもできる。エサを与えれば、強いマウントになるだろう。", + "mattShall": "<%= name %>、馬をお連れしましょうか? ペットに十分なエサを与えると、乗用獣となり、ここに現れます。乗用獣をクリックして、くらをおきましょう。", + "mattBochText1": "動物小屋にようこそ! 私の名前はマット、猛獣使いだ。レベル3 から、「たまご」と「たまごがえしの薬」を使って、たまごからペットをかえすことができる。市場でペットをかえすと、ここに表示されるぞ! ペットの画像をクリックしてアバターに追加しよう。レベル 3 以降に見つかるえさをペットにやると、ペットはしっかりした乗用獣へと育っていくんだ。", "daniel": "ダニエル", - "danielText": "酒場へようこそ!しばらく滞在して、地元の人と会いましょう。あなたに休息が必要な場合 (休暇? 病気?)、私が宿であなたを元気にします。チェックインしている間、あなたの日課は未実施でも一日の終わりにあなたを傷つけませんが、印を付けて実施済みにできます。", - "danielText2": "注意してください: あなたがボスの冒険に参加している場合は、あなたのパーティーの仲間が日課を逃したことで、ボスはまだあなたを傷つけます! また、あなたがボスに与えるダメージ(もしくは集めたアイテム)は宿をチェックアウトするまでt適用されません。", - "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": "アレクサンダー商人", - "welcomeMarket": "マーケットへようこそ!レアペットとポーションを買えます。", - "displayItemForGold": "Do you want to sell a <%= itemType %>?", - "displayEggForGold": "Do you want to sell a <%= itemType %> Egg?", - "displayPotionForGold": "Do you want to sell a <%= itemType %> Potion?", - "sellForGold": " <%= gold %> ゴルドに売る", + "danielText": "キャンプ場へようこそ! しばらくゆっくりして、地元の人と会いましょう。冒険を休まなければいけないのなら ( 長期休暇? 病気? )、宿のご用意をいたします。宿にチェックインしている間は、日課をやらずに1日を終えてもダメージを受けません。もちろん日課をやっても、かまいません。", + "danielText2": "注意 : ボス クエストに参加している間は、パーティーの仲間が日課をサボると、ボスはあなたを攻撃しダメージを受けます! また、あなたがボスに与えるはずのダメージ ( そして集められたはずのアイテム ) は宿をチェックアウトするまで適用されません。", + "danielTextBroken": "キャンプ場へようこそ...よろしければ...休息が必要なら、宿をご用意します...チェックインしている間は、日課をやらずに1日を終えてもダメージを受けない。もちろん日課をやってもかまわない...もしエネルギーがあるのなら...", + "danielText2Broken": "おや...ボス クエストに参加しているのなら、ボスはパーティーの仲間が日課をサボった分のダメージは与えてきますよ...また、あなたからボスへのダメージ(または、落としていくアイテム) は、宿にチェックインしている間は発生しません...", + "alexander": "アレクサンダーの店", + "welcomeMarket": "マーケットへようこそ! そうそう見つからない「たまご」と「たまごがえしの薬」はいりませんか? 余ったアイテムを売ってください! 便利なサービスを受けてください! なんなりとお申しつけください。", + "displayItemForGold": "<%= itemType %>を売りますか?", + "displayEggForGold": "<%= itemType %> のたまごを売りますか?", + "displayPotionForGold": "<%= itemType %>の薬を売りますか?", + "sellForGold": " <%= gold %> ゴールドで売る", "buyGems": "ジェムを買う", - "purchaseGems": "Purchase Gems", + "purchaseGems": "ジェムを購入する", "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...", - "USD": "(USD)", - "newStuff": "新しい事", - "cool": "後で伝える", - "dismissAlert": "この告示を閉じる", - "donateText1": "あなたのアカウントに20ジェムを追加します。ジェムは、シャツやヘアスタイルなどの特別なゲーム内アイテムを購入するために使用されます。", + "ianText": "クエスト ショップへようこそ! ここでは友達といっしょにモンスターと戦うクエストの巻物を開くことができます。この美しい品ぞろえを確認して、右側でお買い上げください!", + "ianBrokenText": "クエスト ショップへようこそ...ここでは友達といっしょにモンスターと戦うクエストの巻物を開くができる...クエストの巻物の美しい品ぞろえもよく見て、右側で買ってくれ...", + "USD": "(米ドル)", + "newStuff": "新しいもの", + "cool": "後で教えて", + "dismissAlert": "この通知を閉じる", + "donateText1": "あなたのアカウントに 20 ジェムを追加します。ジェムで、特別なシャツやヘアスタイルといったゲーム内アイテムを買うことができます。", "donateText2": "Habitica の支援について", - "donateText3": "Habiticaは、ユーザーの協力の元に成り立ったオープンソースプロジェクトです。ジェムの購入に使われたお金は、サーバーの維持、少数スタッフの保持、新しい機能の開発、そしてボランティアのプログラマーたちに報奨金を払う手助けになっています。あなたの親切心に感謝!", - "donationDesc": "20ジェムを支払う", + "donateText3": "Habiticaは、ユーザーの協力の元に成り立っているオープンソース プロジェクトです。ジェムの購入に使われたお金は、サーバーの維持、少数スタッフの維持、新しい機能の開発、そしてボランティアのプログラマーたちに報奨金を払う手助けになっています。あなたのご厚情に感謝いたします!", + "donationDesc": "20 ジェムを Habitica に寄付する", "payWithCard": "クレジットカードで支払う", - "payNote": "備考:Paypalでの支払いは時間がかかることがあります。キャッシュカードのご使用をおすすめいたします。", - "card": "Credit Card (using Stripe)", - "amazonInstructions": "このボタンをクリックしてAmazon Paymentsで支払う。", - "paymentMethods": "Purchase using", - "classGear": "クラスギア", - "classGearText": "最初に: 慌てる必要はありません! あなたの古いギアは、あなたの所持品です。あなたは今、弟子の <%= klass %> の装備を着ています。あなたのクラスのギアを身に着けていると、ステータスに50%のボーナスが付与されます。しかし、気軽に古いギアに切り替えてください。", - "classStats": "These are your class's stats; they affect the game-play. Each time you level up, you get one point to allocate to a particular stat. Hover over each stat for more information.", + "payNote": "備考 : Paypalでの支払いは時間がかかることがあります。クレジットカードでのお支払いを推奨します。", + "card": "クレジットカード ( 決済サービス「Stripe」経由 )", + "amazonInstructions": "このボタンをクリックして Amazon ペイメント 経由で支払う。", + "paymentMethods": "お支払い方法 : ", + "classGear": "クラス アイテム", + "classGearText": "最初に : 驚かないで! 古い装備は所持品となっており、いま身についけているのは新しいクラスの初心者向けの装備です。クラスに適した装備は、能力値が50%アップします。それでも古い装備に切り替えるのならご自由にどうぞ。", + "classStats": "クラス固有のステータスがあります : ゲームの進行に影響を与えます。レベルアップするたびに、特定のステータスに割りあてられる 1 ポイントを取得します。それぞれのステータスにマウスカーソルを当てると、詳しい情報が表示されます。", "autoAllocate": "自動割り当て", - "autoAllocateText": "'自動割当' がチェックされている場合は、タスクの属性に基づいて、あなたのアバターは自動的にステータスを獲得します。属性は タスク > 編集 > 詳細設定 > 属性 で確認することができます。例えば、あなたが頻繁にジムをヒットしている場合、そして 'ジム' 日課が '物理的' に設定されている場合、あなたは自動的に獲得します。", + "autoAllocateText": "「自動割当」をチェックすると、タスクの属性をもとにアバターに自動的にステータスを割りあてます。タスクの属性は タスク > 編集 > 詳細設定 > 属性 で確認できます。例えば、あなたがよく「スポーツジム」のタスクを攻撃しているいて、「スポーツジム」の日課に「肉体的」が設定されていれば、自動的に「体力」が増えていきます。", "spells": "魔法", - "spellsText": "クラスの特定の魔法を解放することができます。レベル11で最初の特定の魔法が解放されます。マナは一日につき10ポイント、達成できた項目一つにつき1ポイント補充されます。", - "toDo": "ToDo", + "spellsText": "クラス特定の魔法をアンロックできます。最初はレベル 11 で確認できます。マナは1日ごとに10 ポイント、タスク達成ごとに 1 ポイント補充されます。", + "toDo": "To-Do", "moreClass": "クラス・システムの詳細な情報は、こちら", - "tourWelcome": "Habiticaへようこそ!これがあなたのToDoリストです。タスクを進めて実施済みの印を付けよう!", - "tourExp": "よくできた!タスクに実施済みの印を付けることで経験値とゴールドが得られます。", - "tourDailies": "この列は日課です。進めるには、毎日実行するタスクを入力してください!日課のサンプル: ベッドメイクするフロス仕事のメールの確認", - "tourCron": "あっぱれ! 日課は毎日リセットされます。", - "tourHP": "危ない! 日課を真夜中までに完了しないと、ダメージを受けます。", - "tourHabits": "この列は良い/悪い習慣で一日に何度も実行できます!続けるには、鉛筆をクリックして名前を編集し、チェックマークをクリックしてセーブしてください。", - "tourStats": "良い習慣は経験値とゴールドを増やします。悪い習慣は体力が減ります。", - "tourGP": "進めるには、今得たゴールドで練習用の剣を買おう!", - "tourAvatar": "Customize Your Avatar", - "tourScrollDown": "必ず一番下までスクロールして全てのオプションを見よう!アバターをもう一度クリックしてタスクページに戻ろう。", - "tourMuchMore": "タスクを実行したら、友達とパーティーを組んだり、共通の趣味のギルドでチャットしたり、チャレンジに参加できたり、他にもできます!", - "tourStatsPage": "これはあなたのステータスページです!タスクを完了して実績を受け取りましょう。", - "tourTavernPage": "Welcome to the Tavern, an all-ages chat room! You can keep your Dailies from hurting you in case of illness or travel by clicking \"Rest in the Inn.\" Come say hi!", - "tourPartyPage": "パーティーはあなたが責任を果たす事を助けてくれるでしょう。友達を招待してクエストスクロールをアンロックしましょう!", - "tourGuildsPage": "ギルドは共通の興味を持つプレイヤー同士のためのチャットグループです。リストから興味のあるグループを探して参加しましょう。だれでもHabiticaに関する質問ができる、初心者のためのギルドのチェックも忘れずに!", - "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": "レベル4の始めから、タスクを完了するとたまごと孵化ポーションがランダムにドロップします。それらはここに表示され、ペットを孵化するのに使いましょう!市場でアイテムを買う事もできます。", - "tourHallPage": "Welcome to the Hall of Heroes, where open-source contributors to Habitica are honored. Whether through code, art, music, writing, or even just helpfulness, they have earned Gems, exclusive equipment, and prestigious titles. You can contribute to 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.", - "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": "装備はここに保管されています。武具はステータスに影響を与えます。ステータスを変えないままアバターに別の装備を付けたい時は「衣装を有効にする」をクリックしてください。", - "tourOkay": "わかった!", - "tourAwesome": "素晴らしい!", - "tourSplendid": "素晴らしい!", - "tourNifty": "二フティ!", - "tourAvatarProceed": "タスクを見せて!", - "tourToDosBrief": "To-Do List", - "tourDailiesBrief": "日課", - "tourDailiesProceed": "気をつけます!", - "tourHabitsBrief": "良い&悪い習慣", - "tourHabitsProceed": "なるほど!", - "tourRewardsBrief": "報酬リスト", - "tourRewardsProceed": "以上です!", - "welcomeToHabit": "Habiticaへようこそ!", - "welcome1": "基本的なアバターを作って", - "welcome1notes": "This avatar will represent you as you progress.", - "welcome2": "Set up your tasks.", - "welcome2notes": "How well you do on your real-life tasks will control how well you do in the game!", - "welcome3": "Progress in life and the game!", - "welcome3notes": "As you improve your life, your avatar will level up and unlock pets, quests, equipment, and more!", - "welcome4": "あなたのHPを減らす、悪い習慣を避けましょう。さもないとあなたのアバターは死んでしまいます!", - "welcome5": "それではアバターをカスタマイズしてタスクをセットしましょう…", - "imReady": "Habiticaに入る" + "tourWelcome": "Habiticaへようこそ! こちらはあなたの To-Do リストです。タスクやってチェックを入れ、次に進みましょう!", + "tourExp": "やりました! タスクをやってチェックを入れると経験値とゴールドが得られます。", + "tourDailies": "この列は日課のタスクです。毎日やるべきタスクを入力して次に進みましょう!  日課のサンプル: 布団を上げる歯のフロスをする, 仕事のメールをチェックする", + "tourCron": "すばらしい! 日課は毎日リセットされます。", + "tourHP": "危ない! 日課を深夜までに完了しないと、ダメージを受けます!", + "tourHabits": "この列は、1 日に何度もやる、よい習慣・悪い習慣です! 鉛筆のアイコンをクリックして名前を編集し、チェックマークをクリックして保存してください。次に進みましょう。", + "tourStats": "よい習慣は経験値とゴールドを増やします! 悪い習慣は体力が減ります。", + "tourGP": "かせいだゴールドで練習用の剣を買って、先に進みましょう!", + "tourAvatar": "アバターのカスタマイズ", + "tourScrollDown": "一番下までスクロールして、すべてのオプションを見てください! アバターをもう一度クリックしてタスクのページに戻りましょう。", + "tourMuchMore": "タスクをこなしたら、友達とパーティーを組んだり、共通の趣味のギルドでチャットしたり、チャレンジに参加したりといったことができます!", + "tourStatsPage": "これはあなたのステータスページです! タスクを完了して実績を解除しましょう。", + "tourTavernPage": "キャンプ場へようこそ! 年齢に関わらず参加できるチャットルームです。あいさつをしてください! 病気や旅行など日課を実施できない事情があり、そのために発生するダメージから身を守るには、「宿で休む」をクリックしてください。", + "tourPartyPage": "パーティーに入ると責任感が生まれます。友達を招待してクエストの巻き物をアンロックしましょう!", + "tourGuildsPage": "ギルドはユーザーのだれかが、ユーザーのために作った共通の趣味で集まるチャットグループです。一覧から興味のあるグループに参加しましょう。初心者ギルドのチェックも忘れずに! ここなら、だれでも Habitica についての質問ができますよ。", + "tourChallengesPage": "チャレンジは、ユーザーが作成したテーマをもった一連のタスクです。チャレンジに加わると、あなたにそのタスクが加わります。賞金のジェムをかけて、他のユーザーと競争しましょう!", + "tourMarketPage": "レベル 3 以降、タスクをやりとげると、ときどき「たまご」や「たまごがえしの薬」が落ちています。ここに表示されるのでペットに命をふきこみましょう! 市場でアイテムとして買うこともできます。", + "tourHallPage": "英雄記念館へようこそ。こちらは Habitica をオープンソースの世界で貢献してくださった方々を称える場所です。プログラム、画像、音楽、執筆などでの貢献により、彼らはジェム、特別なアイテム、そして名誉ある肩書きを手にしました。あなたも Habitica に貢献できますよ! ", + "tourPetsPage": "ここは動物小屋です! レベル 3 になると、「たまご」と「たまごがえしの薬」から、ペットをかえすことができます。ペットをクリックして、アバターに表示しましょう。レベル3以降手に入るえさをペットにやると、力強い乗用獣へと成長します。", + "tourMountsPage": "ペットに十分なえさを与えると、乗用獣に成長します。乗用獣がここに表示されます。( ペット、乗用獣、えさはレベル 3 以降有効になります。) 乗用獣をクリックして、くらをセットしましょう。", + "tourEquipmentPage": "ここはアイテムの保管場所です! 武装はステータスに影響を与えます。ステータスを変えないでアバターに別の装備を表示したい場合は「衣装に使う」をクリックしてください。", + "tourOkay": "OK!", + "tourAwesome": "すごい!", + "tourSplendid": "すばらしい!", + "tourNifty": "やった!", + "tourAvatarProceed": "タスクを見せて!", + "tourToDosBrief": "To-Do リスト", + "tourDailiesBrief": "日課", + "tourDailiesProceed": "気をつけます!", + "tourHabitsBrief": "よい習慣・悪い習慣", + "tourHabitsProceed": "なるほど!", + "tourRewardsBrief": "ごほうびリスト", + "tourRewardsProceed": "以上です!", + "welcomeToHabit": "Habitica へようこそ!", + "welcome1": "基本のアバターを作りましょう。", + "welcome1notes": "アバターは、あなた自身の分身であり、あなたの成長を反映します。", + "welcome2": "タスクを設定しましょう。", + "welcome2notes": "実生活でのタスクのがんばりが、ゲームの進行を左右します!", + "welcome3": "実生活とゲームで前に進みましょう!", + "welcome3notes": "あなたが生活を改善するほどに、あなたのアバターもレベルアップし、ペットやクエスト、装備などの新しい機能がアンロックされていきます。", + "welcome4": "健康 (体力・HP) を減らす悪い習慣を避けましょう。さもないとあなたのアバターは死んでしまいます!", + "welcome5": "それではアバターをカスタマイズしてタスクを設定しましょう…", + "imReady": "Habitica をはじめる" } \ No newline at end of file diff --git a/common/locales/ja/pets.json b/common/locales/ja/pets.json index 014bab65b5..9ed5468f00 100644 --- a/common/locales/ja/pets.json +++ b/common/locales/ja/pets.json @@ -1,14 +1,14 @@ { "pets": "ペット", "petsFound": "見つけたペット", - "magicPets": "魔法ポーションのペット", + "magicPets": "魔法の薬のペット", "rarePets": "レアペット", "questPets": "クエストペット", - "mounts": "マウントペット", - "mountsTamed": "飼い慣らされたマウントペット", - "questMounts": "クエストマウントペット", - "magicMounts": "魔法ポーションのマウント", - "rareMounts": "レアマウントペット", + "mounts": "乗用獣", + "mountsTamed": "よく慣れた乗用獣", + "questMounts": "乗用獣のクエスト", + "magicMounts": "魔法の薬の乗用獣", + "rareMounts": "めずらしい乗用獣", "etherealLion": "エーテルライオン", "veteranWolf": "ベテラン狼", "veteranTiger": "ベテラントラ", @@ -19,6 +19,7 @@ "orca": "シャチ", "royalPurpleGryphon": "貝紫色のグリフォン", "phoenix": "フェニックス", + "bumblebee": "Bumblebee", "rarePetPop1": "Habiticaに貢献することを通してどのようにこの珍しいペットを得ることができるかについて、より多くを学ぶために、金の足をクリックしてください!", "rarePetPop2": "このペットを得る方法!", "potion": "<%= potionType %> ポーション", @@ -26,61 +27,61 @@ "eggs": "たまご", "eggSingular": "たまご", "noEggs": "たまごを持っていない。", - "hatchingPotions": "孵化ポーション", - "magicHatchingPotions": "魔法孵化ポーション", - "hatchingPotion": "孵化ポーション", - "noHatchingPotions": "孵化ポーションを持っていない。", - "inventoryText": "たまごをクリックし、緑色にハイライトされた使用可能のポーションを確認して、クリックで1つ選んで孵化に使用します。緑色にハイライトされたポーションがない場合は、もう一度そのたまごをクリックして、選択を解除します。次にポーションをクリックし、ハイライトされたたまごを探してください。また、アレキサンダー商人に不要なドロップを売ることができます。", - "foodText": "餌", - "food": "エサと鞍", - "noFood": "エサか鞍がありません。", - "dropsExplanation": "このアイタムは普通にタスクを完了したときにドロップします。待ちたくなかったら、ジェムでもっと早く買えるよ。ドロップシステムについてを読む。", - "premiumPotionNoDropExplanation": "魔法孵化ポーションをクエストのたまごに使えません。ランダムドロップから魔法孵化ポーションを取りられません、下に買ってください。", - "beastMasterProgress": "ビーストマスター進捗", - "stableBeastMasterProgress": "ビーストマスター進捗: <%= number %> 匹のペットを見つけた。", - "beastAchievement": "全てのペットを集めたので「ビーストマスター」の称号を手に入れた!", - "beastMasterName": "ビーストマスター", - "beastMasterText": "Has found all 90 pets (incredibly difficult, congratulate this user!)", - "beastMasterText2": "それに <%= count %>度ペットを逃がしました。", - "mountMasterProgress": "マウントペットマスター進捗", - "stableMountMasterProgress": "マウントマスターの進展: <%= number %> 飼い慣らしたマウント", - "mountAchievement": "全てのマウントペットを飼いならしたので「マウントペットマスター」の称号を手に入れた!", - "mountMasterName": "マウントペットマスター", - "mountMasterText": "90匹のマウントペット全てを飼いならした (さらに難しい、祝福しよう!)", - "mountMasterText2": "そして90匹すべてのマウントペットを計<%= count %> 回逃がしました", - "beastMountMasterName": "ビーストマスターとマウントペットマスター", - "triadBingoName": "トライアド ビンゴ", - "triadBingoText": "ペット90匹全てとマウントペット90匹全てを発見し、そして90匹全てのペットを再び発見しました(どうやってやったの!)", - "triadBingoText2": "そして満杯の馬小屋を<%= count %>回解放しました。", - "triadBingoAchievement": "全てのペットを発見し、全てのマウントペットを飼いならし、再び全てのペットを発見したため「トライアド ビンゴ」の称号を手に入れた!", - "dropsEnabled": "ドロップアイテムが使用可能になった!", - "itemDrop": "アイテムがドロップした!", - "firstDrop": "ドロップシステムが解除されました!今後タスクを完了したとき、たまごやポーションやエサといったアイテムが見つかる可能性があります!あなたは今<%= eggText %>たまごを見つけました! <%= eggNotes %>", + "hatchingPotions": "たまごがえしの薬", + "magicHatchingPotions": "魔法のたまごがえしの薬", + "hatchingPotion": "たまごがえしの薬", + "noHatchingPotions": "たまごがえしの薬をもっていません。", + "inventoryText": "たまごをクリックすると使える薬が緑色になるので、その中のどれかをクリックすると、たまごがかえってペットになります。どの薬も緑色にならないなら、もう一度そのたまごをクリックして選択を解除し、かわりにまず薬をクリックするとつかえるたまごが緑色になります。また、不要な拾得物は、商人・アレキサンダーに売ることもできます。", + "foodText": "えさ", + "food": "えさとくら", + "noFood": "えさもくらもありません。", + "dropsExplanation": "タスクを達成したときにアイテムが落ちてくるのを待っていられないのなら、ジェムを使えばすぐに手に入ります。\n落とし物のシステムについてより詳しく知る。", + "premiumPotionNoDropExplanation": "魔法のたまごがえしの薬は、クエストで手に入れたたまごには使えません。魔法のたまごがえしの薬を手に入れるには、落し物ではなく、以下から買う必要があります。", + "beastMasterProgress": "獣使いの進行状況", + "stableBeastMasterProgress": "獣使いの進行状況 : <%= number %> 種のペットを発見", + "beastAchievement": "すべてのペットを集めた実績、「獣使い」を手に入れた!", + "beastMasterName": "獣使い", + "beastMasterText": "は、90種すべてのペットを発見しました(信じられないほどの困難をなしとげました。このユーザーを称えましょう! )", + "beastMasterText2": "また、彼は計<%= count %>回、ペットを逃がしました", + "mountMasterProgress": "乗用獣使いの進行状況", + "stableMountMasterProgress": "乗用獣使いの進行状況: <%= number %>頭の乗用獣を飼いならした", + "mountAchievement": "すべての乗用獣を飼いならしたので、「乗用獣使い」の実績を解除しました!", + "mountMasterName": "乗用獣使い", + "mountMasterText": "は、90頭の乗用獣すべてを飼いならした(さらにずっと困難なことをなしとげました。このユーザーを祝福しましょう! )", + "mountMasterText2": "90匹すべての乗用獣を、計<%= count %> 回逃がしました", + "beastMountMasterName": "獣使いと乗用獣使い", + "triadBingoName": "ペット完全制覇", + "triadBingoText": "ペット90種すべてと乗用獣90種すべてを発見し、そしてもう一度90匹すべてのペットを発見しました(どうやってやったの!)", + "triadBingoText2": "そしていっぱいの動物小屋を計<%= count %>回解放しました。", + "triadBingoAchievement": "すべてのペットを発見し、すべての乗用獣を飼いならし、さらに再びすべてのペットを発見したので「ペット完全制覇」の実績を手に入れた!", + "dropsEnabled": "落とし物が手に入るようになった!", + "itemDrop": "アイテムが落ちました!", + "firstDrop": "落とし物のしくみがアンロックされました! 今後タスクを達成すると、たまごなどのアイテムや、薬、そしてエサの落とし物を発見するちょっとしたチャンスが訪れます。あなたは今<%= eggText %>たまごを見つけました! <%= eggNotes %>", "useGems": "もしあなたがペットをじっと見守りつづけていて、これ以上ドロップを待てないのであれば、ジェムを使って所持品 > 市場 で買ってください!", - "hatchAPot": "<%= potion %>の<%= egg %>を孵しますか?", - "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 %>をやりますか?", - "useSaddle": "<%= pet %>に鞍を置きますか?", - "raisedPet": "You grew a <%= pet %>!", - "earnedSteed": "By completing your tasks, you've earned a faithful steed!", - "rideNow": "今乗る", + "hatchAPot": "<%= potion %>の<%= egg %>をかえしますか?", + "hatchedPet": "<%= potion %>で<%= egg %> をかえした!", + "displayNow": "いますぐ表示", + "displayLater": "あとで表示", + "earnedCompanion": "あなたの生産性のすべてによって、新しい仲間が生まれました。えさをやって成長させましょう!", + "feedPet": "<%= name %>に<%= article %><%= text %>をやりますか?", + "useSaddle": "<%= pet %>にくらをおきますか?", + "raisedPet": "<%= pet %>を育てた!", + "earnedSteed": "タスクを達成したことにより、忠実な乗用獣へと成長した!", + "rideNow": "いますぐ乗る", "rideLater": "あとで乗る", "petName": "<%= potion %> <%= egg %>", - "mountName": "<%= potion %> <%= egg %>を孵しますか?", - "petKeyName": "犬小屋への鍵", - "petKeyPop": "あなたのペットを自由に歩き回れるようにしよう、彼らの冒険が始められるよう解放しよう、そしてもう一度ビーストマスターのスリルに打ち込もう!", - "petKeyBegin": "犬小屋の鍵: 経験値 <%= title %> もう一度!", - "petKeyInfo": "ペットを集めるスリルを無くしましたか? あなたは彼らを手放して、彼らのドロップアイテムを再び有意義に出来ます!", - "petKeyInfo2": "犬小屋の鍵を使って、クエストでなく集められるペットやマウントペットをゼロにリセットしてください。(クエストだけやレアなペットやマウントペットは影響を受けません。)", - "petKeyInfo3": "3つの犬小屋への鍵があります: ペットだけを逃がす(4ジェム)か、マウントペットだけを逃がす(4ジェム)か、ペットもマウントペットも逃がす(6ジェム)か。鍵を使う事でビーストマスターとマウントペットマスターへの実績を積みます。トライアドビンゴの実績はあなたが「ペットもマウントペットも逃がす」鍵を使って90匹すべてのペットを2回目に集めたときに積まれます。あなたがどれだけ集めた飼い主なのか示しましょう!でも慎重に選んでください。一度鍵を使って犬小屋か馬小屋の扉を開けたら、もう一度全て集め直すまで戻すことはできないですから。", - "petKeyInfo4": "3つの犬小屋への鍵があります: ペットだけを逃がす(4ジェム)か、マウントペットだけを逃がす(4ジェム)か、ペットもマウントペットも逃がすか。鍵を使う事でビーストマスターとマウントペットマスターへの実績を積みます。トライアドビンゴの実績はあなたが「ペットもマウントペットも逃がす」鍵を使って90匹すべてのペットを2回目に集めたときに積まれます。あなたがどれだけ集めた飼い主なのか示しましょう!でも慎重に選んでください。一度鍵を使って犬小屋か馬小屋の扉を開けたら、もう一度全て集め直すまで戻すことはできないですから…", + "mountName": "<%= potion %> <%= mount %>", + "petKeyName": "犬小屋のカギ", + "petKeyPop": "ペットを自由に歩き回れるようにして、彼らが自分で冒険をはじめられるように解き放とう、そして自分自身、もう一度獣使いとなる興奮を味わおう!", + "petKeyBegin": "犬小屋のカギ : 経験値 <%= title %> もう一度!", + "petKeyInfo": "ペットを集める興奮を失いましたか? それなら、彼らを解き放ち、落とし物を意味あるものにすることができます!", + "petKeyInfo2": "犬小屋のカギを使うと、クエスト以外で集められるペットや乗用獣をゼロにリセットします。(クエストだけやめずらしいペットや乗用獣は影響を受けません。)", + "petKeyInfo3": "動物小屋へのカギは3種類あります: ペットだけを逃がす(4ジェム)か、乗用獣だけを逃がす(4ジェム)、ペットも乗用獣も逃がす(6ジェム)。カギを使う事で獣使いと乗用獣使いの実績を積み重ねることができます。「ペット完全制覇」の実績は、「ペットも乗用獣も逃がす」カギを使って90匹すべてのペットを2回目に集めたときに手にすることができます。あなたがどれだけのペットや乗用獣を集めた飼い主なのかを世界に示しましょう! しかし慎重に選んでください。一度カギを使って動物小屋の扉を開けたら、最初から集めなおす以外に、彼らを再び手に入れることはできないのですから...。", + "petKeyInfo4": "3つの動物小屋へのカギがあります: ペットだけを逃がす(4ジェム)か、乗用獣だけを逃がす(4ジェム)か、ペットも乗用獣も逃がすか。カギを使う事で「獣使い」と「乗用獣使い」の実績が解除されます。「ペット完全制覇」の実績はあなたが「ペットも乗用獣も逃がす」カギを使って90匹すべてのペットを2回目に集めたときに解除されます。あなたの飼い主としての集めぶりを世界に示しましょう!でも慎重に選んでください。一度カギを使って動物小屋の扉を開けたら、もう一度すべて集め直すしか取り戻す方法はないですから…。", "petKeyPets": "ペットを逃がす", - "petKeyMounts": "マウントペットを逃がす", + "petKeyMounts": "乗用獣を逃がす", "petKeyBoth": "両方逃がす", - "confirmPetKey": "Are you sure?", - "petKeyNeverMind": "まだだ!", - "gemsEach": "各ジェム" + "confirmPetKey": "本当によろしいですか?", + "petKeyNeverMind": "まだ!", + "gemsEach": "それぞれのジェム" } \ No newline at end of file diff --git a/common/locales/ja/quests.json b/common/locales/ja/quests.json index 6afa889e49..7cadc0bbd7 100644 --- a/common/locales/ja/quests.json +++ b/common/locales/ja/quests.json @@ -1,82 +1,82 @@ { "quests": "クエスト", "quest": "クエスト", - "whereAreMyQuests": "クエストに個別ページが出来、チェックしやすくなりました!所持品 -> クエストからご覧ください。", + "whereAreMyQuests": "クエストのページができました! アイテム -> クエストからご覧ください。", "yourQuests": "あなたのクエスト", "questsForSale": "クエストの販売", - "petQuests": "ペットとマウントのクエスト", - "unlockableQuests": "開放されたクエスト", - "goldQuests": "コインで購入できるクエスト", + "petQuests": "ペットと乗用獣のクエスト", + "unlockableQuests": "アンロックできるクエスト", + "goldQuests": "ゴールドで購入できるクエスト", "questDetails": "クエストの詳細", "invitations": "招待状", "completed": "完了!", "youReceived": "受け取りました", "dropQuestCongrats": "おめでとうございます!クエストの巻物を取得しました。クエストにパーティメンバーを招待してクエストを開始できます。所持品>クエストから好きな時に開始できます。", - "questSend": "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": "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...", - "inviteParty": "Invite Party to Quest", - "questInvitation": "クエストへの招待状:", + "questSend": "「招待」をクリックするとパーティーのメンバーに招待状を出します。すべてのメンバーが了解するか拒否するかすると、クエストがはじまります。ソーシャル > パーティー で返信状況を確認できます。", + "questSendBroken": "「招待」をクリックするとパーティーのメンバーに招待状を出す...すべてのメンバーが了解するか拒否するかすると、クエストははじまる... ソーシャル > パーティー で返信状況を確認できる...", + "inviteParty": "パーティーをクエストに招待する", + "questInvitation": "クエストへの招待 : ", "questInvitationTitle": "クエストへの招待", "questInvitationInfo": "クエスト <%= quest %> への招待", "askLater": "あとで質問する", - "questLater": "あとでクエスト", - "buyQuest": "クエストを買います", - "accepted": "受け入れられました", - "rejected": "拒否されました", + "questLater": "あとでクエストをはじめる", + "buyQuest": "クエストを買う", + "accepted": "承認しました", + "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\"...", - "begin": "始める", + "questStartBroken": "一度すべてのメンバーが承認または拒否するとクエストがはじまります...「承認」をクリックしたメンバーだけがクエストに参加して、アイテムを手に入れることができます...もし長期にメンバーが保留しつづけた場合 (アクティブじゃない?)、クエストの所有者は[はじめる]をクリックすることでそのメンバーたちを除いてクエストをはじめることができます...また、クエストの所有者は[中止する]をクリックすることで、クエストを中止しクエストの巻物を取り返すことができます...", + "begin": "はじめる", "bossHP": "ボスの体力", - "bossStrength": "ボスの力", - "rage": "Rage", + "bossStrength": "ボスの強さ", + "rage": "激怒", "collect": "獲得", "collected": "獲得済み", "collectionItems": "<%= number %> <%= items %>", - "itemsToCollect": "Items to Collect", - "bossDmg1": "Each completed Daily and To-Do and each positive Habit hurts the boss. Hurt it more with redder tasks or Brutal Smash and Burst of Flames. The boss will deal damage to every quest participant for every Daily you've missed (multiplied by the boss's Strength) in addition to your regular damage, so keep your party healthy by completing your Dailies! All damage to and from a boss is tallied on cron (your day roll-over).", - "bossDmg2": "参加者だけがボスと戦い、クエストの勝利品を共有することができる", - "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)...", - "bossDmg2Broken": "Only participants will fight the boss and share in the quest loot...", - "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...", - "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...", - "bossColl2Broken": "Only participants can collect items and share in the quest loot...", - "abort": "中止", - "leaveQuest": "Leave Quest", - "sureLeave": "Are you sure you want to leave the active quest? All your quest progress will be lost.", - "questOwner": "クエストオーナー", - "questOwnerNotInPendingQuest": "クエストオーナーはクエストを残していますが、もはやそれを始めることはできません。それを今キャンセルすることをお勧めします。クエストオーナーはクエストスクロールの所有を保持します。", - "questOwnerNotInRunningQuest": "クエストオーナーはクエストを残しています。必要であれば、クエストを中止することができます。また、実行の継続を許可することもでき、残りのすべての参加者はクエストが終了した時に、クエストの報酬を受け取ります。", - "questOwnerNotInPendingQuestParty": "クエストオーナーはパーティを残していますが、もはやクエストを始めることはできません。それを今キャンセルすることをお勧めします。クエストスクロールはクエストオーナーに戻されます。", - "questOwnerNotInRunningQuestParty": "クエストオーナーはパーティを残しています。必要であれば、クエストを中止することができますが、また、実行を続けることもでき、残りのすべての参加者はクエストが終了した時に、クエストの報酬を受け取ります。", + "itemsToCollect": "獲得アイテム", + "bossDmg1": "日課やTo-Do、いい習慣を完了するたびにボスにダメージを与えます。赤くなったタスク行う、または「強烈なスマッシュ」や「火炎爆破」のスキルをつかうとさらに大きなダメージを与えることができます。あなたが日課をサボると、通常の日課のダメージにくわえて、ボスがクエストに参加している全員に与えるダメージ ( × ボスの強さ) を受けることになります。ですから、パーティーの仲間はみんなで日課を実行しなくてはいけません! ボスに与えるダメージ、およびボスから受けるダメージは、いずれも cron (あなたが設定した日付更新の時間) にまとめて計算されます。", + "bossDmg2": "参加者だけがボスと戦い、クエストの賞品を分け合うことができます。", + "bossDmg1Broken": "日課やTo-Do、いい習慣を行うたびにボスにダメージを与える...赤くなったタスクを行う、または「強烈なスマッシュ」や「火炎爆破」のスキルをつかうとさらに大きなダメージを与えられる...あなたが日課をサボると、通常の日課のダメージにくわえて、ボスがクエストに参加している全員に与えるダメージ ( × ボスの強さ) を受けることになる。だから、パーティーの仲間はみんなで日課を実行しなくてはいけない...ボスに与えるダメージ、およびボスから受けるダメージは、いずれも cron (あなたが設定した日付更新の時間) にまとめて計算される...", + "bossDmg2Broken": "参加者だけがボスと戦い、クエストの賞品を分け合うことができる...", + "tavernBossInfo": "Complete Dailies and To-Dos and score positive Habits to damage the World Boss! Incomplete Dailies fill the Rage Bar. When the Rage 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": "日課やTo-Do、いい習慣を行うたびに世界のボスにダメージを与える...日課をサボると「消耗の一撃」バーがたまっていく...「消耗の一撃」バーがいっぱいになると、世界のボスはNPCを攻撃する...世界のボスは一人ひとりのプレーヤーやアカウントを攻撃することはない...宿で休んでいるメンバーを除いた活動中のアカウントのタスクのみ計算される...", + "bossColl1": "アイテムを収集するには、前向きのタスクを実行します。クエスト アイテムは通常のアイテムと同様に手に入ります。ただし、翌日までアイテムを確認しないと、あなたが見つけたアイテムは山に集められてしまいます。", + "bossColl2": "参加者だけがアイテムを集めることができ、クエストの賞品を分け合うことができる...", + "bossColl1Broken": "アイテムを集めるには、前向きのタスクを実行することだ...クエスト アイテムは通常のアイテムと同様に手に入る。ただし、翌日までアイテムを確認しないと、あなたが見つけたアイテムは山に集められてしまう...", + "bossColl2Broken": "参加者だけがアイテムを集めることができ、クエストの賞品を分け合うことができる...", + "abort": "中断する", + "leaveQuest": "クエストから抜ける", + "sureLeave": "進行中のクエストを抜けます。よろしいですか? あなたのクエストの成果はすべて失われます。", + "questOwner": "クエストの所有者", + "questOwnerNotInPendingQuest": "クエストの所有者は、そのクエストを残していますが、もうそれをはじめることはありません。すぐに中断することをおすすめします。クエストの所有者は、クエストの巻物を再度取得します。", + "questOwnerNotInRunningQuest": "クエストの所有者はそのクエストを残しています。必要であれば、クエストを中断することができます。または、クエストを続行し、クエストの終了時に残ったすべての参加者で報酬を分け合えるよう許可することもできます。", + "questOwnerNotInPendingQuestParty": "クエストの所有者はそのパーティを残していますが、もうクエストをはじめることはありません。すぐに中断することをおすすめします。クエストの巻物はクエストの所有者のところに返されます。", + "questOwnerNotInRunningQuestParty": "クエストの所有者はパーティーを残しています。必要であれば、クエストを中断することができます。または、クエストを続行し、クエストの終了時に残ったすべての参加者で報酬を受け取れるよう許可することもできます。", "questParticipants": "参加者", - "scrolls": "クエストスクロール", - "noScrolls": "クエストスクロールを持っていません", - "scrollsText1": "クエストはパーティが必要です。もし単独でクエストしたい場合は、", + "scrolls": "クエストの巻物", + "noScrolls": "クエストの巻物を持っていません。", + "scrollsText1": "クエストにはパーティが必要です。もし一人でクエストをやりたい場合は、", "scrollsText2": "空のパーティを作る", - "scrollsPre": "まだこのクエストは開放されていません!", - "alreadyEarnedQuestLevel": "レベル <%= level %> に到達したのでクエストに挑戦できます。", + "scrollsPre": "このクエストはまだアンロックされていません!", + "alreadyEarnedQuestLevel": "レベル <%= level %> に到達したのでこのクエストに挑戦できます。", "alreadyEarnedQuestReward": "<%= priorQuest %> クエストを達成したので、このクエストに挑戦できます。", "completedQuests": "以下のクエストを完了しました", - "mustComplete": "<%= quest %>を最初に完了させる必要があります。", - "mustLevel": "レベル <%= level %> に到達するまでこのクエストに挑戦できません。", - "mustLvlQuest": "このクエストを購入するためにはレベルが<%= level %>以上でなければなりません!", - "mustInviteFriend": "このクエストを獲るには、友人をパーティーに誘う必要があります。今誘いますか?", - "unlockByQuesting": "To earn this quest, complete <%= title %>.", - "sureCancel": "このクエストをキャンセルしてもよろしいですか? 招待を受け入れた人はすべて失われます。クエストオーナーはクエストスクロールの所有を保持します。", - "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...", - "bossRageTitle": "怒り", - "bossRageDescription": "もしこのバーが満タンになると、ボスは特殊攻撃を放ちます!", - "startAQuest": "クエストを始める", - "startQuest": "クエストを始めよう", - "whichQuestStart": "どのクエストを始めますか?", - "getMoreQuests": "Get more quests", - "unlockedAQuest": "You unlocked a quest!", - "leveledUpReceivedQuest": "You leveled up to Level <%= level %> and received a quest scroll!" + "mustComplete": "<%= quest %>を先に完了してください。", + "mustLevel": "このクエストに挑戦するにはレベル <%= level %> が必要です。", + "mustLvlQuest": "このクエストを購入するためにはレベルが<%= level %>以上でなければなりません!", + "mustInviteFriend": "このクエストを入手するには、友人をパーティーに招待しなくてはいけません。いま招待しますか?", + "unlockByQuesting": "このクエストを入手するには、<%= title %>を完了してください。", + "sureCancel": "このクエストをぢ中止します。よろしいですか? 招待を承認した人はすべて無効になります。クエストの巻物は、クエストの所有者の手に戻ります。", + "sureAbort": "このミッションを中断します。よろしいですか? パーティの全員が中断になり、すべての進行状況は失われます。クエストの巻物はクエスト所有者の手に戻ります。", + "doubleSureAbort": "クエストを中断します。本当によろしいですか? パーティーの仲間から永遠に憎まれることのないように!", + "questWarning": "クエストをはじめる前に新しいプレイヤーがパーティーに参加した場合、その人たちも招待状を受けとっています。ただし、クエストがはじまった後は、クエストのパーティーに新しいメンバーが入ることはありません。", + "questWarningBroken": "クエストが始まる前に新しいプレイヤーがパーティに参加した場合、彼らもまた、招待状を受け取る...ただし、クエストが開始した後は、新しいパーティメンバーはクエストに参加できない...", + "bossRageTitle": "激怒", + "bossRageDescription": "このバーがいっぱいになると、ボスは特殊攻撃の封印をときます!", + "startAQuest": "クエストをはじめる", + "startQuest": "クエストをはじめる", + "whichQuestStart": "どのクエストをはじめますか?", + "getMoreQuests": "もっとたくさんのクエストを手に入れる", + "unlockedAQuest": "クエストをアンロックしました!", + "leveledUpReceivedQuest": "レベルアップして、レベル <%= level %> になったので、クエストの巻物を受けとりました!" } \ No newline at end of file diff --git a/common/locales/ja/questscontent.json b/common/locales/ja/questscontent.json index 90d98e2091..c74bf17dcd 100644 --- a/common/locales/ja/questscontent.json +++ b/common/locales/ja/questscontent.json @@ -1,9 +1,9 @@ { "questEvilSantaText": "猟師のサンタ", - "questEvilSantaNotes": "You hear agonized roars deep in the icefields. You follow the growls - punctuated by the sound of cackling - to a clearing in the woods, where you see a fully-grown polar bear. She's caged and shackled, fighting for her life. Dancing atop the cage is a malicious little imp wearing a castaway costume. Vanquish Trapper Santa, and save the beast!", + "questEvilSantaNotes": "氷原の彼方から、なげきの遠吠えが聞こえる。あなたは、甲高い笑い声にさえぎられながらも聞こえてくるうなり声を追いかけて森の中の広場にたどり着いた。そこには、大きなメスのホッキョクグマがいた。ホッキョクグマは足かせをされ、おりの中に閉じこめられている。それでも命がけで戦っているのだ。打ち捨てられた衣装を着た、意地の悪い小悪魔がおりの上で踊っている。わなをしかけたサンタを倒して、ホッキョクグマを救え!", "questEvilSantaCompletion": "Trapper Santa squeals in anger, and bounces off into the night. The grateful she-bear, through roars and growls, tries to tell you something. You take her back to the stables, where Matt Boch the Beast Master listens to her tale with a gasp of horror. She has a cub! He ran off into the icefields when mama bear was captured.", "questEvilSantaBoss": "猟師のサンタ", - "questEvilSantaDropBearCubPolarMount": "ホッキョクグマ(マウント)", + "questEvilSantaDropBearCubPolarMount": "ホッキョクグマ(乗用獣)", "questEvilSanta2Text": "幼獣を見つけましょう!", "questEvilSanta2Notes": "When Trapper Santa captured the polar bear mount, her cub ran off into the icefields. You hear twig-snaps and snow crunch through the crystalline sound of the forest. Paw prints! You start racing to follow the trail. Find all the prints and broken twigs, and retrieve the cub!", "questEvilSanta2Completion": "You've found the cub! It will keep you company forever.", @@ -40,7 +40,7 @@ "questOctopusBoss": "オクトフル", "questOctopusDropOctopusEgg": "たこ(卵)", "questOctopusUnlockText": "市場でのタコの卵購入のアンロック", - "questHarpyText": "助けて!ハーピィ!", + "questHarpyText": "助けて!ハーピィだ!", "questHarpyNotes": "勇敢な冒険者@UncommonCriminalは数日前に、目撃した翼の生えたモンスターを追跡中に森の中で失踪しました。あなたが捜索しようとした時、怪我をしている一匹のオウムがあなたの肩に止まりました。美しい羽に痛々しい傷跡があります。オウムの脚には走り書きされたメモが付けられています。@UncommonCriminalは凶悪なハーピィに捕まって、脱出するために必死にあなたに助けを求めています。あなたはこの鳥と共にハーピィを倒し、@UncommonCriminalを救出しますか?", "questHarpyCompletion": "最後の一撃がハーピーをうちおとして、羽があらゆる方向へと飛んでいきます。すばやく巣に登ると、オウムの卵に囲まれた@UncommonCriminalを見つけます。チームとして、あなたは素早く卵を近くの巣に戻します。あなたを見つけた傷付いたオウムは騒がしく鳴いて、あなたの腕の中に卵を落とします。「ハーピーの攻撃は保護が必要な卵を残している」@UncommonCriminalは説明します。「あなたは名誉のオウムになったようだ」", "questHarpyBoss": "ハーピィ", @@ -59,7 +59,7 @@ "questSpiderDropSpiderEgg": "クモ(卵)", "questSpiderUnlockText": "市場でのクモの卵購入のアンロック", "questVice1Text": "悪い習慣、パート1: ドラゴンの影響からあなたを開放する", - "questVice1Notes": "

彼らはHabitica山の洞窟に恐ろしい悪がいると言っています。そこの一匹のモンスターはこの土地の強い英雄たちの意志を曲げ、悪い習慣や怠惰な性格に変えてしまいます。そのモンスターはとてつもない力を持った雄大なドラゴンと影で構成されています:邪悪で危険なシャドーウィルム。勇敢なHabiteerたちよ、立ち上がって、この邪悪の獣を倒そう。ただし、あなたがその巨大な力に立ち向かえる自分を信じなければなりません。

バイス パート 1:

なぜあなたは戦闘で洗脳されないと言い切れるんですか?怠惰と悪習感の罠に陥れないで!ドラゴンの洗脳に立ち向かって、一所懸命に戦えば、あなたはきっと生き残れます!

", + "questVice1Notes": "

They say there lies a terrible evil in the caverns of Mt. Habitica. A monster whose presence twists the wills of the strong heroes of the land, turning them towards bad habits and laziness! The beast is a grand dragon of immense power and comprised of the shadows themselves: Vice, the treacherous Shadow Wyrm. Brave Habiteers, stand up and defeat this foul beast once and for all, but only if you believe you can stand against its immense power.

Vice Part 1:

How can you expect to fight the beast if it already has control over you? Don't fall victim to laziness and vice! Work hard to fight against the dragon's dark influence and dispel his hold on you!

", "questVice1Boss": "悪魔の影", "questVice1DropVice2Quest": "バイスパート2(スクロール)", "questVice2Text": "悪い習慣、パート2: ウィルムの隠れ家を探せ", @@ -74,50 +74,50 @@ "questVice3DropDragonEgg": "ドラゴン(卵)", "questVice3DropShadeHatchingPotion": "暗い水薬", "questMoonstone1Text": "The Moonstone Chain, Part 1: The Moonstone Chain", - "questMoonstone1Notes": "

ひどい苦痛がHabitticanを襲いました。ずっと前に滅んだ悪い習慣が復讐に蘇りつつあります。皿は洗われず、教科書は読まれず放置され、先送りが蔓延しています!


あなたは戻ってきた悪い習慣をよどみの沼まで追い、容疑者:幽霊のような魔術師レシディベイトを見つけます。あなたは武器を振りかざして突入しますが、彼女の幽霊を無駄にすり抜けます。


「気にするな」と彼女はガラガラ声で息を漏らします。


「月の石の鎖がなければ、だれも私を傷つける事はできない、そしてマスタージュエラー@aurakamiがすべての月の石を大昔にHabitica中に散らばせてしまった!」


息切れしながらあなたは後退しました...ですがあなたは何をするべきか知っています。", + "questMoonstone1Notes": "A terrible affliction has struck Habiticans. Bad Habits thought long-dead are rising back up with a vengeance. Dishes lie unwashed, textbooks linger unread, and procrastination runs rampant!

You track some of your own returning Bad Habits to the Swamps of Stagnation and discover the culprit: the ghostly Necromancer, Recidivate. You rush in, weapons swinging, but they slide through her specter uselessly.

\"Don’t bother,\" she hisses with a dry rasp. \"Without a chain of moonstones, nothing can harm me – and master jeweler @aurakami scattered all the moonstones across Habitica long ago!\" Panting, you retreat... but you know what you must do.", "questMoonstone1CollectMoonstone": "ムーンストーン", "questMoonstone1DropMoonstone2Quest": "ムーンストーンチェーン パート2:魔術師レシディベイト(スクロール)", "questMoonstone2Text": "The Moonstone Chain, Part 2: Recidivate The Necromancer", - "questMoonstone2Notes": "

勇敢な鍛冶職人@Inventrixはあなたの魔力があるムーンストーンをおしゃれな数珠につくりかえました。あなたはついに悪事を繰り返すレシディベイトに立ち向かう準備が出来ましたが、よどみの沼に入ったとたん、とてもひどい寒気をしました。


そしてくさい息があなたの耳で囁きます。「また来たのか?なんて楽しいやつだ。」あなたは回転して突進し、ムーンストーンチェーンの光のもとであなたの武器は実態の肉体に当たる。「またわたしをこの世界に縛り付ける気か。」レシディベイトが怒鳴ります。「だが、お前には消えてもらおうか!」

", + "questMoonstone2Notes": "The brave weaponsmith @Inventrix helps you fashion the enchanted moonstones into a chain. You’re ready to confront Recidivate at last, but as you enter the Swamps of Stagnation, a terrible chill sweeps over you.

Rotting breath whispers in your ear. \"Back again? How delightful...\" You spin and lunge, and under the light of the moonstone chain, your weapon strikes solid flesh. \"You may have bound me to the world once more,\" Recidivate snarls, \"but now it is time for you to leave it!\"", "questMoonstone2Boss": "魔術師", "questMoonstone2DropMoonstone3Quest": "ムーンストーンチェーン パート3:レシディベイトの変身(スクロール)", "questMoonstone3Text": "The Moonstone Chain, Part 3: Recidivate Transformed", - "questMoonstone3Notes": "

レシディベイトは地面に倒れ、そしてあなたはムーンストーンチェーンで彼女にトドメを刺そうとしました。しかし、すぐに恐怖があなたを襲います。レシディベイトは宝石を掴み、目には勝利の炎が宿っていました。


「この愚か者よ!」と彼女が叫びます。「このムーンストーンチェーンの力は私を回復してくれる。お前が思ってたのは全然違うよ。」暗闇より満月が満ちた時、私の力が最大になる!そして影からお前たちにとって最も恐ろしいやつを召喚してやろう!」


緑色の濃い霧が沼から浮き上がり、レシディベイトの体が恐ろしい姿となりました。不死身のバイス、恐ろしい存在に変身したのです。

", - "questMoonstone3Completion": "

アンデッドウィルムが崩れたとき、あなたは呼吸が荒く、体は汗でだらだらでした。レシディベイトの残骸が濃い灰色の霧に変わり、爽やかな風によって掻き消されていきます。そして、遠くから、Habitica人たちが悪い習慣タスクを破ってくれたことに対しての叫び声が聞こえます。


ビーストマスターの@Baconsaurがグリフォンに乗って、空から舞い降りました。「空からあなたの最後の戦いを見ていて感動したよ。この魔法のチュニックを受け取ってください。あなたの勇敢さはあなたの気高い心を示している。あなたならうまく使ってくれると信じているよ」

", + "questMoonstone3Notes": "Recidivate crumples to the ground, and you strike at her with the moonstone chain. To your horror, Recidivate seizes the gems, eyes burning with triumph.

\"Foolish creature of flesh!\" she shouts. \"These moonstones will restore me to a physical form, true, but not as you imagined. As the full moon waxes from the dark, so too does my power flourish, and from the shadows I summon the specter of your most feared foe!\"

A sickly green fog rises from the swamp, and Recidivate’s body writhes and contorts into a shape that fills you with dread – the undead body of Vice, horribly reborn.", + "questMoonstone3Completion": "Your breath comes hard and sweat stings your eyes as the undead Wyrm collapses. The remains of Recidivate dissipate into a thin grey mist that clears quickly under the onslaught of a refreshing breeze, and you hear the distant, rallying cries of Habiticans defeating their Bad Habits for once and for all.

@Baconsaur the beast master swoops down on a gryphon. \"I saw the end of your battle from the sky, and I was greatly moved. Please, take this enchanted tunic – your bravery speaks of a noble heart, and I believe you were meant to have it.\"", "questMoonstone3Boss": "ネクロ-バイス", "questMoonstone3DropRottenMeat": "腐った肉(食べ物)", "questMoonstone3DropZombiePotion": "ゾンビハッチングポーション", "questGoldenknight1Text": "黄金騎士、パート1: 厳しい小言", - "questGoldenknight1Notes": "

ゴールデン・ナイトは、貧しいHabiticansのケースに乗っていました。あなたの日課を全てやりませんでしたか?悪い習慣のチェックは外しましたか?あなたがどのように彼女の例に続かなければならないかについて、あなたを悩ます理由として、彼女はこれを使います。彼女は完全なHabiticanの輝く代表例です。そして、あなたは失敗以外のなにものでもありません。さて、それはまったく素晴らしくありません!誰でも、間違いをおかします。彼らは、そのために否定的に応じられる必要はありません。おそらく、あなたが傷つくHabiticansからいくらかの証言を集めて、ゴールデン・ナイトに厳しいお説教をする時です!

", + "questGoldenknight1Notes": "The Golden Knight has been getting on poor Habiticans' cases. Didn't do all of your Dailies? Checked off a negative Habit? She will use this as a reason to harass you about how you should follow her example. She is the shining example of a perfect Habitican, and you are naught but a failure. Well, that is not nice at all! Everyone makes mistakes. They should not have to be met with such negativity for it. Perhaps it is time you gather some testimonies from hurt Habiticans and give the Golden Knight a stern talking-to!", "questGoldenknight1CollectTestimony": "証言", "questGoldenknight1DropGoldenknight2Quest": "The Golden Knight Chain Part 2: Gold Knight (Scroll)", "questGoldenknight2Text": "黄金騎士、パート2: 黄金騎士", - "questGoldenknight2Notes": "

Habitca人の何百もの証言で武装して、あなたはとうとうゴールデンナイトと対決します。あなたはHabitica人の彼女への不満をひとつひとつ唱え始めます。「そして@Pfeffernusseは絶えずあなたが自慢する-」ナイトは黙って手を上げてあざ笑い「どうか。その人たちは単に私の成功をねたんでいるだけです。泣き言を言うかわりに、私のように単に一生懸命励むべきです!私のように努力で到達できる力を私はおそらくあなたに見せるべきでしょう!」彼女は彼女のモーニングスターを掲げて攻撃態勢をとります!

", + "questGoldenknight2Notes": "Armed with hundreds of Habitican's testimonies, you finally confront the Golden Knight. You begin to recite the Habitcan's complaints to her, one by one. \"And @Pfeffernusse says that your constant bragging-\" The knight raises her hand to silence you and scoffs, \"Please, these people are merely jealous of my success. Instead of complaining, they should simply work as hard as I! Perhaps I shall show you the power you can attain through diligence such as mine!\" She raises her morningstar and prepares to attack you!", "questGoldenknight2Boss": "ゴールドナイト", "questGoldenknight2DropGoldenknight3Quest": "ゴールデンナイトチェーン パート3:アイアンナイト(スクロール)", "questGoldenknight3Text": "黄金騎士、パート3: 鉄の騎士", - "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!\"

", - "questGoldenknight3Completion": "

満足のいく金属音がして、アイアンナイトは膝をつき崩れ込みます。「あなたは本当に強い」彼はあえぎます。「私は今日誇りを傷つけられた」ゴールデンナイトがあなたに近づき言います。「ありがとう。あなたと出会って私たちは謙虚さを得たと信じています。私は父と話して私たちへの不平を説明します。たぶん私たちは他のHabitica人への謝罪から始めるべきでしょう」彼女はあなたに振り返る前にじっくり思案します。「これを、私たちからの贈り物です、私のモーニングスターはあなたが持っていてください。今やあなたのものです。」

", + "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!\"", + "questGoldenknight3Completion": "With a satisfying clang, the Iron Knight falls to his knees and slumps over. \"You are quite strong,\" he pants. \"I have been humbled, today.\" The Golden Knight approaches you and says, \"Thank you. I believe we have gained some humility from our encounter with you. I will speak with my father and explain the complaints against us. Perhaps, we should begin apologizing to the other Habiticans.\" She mulls over in thought before turning back to you. \"Here: as our gift to you, I want you to keep my morningstar. It is yours now.\"", "questGoldenknight3Boss": "アイアンナイト", "questGoldenknight3DropHoney": "蜂蜜(食べ物)", "questGoldenknight3DropGoldenPotion": "ゴールデンハッチングポーション", "questGoldenknight3DropWeapon": "ムステインのマイルストーンマッシュモーニングスター(利き手でないほうの手に装備する武器)", - "questBasilistText": "バジリスト", - "questBasilistNotes": "市場には、あなたたちは出て行くべきだというたぐいの興奮があります。勇敢な冒険者になろうとして、それに向かっている替わりに、未完のToDoの塊と融合しているバジリストを見つけましょう。すぐ近くのHabiticanはバジリストの長さに恐怖し麻痺していて。動き出せません。近所のどこかから@Arcosineの叫びが聞こえます「急いで!ToDoと日課を完了させてモンスターを無力化しよう、誰かが紙で切ってしまう前に!」冒険者よ、速く且つ注意深く攻撃し、チェックオフしましょう!もしあなたが日課をどれかを未実施のままにしたら、バジリストはあなたとあなたのパーティを攻撃するでしょう!", + "questBasilistText": "バシ・リスト", + "questBasilistNotes": "市場は抜け出したいほどのにぎわいです。勇敢な冒険者になるには、あえてそこに向かい、バシ・リスト――倒すことのできなかった To-Do の群れが合体した大蛇を発見しなくてはなりません。すぐそばにいる Habitica の民は、最初はおののいていたバシ・リストの長さに最近は慣れ、タスクをこなすことができなくなっているのです。近くのどこかから、@Arcosine が「急げ! To-Doと日課をこなして、モンスターを無力化するんだ。さもないとだれかが切り離してしまうぞ」と叫んでいるのが聞こえるでしょう。すぐに攻撃を! 冒険者よ。そして、気をつけましょう! もしあなたが1つでも日課をやり残すと、バシ・リストはあなたとパーティーの仲間に攻撃を加えてきます!", "questBasilistCompletion": "バジリストは紙くずに散らばっていて、虹色に揺らめいています。「やれやれ!」と@Arcosineが言います。「君たちがここにいて良かった!」以前より手慣れて感じて、あなたは紙のあいだから落ちたゴールドを集めます。", - "questBasilistBoss": "バジリスト", + "questBasilistBoss": "バシ・リスト", "questEggHuntText": "卵狩り", "questEggHuntNotes": "奇妙な無地の卵は夜通しどこにでも現れました。マットの厩舎や酒場のカウンターの裏や市場のペット卵の間にさえも!なんと迷惑なんでしょう!「それらがどこから来たのか、卵がかえって何がうまれるのか、誰も知りません」とミーガンは言います。「しかしそこらで産まれるままにしておくわけにいきません。がんばって探してこの謎めいた卵を集めるのを手伝ってください。もし十分集めたら、たぶんあなたへの余分がでるでしょう…」", - "questEggHuntCompletion": "やりました!感謝の気持ちでミーガンは卵のうち10個をくれました。「孵化のポーションは卵を奇麗な色に染めてくれるでしょう!卵がマウントペットになるとき何が起こるだろう…」", + "questEggHuntCompletion": "やりました! ミーガンは感謝をこめて、10個のたまごをくれました。「きっと『たまごがえしの薬』がすばらしい色に染めてくれることでしょう! さらに乗用獣になるとき何が起こるか…」", "questEggHuntCollectPlainEgg": "プレン卵", "questEggHuntDropPlainEgg": "プレン卵", "questDilatoryText": "ドレッドディラトリードラゴン", - "questDilatoryNotes": "

私たちはその警告に注意するべきでした。


暗く輝く目。いにしえの鱗。がっしりした顎。輝く歯。私たちはぞっとする存在: ドレッドディラトリードラゴンを裂け目から呼び起こしてしまいました!海から体を起こし、恐ろしい長い首を何百フィートものばし、焼けるような咆哮で窓を砕くと、Habiticanは四方八方へ逃げました。


「これがグズグズ引き延ばしているに違いない!」Lemonessが叫びます。「これは無視されたタスクの重要な部分ではありません。暗く赤い日課は注意をひきます!」


「魔法の力が押し寄せてくる!」@Baconsaurが叫びます。「ここまで生き延びているから、ドラゴンは自分を治癒できるに違いない!どうしたら倒せるだろう?」


なぜ同じ方法で全ての野獣を倒せたのか、生産性です!Habiticaは素早く団結してタスクを削除し私たち全員が一緒にこのモンスターと戦うのです。(以前のクエストを捨てる必要はありません。私たちはあなたの二重攻撃の能力を信じています!)ドラゴンは我々を個別に攻撃しないでしょうが、日課をスキップすればするほど無視攻撃の契機が近づいてきます。そして私はこのドラゴンが酒場を見る目付きが好きではありません....

", + "questDilatoryNotes": "We should have heeded the warnings.

Dark shining eyes. Ancient scales. Massive jaws, and flashing teeth. We've awoken something horrifying from the crevasse: the Dread Drag'on of Dilatory! Screaming Habiticans fled in all directions when it reared out of the sea, its terrifyingly long neck extending hundreds of feet out of the water as it shattered windows with its searing roar.

\"This must be what dragged Dilatory down!\" yells Lemoness. \"It wasn't the weight of the neglected tasks - the Dark Red Dailies just attracted its attention!\"

\"It's surging with magical energy!\" @Baconsaur cries. \"To have lived this long, it must be able to heal itself! How can we defeat it?\"

Why, the same way we defeat all beasts - with productivity! Quickly, Habitica, band together and strike through your tasks, and all of us will battle this monster together. (There's no need to abandon previous quests - we believe in your ability to double-strike!) It won't attack us individually, but the more Dailies we skip, the closer we get to triggering its Neglect Strike - and I don't like the way it's eyeing the Tavern....", "questDilatoryBoss": "ドレッドディラトリードラゴン", "questDilatoryBossRageTitle": "打撃を無視しなさい", "questDilatoryBossRageDescription": "このバーがいっぱいになった時、ドレッドディラトリードラゴンはHabiticaの地形に大きな大破壊を浴びせます。", "questDilatoryDropMantisShrimpPet": "シャコ(ペット)", - "questDilatoryDropMantisShrimpMount": "シャコ(マウント)", + "questDilatoryDropMantisShrimpMount": "カマキリエビ (乗用獣)", "questDilatoryBossRageTavern": "”ドレッドドラゴンはネグレクトストライクを放しました”\n\n私達は最善の努力を尽くしましたが、いくつかの日課を見落としてしまいました。 彼らの暗い赤色がドレッドドラゴンの怒りを掻きあげました。 恐ろしいネグレクトストライクで酒屋をめちゃくちゃにしました!幸運なことに私達は近くの街の宿にいたので安全でした。あなたたちはまだチャットを続けられます....しかし、貧しいバーテンダーのダニエルは最愛の建物が崩れていくのを見ているしかなかったです。!\n\nドレッドドラゴンがまた攻撃をして来ないことを祈ります!", "questDilatoryBossRageStables": "”ドレッドドラゴンはネグレクトストライクを放しました”\n\nあぁ!私たちはまた日課をいっぱいやり残していました。ドレッドドラゴンはネグレクトストライクを解き放ちました!ペットたちは四方八方に逃げています。幸いなことに私たちは安全です。\n\n悲惨なHabitica!もう二度とこんなことが起こらないことを祈ります。はやくタスクをやらなければ!", "questDilatoryBossRageMarket": "”ドレッドドラゴンはネグレクトストライクを放しました”\n\nああ!商人のアレックスはちょうどドレッドドラゴンのネグレクトストライクによって店を粉々に破壊されました。しかし、ドレッドドラゴンを追い詰めたようにも見えます。他の攻撃を繰り出す力があるかもしれません。\n\nだから動じないで、Habitica!この獣を私たちの海岸から追い出しましょう!", @@ -128,7 +128,7 @@ "questSeahorseBoss": "シースタリオン", "questSeahorseDropSeahorseEgg": "竜の落し子(卵)", "questSeahorseUnlockText": "市場でのタツノオトシゴの卵購入のアンロック", - "questAtom1Text": "Attack of the Mundane, Part 1: Dish Disaster!", + "questAtom1Text": "襲い来る日常、Part1:Dish Disaster!", "questAtom1Notes": "あなたは手洗いのできる池のほとりに着いてゆっくりしようとしましたが...しかしその池が洗っていない皿で汚れていました。なぜこんなことに?うーん、この状態の池を見過ごすわけにはいきません。あなたが唯一できることは:皿を洗って、あなたの休憩所を清潔にしなさい!石鹸を探して洗ったほうがいいでしょう。たくさんの石鹸を...", "questAtom1CollectSoapBars": "棒状の石鹸", "questAtom1Drop": "The SnackLess Monster (Quest Scroll)", @@ -142,7 +142,7 @@ "questAtom3Boss": "ラウンドロマンサー", "questAtom3DropPotion": "Base Hatching Potion", "questOwlText": "闇夜のフクロウ", - "questOwlNotes": "酒屋のライトは夜明けまで点灯されます
ある夜、光が消えてしまった!
夜勤の人たちはなにも見えないようじゃどう仕事したらいいんでしょうか。
@Twitchingが大きな声で言います。「我々は戦う必要がある!
あの闇夜のフクロウを見ろ、月明かりの敵だろうか?
早速戦いおう!ちんたらしてられない!
やつを追い出そう。
そしてもう一度夜を光で灯るのだ!」", + "questOwlNotes": "The Tavern light is lit 'til dawn
Until one eve the glow is gone!
How can we see for our all-nighters?
@Twitching cries, \"I need some fighters!
See that Night-Owl, starry foe?
Fight with haste and do not slow!
We'll drive its shadow from our door,
And make the night shine bright once more!\"", "questOwlCompletion": "闇夜のフクロウは夜明け前に消えました。
あなたはあくびが出そうです。
たぶんすこし休憩をしたほうがいいのではないかな?
その時、ベッドで巣を発見した!
闇夜のフクロウにとってそこは最高の場所でしょうか
仕事を終わらせるため徹夜をしました。
あなたの新しいペットが柔らかい声で鳴きます
あなたにもう寝る時間だと教えてるのでしょう。", "questOwlBoss": "闇夜のフクロウ", "questOwlDropOwlEgg": "フクロウ(卵)", @@ -159,7 +159,7 @@ "questStressbeastBossRageTitle": "ストレスストライク", "questStressbeastBossRageDescription": "このゲージがいっぱいになったとき、不快なストレス獣はストレスストライクをHabiticaに浴びせるでしょう!", "questStressbeastDropMammothPet": "マンモス (ペット)", - "questStressbeastDropMammothMount": "マンモス (マウント)", + "questStressbeastDropMammothMount": "マンモス (乗用獣)", "questStressbeastBossRageStables": "`不快なストレス獣はストレスストライクを使います!`\n\nストレスのうねりは不快なストレス獣を回復させます。\n\nああ!私たちが努力したにもかかわらず、日課を私たちから逃れさせてしまい、その暗く赤い色は不快なストレス獣を激怒させて体力を回復させてしまいました!この恐ろしい生き物は厩舎に突進し、ビーストマスターMattはペットやマウントペットを護るために勇ましく戦いに飛び込みました。ストレス獣は物騒なこぶしでMattをぎゅっとつかみますが、少なくともストレス獣はこの瞬間注意をそらしました。急いで!日課を実施済みにして、また攻撃する前にこのモンスターを倒しましょう!", "questStressbeastBossRageBailey": "`不快なストレス獣はストレスストライクを使います!`\n\nストレスのうねりは不快なストレス獣を回復させます。\n\nああ!!!私たちの未完の日課が不快なストレス獣をより熱狂させて体力を回復させます!東西屋Baileyは市民に安全な場所に逃げるよう叫んでいましたが、今やストレス獣が彼女をもう片方の手でぎゅっと握っています!彼女を見てください。ストレス獣が彼女を意地悪く振り回しても、勇気を持ってニュースを伝えています。さあ私たちのNPCたちを助けられるくらい生産的になることで、彼女と同じくらい勇敢になりましょう!", "questStressbeastBossRageGuide": "`不快なストレス獣はストレスストライクを使います!`\n\nストレスのうねりは不快なストレス獣を回復させます。\n\n見て下さい!案内人ジャスティンがストレス獣の足首の周りを走り回って、生産的小技を叫んで、注意をそらそうとしています!不快なストレス獣は猛烈に足踏みしますが、私たちはこの獣を疲れさせているようです。次のストレスストライクに足るエネルギーがあるか疑問です。諦めないで、我々は完全に終わらせつつあります!", @@ -204,9 +204,9 @@ "questSheepDropSheepEgg": "羊(卵)", "questSheepUnlockText": "市場での羊の卵購入のアンロック", "questKrakenText": "The Kraken of Inkomplete", - "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!\"", + "questKrakenNotes": "温かい晴れた日、あなたはオワラナ入り江を航海していました。しかし、あなたはふと、何かをしなければならないような不安に襲われます。それは丁度、一つのタスクを終わらせるやいなや、次から次へとタスクが積み重なっていくような…

突然、ボートがひどく揺さぶられました。そしてぬるぬるとした触手が爆発的に水面のあちこちから伸びてきます!\"我々は巨大なオワラナイカに攻撃されている!\"Wolvenhaloが叫びました。

\"早く!\" Lemoness があなたを呼びます。 \"出来る限り多くの触手とタスクを叩いて!次がやってこられないうちに!\"", "questKrakenBoss": "The Kraken of Inkomplete", - "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": "巨大イカから逃れると、幾つかの卵が水面に浮いていました。それを調べたLemonessが、訝る顔をぱっと明るくしました。\n\"これはコウイカの卵よ!\"と彼女は言いました。\"あなたがやり遂げたことのご褒美として、これはもらっていきましょう。\"", "questKrakenDropCuttlefishEgg": "コウイカ(卵)", "questKrakenUnlockText": "市場でのコウイカのたまご購入のアンロック", "questWhaleText": "クジラの叫び", @@ -214,12 +214,12 @@ "questWhaleBoss": "叫ぶクジラ", "questWhaleCompletion": "After much hard work, the whale finally ceases her thunderous cry. \"Looks like she was drowning in waves of negative habits,\" @zoebeagle explains. \"Thanks to your consistent effort, we were able to turn the tides!\" As you step into the submarine, several whale eggs bob towards you, and you scoop them up.", "questWhaleDropWhaleEgg": "クジラ(卵)", - "questWhaleUnlockText": "Unlocks purchasable whale eggs in the Market", + "questWhaleUnlockText": "市場でのクジラの卵購入のアンロック", "questDilatoryDistress1Text": "Dilatory Distress, Part 1: Message in a Bottle", "questDilatoryDistress1Notes": "A message in a bottle arrived from the newly rebuilt city of Dilatory! It reads: \"Dear Habiticans, we need your help once again. Our princess has disappeared and the city is under siege by some unknown watery demons! The mantis shrimps are holding the attackers at bay. Please aid us!\" To make the long journey to the sunken city, one must be able to breathe water. Fortunately, the alchemists @Benga and @hazel can make it all possible! You only have to find the proper ingredients.", "questDilatoryDistress1Completion": "You don the the finned armor and swim to Dilatory as quickly as you can. The merfolk and their mantis shrimp allies have managed to keep the monsters outside the city for the moment, but they are losing. No sooner are you within the castle walls than the horrifying siege descends!", - "questDilatoryDistress1CollectFireCoral": "Fire Coral", - "questDilatoryDistress1CollectBlueFins": "Blue Fins", + "questDilatoryDistress1CollectFireCoral": "火の珊瑚", + "questDilatoryDistress1CollectBlueFins": "青い鰭", "questDilatoryDistress1DropArmor": "Finned Oceanic Armor (Armor)", "questDilatoryDistress2Text": "Dilatory Distress, Part 2: Creatures of the Crevasse", "questDilatoryDistress2Notes": "The siege can be seen from miles away: thousands of disembodied skulls rushing through a portal in the crevasse walls and making their way towards Dilatory.

When you meet King Manta in his war room, his eyes seem sunken, and his face is worried. \"My daughter Adva disappeared into the Dark Crevasse just before this siege began. Please find her and bring her back home safely! I will lend you my Fire Coral Circlet to aid you. If you succeed, it is yours.\"", @@ -235,30 +235,30 @@ "questDilatoryDistress3Notes": "You follow the mantis shrimps deep into the Crevasse, and discover an underwater fortress. Princess Adva, escorted by more watery skulls, awaits you inside the main hall. \"My father has sent you, has he not? Tell him I refuse to return. I am content to stay here and practice my sorcery. Leave now, or you shall feel the wrath of the ocean's new queen!\" Adva seems very adamant, but as she speaks you notice a strange, ruby pendant on her neck glowing ominously... Perhaps her delusions would cease should you break it?", "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": "Fish (Food)", - "questDilatoryDistress3DropWeapon": "Trident of Crashing Tides (Weapon)", + "questDilatoryDistress3DropFish": "魚 (食料)", + "questDilatoryDistress3DropWeapon": "ざざっと波の三叉(武器)", "questDilatoryDistress3DropShield": "Moonpearl Shield (Shield-Hand Item)", "questCheetahText": "Such a Cheetah", "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!\"", "questCheetahBoss": "チーター", - "questCheetahDropCheetahEgg": "Cheetah (Egg)", + "questCheetahDropCheetahEgg": "チーター(たまご)", "questCheetahUnlockText": "Unlocks purchasable Cheetah eggs in the Market", "questHorseText": "Ride the Night-Mare", "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", - "questHorseDropHorseEgg": "Horse (Egg)", + "questHorseDropHorseEgg": "馬(たまご)", "questHorseUnlockText": "Unlocks purchasable Horse eggs in the Market", "questBurnoutText": "Burnout and the Exhaust Spirits", "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", + "questBurnoutBoss": "焼損", "questBurnoutBossRageTitle": "Exhaust Strike", "questBurnoutBossRageDescription": "When this gauge fills, Burnout will unleash its Exhaust Strike on Habitica!", "questBurnoutDropPhoenixPet": "不死鳥 (ペット)", - "questBurnoutDropPhoenixMount": "不死鳥 (マウント)", + "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!", "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!", @@ -266,13 +266,13 @@ "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", - "questFrogDropFrogEgg": "Frog (Egg)", + "questFrogDropFrogEgg": "カエル(たまご)", "questFrogUnlockText": "Unlocks purchasable Frog eggs in the Market", "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)", + "questSnakeDropSnakeEgg": "蛇(たまご)", "questSnakeUnlockText": "Unlocks purchasable Snake eggs in the Market", "questUnicornText": "Convincing the Unicorn Queen", "questUnicornNotes": "Conquest Creek has become muddied, destroying Habit City's fresh water supply! Luckily, @Lukreja knows an old legend that claims that a unicorn's horn can purify the foulest of waters. Together with your intrepid guide @UncommonCriminal, you hike through the frozen peaks of the Meandering Mountains. Finally, at the icy summit of Mount Habitica itself, you find the Unicorn Queen amid the glittering snows. \"Your pleas are compelling,\" she tells you. \"But first you must prove that you are worthy of my aid!\"", @@ -290,6 +290,23 @@ "questMonkeyNotes": "The Sloensteadi Savannah is being torn apart by the Monstrous Mandrill and his Mischief Monkeys! They shriek loudly enough to drown out the sound of approaching deadlines, encouraging everyone to avoid their duties and keep monkeying around. Alas, plenty of people ape this bad behavior. If no one stops these primates, soon everyone's tasks will be as red as the Monstrous Mandrill's face!

\"It will take a dedicated adventurer to resist them,\" says @yamato.

\"Quick, let's get this monkey off everyone's backs!\" @Oneironaut yells, and you charge into battle.", "questMonkeyCompletion": "You did it! No bananas for those fiends today. Overwhelmed by your diligence, the monkeys flee in panic. \"Look,\" says @Misceo. \"They left a few eggs behind.\"

@Leephon grins. \"Maybe a well-trained pet monkey can help you as much as the wild ones hinder you!\"", "questMonkeyBoss": "Monstrous Mandrill", - "questMonkeyDropMonkeyEgg": "Monkey (Egg)", - "questMonkeyUnlockText": "Unlocks purchasable Monkey eggs in the Market" + "questMonkeyDropMonkeyEgg": "サル(たまご)", + "questMonkeyUnlockText": "Unlocks purchasable Monkey eggs in the Market", + "questSnailText": "The Snail of Drudgery Sludge", + "questSnailNotes": "You're excited to begin questing in the abandoned Dungeons of Drudgery, but as soon as you enter, you feel the ground under your feet start to suck at your boots. You look up to the path ahead and see Habiticans mired in slime. @Overomega yells, \"They have too many unimportant tasks and dailies, and they're getting stuck on things that don't matter! Pull them out!\"

\"You need to find the source of the ooze,\" @Pfeffernusse agrees, \"or the tasks that they cannot accomplish will drag them down forever!\"

Pulling out your weapon, you wade through the gooey mud.... and encounter the fearsome Snail of Drudgery Sludge.", + "questSnailCompletion": "You bring your weapon down on the great Snail's shell, cracking it in two, releasing a flood of water. The slime is washed away, and the Habiticans around you rejoice. \"Look!\" says @Misceo. \"There's a small group of snail eggs in the remnants of the muck.\"", + "questSnailBoss": "Snail of Drudgery Sludge", + "questSnailDropSnailEgg": "カタツムリ(たまご)", + "questSnailUnlockText": "Unlocks purchasable Snail eggs in the Market", + "questBewilderText": "The Be-Wilder", + "questBewilderNotes": "The party begins like any other.

The appetizers are excellent, the music is swinging, and even the dancing elephants have become routine. Habiticans laugh and frolic amid the overflowing floral centerpieces, happy to have a distraction from their least-favorite tasks, and the April Fool whirls among them, eagerly providing an amusing trick here and a witty twist there.

As the Mistiflying clock tower strikes midnight, the April Fool leaps onto the stage to give a speech.

“Friends! Enemies! Tolerant acquaintances! Lend me your ears.” The crowd chuckles as animal ears sprout from their heads, and they pose with their new accessories.

“As you know,” the Fool continues, “my confusing illusions usually only last a single day. But I’m pleased to announce that I’ve discovered a shortcut that will guarantee us non-stop fun, without having to deal with the pesky weight of our responsibilities. Charming Habiticans, meet my magical new friend... the Be-Wilder!”

Lemoness pales suddenly, dropping her hors d'oeuvres. “Wait! Don’t trust--”

But suddenly mists are pouring into the room, glittering and thick, and they swirl around the April Fool, coalescing into cloudy feathers and a stretching neck. The crowd is speechless as an monstrous bird unfolds before them, its wings shimmering with illusions. It lets out a horrible screeching laugh.

“Oh, it has been ages since a Habitican has been foolish enough to summon me! How wonderful it feels, to have a tangible form at last.”

Buzzing in terror, the magic bees of Mistiflying flee the floating city, which sags from the sky. One by one, the brilliant spring flowers wither up and wisp away.

“My dearest friends, why so alarmed?” crows the Be-Wilder, beating its wings. “There’s no need to toil for your rewards any more. I’ll just give you all the things that you desire!”

A rain of coins pours from the sky, hammering into the ground with brutal force, and the crowd screams and flees for cover. “Is this a joke?” Baconsaur shouts, as the gold smashes through windows and shatters roof shingles.

PainterProphet ducks as lightning bolts crackle overhead, and fog blots out the sun. “No! This time, I don’t think it is!”

Quickly, Habiticans, don’t let this World Boss distract us from our goals! Stay focused on the tasks that you need to complete so we can rescue Mistiflying -- and hopefully, ourselves.", + "questBewilderCompletion": "The Be-Wilder is DEFEATED!

We've done it! The Be-Wilder lets out a ululating cry as it twists in the air, shedding feathers like falling rain. Slowly, gradually, it coils into a cloud of sparkling mist. As the newly-revealed sun pierces the fog, it burns away, revealing the coughing, mercifully human forms of Bailey, Matt, Alex.... and the April Fool himself.

Mistiflying is saved!

The April Fool has enough shame to look a bit sheepish. “Oh, hm,” he says. “Perhaps I got a little…. carried away.”

The crowd mutters. Sodden flowers wash up on sidewalks. Somewhere in the distance, a roof collapses with a spectacular splash.

“Er, yes,” the April Fool says. “That is. What I meant to say was, I’m dreadfully sorry.” He heaves a sigh. “I suppose it can’t all be fun and games, after all. It might not hurt to focus occasionally. Maybe I’ll get a head start on next year’s pranking.”

Redphoenix coughs meaningfully.

“I mean, get a head start on this year’s spring cleaning!” the April Fool says. “Nothing to fear, I’ll have Habit City in spit-shape soon. Luckily nobody is better than I at dual-wielding mops.”

Encouraged, the marching band starts up.

It isn’t long before all is back to normal in Habit City. Plus, now that the Be-Wilder has evaporated, the magical bees of Mistiflying bustle back to work, and soon the flowers are blooming and the city is floating once more.

As Habiticans cuddle the magical fuzzy bees, the April Fool’s eyes light up. “Oho, I’ve had a thought! Why don’t you all keep some of these fuzzy Bee Pets and Mounts? It’s a gift that perfectly symbolizes the balance between hard work and sweet rewards, if I’m going to get all boring and allegorical on you.” He winks. “Besides, they don’t have stingers! Fool’s honor.”", + "questBewilderCompletionChat": "`The Be-Wilder is DEFEATED!`\n\nWe've done it! The Be-Wilder lets out a ululating cry as it twists in the air, shedding feathers like falling rain. Slowly, gradually, it coils into a cloud of sparkling mist. As the newly-revealed sun pierces the fog, it burns away, revealing the coughing, mercifully human forms of Bailey, Matt, Alex.... and the April Fool himself.\n\n`Mistiflying is saved!`\n\nThe April Fool has enough shame to look a bit sheepish. “Oh, hm,” he says. “Perhaps I got a little…. carried away.”\n\nThe crowd mutters. Sodden flowers wash up on sidewalks. Somewhere in the distance, a roof collapses with a spectacular splash.\n\n“Er, yes,” the April Fool says. “That is. What I meant to say was, I’m dreadfully sorry.” He heaves a sigh. “I suppose it can’t all be fun and games, after all. It might not hurt to focus occasionally. Maybe I’ll get a head start on next year’s pranking.”\n\nRedphoenix coughs meaningfully.\n\n“I mean, get a head start on this year’s spring cleaning!” the April Fool says. “Nothing to fear, I’ll have Habit City in spit-shape soon. Luckily nobody is better than I at dual-wielding mops.”\n\nEncouraged, the marching band starts up.\n\nIt isn’t long before all is back to normal in Habit City. Plus, now that the Be-Wilder has evaporated, the magical bees of Mistiflying bustle back to work, and soon the flowers are blooming and the city is floating once more.\n\nAs Habiticans cuddle the magical fuzzy bees, the April Fool’s eyes light up. “Oho, I’ve had a thought! Why don’t you all keep some of these fuzzy Bee Pets and Mounts? It’s a gift that perfectly symbolizes the balance between hard work and sweet rewards, if I’m going to get all boring and allegorical on you.” He winks. “Besides, they don’t have stingers! Fool’s honor.”", + "questBewilderBossRageTitle": "Beguilement Strike", + "questBewilderBossRageDescription": "When this gauge fills, The Be-Wilder will unleash its Beguilement Strike on Habitica!", + "questBewilderDropBumblebeePet": "Bumblebee (Pet)", + "questBewilderDropBumblebeeMount": "Bumblebee (Mount)", + "questBewilderBossRageMarket": "`The Be-Wilder uses BEGUILEMENT STRIKE!`\n\nOh no! Despite our best efforts, we've gotten distracted by the Be-Wilder’s charming illusions and have forgotten to do some of our Dailies! With a cackling cry, the shining bird beats its wings, raising a swarm of mist around Alex the Merchant. When the fog clears, he has been possessed! “Have some free samples!” he shouts gleefully, and begins to hurl exploding eggs and potions at fleeing Habiticans. Not the most favorable of sales, to be sure.\n\nHurry! Let's stay focused on our Dailies to defeat this monster before it possesses someone else.", + "questBewilderBossRageStables": "`The Be-Wilder uses BEGUILEMENT STRIKE!`\n\nAhh!!! Once again the Be-Wilder has dazzled us into neglecting our Dailies, and now it has attacked Matt the Beast Master! With a swirl of mist, Matt transforms into a terrifying winged creature, and all the pets and mounts howl sadly in their stables. Quickly, stay focused on your tasks to defeat this dastardly distraction!", + "questBewilderBossRageBailey": "`The Be-Wilder uses BEGUILEMENT STRIKE!`\n\nLook out! In the middle of reporting the news, Bailey the Town Crier has been possessed by the Be-Wilder! She lets out an evil, uninformative screech as she rises into the air. Now how will we know what’s going on?\n\nDon't give up... we're so close to defeating this bothersome bird for once and for all!" } \ No newline at end of file diff --git a/common/locales/ja/rebirth.json b/common/locales/ja/rebirth.json index 27e3e9e7d3..02a291352f 100644 --- a/common/locales/ja/rebirth.json +++ b/common/locales/ja/rebirth.json @@ -1,28 +1,28 @@ { "rebirthNew": "転生: 新しい冒険が始められます!", - "rebirthUnlock": "「転生」機能をアンロックしました!この特別なアイテムを用いることで、今のタスクやアチーブメント、ペットなどの状態を保持したままレベル1からニューゲームを始めることができます。あなたが Habitica においてやれることを全てやりきってしまったと感じたときや、新しい機能を新鮮な目で経験してみたいと思ったときなどは、この機能を用いることで Habitica における新しい人生を始めることができます!", + "rebirthUnlock": "「生まれかわり」の機能を解除しました! この特別なアイテムを市場で買うと、登録したタスクや実績、ペットその他はそのままにレベル1からやり直すことができます。Habitica はやりつくしたとか、はじめたばかりのキャラクターの新鮮な目で、新機能を体験したいなあと感じたら、この機能を使って、新しい命に息を吹きこんでください。", "rebirthBegin": "転生: 新しい冒険をはじめる", - "rebirthStartOver": "Rebirth starts your character over from Level 1.", + "rebirthStartOver": "生まれかわりでキャラクターをレベル 1 からやり直す。", "rebirthAdvList1": "あなたのHPは満タンになります。", - "rebirthAdvList2": "You have no Experience, Gold, or Equipment (with the exception of free items like Mystery items).", - "rebirthAdvList3": "あなたのHabits,、日課、およびTO-DOSは黄色にリセットされ、ストリークはリセットされます。", + "rebirthAdvList2": "経験値、ゴールド、所持品、すべて持っていません ( ミステリーアイテムのような無料のものを除く)。", + "rebirthAdvList3": "習慣、日課、そして To-Do は黄色にリセットされ、連続実施記録もリセットされます。", "rebirthAdvList4": "新しいクラスを獲得するまでは、あなたは初期の戦士クラスです。", "rebirthInherit": "あなたの新しいキャラクターは前のキャラクターからいくつかを引き継ぎます:", "rebirthInList1": "タスク、履歴および設定は残ります。", "rebirthInList2": "チャレンジ、ギルド、そしてパーティー会員登録は残ります。", - "rebirthInList3": "ジェム、後援層、および貢献レベルは残ります。", - "rebirthInList4": "ジェムまたはドロップから得たアイテム (例えばペットや乗り物など) は残りますが、再びロックを解除するまで、それらにアクセスすることはできません。", - "rebirthInList5": "Limited edition equipment you've purchased can be repurchased, even if its event has ended. To repurchase class-specific equipment, you must first change to the correct class.", - "rebirthEarnAchievement": "また新しい冒険を開始するために、実績を獲得しましょう!", + "rebirthInList3": "ジェム、資金提供段位、および貢献段位は残ります。", + "rebirthInList4": "ジェムでの購入または落し物で手に入れたアイテム (例えばペットや乗用獣など) は残りますが、再び機能を解除するまでアクセスできません。", + "rebirthInList5": "購入した限定版の装備は、該当するイベントが終了していても再購入できます。クラス特有のアイテムは、まず適切なクラスに変更しなくてはなりません。", + "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!", + "rebirthAchievement": "あなたは新しい冒険をはじめました! これはあなたの<%= number %>度目の「生まれかわり」 で、あなたが達成した最高レベルは<%= level %>です。この実績を上積みするために、より高いレベルに達したときに、次の新しい冒険をはじめましょう!", + "rebirthAchievement100": "あなたは新しい冒険をはじめました! これはあなたの<%= number %>「生まれかわり」 で、あなたが達成した最高レベルは100以上です。この実績を上積みするために、少なくとも100レベル以上に達したときに、次の新しい冒険をはじめましょう!", "rebirthBegan": "新しい冒険が始まりました", "rebirthText": "<%= rebirths %> 新しい冒険を始めました", - "rebirthOrb": "レベルに達成したらオーブオブリバースを使って再スタートしてください", - "rebirthOrb100": "Used an Orb of Rebirth to start over after attaining Level 100 or higher", - "rebirthPop": "実績、グッズ、およびタスクと履歴を保持して、レベル1で新しいキャラクターを始めます。", + "rebirthOrb": "一定のレベルに達成したので「生まれかわりのオーブ」を使って再スタートしました", + "rebirthOrb100": "レベル100以上に達成したので「生まれかわりのオーブ」を使って再スタートしました", + "rebirthPop": "実績、収集物、およびタスクと履歴を残して、レベル1 の新しいキャラクターではじめます。", "rebirthName": "転生のオーブ", "reborn": "転生しました、最大レベル<%= reLevel %>", - "confirmReborn": "Are you sure?" + "confirmReborn": "本当によろしいですか?" } \ No newline at end of file diff --git a/common/locales/ja/settings.json b/common/locales/ja/settings.json index eb8114db8f..9a612fe0ae 100644 --- a/common/locales/ja/settings.json +++ b/common/locales/ja/settings.json @@ -2,53 +2,53 @@ "settings": "設定", "language": "言語", "americanEnglishGovern": "翻訳の不一致が発生した場合、アメリカ英語版に統一します。", - "helpWithTranslation": "Habiticaの翻訳のお手伝いをしませんか?すばらしい!その時は、こちらのTrelloカードにアクセスしてください。", - "showHeaderPop": "アバター、経験値、HP、パーティを表示する。", + "helpWithTranslation": "Habiticaの翻訳のお手伝いをしませんか? すばらしい! その時は、こちらのTrelloカードにアクセスしてください。", + "showHeaderPop": "アバター、体力・経験値バー、パーティを表示する。", "stickyHeader": "スティッキーヘッダー", - "stickyHeaderPop": "画面の上部にヘッダーを固定します。チェックが外れると、ビュー外にスクロールされるようになります。", + "stickyHeaderPop": "画面の上部にヘッダーを固定します。チェックを外すと、表示領域の外にスクロールしていくようになります。", "newTaskEdit": "新しいタスクを編集モードで開く", - "newTaskEditPop": "このオプションを設定すると、メモやタグなどの詳細を追加するために、新しいタスクがすぐに開きます。", - "dailyDueDefaultView": "日課のデフォルトを'期限'タブに設定する", - "dailyDueDefaultViewPop": "このオプションを設定すると、日課は、'すべて'の代わりに'期限'にデフォルト設定されます", - "reverseChatOrder": "Show chat messages in reverse order", - "startCollapsed": "タスクのタグリストが崩れました", + "newTaskEditPop": "この設定にチェックを入れると、メモやタグなどの詳細を追加するために、新しいタスクがすぐに開きます。", + "dailyDueDefaultView": "日課を標準で「期限」タブに入れる", + "dailyDueDefaultViewPop": "この設定にチェックを入れると、日課は標準で「すべて」タブではなく「期限」タブに入ります。", + "reverseChatOrder": "チャットの順番を逆にする", + "startCollapsed": "タスクのタグ一覧をたたむ", "startCollapsedPop": "このオプションを設定すると、編集のために最初にタスクを開いたときに、タスクのリストタグが非表示になります。", "startAdvCollapsed": "タスクの拡張オプションが崩れました", "startAdvCollapsedPop": "このオプションを設定すると、編集のために最初にタスクを開いたときに、拡張オプションが非表示になります。", - "dontShowAgain": "これを再度表示しません", - "suppressLevelUpModal": "レベルが上がった時にポップアップを表示しません", - "suppressHatchPetModal": "ペットを孵化するときにポップアップを表示しません", - "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": "Baileyを表示する", - "showBaileyPop": "過去のニュースを見直すことができるように、隠れているBailey the Town Crierを表示します。", + "restartTour": "Habitica 開始時に見たガイドを再度スタートする", + "showBailey": "ベイリーを表示する", + "showBaileyPop": "隠れている、広め屋・ベイリーを表示して、過去のニュースを見直す。", "fixVal": "キャラクター設定値を直す", "fixValPop": "手動で健康、レベル、ゴールドのような値を変更します。", "enableClass": "クラスシステムを有効にする", "enableClassPop": "初期設定では、クラスシステムは無効に設定されています。有効にしますか?", "classTourPop": "クラス・システムのツアーを表示する", "resetAccount": "アカウントをリセットする", - "resetAccPop": "全部のレベル、キン、ギア、履歴、業務が削除して始まりなおす", + "resetAccPop": "レベル、ゴールド、所持品、履歴やタスクを削除して、まったく最初からやり直します。", "deleteAccount": "アカウントを削除する", - "deleteAccPop": "Habiticaのアカウントをキャンセルして、削除する。", - "qrCode": "QRコード", - "dataExport": "エクスポート", - "saveData": "ここではハビットのデータを保存する方法のオプションがあります。", - "habitHistory": "ハビット履歴", - "exportHistory": "履歴をエクスポート", - "csv": "(CSV)", - "userData": "ユーザデータ", - "exportUserData": "ユーザデータをエクスポートする", + "deleteAccPop": "Habitica のアカウントを中止して、削除します。", + "qrCode": "QR コード", + "dataExport": "データ エクスポート", + "saveData": "Habitica のデータを何種類かで出力することができます。", + "habitHistory": "Habitica の履歴", + "exportHistory": "履歴をエクスポート : ", + "csv": "(CSV)", + "userData": "ユーザーデータ", + "exportUserData": "ユーザデータをエクスポートする : ", "export": "エクスポート", - "xml": "(XML)", - "json": "(JSON)", - "customDayStart": "カスタムの日の更新", - "changeCustomDayStart": "Change Custom Day Start?", - "sureChangeCustomDayStart": "Are you sure you want to change your custom day start?", - "nextCron": "Your Dailies will next reset the first time you use Habitica after <%= time %>. Make sure you have completed your Dailies before this time!", - "customDayStartInfo1": "Habitica defaults to check and reset your Dailies at midnight in your own time zone each day. You can customize that time here.", + "xml": "(XML)", + "json": "(JSON)", + "customDayStart": "日付更新の設定", + "changeCustomDayStart": "日付更新する時間を変更しますか?", + "sureChangeCustomDayStart": "日付更新する時間を変更します。よろしいですか?", + "nextCron": "あなたの日課が次に更新されるのは <%= time %> です。この時間までに日課を片付けておきましょう!", + "customDayStartInfo1": "Habitica の標準設定では、日課は、毎日あなたのタイム ゾーンでの深夜に更新されます。その時間をカスタマイズします。", "misc": "その他", "showHeader": "ヘッダーを表示する", "changePass": "パスワードを変更する", @@ -60,94 +60,94 @@ "confirmPass": "新しいパスワードを確認する", "newUsername": "新しいログイン名", "dangerZone": "危険地帯", - "resetText1": "ご注意ください‼ これでアカウントの色んなことをリセットします。普通にくじいていますことなんですが、時々これは便利なオプションになるかもしれません。たとえば、いろんなユーザーがHabitになれると始まり直したいから、リセットしたいと思いました。", - "resetText2": "すべてのレベル、ゴールド、経験値を失います。すべてのタスクは完全に削除され、タスクの履歴データをすべて失います。すべての装備を失うことになりますが、既に自分が所有した、すべての限定版の装備または加入者ミステリーアイテムは、すべて買い戻すことがでいます (クラス固有のギアを再購入するには適用クラスになる必要があります)。現在のクラスとあなたのペットと乗り物は維持されます。代わりの選択肢である、オーブオブリバースの使用の方が遥かに安全ですので、ご検討ください。", - "deleteText": "本当によろしいですか? あなたのアカウントを永遠に削除され、復元することはできません! もう一度Habiticaを使用するには、新しいアカウントを登録する必要があります。銀行預金や使用したジェムは返金されません。本当に確実なら、下のテキストボックスに <%= deleteWord %> を入力してください。", - "API": "API", - "APIText": "サードパーティのアプリケーションで使用する際にこれらをコピーして使用してください。しかし、APIトークンはパスワードのようなものなので、公に公開することは危険です。時折ユーザーIDを求められることがありますが、GitHubを含め、他の人が見ることができる場所にはあなたのAPIトークンは絶対に投稿しないでください。", - "APIToken": "API トーケン ( これはあなたのパスワードです - 上の注意事項を確認してください)", - "resetDo": "はい、アカウントのリセットを実行してください!", + "resetText1": "警告‼ この操作で、あなたのアカウントの多くの部分をリセットします。とてもがっかりすることです。しかし、お試しで短時間プレーした初心者ユーザーの一部には便利だと思われます。", + "resetText2": "すべてのレベル、ゴールド、経験値を失います。すべてのタスクは完全に削除され、タスクの履歴データをすべて失います。すべての所持品を失うことになりますが、限定版の装備やミステリー アイテムをふくめすべて買い戻すことができます (クラス固有のギアを再購入するには適用クラスになる必要があります)。現在のクラス、ペットと乗用獣はそのままです。「生まれかわりのオーブ」を使う方が、ずっと安全でタスクも残りますので、ご検討ください。", + "deleteText": "本当にいいのですか? あなたのアカウントは削除され、復元はできません!  もう一度 Habitica を使うには、新しいアカウントを登録しなくてはなりません。取得したジェム、使ったジェムは、返金できません。本当に間違いないのなら、下のテキストボックスに <%= deleteWord %> と入力してください。", + "API": "API", + "APIText": "サードパーティのアプリケーションで使用する際にこちらをコピーしてください。しかし、APIトークンはパスワードのようなもので、公開しないでください。ユーザーIDを求められる場合はありますが、GitHub など他人から見える場所には、APIトークンは絶対に投稿しないでください。", + "APIToken": "API トークン ( これはあなたのパスワードです。 上記の注意をよく読んでください! )", + "resetDo": "はい。アカウントをリセットします!", "fixValues": "設定値を直す", - "fixValuesText1": "バグを見つかって、他の間違ったものがあって場合に( たとえばダメージとか金の数が間違っています) このフィーチャーを使うと自分でキャラクターの数が直せます。そう、これで騙すことが出来ますよ! よく使わないと癖もハビットが悪くなるんです!", - "fixValuesText2": "ここで業務の連続実行が戻せませんです。戻すには、毎日の教務のアドバンスト設定で「連続実行を戻す」のオプションがあります。", - "disabledWinterEvent": "冬のワンダーランドのイベントPt.4時に無効になります(報酬はゴールドが購入可能であるため)。", + "fixValuesText1": "バグに遭遇する、または(受けるべきでないダメージを受けた、実際には稼いでいないゴールドなど)不正にキャラクターを変更するようなミスを犯してしまった場合、ここでその数字を修正することができます。そう、これでズルをすることもできます : この機能は良心に従って使用してください。さもないと、あなたの実生活における習慣づけを放棄することになってしまいます。", + "fixValuesText2": "付記 : 個々のタスクの連続実行を復元することはできません。復元するには、日課の編集画面の拡張設定に、連続実行を復元する欄があります。", + "disabledWinterEvent": "冬のワンダーランド イベント・パート4 の期間中無効にしました(ごほうびがゴールドが購入できるため)。", "fix21Streaks": "21日間の連続達成", "discardChanges": "変更を取り消す", - "deleteDo": "はい、アカウントを削除してください!", + "deleteDo": "はい。アカウントを削除します!", "enterNumber": "0〜24までの数字を入力してください", - "fillAll": "全てのフィールドを記入してください", - "passwordSuccess": "パスワードが変更されました。", - "usernameSuccess": "ログイン名が変更されました。", - "emailSuccess": "メールアドレスが変更されました。", - "detachFacebook": "Facebook連携解除", - "detachedFacebook": "Facebookの連携解除に成功しました", - "addedLocalAuth": "Successfully added local authentication", + "fillAll": "すべてのフィールドを記入してください", + "passwordSuccess": "パスワードを変更しました", + "usernameSuccess": "ログイン名を変更しました", + "emailSuccess": "メールアドレスを変更しました", + "detachFacebook": "Facebook 連携解除", + "detachedFacebook": "Facebook との連携を解除しました", + "addedLocalAuth": "ローカル認証を追加しました", "data": "データ", - "exportData": "データをエクスポートする", + "exportData": "データを出力する", "emailChange1": "あなたのメールアドレスを変更するには、", "emailChange2": "admin@habitica.com", - "emailChange3": "へ、あなたの古いメールアドレスとユーザID、そして新しく使いたいユーザーIDを含め、Eメールを送信してください。", + "emailChange3": "へ、あなたの古いメールアドレスとユーザID、できればユーザーIDを添えて、メールを送信してください。", "usernameOrEmail": "ログイン名またはメールアドレス", "email": "メール", "registeredWithFb": "Facebookで登録", - "loginNameDescription1": "これはHabiticaでのログインに使用するものです。あなたのアバターとチャットのメッセージで表示される名前は、", + "loginNameDescription1": "これは Habitica でのログインに使用するものです。", "loginNameDescription2": "ユーザー->プロフィール", - "loginNameDescription3": "で変更できます。", + "loginNameDescription3": "で、アバターに添えられたり、チャットのメッセージで表示される名前を変更できます。", "emailNotifications": "メール通知", - "wonChallenge": "あなたは挑戦に成功した!", + "wonChallenge": "あなたはチャレンジに成功しました!", "newPM": "プライベートメッセージが届きました", "giftedGems": "贈られたジェム", - "giftedGemsInfo": "<%= name %>から<%= amount %>ジェム", - "giftedSubscription": "送られたサブスクリプション", + "giftedGemsInfo": "<%= name %> より <%= amount %> 個のジェム", + "giftedSubscription": "贈られた寄付(有料利用)", "invitedParty": "パーティへ招待されました", "invitedGuild": "ギルドへ招待されました", - "importantAnnouncements": "あなたのアカウントはアクティベートされていません", - "weeklyRecaps": "ここ一週間のあなたのアカウントのアクティビティ", - "questStarted": "あなたのクエストが始まりました", + "importantAnnouncements": "アカウントが活動的でない", + "weeklyRecaps": "先週の活動概要 (注 : この機能は、現在パフォーマンスの問題が発生し無効になっています。しかし、なるべく早くこの問題を解決し、メールが送れることを願っています!)", + "questStarted": "あなたのクエストがはじまりました", "invitedQuest": "クエストへ招待されました", "kickedGroup": "グループから追い出されました", - "remindersToLogin": "Habiticaへのチェックインをリマインダーする", - "subscribeUsing": "Subscribe using", - "unsubscribedSuccessfully": "サブスクリプションを解除しました!", - "unsubscribedTextUsers": "全てのHabiticaからのメールを購読解除しました。あなたが受け取りたいメールだけをthe settings(ログインが必要)から有効化できます。", - "unsubscribedTextOthers": "Habiticaからの他のメールは受け取らなくなくなります。", - "unsubscribeAllEmails": "メールから購読解除をチェックしてください", - "unsubscribeAllEmailsText": "このボックスをチェックすることで、私は全てのメールを購読解除しHabiticaはサイトや私のアカウントでの重要な変更を決してメールで通知できないことを理解した事を証明します。", - "correctlyUnsubscribedEmailType": "正しくCorrectly unsubscribed from \"<%= emailType %>\" emails.メールから購読解除されました。", - "subscriptionRateText": "Recurring $<%= price %> USD every <%= months %> months", - "recurringText": "recurring", - "benefits": "便益", + "remindersToLogin": "Habitica へのチェックインを通知する", + "subscribeUsing": "寄付の送金方法 : ", + "unsubscribedSuccessfully": "購読を中止しました!", + "unsubscribedTextUsers": "Habitica からのメールをすべて停止しました。受け取りたいメールだけをthe settings(要ログイン)から有効にできます。", + "unsubscribedTextOthers": "Habitica からの他のメールは発信されません。", + "unsubscribeAllEmails": "チェックすると、メールの購読解除", + "unsubscribeAllEmailsText": "私は、このボックスをチェックすることですべてのメールの購読を解除し、 サイトやアカウントの変更についての重要な内容であっても Habitica がメールを通じて私に告知することができなくなることを理解したことを証明します。", + "correctlyUnsubscribedEmailType": "「<%= emailType %>\"」のメールを購読解除しました。", + "subscriptionRateText": "<%= months %>カ月ごとに<%= price %>米ドルずつ", + "recurringText": "毎", + "benefits": "メリット", "coupon": "クーポン", "couponPlaceholder": "クーポンコードを入力してください", - "couponText": "我々は時々Wonderconブースなどのイベントを開催し、特殊装備のプロモコードを配布します。", + "couponText": "イベントをときどき行い、特別なアイテムのクーポン コードを配布しています。( たとえば、Wondercon で私たちのブースを訪れていただいた方向け)", "apply": "適用", "resubscribe": "再購読", "promoCode": "プロモコード", - "promoCodeApplied": "プロモコードが適用されました!所持品を確認してください", + "promoCodeApplied": "プロモコードが適用されました! 所持品を確認してください", "promoPlaceholder": "プロモコードを入力してください", - "displayInviteToPartyWhenPartyIs1": "パーティにメンバーが1人の場合に「パーティに招待する」ボタンを表示する", - "saveCustomDayStart": "Save Custom Day Start", + "displayInviteToPartyWhenPartyIs1": "パーティーのメンバーが1人の場合、「パーティに招待する」ボタンを表示する", + "saveCustomDayStart": "日付更新の時間を保存する", "registration": "登録", - "addLocalAuth": "Add local authentication:", - "generateCodes": "Generate Codes", - "generate": "Generate", - "getCodes": "Get Codes", - "webhooks": "Webhooks", - "enabled": "Enabled", + "addLocalAuth": "ローカル認証を追加 : ", + "generateCodes": "コードを生成する", + "generate": "生成する", + "getCodes": "コードを取得する", + "webhooks": "Webhook", + "enabled": "有効", "webhookURL": "Webhook URL", - "add": "Add", - "buyGemsGoldCap": "Cap raised to <%= amount %>", - "mysticHourglass": "<%= amount %> Mystic Hourglass", - "mysticHourglassText": "Mystic Hourglasses allow purchasing a previous month's Mystery Item set.", - "purchasedPlanId": "Recurring $<%= price %> USD each <%= months %> Month(s) (<%= plan %>)", - "purchasedPlanExtraMonths": "You have <%= months %> months of extra subscription credit.", - "consecutiveSubscription": "Consecutive Subscription", - "consecutiveMonths": "Consecutive Months:", - "gemCapExtra": "Gem Cap Extra:", - "mysticHourglasses": "Mystic Hourglasses:", + "add": "追加する", + "buyGemsGoldCap": "購入可能数が <%= amount %> 個になりました", + "mysticHourglass": "<%= amount %> 個の「神秘の砂時計」", + "mysticHourglassText": "神秘の砂時計は、過去のミステリー アイテムのセットを購入できるようにします。", + "purchasedPlanId": "<%= months %>カ月ごとに<%= price %>米ドルずつ (<%= plan %>)", + "purchasedPlanExtraMonths": "あなたは <%= months %> カ月分の寄付(有料利用)延長クレジットをもっています。", + "consecutiveSubscription": "継続的な寄付", + "consecutiveMonths": "継続月数 : ", + "gemCapExtra": "ジェムコ購入可能数の追加 : ", + "mysticHourglasses": "神秘の砂時計 : ", "paypal": "PayPal", - "amazonPayments": "Amazon Payments", - "timezone": "タイムゾーン", - "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." + "amazonPayments": "Amazon ペイメント", + "timezone": "タイム ゾーン", + "timezoneUTC": "Habitica はお使いのPCに設定されたタイム ゾーンを利用します。現在の設定 : <%= utc %>", + "timezoneInfo": "タイム ゾーンが間違っているなら、まずブラウザの「リロード」もしくは「リフレッシュ」ボタンを使って Habitica の最新状態を取得してください。それでも間違っているなら、あなたのPC または 携帯端末のタイム ゾーンを調整し、再度ページをリロードしてください。

Habitica を別のPCや携帯端末でも使っているなら、すべて同じタイムゾーンを設定しなくてはなりません。 日課が間違った時間に更新されるなら、このチェックをすべてのPCや携帯端末でくり返してください。" } \ No newline at end of file diff --git a/common/locales/ja/spells.json b/common/locales/ja/spells.json index 52128b35f3..d4fddd4b73 100644 --- a/common/locales/ja/spells.json +++ b/common/locales/ja/spells.json @@ -1,5 +1,5 @@ { - "spellWizardFireballText": "炎のバースト", + "spellWizardFireballText": "火炎爆破", "spellWizardFireballNotes": "炎が手から吹き出します。XPを手に入れ、ボスにさらにダメージを与えます!タスクをクリックすることで唱えます。(知性に基づく)", "spellWizardMPHealText": "エーテル波動", "spellWizardMPHealNotes": "友人を助けるために、あなたのマナを犠牲にします。残りのパーティーのメンバー党は、MPを得ます!(知性に基づく)", @@ -7,7 +7,7 @@ "spellWizardEarthNotes": "あなたの精神の力が地面を揺らします。パーティー全員が知性を得ます。(知性に基づく)", "spellWizardFrostText": "酷寒の霜", "spellWizardFrostNotes": "氷があなたのタスクを覆う。あなたの連続実行のいずれも明日ゼロにリセットされない! (一度唱えると全ての連続実行に影響する)", - "spellWarriorSmashText": "ブルータルスマッシュ", + "spellWarriorSmashText": "強烈なスマッシュ", "spellWarriorSmashNotes": "全力でタスクを攻撃する。タスクはより青く、もしくは赤が薄くなり、ボスに追加ダメージを与える! 唱える対象のタスクをクリックしてください。(力に基づく)", "spellWarriorDefensiveStanceText": "守勢の体勢", "spellWarriorDefensiveStanceNotes": "攻め寄るタスクの覚悟をする。体質のバフを獲得!(バフ抜き体質に基づく)", @@ -36,15 +36,15 @@ "spellSpecialSaltText": "塩", "spellSpecialSaltNotes": "雪玉に殴られた。ハハ、とても面白い。誰かこの雪を拭いてくれ!", "spellSpecialSpookDustText": "不気味なきらめき", - "spellSpecialSpookDustNotes": "友達を目が付いてる浮かぶシーツに変えよう!", + "spellSpecialSpookDustNotes": "友達を目が付いた空飛ぶ毛布に変えよう!", "spellSpecialOpaquePotionText": "不透明ポーション", "spellSpecialOpaquePotionNotes": "不気味なきらめきの効果を取り消す。", "spellSpecialShinySeedText": "輝く種", - "spellSpecialShinySeedNotes": "友達を楽しい花に変えよう!", + "spellSpecialShinySeedNotes": "友達を楽しそうな花に変えよう!", "spellSpecialPetalFreePotionText": "花びら消しポーション", "spellSpecialPetalFreePotionNotes": "輝く種の効果を取り消す。", "spellSpecialSeafoamText": "海の泡", "spellSpecialSeafoamNotes": "友達を海の生き物に変えよう!", "spellSpecialSandText": "砂", "spellSpecialSandNotes": "海の泡の効果を取り消す。" -} +} \ No newline at end of file diff --git a/common/locales/ja/subscriber.json b/common/locales/ja/subscriber.json index 03db05a107..9b5737e66b 100644 --- a/common/locales/ja/subscriber.json +++ b/common/locales/ja/subscriber.json @@ -1,39 +1,39 @@ { - "subscription": "購読", - "subscriptions": "購読", - "subDescription": "Buy Gems with gold, get monthly mystery items, retain progress history, double daily drop-caps, support the devs. Click for more info.", - "buyGemsGold": "ジェムをゴールドで購入", - "buyGemsGoldText": "Alexander the Merchant will sell you Gems at a cost of <%= gemCost %> gold per gem. His monthly shipments are initially capped at <%= gemLimit %> Gems per month, but this cap increases by 5 Gems for every three months of consecutive subscription, up to a maximum of 50 Gems per month!", - "retainHistory": "Retain additional history entries", - "retainHistoryText": "Makes completed To-Dos and task history available for longer.", - "doubleDrops": "デイリードロップキャップが二倍になりました", - "doubleDropsText": "早く納屋をコンプリートする!", - "mysteryItem": "Exclusive monthly items", - "mysteryItemText": "毎月アバター用にユニークな化粧品アイテムを受け取るでしょう! さらに継続購読の3ヶ月ごとに、謎のタイムトラベラーズによって、歴史的(そして未来的!)化粧品アイテムへのアクセスが許されるでしょう。", - "supportDevs": "開発者をサポート", - "supportDevsText": "あなたの購読がHabitica繁栄の継続や新機能開発の資金援助を促進します。あなたの気前のよさに感謝します!", - "monthUSD": "ドル / 月", + "subscription": "寄付", + "subscriptions": "寄付", + "subDescription": "ゴールドでジェムを買いましょう。毎月ミステリー アイテムが入手でき、進行の履歴が残り、毎日のアイテムが落ちる確率が倍になり、開発者を支援できます。詳細はクリックで。", + "buyGemsGold": "ゴールドでジェムを購入", + "buyGemsGoldText": "商人・アレクサンダーが、ジェム1個を<%= gemCost %>ゴールドで売ってくれます。アレクサンダーと1ヵ月の間に取り引きできるジェムの数は、最初は<%= gemLimit %>個に限定されています。しかし、寄付の継続3カ月ごとにその数が5個ずつ増えていき、最大で月に50個を買うことができます。", + "retainHistory": "詳細な履歴の保存", + "retainHistoryText": "完了した To-Do やタスクの履歴を、より長期間閲覧可能になります。", + "doubleDrops": "毎日のアイテムが落ちる確率が2倍", + "doubleDropsText": "動物小屋のコンプが早くなる!", + "mysteryItem": "毎月の限定アイテム", + "mysteryItemText": "毎月、アバターを個性的にメークアップするアイテムが手に入ります! さらに寄付の継続3カ月ごとに、謎のタイムトラベラーによって、歴史的(そして未来的!)なメークアップ アイテムへのアクセスが許されます。", + "supportDevs": "開発者を支援する", + "supportDevsText": "あなたの寄付が Habitica の繁栄を維持し、新機能開発の資金になります。あなたのご厚情に感謝します!", + "monthUSD": "米ドル / 月", "organization": "組織", "groupPlans": "企業プラン", - "indivPlan1": "個人は、Habitica のプレーは無料。小さな利益団体も、無料 (または安価)", - "indivPlan2": "は行動変容で参加者のやる気を引き出すために使用することができます。書き込みグループ、アートの課題などを考えてみてください。", - "groupText1": "しかし、グループのリーダーはもっとコントロール、プライバシー、セキュリティ、およびサポートを希望するかもしれません。たとえば、家族、健康やウェルネスのグループ、従業員グループ、およびその他などのグループです。このプランでは、あなたのグループや組織に Habitica のプライベートインスタンスを提供し、安全で独立した", - "groupText2": "追加のプランの特典は下記を参照してください。もっと詳しい情報は私達に問い合わせしてください!", - "planFamily": "ファミリー(近日公開)", - "planGroup": "グループ(近日公開)", + "indivPlan1": "個人向けには Habitica は無料でプレーできます。利益の小さい企業・団体であっても、無料 (または安価)", + "indivPlan2": "は行動を変化させるにあたり、参加者のやる気を引き出すのに使われます。行動変容で参加者のやる気を引き出すために使用することができます。グループでの執筆、芸術分野の課題などでご検討ください。", + "groupText1": "しかし、グループのリーダーによっては、より詳細な管理、プライバシー、セキュリティ、およびサポートを希望されます。そうしたグループの例としては、家族、健康やウェルネスのグループ、従業員グループなどです。このプランでは、あなたのグループや組織に Habitica のプライベートインスタンスを提供し、安全で独立した", + "groupText2": "プランの特典の詳細は下記をご覧ください。より詳しい情報についてはご連絡ください!", + "planFamily": "家族 (近日中)", + "planGroup": "グループ (近日中)", "dedicatedHost": "専用ホスティング", - "dedicatedHostText": "専用ホスティング: Habiticaによってホストされる、あなた自身のデータベースとサーバーをあなたが利用するか、必要に応じて私たちはあなたの組織のネットワークにインストールします。チェックされていない場合は、\"共有ホスティング\" プランを使用します: 独立したHabiticaを実行して、あなたの組織は適切なHabiticaとして同じデータベースを使用します。あなたのメンバーは酒場とギルドから遮蔽されていますが、それでも同じサーバー/データベース上にいます。", - "individualSub": "個人応募", + "dedicatedHostText": "専用ホスティング : 御社・御団体専用にHabitica がデータベースとサーバーをホストする、または御社・御団体のネットワーク内にインストールします。チェックしない場合は「共有ホスティング」 となります。「共有ホスティング」は、Habitca と同じデータベースを使いつつ、独立した Habitica として動作します。御社・御団体のメンバーはキャンプ場やギルドから遮断されますが、同じサーバー及びデータベース上で動作します。", + "individualSub": "個人寄付", "subscribe": "購入", "subscribed": "購入した", - "manageSub": "購読を管理", - "cancelSub": "購読中止", - "canceledSubscription": "Canceled Subscription", - "adminSub": "管理者の購読", - "morePlans": "今後の予定
近日公開", - "organizationSub": "任意団体", - "organizationSubText": "組織のメンバーが、適切に Habitica の外側に参加して、あなたの参加者に焦点を当てます。", - "hostingType": "ホスティングタイプ", + "manageSub": "寄付を管理", + "cancelSub": "寄付の中止", + "canceledSubscription": "中止した寄付", + "adminSub": "管理者の寄付", + "morePlans": "その他のプラン
近日中", + "organizationSub": "プライベートな組織", + "organizationSubText": "組織のメンバーは、Habitica の外部で利用することで、自らの組織の参加者に焦点をあてます。", + "hostingType": "ホスティング タイプ", "hostingTypeText": "共有ホスティングは、Habiticaと相互作用しなくても、あなたの組織が適切なHabiticaと同じデータベースを使用するという意味です。専用は、独自のデータベースとサーバーを得ることを意味します。Habiticaのホストにあなたのサーバ/DBを持つか、私たちはあなた自身のサーバーにインストールするかを選択することができます。", "dedicated": "専用", "customDomain": "カスタムドメイン", @@ -47,70 +47,72 @@ "timeSupportText": "私たちは、トレーニング、バグ、インストール、および機能のリクエストのためのサポートを提供します。", "gameFeatures": "ゲームの特徴", "gold2Gem": "ジェムはゴールドで購入することができます", - "gold2GemText": "Members will be able to purchase Gems with gold, meaning none of your participants need to buy anything with real money.", - "infiniteGem": "Infinite leader Gems", - "infiniteGemText": "We will provide the organization leaders with as many Gems as they need, for things like challenge prizes, guild-creation, etc.", - "notYetPlan": "プランはまだ利用できませんが、クリックして私たちに連絡してください。私たちは更新し続けるでしょう。", + "gold2GemText": "メンバーはゴールドでジェムを買うことができます。つまり、参加したからといって、現実のお金を使わなければならないということはありません。", + "infiniteGem": "無限リーダージェム", + "infiniteGemText": "団体のリーダーには、チャレンジの賞金、ギルドの作成などで使うジェムを必要なだけ提供します。", + "notYetPlan": "プランはまだ利用できませんが、クリックして私たちにご連絡いただけば、今後の情報をお知らせします。", "contactUs": "お問い合わせ", "checkout": "チェックアウト", - "sureCancelSub": "購読が停止されます。よろしいですか?", - "subCanceled": "購読が無効となるのは", - "buyGemsGoldTitle": "To Buy Gems with Gold", - "becomeSubscriber": "Become a Subscriber", - "subGemPop": "あなたはHabiticaに加入していますので、あなたはGoldを使って毎月いくらかジェムを購入することができます。いくつ購入できるかについてはジェムアイコンのコーナーで確認することができます。", - "subGemName": "購読者ジェム", - "freeGemsTitle": "Obtain Gems for Free", - "maxBuyGems": "You have bought all the Gems you can this month. More will become available within the first three days of next month. Thanks for subscribing!", - "buyGemsAllow1": "You can buy", - "buyGemsAllow2": "more Gems this month", - "purchaseGemsSeparately": "Purchase Additional Gems", - "subFreeGemsHow": "Habitica players can earn Gems for free by winning challenges that award Gems as a prize, or as a contributor reward by helping the development of Habitica.", - "seeSubscriptionDetails": "Go to Settings > Subscription to see your subscription details!", - "timeTravelers": "タイムトラベラーズ", + "sureCancelSub": "寄付を停止します。よろしいですか?", + "subCanceled": "寄付が無効となるのは", + "buyGemsGoldTitle": "ゴールドでジェムを買う", + "becomeSubscriber": "寄付会員になる", + "subGemPop": "あなたは Habitica の寄付者ですので、毎月一定のジェムをゴールドで買うことができます。いくつ購入できるかについてはジェム アイコンのコーナーで確認できます。", + "subGemName": "寄付者のジェム", + "freeGemsTitle": "無料でジェムを手に入れる", + "maxBuyGems": "今月購入できる分のジェムをすべてお買い上げいただきています。追加分は来月最初の3日間のうちにご用意できます。ご寄付ありがとうございます!", + "buyGemsAllow1": "今月は特別にあと", + "buyGemsAllow2": "個のジェムを購入できます。", + "purchaseGemsSeparately": "追加のジェムを購入する", + "subFreeGemsHow": "Habitica のプレーヤーは、ジェムが賞金になっているチャレンジや、Habitica への開発協力していただいた貢献者への報酬で、手に入れることができます。", + "seeSubscriptionDetails": "設定 > 寄付 であなたの寄付の詳細を確認できます!", + "timeTravelers": "タイムトラベラー", "timeTravelersTitleNoSub": "<%= linkStartTyler %>タイラー<%= linkEnd %>と<%= linkStartVicky %>ビッキー<%= linkEnd %>", "timeTravelersTitle": "謎のタイムトラベラーズ", - "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.", - "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!", - "mysterySet201402": "Winged Messenger Set", - "mysterySet201403": "Forest Walker Set", - "mysterySet201404": "Twilight Butterfly Set", - "mysterySet201405": "Flame Wielder Set", - "mysterySet201406": "Octomage Set", - "mysterySet201407": "Undersea Explorer Set", - "mysterySet201408": "Sun Sorcerer Set", - "mysterySet201409": "Autumn Strider Set", - "mysterySet201410": "Winged Goblin Set", - "mysterySet201411": "Feast and Fun Set", - "mysterySet201412": "Penguin Set", - "mysterySet201501": "Starry Knight Set", - "mysterySet201502": "Winged Enchanter Set", - "mysterySet201503": "Aquamarine Set", - "mysterySet201504": "Busy Bee Set", - "mysterySet201505": "Green Knight Set", - "mysterySet201506": "Neon Snorkeler Set", - "mysterySet201507": "Rad Surfer Set", - "mysterySet201508": "Cheetah Costume Set", - "mysterySet201509": "Werewolf Set", - "mysterySet201510": "Horned Goblin Set", - "mysterySet201511": "Wood Warrior Set", - "mysterySet201512": "Winter Flame Set", - "mysterySet201601": "Champion of Resolution Set", - "mysterySet301404": "Steampunk Standard Set", - "mysterySet301405": "Steampunk Accessories Set", - "mysterySetwondercon": "Wondercon", + "timeTravelersPopoverNoSub": "謎のタイムトラベラーを呼び出すには、神秘の砂時計が必要です! <%= linkStart %>寄付会員<%= linkEnd %>には寄付の継続3ヵ月ごとに神秘の砂時計1つが与えられます。神秘の砂時計を手に入れたら戻ってきてください。タイム トラベラーが貴重なペットや乗用獣、寄付会員むけの過去の、そしてもしかしたら未来のアイテムを取ってきてくれるでしょう。", + "timeTravelersPopover": "「神秘の砂時計」をお持ちだね? 私たちは喜んで、あなたを過去に連れていってあげよう! ペット、乗用獣、もしくはミステリー アイテムから好きなものを選ぶといい。過去のアイテム セットの一覧は ここで見られるぞ! もし気に入らないなら、私たちのイケてる未来的なスチームパンク セットは気に入るんじゃないか? ", + "timeTravelersAlreadyOwned": "おめでとうございます! タイムトラベラーが現在用意しているすべてのアイテムを手に入れました。サイトへのご支援に感謝します!", + "mysticHourglassPopover": "「神秘の砂時計」は、毎月のミステリー アイテム セットや、世界のボスをやっつけたときの賞金といった特定の期間限定アイテムの過去の分を購入できます。", + "mysterySet201402": "羽のあるメッセンジャー セット", + "mysterySet201403": "森の散策者 セット", + "mysterySet201404": "夕暮れのちょうちょ セット", + "mysterySet201405": "火炎の使い手 セット", + "mysterySet201406": "タコの魔法使い セット", + "mysterySet201407": "海底探検 セット", + "mysterySet201408": "太陽の魔術師 セット", + "mysterySet201409": "秋のハイキング セット", + "mysterySet201410": "羽ゴブリン セット", + "mysterySet201411": "ばか騒ぎ セット", + "mysterySet201412": "ペンギンセット", + "mysterySet201501": "星のナイト セット", + "mysterySet201502": "羽のある魔法使い セット", + "mysterySet201503": "アクアマリン セット", + "mysterySet201504": "忙しいハチ セット", + "mysterySet201505": "緑の騎士 セット", + "mysterySet201506": "ネオンスノーケル セット", + "mysterySet201507": "すごいサーファーセット", + "mysterySet201508": "チーター柄 セット", + "mysterySet201509": "オオカミ男 セット", + "mysterySet201510": "角ゴブリン セット", + "mysterySet201511": "木の戦士 セット", + "mysterySet201512": "冬の炎 セット", + "mysterySet201601": "解決チャンピオン セット", + "mysterySet201602": "夢やぶれて セット", + "mysterySet201603": "幸運のクローバー セット", + "mysterySet301404": "スチームパンク標準 セット", + "mysterySet301405": "スチームパンク アクセサリー セット", + "mysterySetwondercon": "Wondercon イベント", "subUpdateCard": "クレジットカード情報を変更する", "subUpdateTitle": "更新", - "subUpdateDescription": "支払いに使用するクレジットカード情報を変更する", - "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": "このペットは既に飼っています", - "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!" + "subUpdateDescription": "支払いに使用するクレジットカード情報を変更します。", + "notEnoughHourglasses": "神秘の砂時計が足りません。", + "hourglassBuyEquipSetConfirm": "神秘の砂時計 1 個で、このアイテム フルセットを買いますか?", + "hourglassBuyItemConfirm": "神秘の砂時計 1 個で、このアイテムを買いますか?", + "petsAlreadyOwned": "このペットはすでにもっています。", + "mountsAlreadyOwned": "この乗用獣はすでにもっています。", + "typeNotAllowedHourglass": "神秘の砂時計で買えない種類のアイテムです。買える種類 : ", + "petsNotAllowedHourglass": "ペットは神秘の砂時計では買えません。", + "mountsNotAllowedHourglass": "神秘の砂時計で乗用獣は買えません。", + "hourglassPurchase": "神秘の砂時計で、アイテムを買いました!", + "hourglassPurchaseSet": "神秘の砂時計で、アイテム セットを買いました!" } \ No newline at end of file diff --git a/common/locales/ja/tasks.json b/common/locales/ja/tasks.json index 6324ad11c8..9ca615b71d 100644 --- a/common/locales/ja/tasks.json +++ b/common/locales/ja/tasks.json @@ -1,71 +1,71 @@ { "clearCompleted": "削除が完了しました", - "lotOfToDos": "完了したやるべきことタスクは自動的に3日後にアーカイブされます。設定> エクスポートから確認することができます。", - "deleteToDosExplanation": "下のボタンをクリックすると、完了したやるべきことと、アーカイブ済の完了したやるべきことは完全に削除されます。それらの記録を保存しておきたい場合は、まずエクスポートしてください。", + "lotOfToDos": "完了した「To-Do」タスクは自動的に3日後にアーカイブされます。設定> エクスポートで確認できます。", + "deleteToDosExplanation": "下のボタンをクリックすると、完了した「To-Do」と、アーカイブ済の「To-Do」は完全に削除されます。記録を保存しておきたい場合は、まずエクスポートしてください。", "addmultiple": "複数追加", - "addsingle": "一つ追加", - "habit": "Habit", - "habits": "習慣タスク", - "newHabit": "新しいタスク", - "newHabitBulk": "新しい習慣(一行に一つ)", - "yellowred": "弱点", - "greenblue": "強み", + "addsingle": "1件追加", + "habit": "習慣", + "habits": "習慣", + "newHabit": "新しい習慣", + "newHabitBulk": "新しい習慣(1行に1つ)", + "yellowred": "強敵", + "greenblue": "ザコ敵", "edit": "編集", "save": "保存", "addChecklist": "チェックリストを追加", "checklist": "チェックリスト", - "checklistText": "タスクをより小さく分割しよう! チェックリストはToDoリストから得られる経験値とゴールドを増加し、日課を実行しなかった場合のダメージを減少させます。", - "expandCollapse": "展開する/折り畳む", + "checklistText": "タスクをより小さく分割しましょう! To-Do から得られる経験値とゴールドを増やし、日課を実行しなかった場合のダメージを減らすことができます。", + "expandCollapse": "開く・たたむ", "text": "タイトル", - "extraNotes": "追記", - "direction/Actions": "目標/行動", - "advancedOptions": "拡張オプション", + "extraNotes": "メモ", + "direction/Actions": "目標・行動", + "advancedOptions": "詳細設定", "difficulty": "難易度", - "difficultyHelpTitle": "このタスクはどれくらい難しいですか?", - "difficultyHelpContent": "より難しいタスクを実施済みにすると、より多くの経験値とゴールドを得ることができますが... それが未実施の日課や悪い習慣の場合には、より多くのダメージを受けます。", - "trivial": "あさめしまえ", + "difficultyHelpTitle": "このタスクはどれくらい難しいですか?", + "difficultyHelpContent": "タスクが難しいほど、完了するとよりたくさんの経験値やゴールドを手にすることができます。...しかし、日課をさぼったり、悪い習慣をやってしまった場合は、より大きなダメージを受けることになります!", + "trivial": "ちょちょい", "easy": "かんたん", "medium": "ふつう", "hard": "むずかしい", "attributes": "能力値", - "physical": "物理的な", - "mental": "精神的な", - "otherExamples": "例:専門職、趣味、金融関係など", + "physical": "肉体的", + "mental": "精神的", + "otherExamples": "例 : 専門職、趣味、お金に関することなど", "progress": "進捗", - "daily": "Daily", + "daily": "日課", "dailies": "日課", "newDaily": "新しい日課", - "newDailyBulk": "新しい日課(一行に一つ)", + "newDailyBulk": "新しい日課(1行に1つ)", "streakCounter": "連続実行日数カウンター", - "repeat": "繰り返し", - "repeatEvery": "曜日", - "repeatHelpTitle": "どのような間隔で繰り返しますか?", - "dailyRepeatHelpContent": "このタスクは X日ごとに繰り返します。下の欄に、Xの値を入力して下さい。", - "weeklyRepeatHelpContent": "タスクを予定している日は、ハイライトされています。日をクリックすると、有効/無効が設定できます。", + "repeat": "くり返し", + "repeatEvery": "くり返し", + "repeatHelpTitle": "どれぐらいの間隔でくり返しますか?", + "dailyRepeatHelpContent": "このタスクは数日ごとにくり返します。何日ごとにくり返しますか?", + "weeklyRepeatHelpContent": "以下、日課をやるべき曜日をハイライトしています。曜日をクリックして、やるべき曜日・やらないでいい曜日を設定します。", "repeatDays": "X 日ごと", - "repeatWeek": "On Certain Days of the Week", + "repeatWeek": "週の特定の曜日", "day": "日", "days": "日", - "restoreStreak": "連続日数を修正", - "todo": "To-Do", - "todos": "やるべきことタスク", - "newTodo": "新しいやるべきことタスク", - "newTodoBulk": "新しいToDo(一行に一つ)", + "restoreStreak": "連続実施日数を復元", + "todo": "To-do", + "todos": "To-Do", + "newTodo": "新しいTo-Do", + "newTodoBulk": "新しいTo-Do(1行に1つ)", "dueDate": "期限", "remaining": "有効", "complete": "完了", - "dated": "期日切れ", + "dated": "期限過ぎ", "due": "期限", - "notDue": "期限が設定されていません", + "notDue": "期限なし", "grey": "無効", "score": "スコア", - "reward": "Reward", - "rewards": "報酬", - "ingamerewards": "装備&特技", + "reward": "ごほうび", + "rewards": "ごほうび", + "ingamerewards": "アイテム & 特殊能力", "gold": "ゴールド", "silver": "シルバー(100シルバー = 1ゴールド)", - "newReward": "新しい報酬", - "newRewardBulk": "新しい報酬(一行に一つ)", + "newReward": "新しいごほうび", + "newRewardBulk": "新しいごほうび(1行に1つ)", "price": "価格", "tags": "タグ", "editTags": "編集", @@ -74,40 +74,40 @@ "hideTags": "非表示にする", "showTags": "表示する", "startDate": "開始日", - "startDateHelpTitle": "このタスクはいつ始める?", - "startDateHelp": "タスクの期限を設定します。ただし、過去の日付を設定することができません。", - "streakName": "ステータス", + "startDateHelpTitle": "このタスクはいつ始める?", + "startDateHelp": "タスクが効果を発する開始日を設定します。ただし、過去の日付を設定することができません。", + "streakName": "連続実行 実績", "streakText": "<%= streaks %> 個の日課を21日連続で実行しました", - "streakSingular": "Streaker", + "streakSingular": "連続実行者", "streakSingularText": "日課を21日連続で実行しました", - "perfectName": "今日も完璧な一日です", - "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.", - "perfectSingular": "完璧な一日です", - "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.", - "streakerAchievement": "あなたは \"Streaker\" のアチーブメントを手に入れました! 21日間の連続記録は習慣形成においてひとつのマイルストーンです。このタスクや他のタスクについても、引き続き新たな21日連続記録を積み重ねていきましょう!", - "fortifyName": "強化ポーション", + "perfectName": "パーフェクトな日", + "perfectText": "やるべき日課すべてを<%=perfects %>日間、達成しました。この実績により、明日の能力値すべてに「レベル÷2」のボーナスがつきます(レベル100以上の場合はボーナスがつきません)。", + "perfectSingular": "パーフェクトな日", + "perfectSingularText": "やるべき日課をすべて完了しました。この実績により、明日の能力値すべてに「レベル÷2」のボーナスがつきます(レベル100以上の場合はボーナスがつきません)。", + "streakerAchievement": "あなたは「連続実行」の実績を手に入れました! 21日間の連続記録は習慣形成における一つの節目です。この21日連続実行の実績を胸に、今日の日課およびほかのタスクにもとりみつづけましょう!", + "fortifyName": "防御の薬", "fortifyPop": "全てのタスクを通常の状態 (黄色)に戻します。加えて全ての体力を回復させます。", - "fortify": "強化", - "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!", - "confirmFortify": "Are you sure?", - "sureDelete": "Are you sure you want to delete the <%= taskType %> with the text \"<%= taskText %>\"?", + "fortify": "防御", + "fortifyText": "防御は、いままさに追加したようにタスクを通常(黄色)の状態に戻し、体力を満タンにします。赤いタスクがゲームを困難にしすぎていた場合、もしくは青いタスクがゲームを簡単にしすぎていた場合に、これはとても効果的です。はじまり、という響きにはやる気が出るものです。ジェムを使って、救済措置を手に入れましょう!", + "confirmFortify": "本当によろしいですか?", + "sureDelete": "「<%= taskText %>」の<%= taskType %>を削除して、本当によろしいですか?", "streakCoins": "連続実行ボーナス!", - "pushTaskToTop": "Push task to top. Hold ctrl or cmd to push to bottom.", - "emptyTask": "タスクのタイトルをまず入力してください。", - "dailiesRestingInInn": "あなたは宿に泊まっています!日課が未実施でも今晩あなたはダメージを受けません。ですが日課は毎日リフレッシュされます。もしクエスト中であれば、宿をチェックアウトするまでダメージをうけたりアイテムを集めたりできません、ですがあなたのパーティの仲間が日課をスキップしたら、あなたはダメージを受けます。", - "habitHelp1": "よい習慣は、あなたがよく行っている行動です。<%= plusIcon %> をクリックするたびに、良い習慣からコインと経験値を獲得することができます。", - "habitHelp2": "悪い習慣は、あなたが止めたいと思っている行動です。<%= minusIcon %> をクリックするたびに、悪い習慣はHPを減少させます。", - "habitHelp3": "アイディアを得るために、習慣のサンプルをクリックしてみてください!", - "newbieGuild": "ほかにも疑問はありますか?<%= linkStart %>Newbies Guild<%= linkEnd %>で質問して下さい!", - "dailyHelp1": "Dailies repeat <%= emphasisStart %>every day<%= emphasisEnd %> that they are active. Click the <%= pencilIcon %> to change the days a Daily is active.", - "dailyHelp2": "日課を完了できなければ、一日の終りにHPが減少します。", - "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": "To change when your day rolls over, go to <%= linkStart %> Settings > Site<%= linkEnd %> > Custom Day Start.", + "pushTaskToTop": "タスクを一番上に表示します。[ctrl] もしくは [cmd]キーを押しながらクリックすると一番下へ。", + "emptyTask": "まずタスクのタイトルを入力してください。", + "dailiesRestingInInn": "あなたは宿に泊まっています! 今夜は日課が未実施でもダメージを受けません。しかし日課は毎日リフレッシュされます。クエスト中の場合、宿をチェックアウトするまでダメージをうけたりアイテムを集めたりできませんが、パーティの仲間が日課をさぼったら、ボスキャラからのダメージを受けます。", + "habitHelp1": "いい習慣は、あなたがよく行うべきものです。<%= plusIcon %> をクリックするとゴールドと経験値が得られます。", + "habitHelp2": "悪い習慣は、あなたがやめたいと思っていることです。<%= minusIcon %> をクリックすると体力が減ります。", + "habitHelp3": "参考のために、習慣のサンプルをチェックしてみてください!", + "newbieGuild": "ほかに質問はありませんか? <%= linkStart %>初心者ギルド<%= linkEnd %>で質問してみてください!", + "dailyHelp1": "<%= emphasisStart %>毎日<%= emphasisEnd %>くり返し行う日課が有効です。<%= pencilIcon %> をクリックして、日課を実施する日などを編集します。", + "dailyHelp2": "日課を完了できなければ、一日の終りに体力が減少します。", + "dailyHelp3": "日課をさぼると<%= emphasisStart %>より赤く<%= emphasisEnd %>なり、達成すれば<%= emphasisStart %>より青く<%= emphasisEnd %>なります。赤みの強い日課は、それだけ達成したときの稼ぎも、さぼったときのダメージも大きくなります。", + "dailyHelp4": "何時に日付が進むのかを変更するには、 「<%= linkStart %> 設定 > サイト<%= linkEnd %> > 日付更新の設定 」で操作してください。", "dailyHelp5": "アイディアを得るために、 日課のサンプルをクリックして下さい!", "toDoHelp1": "To-Doは黄色からはじまり、完了できない期間が長くなるとより赤く(色が濃く)なります。", "toDoHelp2": "To-DoはHPを減少させません。コインや経験値を獲るだけです。", "toDoHelp3": "To-Doは細かく分割してチェックリストにすることで、おそれは緩和され、獲られるポイントも増加します。", - "toDoHelp4": "For inspiration, check out these sample To-Dos!", + "toDoHelp4": "参考のために、To-Do のサンプルをチェックしてみてください!", "rewardHelp1": "アバターのために購入した装備は、<%= linkStart %>所持品 > 装備<%= linkEnd %>に保存されます。", "rewardHelp2": "装備は、ステータスに効果を与えます。(<%= linkStart %>アバター > ステータス<%= linkEnd %>)", "rewardHelp3": "世界的なイベントの期間中、スペシャルな装備が出現します。", diff --git a/common/locales/nl/backgrounds.json b/common/locales/nl/backgrounds.json index 29425bc6dd..08e7221dc8 100644 --- a/common/locales/nl/backgrounds.json +++ b/common/locales/nl/backgrounds.json @@ -140,11 +140,25 @@ "backgroundSnowmanArmyNotes": "Leid een sneeuwpoppenleger.", "backgroundWinterNightText": "Winternacht", "backgroundWinterNightNotes": "Kijk naar de sterren van een winternacht.", - "backgrounds022016": "SET 21: Released February 2016", - "backgroundBambooForestText": "Bamboo Forest", - "backgroundBambooForestNotes": "Stroll through the Bamboo Forest.", - "backgroundCozyLibraryText": "Cozy Library", - "backgroundCozyLibraryNotes": "Read in the Cozy Library.", - "backgroundGrandStaircaseText": "Grand Staircase", - "backgroundGrandStaircaseNotes": "Stride down the Grand Staircase." + "backgrounds022016": "SET 21: Uitgebracht in februari 2016", + "backgroundBambooForestText": "Bamboe Bos", + "backgroundBambooForestNotes": "Wandel door het Bamboe Bos", + "backgroundCozyLibraryText": "Knusse Bibliotheek", + "backgroundCozyLibraryNotes": "Lees in de Knusse Bibliotheek", + "backgroundGrandStaircaseText": "Staatsietrap", + "backgroundGrandStaircaseNotes": "Schrijd de Staatsietrap af.", + "backgrounds032016": "SET 22: Uitgebracht in maart 2016", + "backgroundDeepMineText": "Diepe Mijn", + "backgroundDeepMineNotes": "Vind kostbare metalen in een Diepe Mijn.", + "backgroundRainforestText": "Regenwoud", + "backgroundRainforestNotes": "Trek een Regenwoud in.", + "backgroundStoneCircleText": "Cirkel van stenen", + "backgroundStoneCircleNotes": "Spreek betoveringen uit in een Cirkel van stenen", + "backgrounds042016": "SET 23: Released April 2016", + "backgroundArcheryRangeText": "Archery Range", + "backgroundArcheryRangeNotes": "Practice on the Archery Range.", + "backgroundGiantFlowersText": "Giant Flowers", + "backgroundGiantFlowersNotes": "Frolic atop Giant Flowers.", + "backgroundRainbowsEndText": "End of the Rainbow", + "backgroundRainbowsEndNotes": "Discover gold at the End of the Rainbow." } \ No newline at end of file diff --git a/common/locales/nl/character.json b/common/locales/nl/character.json index be7c6b0068..72a0582cf0 100644 --- a/common/locales/nl/character.json +++ b/common/locales/nl/character.json @@ -1,7 +1,7 @@ { "statsAch": "Statistieken en prestaties", "profile": "Profiel", - "avatar": "Avatar", + "avatar": "Avatar aanpassen", "other": "Overige", "fullName": "Volledige naam", "displayName": "Weergegeven naam", @@ -34,6 +34,7 @@ "beard": "Baard", "mustache": "Snor", "flower": "Bloem", + "wheelchair": "Wheelchair", "basicSkins": "Basishuidskleuren", "rainbowSkins": "Regenbooghuidskleuren", "pastelSkins": "Pastelhuidskleuren", @@ -83,7 +84,7 @@ "allocateInt": "Punten toegewezen aan Intelligentie:", "allocateIntPop": "Voeg punt toe aan Intelligentie", "noMoreAllocate": "Nu je niveau 100 bent, verdien je geen nieuwe eigenschapspunten meer. Je kunt doorgaan met hogere niveaus bereiken of een nieuw avontuur beginnen vanaf niveau 1 door de Bol der Hergeboorte te gebruiken. Deze is nu gratis te krijgen op de markt.", - "stats": "Statistieken", + "stats": "Statistieken avatar", "strength": "Kracht", "strengthText": "Kracht verhoogt de kans op willekeurige \"voltreffers\" en de extra goud, ervaringspunten, en vondstkans van deze voltreffers. Het helpt ook schade toe te brengen aan eindbazen.", "constitution": "Lichaam", @@ -136,7 +137,7 @@ "respawn": "Herrijs!", "youDied": "Je bent doodgegaan!", "dieText": "Je hebt een niveau, al je goud, en een willekeurig onderdeel van je uitrusting verloren. Herrijs, Habiteer, en probeer het opnieuw! Bedwing die slechte gewoontes, let erop je Dagelijkse Taken bij te houden, en houd de dood van je af met een Gezondheidsdrankje als je wankelt!", - "sureReset": "Weet je het zeker? Dit reset de klasse van je personage en je toegewezen ervaringspunten punten (je krijgt ze allemaal terug om opnieuw toe te wijzen), en het kost 3 edelstenen", + "sureReset": "Weet je het zeker? Dit zal je karakters klasse en toegewezen punten resetten (je krijgt ze allemaal terug om opnieuw toe te wijzen) en kost 3 edelstenen.", "purchaseFor": "Kopen voor <%= cost %> edelstenen?", "notEnoughMana": "Niet genoeg mana.", "invalidTarget": "Ongeldig doel", @@ -160,5 +161,8 @@ "str": "KRA", "con": "LIC", "per": "PER", - "int": "INT" + "int": "INT", + "showQuickAllocation": "Toon verdeling eigenschapspunten", + "hideQuickAllocation": "Verberg verdeling eigenschapspunten", + "quickAllocationLevelPopover": "Met ieder level verdien je een punt om toe te wijzen aan een eigenschap van jouw keuze. Je kunt dit eigenhandig doen of het spel voor je laten bepalen door een van de automatische toewijzingsopties te kiezen in Gebruiker -> Statistieken gebruiker." } \ No newline at end of file diff --git a/common/locales/nl/communityguidelines.json b/common/locales/nl/communityguidelines.json index 84dc045c90..689290064c 100644 --- a/common/locales/nl/communityguidelines.json +++ b/common/locales/nl/communityguidelines.json @@ -29,7 +29,7 @@ "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", - "commGuidePara015": "Habitica heeft twee soorten gemeenschappelijke ruimtes: openbare en besloten. Openbare ruimtes zijn onder andere de herberg, openbare gildes, GitHub, Trello, en de Wiki. Besloten ruimtes zijn de particuliere gildes, groepschat en privéberichten.", + "commGuidePara015": "Habitica heeft twee soorten gemeenschappelijke ruimtes: openbare en besloten. Openbare ruimtes zijn onder andere de herberg, openbare gildes, GitHub, Trello, en de Wiki. Besloten ruimtes zijn de particuliere gildes, groepschat en privéberichten. Alle gebruikersnamen moeten voldoen aan de richtlijnen voor openbare ruimtes. Om je gebruikersnaam te veranderen, ga je op de website naar Gebruiker > Profiel en klik je op de \"Bewerken\" knop.", "commGuidePara016": "In de openbare ruimtes in Habitica gelden enkele regels om iedereen veilig en gelukkig te houden. Voor een avonturier zoals jij zou het niet moeilijk moeten zijn om je eraan te houden!", "commGuidePara017": "Heb respect voor elkaar. Wees netjes, aardig, vriendelijk en behulpzaam. Onthoud dat Habiticanen uit allerlei verschillende culturen komen en enorm uiteenlopende ervaringen gehad hebben. Dit is een onderdeel van wat Habitica zo cool maakt! Het opbouwen van een gemeenschap betekent dat we zowel onze verschillen als onze gelijkenissen moeten respecteren en vieren. Hier zijn een aantal eenvoudige manieren om elkaar te respecteren:", "commGuideList02A": "Houd je aan de algemene voorwaarden.", @@ -40,8 +40,8 @@ "commGuideList02F": "Volg instructies van een beheerder gelijk op als ze je vragen een discussie te staken of naar de Back Corner te verplaatsten. Laatste woorden en goed gemikte afsluiters horen allemaal (op een beleefde manier) aan je \"tafeltje\" in de Back Corner geuit te worden, als dat al toegestaan is.", "commGuideList02G": "Neem de tijd om na te denken in plaats van boos te reageren als iemand je laat weten dat hij of zij zich oncomfortabel voelt bij iets wat je gezegd of gedaan hebt. Oprecht je excuses aan kunnen bieden getuigt van een sterk karakter. Als je vindt dat iemand ongepast op jou reageert, spreek dan een beheerder aan en zet die persoon niet publiekelijk op zijn nummer.", "commGuideList02H": "Rapporteer controversiële of verhitte discussies aan de moderators. Als je vindt dat een gesprek te ruzieachtig, emotioneel of kwetsend wordt, ga er dan niet meer op in. Stuur in plaats daarvan een e-mail naar leslie@habitica.com om ons op de hoogte te stellen. Het is onze taak om je een veilige omgeving te bieden.", - "commGuideList02I": "Stuur geen spam. Onder spam valt onder andere: de zelfde opmerking of vraag op verschillende plekken posten, links posten zonder uitleg of context, nonsensberichten posten, of veel berichten achter elkaar posten. Herhaaldelijk vragen om edelstenen of een abonnement kan ook als spammen gezien worden.", - "commGuidePara019": "In besloten ruimtes hebben gebruikers meer vrijheid om de onderwerpen te bespreken die ze maar willen, maar ze mogen nog steeds de algemene voorwaarden niet overtreden. Plaats dus geen discriminerend, gewelddadig of bedreigend materiaal.", + "commGuideList02I": "Stuur geen spam. Onder spam valt onder andere: de zelfde opmerking of vraag op verschillende plekken posten, links posten zonder uitleg of context, nonsensberichten posten, of veel berichten achter elkaar posten. Herhaaldelijk vragen om edelstenen of een abonnement in een van de chatruimten of via persoonlijke berichten kan ook als spammen gezien worden.", + "commGuidePara019": "In besloten ruimtes hebben gebruikers meer vrijheid om de onderwerpen te bespreken die ze maar willen, maar ze mogen nog steeds de algemene voorwaarden niet overtreden. Plaats dus geen discriminerend, gewelddadig of bedreigend materiaal. Merk op: omdat namen van uitdagingen komen te staan in het publieke profiel van de winnaar, moeten ALLE uitdagingsnamen voldoen aan de richtlijnen voor openbare ruimtes, zelfs als ze verschijnen in een besloten ruimte.", "commGuidePara020": "Er zijn enkele extra richtlijnen voor privéberichten (pm's). Als iemand jou geblokkeerd heeft, neem dan niet ergens anders contact met hem of haar op om te vragen om je te deblokkeren. Stuur geen pm's om iemand om ondersteuning te vragen (omdat het handig is voor de gemeenschap als vragen om hulp of ondersteuning openbaar beantwoord worden). Stuur tenslotte ook geen pm's om iemand om een gift van edelstenen of een abonnement te smeken, want dit valt onder spammen.", "commGuidePara021": "Voor sommige openbare ruimtes in Habitica gelden extra richtlijnen.", "commGuideHeadingTavern": "De herberg", diff --git a/common/locales/nl/content.json b/common/locales/nl/content.json index 448baf5d80..84344edba8 100644 --- a/common/locales/nl/content.json +++ b/common/locales/nl/content.json @@ -31,7 +31,7 @@ "dropEggCactusAdjective": "prikkelbare", "dropEggBearCubText": "Berenwelp", "dropEggBearCubMountText": "Beer", - "dropEggBearCubAdjective": "knuffelige", + "dropEggBearCubAdjective": "een dappere", "questEggGryphonText": "Griffioen", "questEggGryphonMountText": "Griffioen", "questEggGryphonAdjective": "trotse", @@ -46,7 +46,7 @@ "questEggEggAdjective": "kleurrijke", "questEggRatText": "Rat", "questEggRatMountText": "Rat", - "questEggRatAdjective": "vieze", + "questEggRatAdjective": "een sociale", "questEggOctopusText": "Octopus", "questEggOctopusMountText": "Octopus", "questEggOctopusAdjective": "een gladde", @@ -107,9 +107,12 @@ "questEggSabretoothText": "Sabeltandtijger", "questEggSabretoothMountText": "Sabeltandtijger", "questEggSabretoothAdjective": "een woeste", - "questEggMonkeyText": "Monkey", - "questEggMonkeyMountText": "Monkey", - "questEggMonkeyAdjective": "a mischievous", + "questEggMonkeyText": "Aap", + "questEggMonkeyMountText": "Aap", + "questEggMonkeyAdjective": "een ondeugende", + "questEggSnailText": "Slak", + "questEggSnailMountText": "Slak", + "questEggSnailAdjective": "een langzame maar zekere", "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/contrib.json b/common/locales/nl/contrib.json index 52f8d94e50..68b28f8100 100644 --- a/common/locales/nl/contrib.json +++ b/common/locales/nl/contrib.json @@ -28,11 +28,11 @@ "helped": "Heeft Habit geholpen te groeien", "helpedText1": "Heeft Habitica geholpen te groeien door het invullen van", "helpedText2": "deze enquête.", - "hall": "Hal", + "hall": "Hal der Helden", "contribTitle": "Bijdragerstitel (bijv. \"Hoefsmid\")", "contribLevel": "Bijdragersrang", "contribHallText": "1-7 voor normale bijdragers, 8 voor beheerders, 9 voor medewerkers. Dit bepaalt welke voorwerpen, huisdieren en rijdieren beschikbaar zijn. Bepaalt ook de kleur van het naamlabel. Mensen met rang 8 of 9 krijgen automatisch de status van beheerder.", - "hallHeroes": "Hal der Helden", + "hallContributors": "Hal der Bijdragers", "hallPatrons": "Hal der Weldoeners", "rewardUser": "Gebruiker belonen", "UUID": "UUID", @@ -60,5 +60,5 @@ "blurbGuildsPage": "Gildes zijn chatgroepen waar een bepaalde interesse centraal staat. Gildes zijn opgezet door spelers, voor spelers! Zoek naar gildes met de zelfde interesses als die van jou en sluit je erbij aan!", "blurbChallenges": "Uitdagingen worden gemaakt door medespelers. Door mee te doen met een uitdaging krijg je extra taken op je takenlijst. Het winnen van een uitdaging geeft je een prestatie en soms edelstenen als beloning!", "blurbHallPatrons": "Dit is de Hal der Weldoeners. Hier eren we de nobele adventuriers die Habitica hebben gesteund in de Kickstarter. We bedanken ze omdat ze Habitica tot leven hebben gebracht!", - "blurbHallHeroes": "Dit is de Hal der Helden, 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! Lees hier meer. " + "blurbHallContributors": "Dit is de Hal der Bijdragers, waar open-source bijdragers aan Habitica worden geëerd. Door code, kunst, muziek, schrijfwerk of zelfs gewoon behulpzaamheid, hebben zij edelstenen, exclusieve uitrusting, en prestigieuze titels verdient. Jij kunt ook bijdragen aan Habitica! Kijk hier voor meer informatie. " } \ No newline at end of file diff --git a/common/locales/nl/faq.json b/common/locales/nl/faq.json index e6ff429e70..6e18b93102 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 creëer je de taken die je in je dagelijkse leven wil voltooien. Door vervolgens de taken te voltooien in het echte leven en deze af te vinken, verdien je ervaringspunten en goud. Goud wordt gebruikt om uitrusting en sommige voorwerpen te kopen, evenals voor je persoonlijke beloningen. Ervaring zorgt ervoor dat je karakter omhoog gaat in speelniveau en dat je spelinhoud als huisdieren, vaardigheden en queesten vrijspeelt! Voor meer informatie kan je de de stap-voor-stap uitleg van het spel lezen op [Help -> Overview for New Users](https://habitica.com/static/overview).", + "webFaqAnswer0": "Allereerst creëer je de taken die je in je dagelijkse leven wil voltooien. Door vervolgens de taken te voltooien in het echte leven en deze af te vinken, verdien je ervaringspunten en goud. Goud wordt gebruikt om uitrusting en sommige voorwerpen te kopen, evenals persoonlijke beloningen. Ervaring zorgt ervoor dat je karakter omhoog gaat in speelniveau en dat je spelinhoud als huisdieren, vaardigheden en queesten vrijspeelt! Voor meer informatie kan je de de stap-voor-stap uitleg van het spel lezen op [Help -> Overzicht voor nieuwe gebruikers](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.", @@ -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": "If you have a question that isn't on this list or on the [Wiki FAQ](http://habitica.wikia.com/wiki/FAQ), 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 or on the [Wiki FAQ](http://habitica.wikia.com/wiki/FAQ), come ask in the [Newbies Guild](https://habitica.com/#/options/groups/guilds/5481ccf3-5d2d-48a9-a871-70a7380cee5a)! We're happy to help." + "iosFaqStillNeedHelp": "Als je een vraag hebt die niet in deze lijst of op [Wiki FAQ](http://habitica.wikia.com/wiki/FAQ) 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 of op de [Wiki FAQ](http://habitica.wikia.com/wiki/FAQ) staat, vraag het dan in de [Newbies Guild](https://habitica.com/#/options/groups/guilds/5481ccf3-5d2d-48a9-a871-70a7380cee5a)! We willen je graag helpen." } \ No newline at end of file diff --git a/common/locales/nl/front.json b/common/locales/nl/front.json index dbd659c6c3..0ad4debcad 100644 --- a/common/locales/nl/front.json +++ b/common/locales/nl/front.json @@ -124,7 +124,7 @@ "motivate1": "Motiveer jezelf om te doen wat je maar wilt.", "motivate2": "Werk aan je organisatie, je motivatie, en je goudvoorraad!", "passConfirm": "Wachtwoord bevestigen", - "passMan": "In case you are using a password manager (like 1Password) and have problems logging in, try typing your username and password manually.", + "passMan": "Als je een wachtwoordmanager gebruikt (zoals 1Password) en problemen hebt met het inloggen, probeer dan je gebruikersnaam en wachtwoord handmatig in te typen.", "password": "Wachtwoord", "playButton": "Speel", "playButtonFull": "Habitica spelen", @@ -165,7 +165,7 @@ "teams": "Teams", "terms": "algemene voorwaarden", "testimonialHeading": "Wat mensen zeggen...", - "localStorageTryFirst": "If you are experiencing problems with Habitica, click the button below to clear local storage for this website (other websites will not be affected). You will need to log in again after doing this, so first be sure that you know your log-in details, which can be found at Settings -> <%= linkStart %>Site<%= linkEnd %>.", + "localStorageTryFirst": "Als je problemen ondervindt met Habitica, klik dan op de knop hieronder om lokaal opgeslagen gegevens voor deze website te verwijderen (dit heeft geen invloed op andere websites). Nadat je dit gedaan hebt zal je opnieuw moeten inloggen, dus zorg er eerst voor dat je je log-in gegevens kent. Die kan je vinden onder Instellingen -> <%= linkStart %>Site<%= linkEnd %>.", "localStorageTryNext": "Als het probleem blijft bestaan, <%= linkStart %>Meld dan een bug<%= linkEnd %> als je dat nog niet gedaan hebt.", "localStorageClearing": "Verwijdert lokaal opgeslagen gegevens", "localStorageClearingExplanation": "De lokaal opgeslagen gegevens van je browser worden verwijderd. Je zal uitgelogd worden en teruggebracht worden naar de hoofdpagina. Gelieve nog even te wachten.", diff --git a/common/locales/nl/gear.json b/common/locales/nl/gear.json index f31780064a..b2e2866354 100644 --- a/common/locales/nl/gear.json +++ b/common/locales/nl/gear.json @@ -1,4 +1,5 @@ { + "set": "Set", "weapon": "wapen", "weaponBase0Text": "Geen wapen", "weaponBase0Notes": "Geen wapen.", @@ -142,6 +143,14 @@ "weaponSpecialWinter2016MageNotes": "Je bewegingen zijn echt te gek, dat moet wel tovenarij zijn! Verhoogt intelligentie met <%= int %> en perceptie met <%= per%>. Beperkte oplage winteruitrusting 2015-2016.", "weaponSpecialWinter2016HealerText": "Confettikanon", "weaponSpecialWinter2016HealerNotes": "WOEHOE!!!!!!! FIJN WINTER WONDERLAND!!!!!!!! Verhoogt intelligentie met <%= int %>. Beperkte oplage winteruitrusting 2015-2016.", + "weaponSpecialSpring2016RogueText": "Vurige Ballen", + "weaponSpecialSpring2016RogueNotes": "Je hebt de bal, de kegel en het mes onder de knie. Nu ga je verder naar jongleren met vuur! Awoo! Verhoogt kracht met <%= str %>. Beperkte oplage zomer-uitrusting 2016.", + "weaponSpecialSpring2016WarriorText": "Kaashamer", + "weaponSpecialSpring2016WarriorNotes": "Niemand heeft zo veel vrienden als de muis met zachte kazen. Verhoogt kracht met <%= str %>. Beperkte oplage lente-uitrusting 2016", + "weaponSpecialSpring2016MageText": "Staf der Bellen", + "weaponSpecialSpring2016MageNotes": "Abra-kat-dabra! Zo oogverblindend mooi, dat je jezelf misschien wel in een trance brengt! Oeh... Het rinkelt... Verhoogt intelligentie met <%= int %> en perceptie met <%= per %>. Beperkte oplage lente-uitrusting 2016.", + "weaponSpecialSpring2016HealerText": "Lentebloemenstaf", + "weaponSpecialSpring2016HealerNotes": "Met een zwaai en een knipoog breng je de velden en bossen tot bloei! Of tik lastige muizen op het hoofd. Verhoogt intelligentie met <%= int %>. Beperkte oplage lente-uitrusting 2016.", "weaponMystery201411Text": "Feestmaal-hooivork", "weaponMystery201411Notes": "Steek je vijanden neer of neem een schep van je favoriete eten - met deze hooivork kan het allemaal! Verleent geen voordelen. Abonnee-uitrusting november 2014.", "weaponMystery201502Text": "Glimmende gevleugelde staff der liefde alsook wijsheid", @@ -163,7 +172,7 @@ "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.", + "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: Losstaand voorwerp.", "weaponArmoireShepherdsCrookText": "Herdersstaf", "weaponArmoireShepherdsCrookNotes": "Handig voor het hoeden van Griffioenen. Verhoogt Lichaam met <%= con %>. Betoverd Kabinet: Herdersset (voorwerp 1 van 3).", "weaponArmoireCrystalCrescentStaffText": "Kristallen halvemaanstaf", @@ -172,10 +181,14 @@ "weaponArmoireBlueLongbowNotes": "Klaar... Richten... Vuur! Deze boog heeft een geweldig bereik. Verhoogt perceptie met <%= per %>, lichaam met <%= con %>, en kracht met <%= str %>. Betoverd kabinet: Onafhankelijk Voorwerp.", "weaponArmoireGlowingSpearText": "Gloeiende Speer", "weaponArmoireGlowingSpearNotes": "Deze speer hypnotiseert wilde taken zodat je ze de baas kunt. Verhoogt kracht met <%=str %>. Betoverd kabinet: losstaand voorwerp.", - "weaponArmoireBarristerGavelText": "Barrister Gavel", - "weaponArmoireBarristerGavelNotes": "Order! Increases Strength and Constitution by <%= attrs %> each. Enchanted Armoire: Barrister Set (Item 3 of 3).", - "weaponArmoireJesterBatonText": "Jester Baton", - "weaponArmoireJesterBatonNotes": "With a wave of your baton and some witty repartee, even the most complicated situations become clear. Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Jester Set (Item 3 of 3).", + "weaponArmoireBarristerGavelText": "Rechtershamer", + "weaponArmoireBarristerGavelNotes": "Orde! Verhoogt kracht en lichaam elk met <%= attrs %>. Betoverd kabinet: Juridische set (Voorwerp 3 van 3).", + "weaponArmoireJesterBatonText": "Staf van de Joker", + "weaponArmoireJesterBatonNotes": "Met een zwaai van je staf en een gevatte persiflage worden zelfs de meest ingewikkelde situaties helder. Verhoogt intelligentie en perceptie elk met met <%= attrs %>. Betoverd Kabinet: Jokerset (Voorwerp 3 van 3).", + "weaponArmoireMiningPickaxText": "Mijnwerkershouweel", + "weaponArmoireMiningPickaxNotes": "Houw de maximale hoeveelheid goud uit je taken! Verhoogt perceptie met <%= per %>. Betoverd kabinet: Mijnwerkersset (Voorwerp 3 van 3).", + "weaponArmoireBasicLongbowText": "Basic Longbow", + "weaponArmoireBasicLongbowNotes": "A serviceable hand-me-down bow. Increases Strength by <%= str %>. Enchanted Armoire: Basic Archer Set (Item 1 of 3).", "armor": "wapenrusting", "armorBase0Text": "Eenvoudige kleding", "armorBase0Notes": "Normale kleding. Verleent geen voordelen.", @@ -239,10 +252,10 @@ "armorSpecialBirthdayNotes": "Gefeliciteerd met je verjaardag, Habitica! Draag deze absurde feestmantel om deze prachtige dag te vieren. Verleent geen voordelen.", "armorSpecialBirthday2015Text": "Dwaze feestmantel", "armorSpecialBirthday2015Notes": "Gefeliciteerd met je verjaardag, Habitica! Draag deze dwaze feestmantel om deze prachtige dag te vieren. Verleent geen voordelen.", - "armorSpecialBirthday2016Text": "Ridiculous Party Robes", - "armorSpecialBirthday2016Notes": "Happy Birthday, Habitica! Wear these Ridiculous Party Robes to celebrate this wonderful day. Confers no benefit.", + "armorSpecialBirthday2016Text": "Belachelijke Feestgewaden", + "armorSpecialBirthday2016Notes": "Van harte gefeliciteerd, Habitica! Draag deze Belachelijke Feestgewaden om deze mooie dag te vieren. Verleent geen voordelen.", "armorSpecialGaymerxText": "Harnas van de Regenboogkrijger", - "armorSpecialGaymerxNotes": "Om de GamerX conferentie te vieren, deze speciale wapenrusting is gedecoreerd met een stralend, kleurrijk, regenboogpatroon! GaymerX is een game-conventie die LGTBQ en gamen viert en open is voor iedereen.", + "armorSpecialGaymerxNotes": "Om de GamerX-conferentie te vieren is deze speciale wapenrusting gedecoreerd met een stralend, kleurrijk, regenboogpatroon! GaymerX is een game-conventie die LGTBQ en gamen viert en open is voor iedereen.", "armorSpecialSpringRogueText": "Kittig pakje", "armorSpecialSpringRogueNotes": "Onberispelijk verzorgd. Verhoogt Perceptie met <%= per %>. Beperkte oplage lente-uitrusting 2014.", "armorSpecialSpringWarriorText": "Klavertjes-stalen harnas", @@ -307,6 +320,14 @@ "armorSpecialWinter2016MageNotes": "De wijste tovenaar houdt zichzelf goed ingepakt in de winterwind. Verhoogt intelligentie met <%= int %>. Beperkte oplage winteruitrusting 2015-2016.", "armorSpecialWinter2016HealerText": "Feestelijke Feeënmantel", "armorSpecialWinter2016HealerNotes": "Feestelijke Feeën slaan hun lichaamsvleugels om zichzelf ter bescherming terwijl ze hun hoofdvleugels gebruiken om wind te vangen en rond te vliegen in Habitica met snelheden tot wel 100 km/u, pakjes rond te brengen en iedereen met confetti te besproeien. Hoe leuk. Verhoogt Constitutie met <%= con %>. Beperkte oplage winteruitrusting 2015-2016.", + "armorSpecialSpring2016RogueText": "Hondachtig Camouflagepak", + "armorSpecialSpring2016RogueNotes": "Een slimme pup weet dat hij een lichter voorkomen moet kiezen om zich te verbergen wanneer alles groen en levendig is. Verhoogt perceptie met <%= per %>. Beperkte oplage lente-uitrusting 2016.", + "armorSpecialSpring2016WarriorText": "Machtig Maliënkolder", + "armorSpecialSpring2016WarriorNotes": "Hoewel je maar klein bent, ben je vurig! Verhoogt lichaam met <%= con %>. Beperkte oplage lente-uitrusting 2016.", + "armorSpecialSpring2016MageText": "Machtige Malkingewaden", + "armorSpecialSpring2016MageNotes": "Felgekleurd, zodat men niet denkt dat je een necromuizer bent. Verhoogt intelligentie met <%= int %>. Beperkte oplage lente-uitrusting 2016.", + "armorSpecialSpring2016HealerText": "Pluizige Konijnen Kniebroek", + "armorSpecialSpring2016HealerNotes": "Hopperde Hop! Gevonden van heuvel tot heuvel, die hulpbehoevenden genezend. Verhoogt lichaam met <%= con %>. Beperkte oplage lente-uitrusting 2016.", "armorMystery201402Text": "Boodschappersgewaden", "armorMystery201402Notes": "Het gewaad is glinsterend en sterk en heeft vele zakken om brieven te dragen. Verleent geen voordelen. Abonnee-uitrusting februari 2014.", "armorMystery201403Text": "Woudlopersharnas", @@ -341,6 +362,8 @@ "armorMystery201511Notes": "Als je bedenkt dat dit harnas rechtstreeks uit een magische boomstam is gekerfd, zit het nog verrassend lekker. Verleent geen voordelen. Abonnee-uitrusting november 2015.", "armorMystery201512Text": "Koude Vuuruitrusting", "armorMystery201512Notes": "Ontbied de ijzige vlammen van de winter! Verleent geen voordelen. Abonnee-uitrusting december 2015.", + "armorMystery201603Text": "Gelukzalig Pak", + "armorMystery201603Notes": "Dit pak is geweven uit duizenden klavertjes vier! Verleent geen voordelen. Abonnee-uitrusting maart 2016.", "armorMystery301404Text": "Steampunkpak", "armorMystery301404Notes": "Net en zwierig, niet? Verleent geen voordelen. Abonnee-uitrusting februari 3015.", "armorArmoireLunarArmorText": "Kalmerend maanharnas", @@ -359,14 +382,18 @@ "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: Herdersset (Voorwerp 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 (Voorwerp 3 van 3).", - "armorArmoireCrystalCrescentRobesText": "Kristallen halvemaanmantel", + "armorArmoireCrystalCrescentRobesText": "Kristallen Halvemaansmantel", "armorArmoireCrystalCrescentRobesNotes": "Deze magische mantel is 's nachts lichtgevend. Verhoogt lichaam en perceptie elk met <%= attrs %> . Betoverd kabinet: Kristallen halvemaanset (Voorwerp 2 van 3).", "armorArmoireDragonTamerArmorText": "Drakentemmer Harnas", - "armorArmoireDragonTamerArmorNotes": "Dit stevige harnas is ondoordringbaar door vlammen. Verhoogt Lichaam met <%= con %>. Betoverd Kabinet: Drakentemmer Set (Voorwerp 3 van 3).", - "armorArmoireBarristerRobesText": "Barrister Robes", - "armorArmoireBarristerRobesNotes": "Very serious and stately. Increases Constitution by <%= con %>. Enchanted Armoire: Barrister Set (Item 2 of 3).", - "armorArmoireJesterCostumeText": "Jester Costume", - "armorArmoireJesterCostumeNotes": "Tra-la-la! Despite the look of this costume, you are no fool. Increases Intelligence by <%= int %>. Enchanted Armoire: Jester Set (Item 2 of 3).", + "armorArmoireDragonTamerArmorNotes": "Dit stevige harnas is ondoordringbaar voor vlammen. Verhoogt lichaam met <%= con %>. Betoverd kabinet: Drakentemmer set (Voorwerp 3 van 3).", + "armorArmoireBarristerRobesText": "Rechterstoga", + "armorArmoireBarristerRobesNotes": "Erg serieus en statig. Verhoogt lichaam met <%= con %>. Betoverd kabinet: Juridische set (Voorwerp 2 van 3).", + "armorArmoireJesterCostumeText": "Jokerkostuum", + "armorArmoireJesterCostumeNotes": "Tra-la-la! Anders dan dit kostuum doet vermoeden, ben je geen dwaas. Verhoogt intelligentie met <%= int %>. Betoverd kabinet: jokerset (voorwerp 2 van 3).", + "armorArmoireMinerOverallsText": "Mijnwerkersoveral", + "armorArmoireMinerOverallsNotes": "Ze zien er misschien afgedragen uit, maar je zijn betoverd om modder af te stoten. Verhoogt lichaam met <%= con %>. Betoverd kabinet: Mijnwerkersset (Voorwerp 2 van 3).", + "armorArmoireBasicArcherArmorText": "Basic Archer Armor", + "armorArmoireBasicArcherArmorNotes": "This camouflaged vest lets you slip unnoticed through the forests. Increases Perception by <%= per %>. Enchanted Armoire: Basic Archer Set (Item 2 of 3).", "headgear": "hoofdbescherming", "headBase0Text": "Geen helm", "headBase0Notes": "Geen hoofdbescherming.", @@ -479,7 +506,7 @@ "headSpecialSummer2015HealerText": "Zeemanspet", "headSpecialSummer2015HealerNotes": "Met je zeemanspet stevig op je hoofd geplant kun je zelfs de meest stormachtige zeeën trotseren. Verhoogt Intelligentie met <%= int %>. Beperkte oplage zomeruitrusting 2015.", "headSpecialFall2015RogueText": "Vleermuisvleugels", - "headSpecialFall2015RogueNotes": "Vind je vijanden met echolocatie door deze krachtige helm! verhoogt perceptie met <%= per %>. Beperkte oplage herfstuitrusting 2015.", + "headSpecialFall2015RogueNotes": "Vind je vijanden met echolocatie door deze krachtige helm! Verhoogt perceptie met <%= per %>. Beperkte oplage herfstuitrusting 2015.", "headSpecialFall2015WarriorText": "Vogelverschikkershoed", "headSpecialFall2015WarriorNotes": "Iedereen zou deze hoed willen--als ze nou maar een brein hadden. Verhoogt kracht met <%= str %>. Beperkte oplage herfstuitrusting 2015.", "headSpecialFall2015MageText": "Gestikte hoed", @@ -489,15 +516,23 @@ "headSpecialNye2015Text": "Belachelijke feesthoed", "headSpecialNye2015Notes": "Je hebt een Belachelijke feesthoed ontvangen! Draag hem met trots wanneer je het nieuwe jaar inluidt! Verleent geen voordelen.", "headSpecialWinter2016RogueText": "Cacao helm", - "headSpecialWinter2016RogueNotes": "De beschermende sjaal op deze knusse helm wordt alleen verwijderd om aan warme winterdranken te nippen. Verhoogt Perceptie met <%= per %>. Beperkte oplage winteruitrusting 2015-2016.", + "headSpecialWinter2016RogueNotes": "De beschermende sjaal op deze knusse helm wordt alleen verwijderd om aan warme winterdranken te nippen. Verhoogt perceptie met <%= per %>. Beperkte oplage winteruitrusting 2015-2016.", "headSpecialWinter2016WarriorText": "Sneeuwmannenmuts", - "headSpecialWinter2016WarriorNotes": "Brr! Deze machtige helm is echt krachtig.. totdat hij smelt. Verhoogt Kracht met <%= str %>. Beperkte oplage winteruitrusting 2015-2016.", + "headSpecialWinter2016WarriorNotes": "Brr! Deze machtige helm is echt krachtig.. totdat hij smelt. Verhoogt kracht met <%= str %>. Beperkte oplage winteruitrusting 2015-2016.", "headSpecialWinter2016MageText": "Snowboarderskap", - "headSpecialWinter2016MageNotes": "Houdt de sneeuw uit je ogen terwijl je spreuken uitspreekt. Verhoogt Perceptie met <%= per %>. Beperkte oplage winteruitrusting 2015-2016.", + "headSpecialWinter2016MageNotes": "Houdt de sneeuw uit je ogen terwijl je spreuken uitspreekt. Verhoogt perceptie met <%= per %>. Beperkte oplage winteruitrusting 2015-2016.", "headSpecialWinter2016HealerText": "Feeeënvleugelhelm", - "headSpecialWinter2016HealerNotes": "Dezevleugelsfladderenzosneldatzevervagen! Verhoogt Intelligentie met <%= int %>. Beperkte oplage winteruitrusting 2015-2016.", + "headSpecialWinter2016HealerNotes": "Dezevleugelsfladderenzosneldatzevervagen! Verhoogt intelligentie met <%= int %>. Beperkte oplage winteruitrusting 2015-2016.", + "headSpecialSpring2016RogueText": "Goed Hondje Masker", + "headSpecialSpring2016RogueNotes": "Aww, wat een schattige puppy! Kom hier en laat me je hoofd aaien. ...Hé, waar is al mijn geld heen? Verhoogt perceptie met <%= per %>. Beperkte oplage lente-uitrusting 2016.", + "headSpecialSpring2016WarriorText": "Muizen Bewakershelm", + "headSpecialSpring2016WarriorNotes": "Niemaals weer zul je op het hoofd gebopt worden! Laat ze het maar proberen! Verhoogt kracht met <%= str %>. Beperkte oplage lente-uitrusting 2016.", + "headSpecialSpring2016MageText": "Machtige Malkinhoed", + "headSpecialSpring2016MageNotes": "Kledij om je boven de gewone straat-magiërs van de wereld te zetten. Verhoogt perceptie met <%= per %>. Beperkte oplage lente-uitrusting 2016.", + "headSpecialSpring2016HealerText": "Bloesem Diadeem", + "headSpecialSpring2016HealerNotes": "Het glimt met de potentie van nieuw leven dat klaar is om voort te schieten. Verhoogt intelligentie met <%= int %>. Beperkte oplage lente-uitrusting 2016.", "headSpecialGaymerxText": "Helm van de Regenboogkrijger", - "headSpecialGaymerxNotes": "Om de GamerX conferentie te vieren, deze speciale helm is gedecoreerd met een stralend, kleurrijk, regenboogpatroon! GaymerX is een game-conventie die LGTBQ en gamen viert en open is voor iedereen.", + "headSpecialGaymerxNotes": "Om de GamerX conferentie te vieren, is deze speciale helm gedecoreerd met een stralend, kleurrijk, regenboogpatroon! GaymerX is een game-conventie die LGTBQ en gamen viert en open is voor iedereen.", "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", @@ -524,8 +559,12 @@ "headMystery201511Notes": "Tel het aantal ringen om te leren hoe oud deze kroon is. Verleent geen voordelen. Abonnee-uitrusting november 2015.", "headMystery201512Text": "Wintervuur", "headMystery201512Notes": "Deze vlammen branden koud met zuiver intellect. Verleent geen voordelen. Abonnee-uitrusting december 2015.", - "headMystery201601Text": "Helm of True Resolve", - "headMystery201601Notes": "Stay resolute, brave champion! Confers no benefit. January 2016 Subscriber Item.", + "headMystery201601Text": "Helm van ware Wilskracht", + "headMystery201601Notes": "Blijf vastberaden, dappere held! Verleent geen voordelen. Abonnee-uitrusting januari 2016.", + "headMystery201602Text": "Hoed van de Hartenbreker", + "headMystery201602Notes": "Bescherm je identiteit voor al je aanbidders. Verleent geen voordelen. Abonnee-uitrusting februari 2016.", + "headMystery201603Text": "Gelukzalige Hoed", + "headMystery201603Notes": "Deze hoge hoed is een magische geluksbedel. Verleent geen voordelen. Abonnee-uitrusting maart 2016.", "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", @@ -543,15 +582,15 @@ "headArmoireBlueHairbowText": "Blauwe strik", "headArmoireBlueHairbowNotes": "Word scherpzinnig, onverzettelijk en slim terwijl je deze prachtige blauwe strik draagt! Verhoogt Perceptie met <%= per %>, Lichaam met <%= con %> en Intelligentie met <%= int %>. Betoverd kabinet: losstaand voorwerp.", "headArmoireRoyalCrownText": "Koninklijke kroon", - "headArmoireRoyalCrownNotes": "Hoezee voor de vorst, machtig en sterk! Verhoogt Kracht met <%= str %>. Betoverd kabinet: Koninklijke set (Voorwerp 1 van 3).", + "headArmoireRoyalCrownNotes": "Hoezee voor de vorst, machtig en sterk! Verhoogt kracht met <%= str %>. Betoverd kabinet: Koninklijke set (Voorwerp 1 van 3).", "headArmoireGoldenLaurelsText": "Gouden laurier", - "headArmoireGoldenLaurelsNotes": "Deze gouden laurieren belonen hen die slechte gewoonten hebben overwonnen. Verhoogt Perceptie en Lichaam met elk <%= attrs %>. Betoverd kabinet: Gouden Togaset (Onderdeel 2 van 3).", + "headArmoireGoldenLaurelsNotes": "Deze gouden laurieren belonen hen die slechte gewoonten hebben overwonnen. Verhoogt perceptie en lichaam elk met <%= attrs %>. Betoverd kabinet: Gouden togaset (Voorwerp 2 van 3).", "headArmoireHornedIronHelmText": "Gehoornde ijzeren helm", - "headArmoireHornedIronHelmNotes": "Deze gehoornde helm is van heftig gehamerd ijzer waardoor het bijna onmogelijk is om het kapot te krijgen. Verhoogt Lichaam met <%= con %> en Kracht met <%= str %> . Betoverd Kabinet: Gehoornde Yzerset (Onderdeel 1 van 3)", + "headArmoireHornedIronHelmNotes": "Deze gehoornde helm is van heftig gehamerd ijzer waardoor het bijna onmogelijk is om het kapot te krijgen. Verhoogt Lichaam met <%= con %> en Kracht met <%= str %> . Betoverd Kabinet: Gehoornde ijzerset (Onderdeel 1 van 3)", "headArmoireYellowHairbowText": "Gele strik", - "headArmoireYellowHairbowNotes": "Wordt opmerkzaam, sterk en slim terwijl je deze beeldschone gele strik draagt! Verhoogt perceptie, kracht en intelligentie elk met <%= attrs %>. Betoverd Kabinet: Onafhankelijk Voorwerp.", + "headArmoireYellowHairbowNotes": "Word opmerkzaam, sterk en slim terwijl je deze beeldschone Gele Strik draagt! Verhoogt perceptie, kracht en intelligentie elk met <%= attrs %>. Betoverd kabinet: Onafhankelijk voorwerp.", "headArmoireRedFloppyHatText": "Slappe rode hoed", - "headArmoireRedFloppyHatNotes": "Vele spreuken zijn genaaid in deze eenvoudige hoed, daardoor kreeg het deze stralende rode kleur. Verhoogt Lichaam, Intelligentie en Perceptie elk met <%= attrs%>. Betoverd kabinet: Onafhankelijk voorwerp.", + "headArmoireRedFloppyHatNotes": "Vele spreuken zijn genaaid in deze eenvoudige hoed, daardoor kreeg het deze stralende rode kleur. Verhoogt lichaam, intelligentie en perceptie elk met <%= attrs%>. Betoverd kabinet: Onafhankelijk voorwerp.", "headArmoirePlagueDoctorHatText": "Pestmeestershoed", "headArmoirePlagueDoctorHatNotes": "Een authentieke hoed die nog gedragen werd door dokters tijdens de procastinatiepest! Verhoogt Kracht met <%= str %>, Intelligentie met <%= int %> en Lichaam met <%= con %> Betoverd kabinet: pestmeesterset (voorwerp 1 van 3).", "headArmoireBlackCatText": "Zwarte kattenhoed", @@ -559,17 +598,21 @@ "headArmoireOrangeCatText": "Oranje kattenhoed", "headArmoireOrangeCatNotes": "Deze oranje hoed is... aan het spinnen. En zwaait met zijn staart. En ademt? Ja, je hebt gewoon een slapende kat op je hoofd. Verhoogt kracht en lichaam elk met <%= attrs %>. Betoverd kabinet: Onafhankelijk voorwerp.", "headArmoireBlueFloppyHatText": "Blauwe flaphoed", - "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.", + "headArmoireBlueFloppyHatNotes": "Vele spreuken zijn in deze eenvoudige hoed genaaid, 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": "Kristallen halvemaanhoed", + "headArmoireShepherdHeaddressNotes": "Soms houden jouw griffioenen ervan om van deze hoofdtooi te snoepen, maar het maakt je desondanks intelligenter. Verhoogt Intelligentie met <%= int %>. Betoverd kabinet: Herder set (Voorwerp 3 van 3). ", + "headArmoireCrystalCrescentHatText": "Kristallen Halvemaanhoed", "headArmoireCrystalCrescentHatNotes": "Het patroon op deze hoed neemt toe en af met de fases van de maan. Verhoogt intelligentie en perceptie elk met <%= attrs %>. Betoverd kabinet: Kristallen halvemaanset (Voorwerp 1 van 3).", "headArmoireDragonTamerHelmText": "Drakentemmer Helm", - "headArmoireDragonTamerHelmNotes": "Je ziet er helemaal uit als een draak. De perfecte camouflage... Verhoogt Intelligentie met <%= int %>. Betoverd Kabinet: Drakentemmer Set (voorwerp 1 van 3).", - "headArmoireBarristerWigText": "Barrister Wig", - "headArmoireBarristerWigNotes": "This bouncy wig is enough to frighten away even the fiercest foe. Increases Strength by <%= str %>. Enchanted Armoire: Barrister Set (Item 1 of 3).", - "headArmoireJesterCapText": "Jester Cap", - "headArmoireJesterCapNotes": "The bells on this hat might distract your opponents, but they just help you focus. Increases Perception by <%= per %>. Enchanted Armoire: Jester Set (Item 1 of 3).", + "headArmoireDragonTamerHelmNotes": "Je ziet er helemaal uit als een draak. De perfecte camouflage... Verhoogt intelligentie met <%= int %>. Betoverd kabinet: Drakentemmerset (Voorwerp 1 van 3).", + "headArmoireBarristerWigText": "Rechterspruik", + "headArmoireBarristerWigNotes": "Deze verende pruik is genoeg om zelfs de meest meedogenloze vijand in angst te laten vluchten. Verhoogt kracht met <%= str %>. Betoverd kabinet: Juridische set (Voorwerp 1 van 3).", + "headArmoireJesterCapText": "Kap van de Joker", + "headArmoireJesterCapNotes": "De belletjes op deze hoed leiden je tegenstanders misschien af, maar ze helpen jou om te focussen. Verhoogt perceptie met <%= per %>. Betoverd kabinet: Jokerset (Voorwerp 1 van 3). ", + "headArmoireMinerHelmetText": "Mijnwerkershelm", + "headArmoireMinerHelmetNotes": "Bescherm je hoofd tegen vallende taken! Verhoogt intelligentie met <%= int %>. Betoverd kabinet: Mijnwerker set (Voorwerp 1 van 3).", + "headArmoireBasicArcherCapText": "Basic Archer Cap", + "headArmoireBasicArcherCapNotes": "No archer would be complete without a jaunty cap! Increases Perception by <%= per %>. Enchanted Armoire: Basic Archer Set (Item 3 of 3).", "offhand": "artikel voor schildhand", "shieldBase0Text": "Geen uitrusting voor schildhand", "shieldBase0Notes": "Geen schild of tweede wapen.", @@ -642,19 +685,25 @@ "shieldSpecialSummer2015HealerText": "Stevig schild", "shieldSpecialSummer2015HealerNotes": "Gebruik dit schild om scheepsratten aan de kant te beuken. Verhoogt Lichaam met <%= con %>. Beperkte oplage zomeruitrusting 2015.", "shieldSpecialFall2015RogueText": "Vleermuisbijl", - "shieldSpecialFall2015RogueNotes": "Angstige dagelijkse taken vrezen het meppen van deze bijl. Verhoogt kracht met <%= str %>. Beperkte oplage herfstuitrusting 2015.", + "shieldSpecialFall2015RogueNotes": "Angstige to-do's vrezen het meppen van deze bijl. Verhoogt kracht met <%= str %>. Beperkte oplage herfstuitrusting 2015.", "shieldSpecialFall2015WarriorText": "Tas met vogelzaad", - "shieldSpecialFall2015WarriorNotes": "Het is waar dat je de kraaien BANG moet maken, maar er is niets mis met vrienden maken! Verhoogt lichaam met <%= con %>. Beperkte oplage 2015 herfstuitrusting.", + "shieldSpecialFall2015WarriorNotes": "Het is waar dat je de kraaien BANG zou moeten maken, maar er is niets mis met vrienden maken! Verhoogt lichaam met <%= con %>. Beperkte oplage herfstuitrusting 2015.", "shieldSpecialFall2015HealerText": "Roerstok", - "shieldSpecialFall2015HealerNotes": "Deze stok kan alles roeren zonder te smelten, op te lossen of vlam te vatten! Het kan ook gebruikt worden om fel te prikken in vijandige taken. Verhoogt lichaam met <%= con %>. Beperkte oplage 2015 herfstuitrusting.", - "shieldSpecialWinter2016RogueText": "Tas met chocolademelk", - "shieldSpecialWinter2016RogueNotes": "Een verwarmend drankje, of een kokend projectiel? Jij beslist... Verhoogt Krach met<%= str %>.", - "shieldSpecialWinter2016WarriorText": "Slee schild", - "shieldSpecialWinter2016WarriorNotes": "Gebruik deze slee om aanvallen te blokkeren, of rijd hem triomfantelijk de strijd in! Verhoogt Lichaam met <% = con%>. Beperkte oplage winteruitrusting 2015-2016.", - "shieldSpecialWinter2016HealerText": "Cadeau van een elf", + "shieldSpecialFall2015HealerNotes": "Deze stok kan alles roeren zonder te smelten, op te lossen of vlam te vatten! Het kan ook gebruikt worden om fel te prikken in vijandige taken. Verhoogt lichaam met <%= con %>. Beperkte oplage herfstuitrusting 2015.", + "shieldSpecialWinter2016RogueText": "Mok met chocolademelk", + "shieldSpecialWinter2016RogueNotes": "Een verwarmend drankje, of een kokend projectiel? Jij beslist... Verhoogt kracht met<%= str %>. Beperkte oplage winteruitrusting 2015-2016.", + "shieldSpecialWinter2016WarriorText": "Slee Schild", + "shieldSpecialWinter2016WarriorNotes": "Gebruik deze slee om aanvallen te blokkeren, of rijd hem triomfantelijk de strijd in! Verhoogt lichaam met <% = con%>. Beperkte oplage winteruitrusting 2015-2016.", + "shieldSpecialWinter2016HealerText": "Pixie Presentje", "shieldSpecialWinter2016HealerNotes": "Open het open het open het open het open het open het!!!!!!!!! Verhoogt lichaam met <%= con %>. Beperkte oplage winteruitrusting 2015-2016.", - "shieldMystery201601Text": "Resolution Slayer", - "shieldMystery201601Notes": "This blade can be used to parry away all distractions. Confers no benefit. January 2016 Subscriber Item.", + "shieldSpecialSpring2016RogueText": "Vurige Ballen", + "shieldSpecialSpring2016RogueNotes": "Je hebt de bal, de kegel en het mes onder de knie. Nu ga je verder naar het jongleren met vuur! Awoo! Verhoogt kracht met <%= str %>. Beperkte oplage lente-uitrusting 2016.", + "shieldSpecialSpring2016WarriorText": "Kaaswiel", + "shieldSpecialSpring2016WarriorNotes": "Je hebt duivelse vallen overleeft om dit defensieve eten te verkrijgen. Verhoogt lichaam met <%= con %>. Beperkte oplage lente-uitrusting 2016.", + "shieldSpecialSpring2016HealerText": "Bloemen Buckler", + "shieldSpecialSpring2016HealerNotes": "De Één-aprilzot zegt dat dit kleine schild Glanzende Zaadjes blokkeert. Geloof hem niet. Verhoogt lichaam met <%= con %>. Beperkte oplage lente-uitrusting 2016.", + "shieldMystery201601Text": "Slachter van Voornemens", + "shieldMystery201601Notes": "Dit zwaard kan gebruikt worden om alle afleidingen af te weren. Geeft geen voordelen. Abonnee-uitrusting januari 2016.", "shieldMystery301405Text": "Klokkenschild", "shieldMystery301405Notes": "Je hebt alle tijd van de wereld met dit enorme klokkenschild! Verleent geen voordelen. Abonnee-uitrusting juni 3015.", "shieldArmoireGladiatorShieldText": "Gladiatorenschild", @@ -662,9 +711,11 @@ "shieldArmoireMidnightShieldText": "Schild van Middernacht", "shieldArmoireMidnightShieldNotes": "Dit schild is klokslag middernacht het meest krachtig! Verhoogt lichaam met <%= con %> en kracht met <%= str %>. Betoverd kabinet: Onafhankelijk voorwerp.", "shieldArmoireRoyalCaneText": "Koninklijke Wandelstok", - "shieldArmoireRoyalCaneNotes": "Hulde voor de leider, waard om bezongen te worden! Verhoogt lichaam, intelligentie en perceptie elk met <%= attrs %>. Betoverd Kabinet: Koninklijke set (voorwerp 2 van 3).", + "shieldArmoireRoyalCaneNotes": "Hulde voor de leider, waard om bezongen te worden! Verhoogt lichaam, intelligentie en perceptie elk met <%= attrs %>. Betoverd kabinet: Koninklijke set (voorwerp 2 van 3).", "shieldArmoireDragonTamerShieldText": "Drakentemmer Schild", - "shieldArmoireDragonTamerShieldNotes": "Leid vijanden af met dit schild in de vorm van een draak. Verhoogt Perceptie met <%= per %>. Betoverd Kabinet: Drakentemmer Set (Voorwerp 2 van 3).", + "shieldArmoireDragonTamerShieldNotes": "Leid vijanden af met dit schild in de vorm van een draak. Verhoogt Perceptie met <%= per %>. Betoverd kabinet: Drakentemmer set (Voorwerp 2 van 3).", + "shieldArmoireMysticLampText": "Mystieke Lamp", + "shieldArmoireMysticLampNotes": "Verlicht de donkerste grotten met deze Mystieke Lamp! Verhoogt perceptie met <%= per %>. Betoverd kabinet: Onafhankelijk voorwerp. ", "back": "Lichaamsaccessoire", "backBase0Text": "Geen rugaccessoire", "backBase0Notes": "Geen rugaccessoire.", @@ -679,7 +730,9 @@ "backMystery201507Text": "Koele Surfplank", "backMystery201507Notes": "Surf uit de IJverige Havens en berijd de golven in Baai Incompleet! Verleent geen voordelen. Abonnee-uitrusting juli 2015.", "backMystery201510Text": "Koboldstaart", - "backMystery201510Notes": "Grijpgraag en krachtig! Geeft geen voordeel. Abonnee-uitrusting oktober 2015.", + "backMystery201510Notes": "Grijpgraag en krachtig! Verleent geen voordelen. Abonnee-uitrusting oktober 2015.", + "backMystery201602Text": "Hartenbreker Cape", + "backMystery201602Notes": "Met een zwier van je cape vallen je vijanden voor je neer! Verleent geen voordelen. Abonnee-uitrusting februari 2016.", "backSpecialWonderconRedText": "Machtige cape", "backSpecialWonderconRedNotes": "Zwiept met kracht en schoonheid. Verleent geen voordelen. Speciale congresuitrusting.", "backSpecialWonderconBlackText": "Sluiperscape", @@ -726,8 +779,16 @@ "headAccessorySpecialSpring2015MageNotes": "Deze oren luisteren scherp naar goochelaars die mogelijk geheimen onthullen. Verleent geen voordelen. Beperkte oplage lente-uitrusting 2015.", "headAccessorySpecialSpring2015HealerText": "Groene kattenoren", "headAccessorySpecialSpring2015HealerNotes": "Deze schattige kattenoren zullen anderen groen laten zien van jaloezie. Verleent geen voordelen. Beperkte oplage lente-uitrusting 2015.", + "headAccessorySpecialSpring2016RogueText": "Groene Hondenoren", + "headAccessorySpecialSpring2016RogueNotes": "Hiermee kun je geniepige magiërs volgen, zelfs als ze onzichtbaar worden! Verleent geen voordelen. Beperkte oplage lente-uitrusting 2016.", + "headAccessorySpecialSpring2016WarriorText": "Rode Muizenoren", + "headAccessorySpecialSpring2016WarriorNotes": "Om je themaliedje beter te horen over de schreeuwerige slagvelden. Verleent geen voordelen. Beperkte oplage lente-uitrusting 2016.", + "headAccessorySpecialSpring2016MageText": "Gele Kattenoren", + "headAccessorySpecialSpring2016MageNotes": "Deze scherpe oren kunnen het muisstille gebrom van omringende mana horen, of de stille voetstappen van een dief. Verleent geen voordelen. Beperkte oplage lente-uitrusting 2016.", + "headAccessorySpecialSpring2016HealerText": "Paarse Konijnenoren", + "headAccessorySpecialSpring2016HealerNotes": "Ze staan als vlaggen boven de strijd, anderen tonend waar ze moeten zijn voor hulp. Verleent geen voordelen. Beperkte oplage lente-uitrusting 2016.", "headAccessoryBearEarsText": "Berenoren", - "headAccessoryBearEarsNotes": "Deze oren laten je eruitzien als een knuffelige beer! Verleent geen voordelen", + "headAccessoryBearEarsNotes": "Deze oren laten je lijken op een dappere beer! Verleent geen voordelen.", "headAccessoryCactusEarsText": "Cactusoren", "headAccessoryCactusEarsNotes": "Deze oren laten je eruitzien als een prikkelige cactus! Verleent geen voordelen.", "headAccessoryFoxEarsText": "Vossenoren", @@ -751,9 +812,11 @@ "headAccessoryMystery201502Text": "Gevleugelde gedachten", "headAccessoryMystery201502Notes": "Geef je fantasie de vrije vlucht! Verleent geen voordelen. Abonnee-uitrusting februari 2015.", "headAccessoryMystery201510Text": "Koboldhoorns", - "headAccessoryMystery201510Notes": "Deze angstaanjagende hoorns zijn een beetje slijmerig. Geeft geen voordeel. Abonnee-uitrusting oktober 2015.", + "headAccessoryMystery201510Notes": "Deze angstaanjagende hoorns zijn een beetje slijmerig. Verleent geen voordelen. Abonnee-uitrusting oktober 2015.", "headAccessoryMystery301405Text": "Veiligheidsbril voor op je hoofd", "headAccessoryMystery301405Notes": "\"Veiligheidsbrillen zijn voor je ogen,\" zeiden ze. \"Niemand wil een veiligheidsbril die je alleen maar op je hoofd kunt dragen,\" zeiden ze. Ha! Jij hebt ze laten zien hoe het echt moet! Verleent geen voordelen. Abonnee-uitrusting augustus 3015.", + "headAccessoryArmoireComicalArrowText": "Comical Arrow", + "headAccessoryArmoireComicalArrowNotes": "This whimsical item doesn't provide a stat boost, but it sure is good for a laugh! Confers no benefit. Enchanted Armoire: Independent Item.", "eyewear": "Oogaccessoire", "eyewearBase0Text": "Geen oogaccessoire", "eyewearBase0Notes": "Geen oogaccessoire.", diff --git a/common/locales/nl/generic.json b/common/locales/nl/generic.json index 0e91768263..f70a5d495e 100644 --- a/common/locales/nl/generic.json +++ b/common/locales/nl/generic.json @@ -116,7 +116,7 @@ "audioTheme_luneFoxTheme": "Achtergrondmuziek van LuneFox", "askQuestion": "Vraag stellen", "reportBug": "Fout melden", - "HabiticaWiki": "The Habitica Wiki", + "HabiticaWiki": "De Wiki van Habitica", "HabiticaWikiFrontPage": "http://habitica.wikia.com/wiki/Habitica_Wiki", "contributeToHRPG": "Bijdragen aan Habitica", "overview": "Overzicht voor nieuwe gebruikers", @@ -137,6 +137,8 @@ "achievementStressbeastText": "Heeft geholpen het Verschrikkelijke Stressbeest te verslaan tijdens het Winter Wonderland-evenement van 2014!", "achievementBurnout": "Verlosser van de Bloeiende Velden", "achievementBurnoutText": "Heeft geholpen Burnout te verslaan tijdens het Najaarsvolksfeest van 2015!", + "achievementBewilder": "Savior of Mistiflying", + "achievementBewilderText": "Helped defeat the Be-Wilder during the 2016 Spring Fling Event!", "checkOutProgress": "Moet je mijn vooruitgang in Habitica eens zien!", "cardReceived": "Kaart ontvangen!", "cardReceivedFrom": "<%= cardType %> van <%= userName %>", @@ -158,12 +160,12 @@ "thankyou3": "Ik ben je heel dankbaar - dankjewel!", "thankyouCardAchievementTitle": "Duizendmaal Dank", "thankyouCardAchievementText": "Bedankt voor het dankbaar zijn! Je hebt <%= cards %> bedankkaartjes verstuurd of ontvangen.", - "birthdayCard": "Birthday Card", - "birthdayCardExplanation": "You both receive the Birthday Bonanza achievement!", - "birthdayCardNotes": "Send a birthday card to a party member.", - "birthday0": "Happy birthday to you!", - "birthdayCardAchievementTitle": "Birthday Bonanza", - "birthdayCardAchievementText": "Many happy returns! Sent or received <%= cards %> birthday cards.", + "birthdayCard": "Verjaardagskaartje", + "birthdayCardExplanation": "Jullie ontvangen allebei de Voorspoedige Verjaardag-prestatie!", + "birthdayCardNotes": "Stuur een verjaardagskaartje naar een groepslid.", + "birthday0": "Van harte gefeliciteerd!", + "birthdayCardAchievementTitle": "Voorspoedige Verjaardag", + "birthdayCardAchievementText": "Nog vele jaren! Je hebt <%= cards %> verjaardagskaartjes verstuurd of ontvangen.", "streakAchievement": "Je hebt een serie prestaties verdiend!", "firstStreakAchievement": "Serie van 21 dagen", "streakAchievementCount": "<%= streaks %> Series van 21 dagen", @@ -175,5 +177,6 @@ "hatchPetShare": "Ik heb een nieuw huisdier uitgebroed door mijn taken uit het echte leven te voltooien!", "raisePetShare": "Ik heb een huisdier opgevoed naar een rijdier door mijn taken uit het echte leven te voltooien!", "wonChallengeShare": "Ik heb een uitdaging gewonnen in Habitica!", - "achievementShare": "Ik heb een nieuwe prestatie behaald in Habitica!" + "achievementShare": "Ik heb een nieuwe prestatie behaald in Habitica!", + "orderBy": "Order per <%= item %>" } \ No newline at end of file diff --git a/common/locales/nl/groups.json b/common/locales/nl/groups.json index e471c36993..a5c823d4be 100644 --- a/common/locales/nl/groups.json +++ b/common/locales/nl/groups.json @@ -1,5 +1,5 @@ { - "tavern": "Herberg", + "tavern": "Herberg Chat", "innCheckOut": "Uitchecken bij de herberg", "innCheckIn": "Rusten in de herberg", "innText": "Je ben aan het uitrusten in de herberg! Zolang je hier verblijft, zullen je dagelijkse taken je geen pijn doen aan het eind van de dag, maar ze zullen wel elke dag verversen. Wees gewaarschuwd: als je meedoet aan een queeste met een eindbaas, zal de eindbaas je nog steeds pijn doen voor de dagelijkse taken die je groepsgenoten missen, 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.", @@ -101,7 +101,7 @@ "inbox": "Inbox", "abuseFlag": "Overtreding van gemeenschapsrichtlijnen melden", "abuseFlagModalHeading": "<%= name %> rapporteren wegens overtreding?", - "abuseFlagModalBody": "Weet je zeker dat je deze post wil melden? Meld ENKEL posten die de <%= firstLinkStart %>Gemeenschapsrichtlijnen<%= linkEnd %> en/of <%= secondLinkStart %>Gebruiksvoorwaarden<%= linkEnd %> schenden. Ongepast melden van een post is een schending van de Gemeenschapsrichtlijnen en kan je een inbreuk bezorgen. Gepaste redenen om een post te melden zijn onder meer, maar niet beperkt tot


", + "abuseFlagModalBody": "Weet je zeker dat je deze post wil rapporteren? Je zou een post ALLEEN moeten rapporteren als deze de <%= firstLinkStart %>gemeenschapsrichtlijnen<%= linkEnd %> en/of <%= secondLinkStart %>de algemene voorwaarden<%= linkEnd %> schendt. Ongepast een post rapporteren is een overtreding van de gemeenschapsrichtlijnen en kan je een overtreding opleveren. Goede redenen om een post aan te geven zijn, maar zijn niet beperkt tot:

", "abuseFlagModalButton": "Overtreding melden", "abuseReported": "Dank je voor het melden van deze overtreding. De beheerders zijn op de hoogte gesteld.", "abuseAlreadyReported": "Je hebt dit bericht al gemeld.", @@ -147,5 +147,9 @@ "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": "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." + "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.", + "partyUpName": "Groepsvorming", + "partyOnName": "Groepsfeestje", + "partyUpAchievement": "Is bij een groep gegaan met een andere persoon! Veel plezier met het vechten tegen monsters en het ondersteunen van elkaar.", + "partyOnAchievement": "Is bij een groep gegaan met minstens vier mensen! Geniet van je verhoogde verantwoordelijkheid wanneer je je bij je vrienden voegt om je vijanden te verslaan!" } \ No newline at end of file diff --git a/common/locales/nl/limited.json b/common/locales/nl/limited.json index 4bc0c1acb2..08c621b3f2 100644 --- a/common/locales/nl/limited.json +++ b/common/locales/nl/limited.json @@ -33,7 +33,7 @@ "seasonalShopFallText": "Welkom in de Seizoenswinkel! We hebben op het moment najaars seizoenseditie spullen in voorraad. Alles is te koop tijdens het Najaars Volksfeest-evenement ieder jaar, maar we zijn maar open tot 31 oktober. Dus zorg dat je nu inslaat of je moet een jaar wachten voordat je deze voorwerpen weer kunt kopen!", "seasonalShopWinterText": "Welkom in de Seizoenswinkel!! We hebben nu winterse seizoensspulletjes in het assortiment. Alles hier is ieder jaar te koop tijdens het Winter Wonderlandevenement, maar we zijn slechts open tot 31 januari. Zorg er dus voor dat je nu inslaat, anders moet je een jaar wachten om deze voorwerpen weer te kunnen kopen!", "seasonalShopFallTextBroken": "Oh... Welkom in de Seizoenswinkel... We hebben op het moment najaars spullen in voorraad, ofzo... Alles is te koop tijdens het Najaars Volksfeest-evenement ieder jaar, maar we zijn maar open tot 31 oktober... Zorg maar dat je inslaat anders zou je moeten wachten... wachten... en nog eens wachten... *zucht*", - "seasonalShopRebirth": "Als je een Bol der Hergeboorte gebruikt hebt, kun je deze uitrustingsstukken weer kopen in de beloningen kolom. In het begin kun je alleen de uitrustingsstukken van je huidige klasse kopen (dat is standaard Krijger), maar vrees niet, de uitrustingsstukken die bij een andere klasse horen komen weer beschikbaar als je die klasse kiest.", + "seasonalShopRebirth": "Als je een Bol der Hergeboorte gebruikt hebt, kun je deze uitrustingsstukken weer kopen in de beloningen kolom. In het begin kun je alleen de uitrustingsstukken van je huidige klasse kopen (dat is standaard Krijger), maar vrees niet, de uitrustingsstukken die bij een andere klasse horen worden weer beschikbaar als je die klasse kiest.", "candycaneSet": "Zuurstok (Magiër)", "skiSet": "Skimoordenaar (Dief)", "snowflakeSet": "Sneeuwvolk (Heler)", @@ -63,10 +63,14 @@ "emeraldMermageSet": "Smaragden meermagiër (magiër)", "reefSeahealerSet": "Zeeheler uit het Rif (heler)", "roguishPirateSet": "Doortrapte piraat (dief)", - "monsterOfScienceSet": "Monster van de Wetenschap (Krijger)\n=", + "monsterOfScienceSet": "Monster van de Wetenschap (Krijger)", "witchyWizardSet": "Hekserige Tovenaar (Magiër)", "mummyMedicSet": "Mummie Medicus (Heler)", "vampireSmiterSet": "Vampier Uitbanner (Dief)", + "bewareDogSet": "Waakhond (Krijger)", + "magicianBunnySet": "Tovernaarskonijn (Magiër)", + "comfortingKittySet": "Troostend Katje (Heler)", + "sneakySqueakerSet": "Sneaky Pieper (Dief)", "fallEventAvailability": "Beschikbaar tot 31 oktober", "winterEventAvailability": "Beschikbaar tot 31 december" } \ No newline at end of file diff --git a/common/locales/nl/npc.json b/common/locales/nl/npc.json index b9d66c11d5..c24a9864a0 100644 --- a/common/locales/nl/npc.json +++ b/common/locales/nl/npc.json @@ -35,7 +35,7 @@ "amazonInstructions": "Klik op de knop om te betalen via de Amazon Betaaldienst", "paymentMethods": "Koop met", "classGear": "Klassespecifieke uitrusting", - "classGearText": "Ten eerste: geen paniek! Je oude uitrusting bevindt zich in je boedel, en je draagt nu de leerlingenuitrusting van een <%= klass %>. Door je klasse-uitrusting te dragen krijg je een bonus van 50% op de eigenschappen die de uitrusting verstrekt. Voel je echter ook vrij om je oude uitrusting weer aan te trekken.", + "classGearText": "Allereerst: geen paniek! Je oude uitrusting zit in je boedel en je draagt nu de leerlinguitrusting van je nieuwe klasse. Je klasse-uitrusting dragen geeft je een bonus van 50% op je eigenschappen. Voel je echter vrij om je oude uitrusting weer aan te trekken.", "classStats": "Dit zijn je klasse-eigenschappen; ze beïnvloeden het spel. Elke keer als je een niveau stijgt, krijg je één punt om aan een bepaalde eigenschap toe te wijzen. Plaats je muis op iedere eigenschap voor meer informatie.", "autoAllocate": "Automatische verdeling", "autoAllocateText": "Als 'automatische verdeling' aangevinkt is, worden de eigenschapspunten van je personage automatisch toegewezen afhankelijk van de eigenschappen van je taken. Die kun je vinden in TAAK > Bewerken > Geavanceerd > Eigenschappen. Als je bijvoorbeeld vaak naar de sportschool gaat en je dagelijkse 'Sportschool' taak is ingesteld op 'Fysiek', dan krijg je automatisch Kracht.", @@ -45,7 +45,7 @@ "moreClass": "Voor meer informatie over het klassesysteem, zie", "tourWelcome": "Welkom in Habitica! Dit is jouw To-do-lijst. Vink een taak af om verder te gaan!", "tourExp": "Goed gedaan! Door het afvinken van een taak krijg je ervaring en goud!", - "tourDailies": "Deze kolom is voor dagelijkse taken. Ga verder door een taak in te voeren die je elke dag moet doen! Dagelijkse taken kunnen bijvoorbeeld zijn: het bed opmaken, flossen, zakelijke e-mail controleren", + "tourDailies": "Deze kolom in voor dagelijkse taken. Om door te gaan kun je een taak toevoegen die je elke dag zou moeten doen. Voorbeelden van dagelijkse taken: je bed opmaken, flossen, je werk e-mail checken", "tourCron": "Schitterend! Je dagelijkse taken zullen elke dag gereset worden.", "tourHP": "Kijk uit! Als je je dagelijkse taken niet doet voor middernacht, doet het pijn!", "tourHabits": "Deze kolom is voor goede en slechte gewoontes die je meerdere keren per dag doet! Om verder te gaan klik je het potloodje om de namen te wijzigen, daarna klik je op het vinkje om ze op te slaan.", diff --git a/common/locales/nl/pets.json b/common/locales/nl/pets.json index a5f2cc3bd2..e70c9b0ad0 100644 --- a/common/locales/nl/pets.json +++ b/common/locales/nl/pets.json @@ -19,6 +19,7 @@ "orca": "Orka", "royalPurpleGryphon": "Regaal Paarse Griffioen", "phoenix": "Feniks", + "bumblebee": "Bumblebee", "rarePetPop1": "Klik op de gouden pootafdruk om meer te weten te komen over hoe je dit zeldzame dier kunt ontvangen door bij te dragen aan Habitica!", "rarePetPop2": "Hoe krijg ik dit huisdier?", "potion": "<%= potionType %> uitbroedtoverdrank", @@ -40,7 +41,7 @@ "stableBeastMasterProgress": "Voortgang tot dierenmeester: <%= number %> huisdieren gevonden.", "beastAchievement": "Je hebt de \"Dierenmeester\"-prestatie behaald voor het verzamelen van alle huisdieren!", "beastMasterName": "Dierenmeester", - "beastMasterText": "Has found all 90 pets (incredibly difficult, congratulate this user!)", + "beastMasterText": "Heeft alle 90 huisdieren gevonden (ontzettend moeilijk, feliciteer deze gebruiker!) ", "beastMasterText2": "en heeft zijn of haar huisdieren in totaal <%= count %> keer vrijgelaten", "mountMasterProgress": "Voortgang tot rijdiermeester", "stableMountMasterProgress": "Voortgang tot rijdiermeester: <%= number %> rijdieren gevonden.", diff --git a/common/locales/nl/quests.json b/common/locales/nl/quests.json index c885bd8b78..2bc629f7d6 100644 --- a/common/locales/nl/quests.json +++ b/common/locales/nl/quests.json @@ -38,7 +38,7 @@ "bossDmg2": "Alleen deelnemers bevechten de eindbaas en delen de buit.", "bossDmg1Broken": "Elke voltooide dagelijkse taak en to-do en elke positieve gewoonte brengt schade toe aan de eindbaas... Breng meer schade toe met rodere taken of Wrede Slag en Uiteenspatting van Vlammen... De eindbaas brengt iedereen die meedoet aan de queeste schade toe voor iedere dagelijkse taak die je gemist hebt (vermenigvuldigd met de kracht van de eindbaas), bovenop je normale schade, dus houd je groep gezond door je dagelijkse taken te doen... Alle schade van en aan een eindbaas wordt verrekend tijdens cron (je dagelijkse nieuwe start)...", "bossDmg2Broken": "Alleen deelnemers bevechten de eindbaas en delen de buit...", - "tavernBossInfo": "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.", + "tavernBossInfo": "Complete Dailies and To-Dos and score positive Habits to damage the World Boss! Incomplete Dailies fill the Rage Bar. When the Rage 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": "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.", diff --git a/common/locales/nl/questscontent.json b/common/locales/nl/questscontent.json index 9e4d615e1f..fa88268059 100644 --- a/common/locales/nl/questscontent.json +++ b/common/locales/nl/questscontent.json @@ -59,7 +59,7 @@ "questSpiderDropSpiderEgg": "Spin (ei)", "questSpiderUnlockText": "Maakt het kopen van spinneneieren in de markt mogelijk", "questVice1Text": "Ondeugd, deel 1: Bevrijd jezelf van de Invloed van de Draak", - "questVice1Notes": "

Ze zeggen dat er een vreselijk kwaad schuilt in de grotten van Berg Habitica. Een monster wiens aanwezigheid de wil van sterke helden verdraait en hen naar slechte gewoontes en luiheid leidt! Het beest is een grootse draak van immense kracht, opgebouwd uit de schaduwen zelf. Ondeugd, de verraderlijke schaduwdraak. Dappere Habiteers, rijs op en versla dit valse beest voor eens en altijd, maar alleen als je gelooft dat je stand kunt houden tegen zijn immense kracht.

Ondeugd deel 1:

Hoe verwacht je dit beest te kunnen bevechten als je al in zijn macht heeft?? Wees geen slachtoffer van luiheid en ondeugd! Werk hard tegen de duistere invloed van de draak en verdrijf zijn greep op je!

", + "questVice1Notes": "

They say there lies a terrible evil in the caverns of Mt. Habitica. A monster whose presence twists the wills of the strong heroes of the land, turning them towards bad habits and laziness! The beast is a grand dragon of immense power and comprised of the shadows themselves: Vice, the treacherous Shadow Wyrm. Brave Habiteers, stand up and defeat this foul beast once and for all, but only if you believe you can stand against its immense power.

Vice Part 1:

How can you expect to fight the beast if it already has control over you? Don't fall victim to laziness and vice! Work hard to fight against the dragon's dark influence and dispel his hold on you!

", "questVice1Boss": "De Schaduw van Ondeugd", "questVice1DropVice2Quest": "Ondeugd deel 2 (perkamentrol)", "questVice2Text": "Ondeugd, deel 2: Vind het Hol van de Draak", @@ -74,30 +74,30 @@ "questVice3DropDragonEgg": "Draak (ei)", "questVice3DropShadeHatchingPotion": "Schaduw-uitbroedtoverdrank", "questMoonstone1Text": "De Maanstenen Ketting, deel 1: De Maanstenen Ketting", - "questMoonstone1Notes": "

Een verschrikkelijke aandoening heeft de Habaticanen getroffen. Slechte gewoontes, lang dood gewaand, zijn herrezen, en met wraak. Afwas blijft onafgewassen, leerboeken blijven ongelezen en uitstelgedrag viert hoogtij!


Jij volgt enkele van je eigen terugkerende slechte gewoontes de Moerassen van Stagnatie in en ontdekt de dader: de spookachtige dodenbezweerder Recidive. Je rent eropaf en zwaait met je wapens, maar ze glijden zinloos door de geestverschijning heen.


\"Doe geen moeite\", sist ze met een droge raspende stem. \"Zonder een ketting van maanstenen kan niks me schaden - en meesterjuwelier @aurakami heeft lang geleden alle maanstenen over heel Habitica verpreid!\" Hijgend trek je je terug... maar je weet wat je te doen staat.

", + "questMoonstone1Notes": "A terrible affliction has struck Habiticans. Bad Habits thought long-dead are rising back up with a vengeance. Dishes lie unwashed, textbooks linger unread, and procrastination runs rampant!

You track some of your own returning Bad Habits to the Swamps of Stagnation and discover the culprit: the ghostly Necromancer, Recidivate. You rush in, weapons swinging, but they slide through her specter uselessly.

\"Don’t bother,\" she hisses with a dry rasp. \"Without a chain of moonstones, nothing can harm me – and master jeweler @aurakami scattered all the moonstones across Habitica long ago!\" Panting, you retreat... but you know what you must do.", "questMoonstone1CollectMoonstone": "Maanstenen", "questMoonstone1DropMoonstone2Quest": "De Maanstenen Ketting deel 2: Recidive de Dodenbezweerder (perkamentrol)", "questMoonstone2Text": "De Maanstenen Ketting, deel 2: Recidive de Dodenbezweerder", - "questMoonstone2Notes": "

De moedige wapensmid @Inventrix helpt je een ketting te maken van de betoverde maanstenen. Je bent eindelijk klaar om de confrontatie aan te gaan met Recidive, maar zodra je de Moerassen van Stagnatie betreedt, komt er een verschrikkelijke koude over je heen.


Een rottende adem fluistert in je oor. \"Ben je er weer? Wat verrukkelijk...\" Je draait je om en valt uit, en in het licht van de maanstenen ketting raakt je wapen vast vlees. \"Je hebt me misschien weer gebonden aan deze wereld,\" snauwt Recidive, \"Maar nu is het tijd voor jou om die te verlaten!\"

", + "questMoonstone2Notes": "The brave weaponsmith @Inventrix helps you fashion the enchanted moonstones into a chain. You’re ready to confront Recidivate at last, but as you enter the Swamps of Stagnation, a terrible chill sweeps over you.

Rotting breath whispers in your ear. \"Back again? How delightful...\" You spin and lunge, and under the light of the moonstone chain, your weapon strikes solid flesh. \"You may have bound me to the world once more,\" Recidivate snarls, \"but now it is time for you to leave it!\"", "questMoonstone2Boss": "De Dodenbezweerder", "questMoonstone2DropMoonstone3Quest": "De Maanstenen Ketting deel 3: Recidive Getransformeerd (perkamentrol)", "questMoonstone3Text": "De Maanstenen Ketting, deel 3: Recidive Getransformeerd", - "questMoonstone3Notes": "

Recidive valt verkreukeld op de grond, en je slaat naar haar met de maanstenen ketting. Tot je afschuw grijpt Recidive de edelstenen, ogen brandend van triomf.


\"Dwaas schepsel van vlees!\" schreeuwt ze. \"Deze maanstenen zorgen dat ik een fysieke vorm krijg, dat is waar, maar niet zoals jij het je voorstelt. Zoals de volle maan groeit uit het donker, zo ook gedijt mijn kracht, en uit de schaduwen roep ik de geest op van je meest gevreesde vijand!\"


Een ziekelijke groene mist rijst op vanuit het moeras, en lichaam van Recidive kronkelt en verwringt tot een vorm die je vervult van angst - het ondode lichaam van Ondeugd, op afschuwelijke wijze herrezen.

", - "questMoonstone3Completion": "

Je ademt zwaar en zweet prikt in je ogen als de ondode draak instort. De resten van Recidive verdwijnen in een dunne grijze mist die snel verdwijnt onder de aanval van een verfrissend briesje, en je hoort de verre, opzwepende kreten van Habiticanen die voor eens en voor altijd hun slechte gewoontes verslaan.


@Baconsaur de dierenmeester voert op een griffioen een duikvlucht naar je uit. \"Ik zag het einde van je gevecht vanuit de lucht, en het heeft me zeer bewogen. Alsjeblieft, neem deze betoverde tuniek - je moed laat een nobel hart zien, en ik geloof dat je voorbestemd was om deze te hebben.\"

", + "questMoonstone3Notes": "Recidivate crumples to the ground, and you strike at her with the moonstone chain. To your horror, Recidivate seizes the gems, eyes burning with triumph.

\"Foolish creature of flesh!\" she shouts. \"These moonstones will restore me to a physical form, true, but not as you imagined. As the full moon waxes from the dark, so too does my power flourish, and from the shadows I summon the specter of your most feared foe!\"

A sickly green fog rises from the swamp, and Recidivate’s body writhes and contorts into a shape that fills you with dread – the undead body of Vice, horribly reborn.", + "questMoonstone3Completion": "Your breath comes hard and sweat stings your eyes as the undead Wyrm collapses. The remains of Recidivate dissipate into a thin grey mist that clears quickly under the onslaught of a refreshing breeze, and you hear the distant, rallying cries of Habiticans defeating their Bad Habits for once and for all.

@Baconsaur the beast master swoops down on a gryphon. \"I saw the end of your battle from the sky, and I was greatly moved. Please, take this enchanted tunic – your bravery speaks of a noble heart, and I believe you were meant to have it.\"", "questMoonstone3Boss": "Herrezen Ondeugd", "questMoonstone3DropRottenMeat": "Bedorven vlees (voedsel)", "questMoonstone3DropZombiePotion": "Zombie-uitbroedtoverdrankje", "questGoldenknight1Text": "De Gouden Ridder, deel 1: Een Strenge Berisping", - "questGoldenknight1Notes": "

De Gouden Ridder is Habiticanen lastig aan het vallen. Niet al je Dagelijke Taken gedaan? Een negatieve Gewoonte afgevinkt? Allemaal redenen voor haar om je te vermanen dat je meer haar voorbeeld moet volgen. Zij is het schoolvoorbeeld van de perfecte Habiticaan, en jij bent maar een mislukkeling. Nou, dat is helemaal niet aardig! Iedereen maakt fouten. En ze moeten daarvoor niet zo'n lading negativiteit over zich heen krijgen. Misschien is het tijd om wat getuigenissen te verzamelen van gekwetste Habiticanen, en de Gouden Ridder een strenge berisping te geven!

", + "questGoldenknight1Notes": "The Golden Knight has been getting on poor Habiticans' cases. Didn't do all of your Dailies? Checked off a negative Habit? She will use this as a reason to harass you about how you should follow her example. She is the shining example of a perfect Habitican, and you are naught but a failure. Well, that is not nice at all! Everyone makes mistakes. They should not have to be met with such negativity for it. Perhaps it is time you gather some testimonies from hurt Habiticans and give the Golden Knight a stern talking-to!", "questGoldenknight1CollectTestimony": "Getuigenissen", "questGoldenknight1DropGoldenknight2Quest": "De Gouden Ridder-serie deel 2: Gouden Ridder (perkamentrol)", "questGoldenknight2Text": "De Gouden Ridder, deel 2: Gouden Ridder", - "questGoldenknight2Notes": "

Gewapend met honderden getuigenverklaringen van Habiticanen zoek je eindelijk de confrontatie op met de Gouden Ridder. Je begint één voor één de klachten van de Habiticanen op te noemen. \"En @Pfeffernusse vindt dat je constante opschepperij-\" De ridder heft haar hand om je tot stilte te manen en hoont, \"Hou op, die mensen zijn gewoon jaloers op mijn succes. Ze zouden minder moeten zeuren en gewoon net zo hard moeten werken als ik! Misschien moet ik je laten zien hoeveel macht je kunt verzamelen door zo ijverig te zijn als ik!\" Ze heft haar morgenster en bereidt zich voor je aan te vallen!

", + "questGoldenknight2Notes": "Armed with hundreds of Habitican's testimonies, you finally confront the Golden Knight. You begin to recite the Habitcan's complaints to her, one by one. \"And @Pfeffernusse says that your constant bragging-\" The knight raises her hand to silence you and scoffs, \"Please, these people are merely jealous of my success. Instead of complaining, they should simply work as hard as I! Perhaps I shall show you the power you can attain through diligence such as mine!\" She raises her morningstar and prepares to attack you!", "questGoldenknight2Boss": "Gouden Ridder", "questGoldenknight2DropGoldenknight3Quest": "De Gouden Ridder-serie deel 3: De IJzeren Ridder (perkamentrol)", "questGoldenknight3Text": "De Gouden Ridder, deel 3: De IJzeren Ridder", - "questGoldenknight3Notes": "

@Jon Arinbjorn slaakt een kreet om je aandacht te trekken. Na afloop van je gevecht is er een nieuwe figuur verschenen. Een ridder in een pantser van gezwart ijzer komt met getrokken zwaard langzaam naderbij. De Gouden Ridder roept \"Vader, nee!\" naar de verschijning, maar de ridder blijft maar komen. Ze keert zich naar je toe en zegt \"Het spijt me. Ik ben dom geweest, en mijn ego was te groot om te zien hoe wreed ik ben geweest. Maar mijn vader is wreder dan ik ooit zou kunnen zijn. Als hij niet tegengehouden wordt, zal hij ons allemaal vernietigen. Hier, neem mijn morgenster en houd de IJzeren Ridder tegen!\"

", - "questGoldenknight3Completion": "

Met een bevredigend geratel valt de IJzeren Ridder op zijn knieën en zakt hij ineen. \"Jij bent best sterk,\" hijgt hij. \"Ik ben vandaag verootmoedigd.\" De Gouden Ridder komt nabij en zegt \"Dankjewel. Ik geloof dat we allebei wat nederigheid geleerd hebben van onze ontmoeting. Ik ga met mijn vader praten en hem de klachten over ons uitleggen. Misschien kunnen we beginnen door onze verontschuldigingen aan te bieden aan de andere Habiticanen.\" Even verzinkt ze in gedachten voordat ze zich weer naar jou richt. \"Hier - als ons geschenk aan jou wil ik dat je mijn morgenster houdt. Hij is nu van jou.\"

", + "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!\"", + "questGoldenknight3Completion": "With a satisfying clang, the Iron Knight falls to his knees and slumps over. \"You are quite strong,\" he pants. \"I have been humbled, today.\" The Golden Knight approaches you and says, \"Thank you. I believe we have gained some humility from our encounter with you. I will speak with my father and explain the complaints against us. Perhaps, we should begin apologizing to the other Habiticans.\" She mulls over in thought before turning back to you. \"Here: as our gift to you, I want you to keep my morningstar. It is yours now.\"", "questGoldenknight3Boss": "De IJzeren Ridder", "questGoldenknight3DropHoney": "Honing (voedsel)", "questGoldenknight3DropGoldenPotion": "Gouden uitbroedtoverdrankje", @@ -112,7 +112,7 @@ "questEggHuntCollectPlainEgg": "Gewone eieren", "questEggHuntDropPlainEgg": "Gewoon ei", "questDilatoryText": "De Donkere Draak van Dralen", - "questDilatoryNotes": "

We hadden naar de waarschuwingen moeten luisteren.


Glimmende donkere ogen. Oeroude schubben. Enorme kaken en glinsterende tanden. We hebben iets verschrikkelijks uit de diepte ontwaakt: de Donkere Draak van Dralen! Habiticanen vluchtten gillend naar alle kanten toen hij uit de oceaan opsteeg, met een lange nek die wel honderd meter uit het water stak en een verzengende brul die ramen uit hun sponningen liet spatten.


\"Dit is vast waardoor Dralen verzwolgen is!\" roept Lemoness. \"Het was niet de zwaar verwaarloosde taken die het hebben laten zinken - de donkerrode dagelijkse taken trokken gewoon de aandacht van het beest!\"


\"Zijn magische energie zwelt aan!\" schreeuwt @Baconsaur. \"Om zo lang te kunnen leven, moet hij in staat zijn zichzelf te genezen! Hoe kunnen we hem ooit verslaan?\"


Nou, op de zelfde manier waarop we alle wilde beesten verslaan - door productief te zijn! Snel, Habitica, verenig je en hak op je taken in, en samen zullen we het monster bevechten. (Je hoeft geen lopende queesten te laten varen - we vertrouwen erop dat je kunt multi-vechten!) De draak zal ons niet individueel aanvallen, maar hoe meer dagelijkse taken we overslaan, hoe eerder we zijn Verwaarlozingsaanval uitlokken - en ik vind die blik die hij op de herberg werpt helemaal niet geruststellend...

", + "questDilatoryNotes": "We should have heeded the warnings.

Dark shining eyes. Ancient scales. Massive jaws, and flashing teeth. We've awoken something horrifying from the crevasse: the Dread Drag'on of Dilatory! Screaming Habiticans fled in all directions when it reared out of the sea, its terrifyingly long neck extending hundreds of feet out of the water as it shattered windows with its searing roar.

\"This must be what dragged Dilatory down!\" yells Lemoness. \"It wasn't the weight of the neglected tasks - the Dark Red Dailies just attracted its attention!\"

\"It's surging with magical energy!\" @Baconsaur cries. \"To have lived this long, it must be able to heal itself! How can we defeat it?\"

Why, the same way we defeat all beasts - with productivity! Quickly, Habitica, band together and strike through your tasks, and all of us will battle this monster together. (There's no need to abandon previous quests - we believe in your ability to double-strike!) It won't attack us individually, but the more Dailies we skip, the closer we get to triggering its Neglect Strike - and I don't like the way it's eyeing the Tavern....", "questDilatoryBoss": "De Donkere Draak van Dralen", "questDilatoryBossRageTitle": "Verwaarlozingsaanval", "questDilatoryBossRageDescription": "Als deze balk vol is, zal de Donkere Draak van Dralen een enorme ravage ontketenen binnen het gebied van Habitica", @@ -140,9 +140,9 @@ "questAtom3Notes": "Het monster van SnackStress slaakt een oorverdovende gil, vijf heerlijke soorten kaas uit zijn mond spetterend, en valt in stukken uiteen. \"HOE DURF JE!\" buldert een stem van onder het wateroppervlak. Een in een blauw gewaad gehulde figuur rijst op uit het water, een magische WC-borstel in de hand. Vuile was borrelt up naar de oppervlakte van het meer. \"Ik ben de Wasbezweerder!\" kondigt hij boos aan. \"Jij hebt wel lef hoor - mijn prachtige vuile vaat afwassen, mijn huisdier vernietigen, en mijn terrein binnenkomen met zulke schone kleren aan. Bereid je voor de zompige toorn van mijn anti-wasgoedmagie te voelen!\"", "questAtom3Completion": "De valse Wasbezweerder is verslagen! Schone was dwarrelt in stapels neer. Het ziet er hier een stuk beter uit. Terwijl je door de versgestreken harnassen heen waadt, vang je een glimp op van metaal, en je blik wordt getrokken door een glimmende helm. De oorspronkelijke eigenaar van deze helm is dan misschien onbekend, maar wanneer je de helm opzet voel je de warme aanwezigheid van een gulle persoonlijkheid. Jammer dat er geen naam in staat.", "questAtom3Boss": "De Wasbezweerder", - "questAtom3DropPotion": "Base Hatching Potion", + "questAtom3DropPotion": "Basis-uitbroedtoverdrankje", "questOwlText": "De Nachtbraker", - "questOwlNotes": "De herberghaard brandt elke nacht
Tot wild gespuis het duister bracht
Hoe kunnen wij nou 's nachts dan werken?
@Twitching roept: \"'k Zoek vechters! Sterke!
Deze nachtuil braakt de nacht
Dus vecht met haast en breek zijn macht!
Drijf hem weg nu, doe het vlug,
En geef ons onze gloed terug!\"", + "questOwlNotes": "The Tavern light is lit 'til dawn
Until one eve the glow is gone!
How can we see for our all-nighters?
@Twitching cries, \"I need some fighters!
See that Night-Owl, starry foe?
Fight with haste and do not slow!
We'll drive its shadow from our door,
And make the night shine bright once more!\"", "questOwlCompletion": "De nachtuil vlucht bij 't ochtendgloren
Maar jij, jij kunt een gaap niet smoren.
Als nachtbraker weet jij hoe fijn
Een nacht hard doorwerken kan zijn,
Maar nu ga je toch echt naar bed
En vindt drie eieren, wat een pret!
Ze zullen zachtjes naar je happen
als jij een uiltje moet gaan knappen.", "questOwlBoss": "De Nachtbraker", "questOwlDropOwlEgg": "Uil (ei)", @@ -286,10 +286,27 @@ "questSabretoothBoss": "Zombie Sabelkat", "questSabretoothDropSabretoothEgg": "Sabeltand (Ei)", "questSabretoothUnlockText": "Maakt het kopen van Sabeltandeieren in de markt mogelijk.", - "questMonkeyText": "Monstrous Mandrill and the Mischief Monkeys", - "questMonkeyNotes": "The Sloensteadi Savannah is being torn apart by the Monstrous Mandrill and his Mischief Monkeys! They shriek loudly enough to drown out the sound of approaching deadlines, encouraging everyone to avoid their duties and keep monkeying around. Alas, plenty of people ape this bad behavior. If no one stops these primates, soon everyone's tasks will be as red as the Monstrous Mandrill's face!

\"It will take a dedicated adventurer to resist them,\" says @yamato.

\"Quick, let's get this monkey off everyone's backs!\" @Oneironaut yells, and you charge into battle.", - "questMonkeyCompletion": "You did it! No bananas for those fiends today. Overwhelmed by your diligence, the monkeys flee in panic. \"Look,\" says @Misceo. \"They left a few eggs behind.\"

@Leephon grins. \"Maybe a well-trained pet monkey can help you as much as the wild ones hinder you!\"", - "questMonkeyBoss": "Monstrous Mandrill", - "questMonkeyDropMonkeyEgg": "Monkey (Egg)", - "questMonkeyUnlockText": "Unlocks purchasable Monkey eggs in the Market" + "questMonkeyText": "Monsterlijke Mandril en de Arglistige Apen", + "questMonkeyNotes": "De Tragengestaagsavanne wordt overhoop gehaald door de Monsterlijke Mandril en zijn Arglistige Apen! Ze gillen hard genoeg om het geluid van naderende deadlines te overstemmen, terwijl ze iedereen aanmoedigen om hun plichten te vermijden en te blijven donderjagen. Helaas apen veel mensen dit slechte gedrag na. Als niemand deze primaten tegenhoudt, zullen ieders taken spoedig zo rood worden als het gezicht van de Monsterlijke Mandril!

\"We zullen een toegewijde avonturier nodig hebben om hen te bestrijden,\" zegt @yamato.

\"Snel, laten we iedereen van deze kwelgeest bevrijden!\" roept @Oneironaut, en je trekt ten strijde. ", + "questMonkeyCompletion": "Je hebt het gedaan! Geen bananen meer voor die monsters vandaag. Overweldigd door je ijver, vluchten de apen in paniek. \"Kijk,\" zegt @Misceo. \"Ze hebben een paar eieren achtergelaten.\"

@Leephon grinikt. \"Misschien kan een goed getraind aapje je net zo goed helpen, als dat de wilden je hinderen!\"", + "questMonkeyBoss": "Monsterlijke Mandril", + "questMonkeyDropMonkeyEgg": "Aap (ei)", + "questMonkeyUnlockText": "Maakt het kopen van apeneieren in de markt mogelijk", + "questSnailText": "The Snail of Drudgery Sludge", + "questSnailNotes": "You're excited to begin questing in the abandoned Dungeons of Drudgery, but as soon as you enter, you feel the ground under your feet start to suck at your boots. You look up to the path ahead and see Habiticans mired in slime. @Overomega yells, \"They have too many unimportant tasks and dailies, and they're getting stuck on things that don't matter! Pull them out!\"

\"You need to find the source of the ooze,\" @Pfeffernusse agrees, \"or the tasks that they cannot accomplish will drag them down forever!\"

Pulling out your weapon, you wade through the gooey mud.... and encounter the fearsome Snail of Drudgery Sludge.", + "questSnailCompletion": "You bring your weapon down on the great Snail's shell, cracking it in two, releasing a flood of water. The slime is washed away, and the Habiticans around you rejoice. \"Look!\" says @Misceo. \"There's a small group of snail eggs in the remnants of the muck.\"", + "questSnailBoss": "Snail of Drudgery Sludge", + "questSnailDropSnailEgg": "Slak (ei)", + "questSnailUnlockText": "Maakt het kopen van slakken-eieren in de markt mogelijk", + "questBewilderText": "The Be-Wilder", + "questBewilderNotes": "The party begins like any other.

The appetizers are excellent, the music is swinging, and even the dancing elephants have become routine. Habiticans laugh and frolic amid the overflowing floral centerpieces, happy to have a distraction from their least-favorite tasks, and the April Fool whirls among them, eagerly providing an amusing trick here and a witty twist there.

As the Mistiflying clock tower strikes midnight, the April Fool leaps onto the stage to give a speech.

“Friends! Enemies! Tolerant acquaintances! Lend me your ears.” The crowd chuckles as animal ears sprout from their heads, and they pose with their new accessories.

“As you know,” the Fool continues, “my confusing illusions usually only last a single day. But I’m pleased to announce that I’ve discovered a shortcut that will guarantee us non-stop fun, without having to deal with the pesky weight of our responsibilities. Charming Habiticans, meet my magical new friend... the Be-Wilder!”

Lemoness pales suddenly, dropping her hors d'oeuvres. “Wait! Don’t trust--”

But suddenly mists are pouring into the room, glittering and thick, and they swirl around the April Fool, coalescing into cloudy feathers and a stretching neck. The crowd is speechless as an monstrous bird unfolds before them, its wings shimmering with illusions. It lets out a horrible screeching laugh.

“Oh, it has been ages since a Habitican has been foolish enough to summon me! How wonderful it feels, to have a tangible form at last.”

Buzzing in terror, the magic bees of Mistiflying flee the floating city, which sags from the sky. One by one, the brilliant spring flowers wither up and wisp away.

“My dearest friends, why so alarmed?” crows the Be-Wilder, beating its wings. “There’s no need to toil for your rewards any more. I’ll just give you all the things that you desire!”

A rain of coins pours from the sky, hammering into the ground with brutal force, and the crowd screams and flees for cover. “Is this a joke?” Baconsaur shouts, as the gold smashes through windows and shatters roof shingles.

PainterProphet ducks as lightning bolts crackle overhead, and fog blots out the sun. “No! This time, I don’t think it is!”

Quickly, Habiticans, don’t let this World Boss distract us from our goals! Stay focused on the tasks that you need to complete so we can rescue Mistiflying -- and hopefully, ourselves.", + "questBewilderCompletion": "The Be-Wilder is DEFEATED!

We've done it! The Be-Wilder lets out a ululating cry as it twists in the air, shedding feathers like falling rain. Slowly, gradually, it coils into a cloud of sparkling mist. As the newly-revealed sun pierces the fog, it burns away, revealing the coughing, mercifully human forms of Bailey, Matt, Alex.... and the April Fool himself.

Mistiflying is saved!

The April Fool has enough shame to look a bit sheepish. “Oh, hm,” he says. “Perhaps I got a little…. carried away.”

The crowd mutters. Sodden flowers wash up on sidewalks. Somewhere in the distance, a roof collapses with a spectacular splash.

“Er, yes,” the April Fool says. “That is. What I meant to say was, I’m dreadfully sorry.” He heaves a sigh. “I suppose it can’t all be fun and games, after all. It might not hurt to focus occasionally. Maybe I’ll get a head start on next year’s pranking.”

Redphoenix coughs meaningfully.

“I mean, get a head start on this year’s spring cleaning!” the April Fool says. “Nothing to fear, I’ll have Habit City in spit-shape soon. Luckily nobody is better than I at dual-wielding mops.”

Encouraged, the marching band starts up.

It isn’t long before all is back to normal in Habit City. Plus, now that the Be-Wilder has evaporated, the magical bees of Mistiflying bustle back to work, and soon the flowers are blooming and the city is floating once more.

As Habiticans cuddle the magical fuzzy bees, the April Fool’s eyes light up. “Oho, I’ve had a thought! Why don’t you all keep some of these fuzzy Bee Pets and Mounts? It’s a gift that perfectly symbolizes the balance between hard work and sweet rewards, if I’m going to get all boring and allegorical on you.” He winks. “Besides, they don’t have stingers! Fool’s honor.”", + "questBewilderCompletionChat": "`The Be-Wilder is DEFEATED!`\n\nWe've done it! The Be-Wilder lets out a ululating cry as it twists in the air, shedding feathers like falling rain. Slowly, gradually, it coils into a cloud of sparkling mist. As the newly-revealed sun pierces the fog, it burns away, revealing the coughing, mercifully human forms of Bailey, Matt, Alex.... and the April Fool himself.\n\n`Mistiflying is saved!`\n\nThe April Fool has enough shame to look a bit sheepish. “Oh, hm,” he says. “Perhaps I got a little…. carried away.”\n\nThe crowd mutters. Sodden flowers wash up on sidewalks. Somewhere in the distance, a roof collapses with a spectacular splash.\n\n“Er, yes,” the April Fool says. “That is. What I meant to say was, I’m dreadfully sorry.” He heaves a sigh. “I suppose it can’t all be fun and games, after all. It might not hurt to focus occasionally. Maybe I’ll get a head start on next year’s pranking.”\n\nRedphoenix coughs meaningfully.\n\n“I mean, get a head start on this year’s spring cleaning!” the April Fool says. “Nothing to fear, I’ll have Habit City in spit-shape soon. Luckily nobody is better than I at dual-wielding mops.”\n\nEncouraged, the marching band starts up.\n\nIt isn’t long before all is back to normal in Habit City. Plus, now that the Be-Wilder has evaporated, the magical bees of Mistiflying bustle back to work, and soon the flowers are blooming and the city is floating once more.\n\nAs Habiticans cuddle the magical fuzzy bees, the April Fool’s eyes light up. “Oho, I’ve had a thought! Why don’t you all keep some of these fuzzy Bee Pets and Mounts? It’s a gift that perfectly symbolizes the balance between hard work and sweet rewards, if I’m going to get all boring and allegorical on you.” He winks. “Besides, they don’t have stingers! Fool’s honor.”", + "questBewilderBossRageTitle": "Beguilement Strike", + "questBewilderBossRageDescription": "When this gauge fills, The Be-Wilder will unleash its Beguilement Strike on Habitica!", + "questBewilderDropBumblebeePet": "Bumblebee (Pet)", + "questBewilderDropBumblebeeMount": "Bumblebee (Mount)", + "questBewilderBossRageMarket": "`The Be-Wilder uses BEGUILEMENT STRIKE!`\n\nOh no! Despite our best efforts, we've gotten distracted by the Be-Wilder’s charming illusions and have forgotten to do some of our Dailies! With a cackling cry, the shining bird beats its wings, raising a swarm of mist around Alex the Merchant. When the fog clears, he has been possessed! “Have some free samples!” he shouts gleefully, and begins to hurl exploding eggs and potions at fleeing Habiticans. Not the most favorable of sales, to be sure.\n\nHurry! Let's stay focused on our Dailies to defeat this monster before it possesses someone else.", + "questBewilderBossRageStables": "`The Be-Wilder uses BEGUILEMENT STRIKE!`\n\nAhh!!! Once again the Be-Wilder has dazzled us into neglecting our Dailies, and now it has attacked Matt the Beast Master! With a swirl of mist, Matt transforms into a terrifying winged creature, and all the pets and mounts howl sadly in their stables. Quickly, stay focused on your tasks to defeat this dastardly distraction!", + "questBewilderBossRageBailey": "`The Be-Wilder uses BEGUILEMENT STRIKE!`\n\nLook out! In the middle of reporting the news, Bailey the Town Crier has been possessed by the Be-Wilder! She lets out an evil, uninformative screech as she rises into the air. Now how will we know what’s going on?\n\nDon't give up... we're so close to defeating this bothersome bird for once and for all!" } \ No newline at end of file diff --git a/common/locales/nl/rebirth.json b/common/locales/nl/rebirth.json index b2c95ae75f..5e49679373 100644 --- a/common/locales/nl/rebirth.json +++ b/common/locales/nl/rebirth.json @@ -12,7 +12,7 @@ "rebirthInList2": "Uitdagings-, gilde- en groepslidmaatschappen blijven behouden.", "rebirthInList3": "Je behoudt je edelstenen, helpersniveaus en bijdragersrang.", "rebirthInList4": "Voorwerpen die je verkregen hebt met edelstenen of uit willekeurige vondsten (zoals huisdieren en rijdieren) blijven behouden, maar zijn ontoegankelijk tot je ze opnieuw vrijspeelt.", - "rebirthInList5": "Limited edition equipment you've purchased can be repurchased, even if its event has ended. To repurchase class-specific equipment, you must first change to the correct class.", + "rebirthInList5": "Beperkt verkrijgbare uitrusting die je eerder gekocht hebt, kan opnieuw worden gekocht, zelfs nadat het evenement is beëindigd. Om klassespecifieke uitrusting opnieuw te kopen, moet je eerst wisselen naar de juiste klasse.", "rebirthEarnAchievement": "Je kunt ook een prestatie verdienen voor het beginnen van een nieuw avontuur!", "beReborn": "Herboren worden", "rebirthAchievement": "Je bent een nieuw avontuur begonnen! Dit is hergeboorte <%= number %> voor jou, en het hoogste niveau dat je behaald hebt is <%= level %>. Begin je volgende nieuwe avontuur als je een nog hoger niveau hebt bereikt om deze prestatie nog een keer te behalen!", diff --git a/common/locales/nl/settings.json b/common/locales/nl/settings.json index b1a71c31c5..71db5872f3 100644 --- a/common/locales/nl/settings.json +++ b/common/locales/nl/settings.json @@ -102,7 +102,7 @@ "invitedParty": "Uitgenodigd voor groep", "invitedGuild": "Uitgenodigd voor gilde", "importantAnnouncements": "Je account is inactief", - "weeklyRecaps": "Samenvatting van je accountactiviteit in de afgelopen week", + "weeklyRecaps": "Samenvatting van je account-activiteit van de afgelopen week (Opmerking: dit is tijdelijk uitgeschakeld vanwege prestatieproblemen, maar we hopen dit snel weer online te hebben en e-mails kunnen sturen!)", "questStarted": "Je queeste is begonnen", "invitedQuest": "Uitgenodigd voor queeste", "kickedGroup": "Uit de groep gezet", @@ -140,7 +140,7 @@ "mysticHourglass": "<%= amount %> mystieke zandloper(s)", "mysticHourglassText": "Met mystieke zandlopers kun je abonnee-uitrusting uit eerdere maanden kopen.", "purchasedPlanId": "Herhalend $<%= price %> USD elke <%= months %> maand(en) (<%= plan %>)", - "purchasedPlanExtraMonths": "You have <%= months %> months of extra subscription credit.", + "purchasedPlanExtraMonths": "Je hebt <%= months %> maanden extra abonnementkrediet.", "consecutiveSubscription": "Opeenvolgende abonnementen: ", "consecutiveMonths": "Opeenvolgende maanden:", "gemCapExtra": "Extra edelsteencapaciteit:", diff --git a/common/locales/nl/subscriber.json b/common/locales/nl/subscriber.json index 3771259c6a..18a8c700d0 100644 --- a/common/locales/nl/subscriber.json +++ b/common/locales/nl/subscriber.json @@ -4,8 +4,8 @@ "subDescription": "Koop edelstenen met goud, ontvang maandelijkse verrassingsartikelen, behoud je voortgangsgeschiedenis, verdubbel je maximum aantal dagelijkse vondsten, ondersteun de ontwikkelaars. Klik voor meer informatie.", "buyGemsGold": "Edelstenen kopen met goud", "buyGemsGoldText": "Alexander de koopman verkoopt je edelstenen voor de prijs van <%= gemCost %> goud per edelsteen. Zijn maandelijkse leveringen zijn in eerste instantie gelimiteerd tot <%= gemLimit %> edelstenen per maand, maar deze limiet wordt met 5 edelstenen verhoogd voor elke drie maanden aaneengesloten abonnement, tot een maximum van 50 edelstenen per maand!", - "retainHistory": "Retain additional history entries", - "retainHistoryText": "Makes completed To-Dos and task history available for longer.", + "retainHistory": "Volledige extra geschiedenis behouden", + "retainHistoryText": "Maakt je afgeronde to-do's en taakgeschiedenis langer beschikbaar.", "doubleDrops": "Dagelijkse vondstmaximum verdubbelen", "doubleDropsText": "Maak je stal sneller compleet!", "mysteryItem": "Exclusieve maandelijkse artikelen", @@ -30,7 +30,7 @@ "cancelSub": "Abonnement stopzetten", "canceledSubscription": "Beëindigd abonnement", "adminSub": "Beheerdersabonnementen", - "morePlans": "Meer plannen
binnenkort verwacht", + "morePlans": "Meer plannen
komen binnenkort", "organizationSub": "Privéorganisatie", "organizationSubText": "Leden van de organisatie kunnen meedoen buiten de normale Habitica om, wat ervoor zorgt dat ze zich beter kunnen focussen.", "hostingType": "Type hosting", @@ -96,7 +96,9 @@ "mysterySet201510": "Gehoornde Kobold-set", "mysterySet201511": "Houtstrijderset", "mysterySet201512": "Winters vuur-set", - "mysterySet201601": "Champion of Resolution Set", + "mysterySet201601": "Set van de Kampioen van Standvastigheid", + "mysterySet201602": "Hartenbrekersset", + "mysterySet201603": "Gelukigzalige Klaver Set", "mysterySet301404": "Standaard Steampunkset", "mysterySet301405": "Opgesmukte Steampunkset", "mysterySetwondercon": "Wondercon", diff --git a/common/locales/pl/backgrounds.json b/common/locales/pl/backgrounds.json index 89357c52aa..904618ff1c 100644 --- a/common/locales/pl/backgrounds.json +++ b/common/locales/pl/backgrounds.json @@ -140,11 +140,25 @@ "backgroundSnowmanArmyNotes": "Poprowadź Armię Bałwanów.", "backgroundWinterNightText": "Zimowa Noc", "backgroundWinterNightNotes": "Spójrz w gwiazdy Zimową Nocą.", - "backgrounds022016": "SET 21: Released February 2016", - "backgroundBambooForestText": "Bamboo Forest", - "backgroundBambooForestNotes": "Stroll through the Bamboo Forest.", - "backgroundCozyLibraryText": "Cozy Library", - "backgroundCozyLibraryNotes": "Read in the Cozy Library.", - "backgroundGrandStaircaseText": "Grand Staircase", - "backgroundGrandStaircaseNotes": "Stride down the Grand Staircase." + "backgrounds022016": "ZESTAW 21: Opublikowany w lutym 2016", + "backgroundBambooForestText": "Las Bambusowy", + "backgroundBambooForestNotes": "Wybierz się na przechadzkę po Bambusowym Lesie.", + "backgroundCozyLibraryText": "Przytulna Biblioteka", + "backgroundCozyLibraryNotes": "Poczytaj w Przytulnej Bibliotece.", + "backgroundGrandStaircaseText": "Wspaniałe Schody", + "backgroundGrandStaircaseNotes": "Zejdź po tych Wspaniałych Schodach.", + "backgrounds032016": "ZESTAW 22: Opublikowany w marcu 2016", + "backgroundDeepMineText": "Głęboka Kopalnia", + "backgroundDeepMineNotes": "Szukaj cennych metali w Głębokiej Kopani.", + "backgroundRainforestText": "Las Deszczowy", + "backgroundRainforestNotes": "Zapuść się w Las Deszczowy.", + "backgroundStoneCircleText": "Kamienny Krąg", + "backgroundStoneCircleNotes": "Rzucaj zaklęcia w Kamiennym Kręgu.", + "backgrounds042016": "SET 23: Released April 2016", + "backgroundArcheryRangeText": "Archery Range", + "backgroundArcheryRangeNotes": "Practice on the Archery Range.", + "backgroundGiantFlowersText": "Giant Flowers", + "backgroundGiantFlowersNotes": "Frolic atop Giant Flowers.", + "backgroundRainbowsEndText": "End of the Rainbow", + "backgroundRainbowsEndNotes": "Discover gold at the End of the Rainbow." } \ No newline at end of file diff --git a/common/locales/pl/character.json b/common/locales/pl/character.json index 0827d5d805..dd577b2058 100644 --- a/common/locales/pl/character.json +++ b/common/locales/pl/character.json @@ -1,7 +1,7 @@ { "statsAch": "Statystyki i osiągnięcia", "profile": "Profil", - "avatar": "Awatar", + "avatar": "Dostosuj Awatara", "other": "Inne", "fullName": "Pełne imię", "displayName": "Nazwa gracza", @@ -34,6 +34,7 @@ "beard": "Broda", "mustache": "Wąsy", "flower": "Kwiatek", + "wheelchair": "Wheelchair", "basicSkins": "Podstawowe kolory", "rainbowSkins": "Tęczowe kolory", "pastelSkins": "Pastelowe kolory", @@ -83,7 +84,7 @@ "allocateInt": "Punkty przydzielone do Inteligencji:", "allocateIntPop": "Dodaj punkt do Inteligencji", "noMoreAllocate": "Teraz, gdy osiągnąłeś poziom 100, nie będziesz już zyskiwać punktów atrybutów. Możesz dalej podnosić poziom lub zacząć przygodę nową od poziomu 1 używając Kuli Odrodzenia, dostępnej teraz za darmo na Targu.", - "stats": "Statystyki", + "stats": "Statystki Awatara", "strength": "Siła", "strengthText": "Siła zwiększa szansę na losowe \"trafienia krytyczne\", a także wpływa na ilość otrzymanego za nie Złota, Doświadczenia i prawdopodobieństwa łupów. Pomaga także zadawać obrażenia bossom.", "constitution": "Kondycja", @@ -136,7 +137,7 @@ "respawn": "Odrodzenie!", "youDied": "Zginąłeś!", "dieText": "Straciłeś jeden Poziom, losowo wybrany przedmiot z Ekwipunku oraz całe Złoto. A teraz powstań, dzielny Habitaninie, i jeszcze raz spróbuj sił w walce! Okiełznaj złe Nawyki, czujnie dopełniaj Codzienne, a jeśli zasłabniesz, wymknij się śmierci zażywając Eliksiru Zdrowia!", - "sureReset": "Jesteś pewien? Zresetuje to klasę twojej postaci oraz przydzielone punkty (dostaniesz je z powrotem do ponownego rozdzielenia). Cena – 3 klejnoty.", + "sureReset": "Na pewno? Ta opcja kosztuje 3 klejnoty i zresetuje klasę twojego awatara i przydzielone punkty (wrócą do puli do ponownego rozdzielenia).", "purchaseFor": "Kupić za <%= cost %> klejnoty?", "notEnoughMana": "Masz za mało many.", "invalidTarget": "Nieprawidłowy cel", @@ -160,5 +161,8 @@ "str": "SIŁ", "con": "KON", "per": "PER", - "int": "INT" + "int": "INT", + "showQuickAllocation": "Pokaż przydział atrybutów", + "hideQuickAllocation": "Ukryj przydział atrybutów", + "quickAllocationLevelPopover": "Z każdym poziomem otrzymujesz jeden punkt, który możesz przydzielić wybranemu atrybutowi. Możesz to zrobić ręcznie, lub zdać się na jedną z możliwych opcji Automatycznej Alokacji, dostępnych w Użytkownik -> Statystyki Awatara." } \ No newline at end of file diff --git a/common/locales/pl/communityguidelines.json b/common/locales/pl/communityguidelines.json index 205391ce17..9f7923514c 100644 --- a/common/locales/pl/communityguidelines.json +++ b/common/locales/pl/communityguidelines.json @@ -29,7 +29,7 @@ "commGuidePara013": "W społeczności tak dużej jak Habitica, użytkownicy przychodzą i odchodzą, a czasem nawet moderator musi odwiesić swój szlachecki płaszcz i odpocząć. Tych drugich nazywamy Moderators Emeritus. Nie mają już uprawnień Moderatorów, ale wciąż doceniamy ich ciężką pracę.", "commGuidePara014": "Emerytowani Moderatorzy:", "commGuideHeadingPublicSpaces": "Przestrzeń publiczna w Habitice", - "commGuidePara015": "Habitica ma dwa rodzaje przestrzeni społecznych: publiczne i prywatne. Publicznymi są: Karczma, Publiczne Gildie, GitHub, Trello i Wiki. Prywatnymi natomiast są: Prywatne Gildie, chat drużyny i skrzynki prywatnych wiadomości.", + "commGuidePara015": "Habitica ma dwa rodzaje przestrzeni społecznych: publiczne i prywatne. Publicznymi są: Karczma, Publiczne Gildie, GitHub, Trello i Wiki. Prywatnymi natomiast są: Prywatne Gildie, chat drużyny i skrzynki prywatnych wiadomości. Wszystkie nazwy graczy muszą spełniać Zasady Przestrzeni Publicznej. Aby zmienić swoją nazwę gracza, przejdź do Użytkownik > Profil i wybierz opcję \"Edytuj\".", "commGuidePara016": "Odwiedzając strefy publiczne na Habitice, należy pamiętać o ogólnych zasadach, które pomagają w utrzymaniu bezpieczeństwa i zadowolenia. Zachowanie ich powinno być łatwe dla takiego poszukiwacza przygód jak ty!", "commGuidePara017": "Szanujcie się nawzajem. Bądźcie uprzejmi, mili, przyjaźni i pomocni. Pamiętajcie: Habitanie pochodzą z różnorodnych środowisk i mają bardzo odmienne doświadczenia. To część tego, co czyni Habitikę tak wspaniałą! Tworzenie społeczności oznacza respektowanie i celebrowanie tak różnic jak i podobieństw. Oto kilka prostych sposobów na okazywanie szacunku wobec innych:", "commGuideList02A": "Przestrzegaj wszystkich Zasad Użytkowania.", @@ -40,8 +40,8 @@ "commGuideList02F": "Stosujcie się bezzwłocznie do wszelkich próśb Moderatorów, by zakończyć dyskusję lub przenieść ją na Zaplecze. Ostatnie słowo, riposty, podsumowania i gesty na pożegnanie powinny być (uprzejmie) wymieniane przy waszym \"stoliku\" na Zapleczu, jeśli są zgodne z zasadami.", "commGuideList02G": "Poświęćcie czas na refleksję zamiast odpowiadać w gniewie , jeśli ktoś stwierdzi, że to, co powiedzieliście lub zrobiliście, spowodowało u innych zmieszanie. Szczere przeprosiny wymagają wielkiej siły. Jeżeli uważacie, że ich odpowiedź była niestosowna, raczej skontaktujcie się z modem zamiast publicznie ich o to posądzać.", "commGuideList02H": "Kontrowersyjne i kłótliwe dyskusje powinny być raportowane modom. Jeśli spostrzeżesz, że wymiana zdań się zaognia, emocje rozmówców biorą górę nad rozsądkiem, padają obraźliwe wypowiedzi - nie angażuj się. Zamiast tego napisz do leslie@habitica.com, by dać nam o tym znać. Utrzymywanie porządku to nasze zadanie.", - "commGuideList02I": "Nie spamujcie. Spamem mogą być między innymi: jednakowe komentarze lub pytanie zamieszczone w kilku miejscach, linki publikowane bez wyjaśnienia lub bez kontekstu, bezsensowne wiadomości lub wiele wiadomości wysłanych pod rząd. Powtarzające się prośby o klejnoty lub subskrypcję także mogą być uznane za spam.", - "commGuidePara019": "W przestrzeni prywatnej użytkownicy mają większą swobodę dyskusji na wszelkie możliwe tematy, ale nadal nie mogą łamać Zasad Użytkowania, w tym, nie mogą zamieszczać żadnych dyskryminujących czy agresywnych wiadomości ani gróźb.", + "commGuideList02I": "Nie spamujcie. Spamem mogą być między innymi: jednakowe komentarze lub pytanie zamieszczone w kilku miejscach, linki publikowane bez wyjaśnienia lub bez kontekstu, bezsensowne wiadomości lub wiele wiadomości wysłanych pod rząd. Powtarzające się prośby o klejnoty lub subskrypcję na jakimkolwiek czacie czy w prywatnej wiadomości także mogą być uznane za spam.", + "commGuidePara019": "W przestrzeni prywatnej użytkownicy mają większą swobodę dyskusji na wszelkie możliwe tematy, ale nadal nie mogą łamać Zasad Użytkowania, w tym, nie mogą zamieszczać żadnych dyskryminujących czy agresywnych wiadomości ani gróźb. Pamiętaj, że nazwy Wyzwań pojawiają się w publicznym profilu zwycięzcy, zatem WSZYSTKIE nazwy wyzwań muszą spełniać Zasady Przestrzeni Publicznej, nawet jeśli samo wyzwanie jest prywatne.", "commGuidePara020": "Prywatnymi wiadomościami (PW) rządzi kilka dodatkowych wytycznych. Jeżeli ktoś Cię zablokował, nie kontaktuj się z tą osobą nigdzie indziej, aby poprosić o odblokowanie. Poza tym, nie powinno się wysyłać prywatnych wiadomości do kogoś, kto prosi o pomoc w rozwiązaniu problemu (publiczne odpowiedzi na takie pytania są pomocne dla społeczności). Ostatnia zasada: nie wolno wysyłać nikomu prywatnych wiadomości zachęcających do podzielenia się klejnotami lub subskrypcji, ponieważ uznaje się to za spam.", "commGuidePara021": "Ponadto, niektóre przestrzenie publiczne w Habitice mają dodatkowe regulaminy.", "commGuideHeadingTavern": "Karczma", diff --git a/common/locales/pl/content.json b/common/locales/pl/content.json index 17167ba6b6..bd168ececd 100644 --- a/common/locales/pl/content.json +++ b/common/locales/pl/content.json @@ -31,7 +31,7 @@ "dropEggCactusAdjective": "kłujący", "dropEggBearCubText": "niedźwiedziątko", "dropEggBearCubMountText": "niedźwiedź", - "dropEggBearCubAdjective": "przytulaśny", + "dropEggBearCubAdjective": "odważny", "questEggGryphonText": "gryf", "questEggGryphonMountText": "Gryf", "questEggGryphonAdjective": "dumny", @@ -46,7 +46,7 @@ "questEggEggAdjective": "kolorowy", "questEggRatText": "szczur", "questEggRatMountText": "Szczur", - "questEggRatAdjective": "brudny", + "questEggRatAdjective": "towarzyski", "questEggOctopusText": "ośmiornica", "questEggOctopusMountText": "Ośmiornica", "questEggOctopusAdjective": "śliska", @@ -107,9 +107,12 @@ "questEggSabretoothText": "Tygrys szablozębny", "questEggSabretoothMountText": "Tygrys szablozębny", "questEggSabretoothAdjective": "okrutny", - "questEggMonkeyText": "Monkey", - "questEggMonkeyMountText": "Monkey", - "questEggMonkeyAdjective": "a mischievous", + "questEggMonkeyText": "Małpa", + "questEggMonkeyMountText": "Małpa", + "questEggMonkeyAdjective": "psotna", + "questEggSnailText": "Ślimak", + "questEggSnailMountText": "Ślimak", + "questEggSnailAdjective": "powolny ale wytrwały", "eggNotes": "Znajdź eliksir wyklucia i wylej go na to jajo, a wykluje się z niego <%= eggAdjective(locale) %> <%= eggText(locale) %>. ", "hatchingPotionBase": "Zwyczajny", "hatchingPotionWhite": "Biały", diff --git a/common/locales/pl/contrib.json b/common/locales/pl/contrib.json index ef6f0a74a1..5610dbd7ab 100644 --- a/common/locales/pl/contrib.json +++ b/common/locales/pl/contrib.json @@ -28,11 +28,11 @@ "helped": "Pomógł rozwijać się Habitowi", "helpedText1": "Pomógł rozwinąć Habitica poprzez wypełnienie", "helpedText2": "tej ankiety.", - "hall": "Sala", + "hall": "Sala Bohaterów", "contribTitle": "Tytuł pomocnika (np. \"Kowal\")", "contribLevel": "Ranga pomocnika", "contribHallText": "1-7 dla zwykłych pomocników, 8 dla moderatorów, 9 dla pracowników. Określa które przedmioty, chowańce, oraz wierzchowce są dostępne. Wyznacza też kolor ramki z imieniem. Rangi 8 i 9 automatycznie zostają administratorami.", - "hallHeroes": "Sala bohaterów", + "hallContributors": "Sala Współtwórców", "hallPatrons": "Sala patronów", "rewardUser": "Nagrodź użytkownika", "UUID": "UUID", @@ -60,5 +60,5 @@ "blurbGuildsPage": "Gildie są grupami czatowymi zrzeszającymi graczy o wspólnych zainteresowaniach. Tworzone są przez graczy i dla graczy. Przeszukaj listę i dołącz do Gildii, które cię interesują.", "blurbChallenges": "Wyzwania są tworzone przez twoich współtowarzyszy. Dołączenie do wyzwania doda jego zadania do twojej tablicy, a wygranie wyzwania nagrodzi osiągnięciem, a czasami nagrodą w postaci klejnotów!", "blurbHallPatrons": "To jest Sala patronów, gdzie oddajemy cześć szlachetnym poszukiwaczom przygód, którzy wsparli Habitica w pierwszej zbiórce na Kickstarterze. Dziękujemy im za pomoc w powołaniu Habitiki do życia!", - "blurbHallHeroes": "To jest Sala bohaterów, gdzie uhonorowani zostali open-source'owi współautorzy Habitiki. Niezależnie czy za pomocą kodu, sztuki, muzyki, pisania, czy nawet tylko uczynności, zdobyli oni klejnoty, ekskluzywne wyposażenie oraz prestiżowy tytuł. Ty również możesz współtworzyć Habitikę! Tutaj dowiesz się więcej. " + "blurbHallContributors": "To jest Sala Współtwórców, gdzie uhonorowani zostali open-source'owi współtwórcy Habitiki. Czy to za pomocą kodu, sztuki, muzyki, pisania, czy jedynie uczynności, zdobyli oni klejnoty, ekskluzywne wyposażenie oraz prestiżowe tytuły. Ty również możesz współtworzyć Habitikę! Tutaj dowiesz się więcej. " } \ No newline at end of file diff --git a/common/locales/pl/faq.json b/common/locales/pl/faq.json index e1a89ab2d1..19e6dce105 100644 --- a/common/locales/pl/faq.json +++ b/common/locales/pl/faq.json @@ -35,10 +35,10 @@ "webFaqAnswer10": "Klejnoty są [kupowane za prawdziwe pieniądze](https://habitica.com/#/options/settings/subscription), choć [subskrybenci](https://habitica.com/#/options/settings/subscription) mogą kupować je za Złoto. Wykupując abonament lub kupując Klejnoty, pomagacie nam w utrzymaniu strony. Jesteśmy bardzo wdzięczni za Wasze wsparcie!\n

\nOprócz bezpośredniego kupowania Klejnotów lub dołączając do abonentów, Klejnoty można zdobyć na dwa inne sposoby:\n

\n* Zwyciężając w Wyzwaniu rzuconym przez innego gracza w zakładce Społeczność > Wyzwania.\n* W zamian za współpracę przy projekcie Habitica. Szczegółowe informacje znajdziesz na stronie wiki: [Współpraca przy Habitica](http://habitica.wikia.com/wiki/Contributing_to_Habitica)\n

\nNależy pamiętać, że przedmioty kupowane za klejnoty nie poprawiają statystyk, więc gracze mogą korzystać ze strony obywając się bez nich!", "faqQuestion11": "Jak mogę zgłosić błąd lub zaproponować funkcjonalność?", "iosFaqAnswer11": "Możesz zgłosić błąd, zaproponować nową funkcję albo wysłać opinię klikając Menu > Zgłoś błąd i Menu > Wyślij opinię! Zrobimy wszystko co w naszej mocy, aby ci pomóc.", - "webFaqAnswer11": "Raporty dotyczące błędów zbierane są na GitHub. Przejdź do [Pomoc > Zgłoś błąd](https://github.com/HabitRPG/habitrpg/issues/2760) i postępuj zgodnie z instrukcjami. Uszy do góry! Szybko to naprawimy!\n

\nPropozycje nowych funkcji zbierane są na Trello. Przejdź do [Pomoc > Zaproponuj nową funkcję](https://trello.com/c/odmhIqyW/440-read-first-table-of-contents) i postępuj zgonie z instrukcjami. Ta-da!", + "webFaqAnswer11": "Zgłoszenia błędów zbierane są na GitHub. Przejdź do [Pomoc > Zgłoś błąd](https://github.com/HabitRPG/habitrpg/issues/2760) i postępuj zgodnie z instrukcjami. Uszy do góry! Szybko to naprawimy!\n

\nPropozycje nowych funkcji zbierane są na Trello. Przejdź do [Pomoc > Zaproponuj nową funkcję](https://trello.com/c/odmhIqyW/440-read-first-table-of-contents) i postępuj zgonie z instrukcjami. Ta-da!", "faqQuestion12": "Jak walczyć z Bossem Globalnym?", "iosFaqAnswer12": "Bossowie Globalni to specjalne potwory, które pojawiają się w karczmie. Wszyscy aktywni użytkownicy automatycznie walczą z takim bossem. Obrażenia zadawane są temu potworowi jak zwykle - poprzez wykonywanie zadań i korzystanie z umiejętności.\n\nW tym samym czasie można wykonywać zwykłą misję. Wykonywane zadania i umiejętności działają równocześnie na Bossa Globalnego i bossa/misję kolekcjonowania Twojej drużyny.\n\nBoss Globalny w żaden sposób nie uszkodzi ani Ciebie, ani Twojego konta. Zamiast tego posiada Miernik Szału, który napełnia się, gdy użytkownicy pomijają swoje Codzienne. Gdy Miernik Szału się wypełni, potwór zaatakuje jedną z postaci niezależnych na stronie, zmieniając jej obrazek.\n\nMożesz przeczytać więcej na temat [poprzedni Bossowie Globalni](http://habitica.wikia.com/wiki/World_Bosses) na wiki.", "webFaqAnswer12": "Bossowie Globalni to specjalne potwory, które pojawiają się w karczmie. Wszyscy aktywni użytkownicy automatycznie walczą z takim bossem. Obrażenia zadawane są temu potworowi jak zwykle - poprzez wykonywanie zadań i korzystanie z umiejętności.\n

\nW tym samym czasie można wykonywać zwykłą misję. Wykonywane zadania i umiejętności działają równocześnie na Bossa Globalnego i bossa/misję kolekcjonowania Twojej drużyny.\n

\nBoss Globalny w żaden sposób nie uszkodzi ani Ciebie, ani Twojego konta. Zamiast tego posiada Miernik Szału, który napełnia się, gdy użytkownicy pomijają swoje Codzienne. Gdy Miernik Szału się wypełni, potwór zaatakuje jedną z postaci niezależnych na stronie, zmieniając jej obrazek.\n

\nMożesz przeczytać więcej na temat [poprzedni Bossowie Globalni](http://habitica.wikia.com/wiki/World_Bosses) na wiki.", - "iosFaqStillNeedHelp": "If you have a question that isn't on this list or on the [Wiki FAQ](http://habitica.wikia.com/wiki/FAQ), 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 or on the [Wiki FAQ](http://habitica.wikia.com/wiki/FAQ), come ask in the [Newbies Guild](https://habitica.com/#/options/groups/guilds/5481ccf3-5d2d-48a9-a871-70a7380cee5a)! We're happy to help." + "iosFaqStillNeedHelp": "Jeśli masz pytanie, którego nie ma na tej liście lub na [Wiki FAQ](http://habitica.wikia.com/wiki/FAQ), zadaj je śmiało podczas rozmowy w Karczmie, w zakładce Menu > Karczma! Chętnie pomożemy.", + "webFaqStillNeedHelp": "Jeśli masz pytanie, którego nie ma na liście lub na [Wiki FAQ](http://habitica.wikia.com/wiki/FAQ), możesz je zadać w [Gildii Świerzaków (Newbies Guild)](https://habitica.com/#/options/groups/guilds/5481ccf3-5d2d-48a9-a871-70a7380cee5a)! Z chęcią pomożemy." } \ No newline at end of file diff --git a/common/locales/pl/front.json b/common/locales/pl/front.json index dffb43288d..9bcf36cfed 100644 --- a/common/locales/pl/front.json +++ b/common/locales/pl/front.json @@ -65,7 +65,7 @@ "goalSample4": "Lekcja japońskiego na Duolingo", "goalSample5": "Przeczytaj pouczający artykuł", "goals": "Celami", - "health": "Zdrowie", + "health": "Zdrowiem", "healthSample1": "Wybierz zwykłą wodę/napój gazowany", "healthSample2": "Żuj gumę/pal papierosy", "healthSample3": "Wejdź schodami/pojedź windą", @@ -124,7 +124,7 @@ "motivate1": "Zmotywuj się, by zrobić co tylko zechcesz.", "motivate2": "Zorganizuj się. Zmotywuj się. Zdobądź złoto.", "passConfirm": "Potwierdź hasło", - "passMan": "In case you are using a password manager (like 1Password) and have problems logging in, try typing your username and password manually.", + "passMan": "Jeśli korzystasz z menedżera haseł (na przykład 1Password) i nie możesz się zalogować, spróbuj wpisać ręcznie nazwę użytkownika i hasło.", "password": "Hasło", "playButton": "Zagraj", "playButtonFull": "Zagraj w Habitica", @@ -165,7 +165,7 @@ "teams": "Zespołami", "terms": "Zasadami użytkowania", "testimonialHeading": "Co mówią ludzie...", - "localStorageTryFirst": "If you are experiencing problems with Habitica, click the button below to clear local storage for this website (other websites will not be affected). You will need to log in again after doing this, so first be sure that you know your log-in details, which can be found at Settings -> <%= linkStart %>Site<%= linkEnd %>.", + "localStorageTryFirst": "W razie problemów z Habitiką kliknij przycisk poniżej, aby wyczyścić pamięć podręczną tej strony internetowej (czynność ta nie wpłynie na inne strony). Następnie należy zalogować się ponownie, więc upewnij się, że pamiętasz swój login i hasło. Możesz je sprawdzić w zakładce Ustawienia -> <%= linkStart %>Strona<%= linkEnd %>.", "localStorageTryNext": "Jeśli problem się utrzymuje, prosimy o <%= linkStart %>zgłoszenie błędu<%= linkEnd %>, chyba, że to już zrobione.", "localStorageClearing": "Wyczyść pamięć podręczną", "localStorageClearingExplanation": "Pamięć podręczna Twojej przeglądarki jest teraz czyszczona. Wylogujemy Cię i przekierujemy do strony startowej. Prosimy o cierpliwość.", @@ -195,7 +195,7 @@ "landingCopy3": "Dołącz do <%= userCount %> osób, które bawią się, ulepszając swoje życie.", "alreadyHaveAccount": "Już mam swoje konto!", "getStartedNow": "Zacznij teraz!", - "altAttrNavLogo": "Habitica home", + "altAttrNavLogo": "Srona główna Habitica", "altAttrLifehacker": "Lifehacker", "altAttrNewYorkTimes": "The New York Times", "altAttrMakeUseOf": "MakeUseOf", diff --git a/common/locales/pl/gear.json b/common/locales/pl/gear.json index 380532cccb..2b4266b4d0 100644 --- a/common/locales/pl/gear.json +++ b/common/locales/pl/gear.json @@ -1,4 +1,5 @@ { + "set": "Zestaw", "weapon": "broń", "weaponBase0Text": "Bez broni", "weaponBase0Notes": "Bez broni.", @@ -142,6 +143,14 @@ "weaponSpecialWinter2016MageNotes": "Twoje ruchy są tak czadowe, że to chyba magia! Zwiększa Inteligencję o <%= int %> i Percepcję o <%= per %>. Edycja Limitowana Zimowego Wyposażenia 2015-2016.", "weaponSpecialWinter2016HealerText": "Armata Konfetti", "weaponSpecialWinter2016HealerNotes": "JUPIIIIIIIII!!!!!!!! RADOSNA ZIMOWA KRAINA CZARÓW!!!!!!!! Zwiększa Inteligencję o <%= int %>. Edycja Limitowana Zimowego Wyposażenia 2015-2016.", + "weaponSpecialSpring2016RogueText": "Ogniowy Bolas", + "weaponSpecialSpring2016RogueNotes": "Opanowałeś już piłki, maczugi i noże. Teraz pora nauczyć się żonglować ogniem! Łooo! Zwiększa Siłę o <%= str%>. Edycja Limitowana Wyposażenia Wiosna 2016.", + "weaponSpecialSpring2016WarriorText": "Tłuczek do Sera", + "weaponSpecialSpring2016WarriorNotes": "Nikt nie ma tylu przyjaciół co mysz posiadająca delikatne sery. Zwiększa Siłę o <%= str %>. Edycja Limitowana Wyposażenia Wiosna 2016.", + "weaponSpecialSpring2016MageText": "Dzwoneczkowa Laska", + "weaponSpecialSpring2016MageNotes": "Abrakotabra! Tak olśniewająca, że mógłbyś się zahipnotyzować! Ooo... i dzwoni... Zwiększa Inteligencję o <%= int %> i Percepcję o <%= per %>. Edycja Limitowana Wyposażenia Wiosna 2016.", + "weaponSpecialSpring2016HealerText": "Wiosenna Różdżka Kwiatowa", + "weaponSpecialSpring2016HealerNotes": "Machnięciem tej różdżki sprawiasz, że pola i lasy zaczynają kwitnąć! Albo możesz nią pacnąć dokuczliwą mysz w głowę. Zwiększa Inteligencję o <%= int %>. Edycja Limitowana Wyposażenia Wiosna 2016.", "weaponMystery201411Text": "Widły Ucztowania", "weaponMystery201411Notes": "Dźgaj swoich wrogów lub rzuć się na ulubione potrawy - te wielofunkcyjne widły nadają się do wszystkiego! Brak dodatkowych korzyści. Przedmiot Abonencki Listopad 2014.", "weaponMystery201502Text": "Lśniąca Skrzydlata Laska Miłości oraz Prawdy", @@ -172,10 +181,14 @@ "weaponArmoireBlueLongbowNotes": "Gotów... Cel... Pal! Ten łuk ma ogromny zasięg. Zwiększa Percepcję o <%= per %>, Kondycję o <%= con %> i Siłę o <%= str %>. Zaczarowana Szafa: Przedmiot niezależny.", "weaponArmoireGlowingSpearText": "Włócznia Pobrzasku", "weaponArmoireGlowingSpearNotes": "Ta włócznia hipnotyzuje zdziczałe zadania, żeby je łatwiej pokonać. Zwiększa Siłę o <%= str %>. Zaczarowana Szafa: Przedmiot niezależny.", - "weaponArmoireBarristerGavelText": "Barrister Gavel", - "weaponArmoireBarristerGavelNotes": "Order! Increases Strength and Constitution by <%= attrs %> each. Enchanted Armoire: Barrister Set (Item 3 of 3).", - "weaponArmoireJesterBatonText": "Jester Baton", - "weaponArmoireJesterBatonNotes": "With a wave of your baton and some witty repartee, even the most complicated situations become clear. Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Jester Set (Item 3 of 3).", + "weaponArmoireBarristerGavelText": "Młotek Sędziowski", + "weaponArmoireBarristerGavelNotes": "Proszę o spokój! Zwiększa siłę i kondycję o <%= attrs %> każde. Zaczarowana Szafa: Zestaw Adwokacki (Przedmiot 3 z 3).", + "weaponArmoireJesterBatonText": "Berło Błazna", + "weaponArmoireJesterBatonNotes": "Po machnięciu berłem i ciętej ripoście nawet najtrudniejsze sytuacje stają się jasne. Zwiększa inteligencję i percepcję o <%= attrs %>. Zaczarowana Szafa: Zestaw Błazna (Przedmiot 3 z 3).", + "weaponArmoireMiningPickaxText": "Kilof", + "weaponArmoireMiningPickaxNotes": "Wydobądź maksimum złota ze swoich zadań! Zwiększa Percepcję o <%= per %>. Zaczarowana Szafa: Zestaw Górnika (Przedmiot 3 z 3).", + "weaponArmoireBasicLongbowText": "Basic Longbow", + "weaponArmoireBasicLongbowNotes": "A serviceable hand-me-down bow. Increases Strength by <%= str %>. Enchanted Armoire: Basic Archer Set (Item 1 of 3).", "armor": "zbroja", "armorBase0Text": "Zwykłe ubranie", "armorBase0Notes": "Zwyczajne ubranie. Nie ma na nic wpływu.", @@ -239,8 +252,8 @@ "armorSpecialBirthdayNotes": "Wszystkiego najlepszego z okazji urodzin, Habitiko! Załóż Niedorzeczne Szaty Urodzinowe, aby świętować ten wspaniały dzień. Nie dają żadnych korzyści.", "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.", - "armorSpecialBirthday2016Text": "Ridiculous Party Robes", - "armorSpecialBirthday2016Notes": "Happy Birthday, Habitica! Wear these Ridiculous Party Robes to celebrate this wonderful day. Confers no benefit.", + "armorSpecialBirthday2016Text": "Niedorzeczne Szaty Urodzinowe", + "armorSpecialBirthday2016Notes": "Wszystkiego najlepszego z okazji urodzin, Habitiko! Załóż Niedorzeczne Szaty Urodzinowe, aby świętować ten wspaniały dzień. Nie dają żadnych korzyści.", "armorSpecialGaymerxText": "Zbroja tęczowego wojownika", "armorSpecialGaymerxNotes": "Aby uczcić 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.", "armorSpecialSpringRogueText": "Lśniący kostium kota", @@ -307,6 +320,14 @@ "armorSpecialWinter2016MageNotes": "Najmądrzejsi z magów dobrze się chronią przed zimowym wichrem. Zwiększa Inteligencję o <%= int %>. Edycja Limitowana Zimowego Wyposażenia 2015-2016.", "armorSpecialWinter2016HealerText": "Płaszcz Świątecznej Wróżki", "armorSpecialWinter2016HealerNotes": "Świąteczne Wróżki, dla ochrony, okrywają się skrzydłami wyrastającymi z ciała, a w skrzydła wyrastające z głowy chwytają wiatry wznoszące i latają po całej Habitice z prędkościami do 100 mil/h, dostarczając prezenty i obsypując wszystkich konfetti. Jakie to pocieszne. Zwiększa Kondycję o <%= con %>. Edycja Limitowana Zimowego Wyposażenia 2015-2016.", + "armorSpecialSpring2016RogueText": "Psi Strój Maskujący", + "armorSpecialSpring2016RogueNotes": "Mądre szczenię wie, że w zielonym i pełnym energii otoczeniu najlepiej skryje się w jaskrawym przebraniu. Zwiększa Percepcję o <%= per %>. Edycja Limitowana Wyposażenia Wiosna 2016.", + "armorSpecialSpring2016WarriorText": "Potężna Kolczuga", + "armorSpecialSpring2016WarriorNotes": "Mały, ale wariat! Zwiększa Kondycję o <%= con %>. Edycja Limitowana Wiosna 2016.", + "armorSpecialSpring2016MageText": "Szaty Wielkiego Malkina", + "armorSpecialSpring2016MageNotes": "Wielobarwne, żeby nikt cię nie pomylił z czarnoksiężnikiem. Zwiększa Inteligencję o <%= int %>. Edycja Limitowana Wiosna 2016.", + "armorSpecialSpring2016HealerText": "Puchate Królicze Bryczesy", + "armorSpecialSpring2016HealerNotes": "Kic, kic! Kicaj od wzgórza do wzgórza i lecz osoby w potrzebie. Zwiększa Kondycję o <%= con%>. Edycja Limitowana Wiosna 2016.", "armorMystery201402Text": "Szaty posłańca", "armorMystery201402Notes": "Połyskujące i wytrzymałe, te szaty mają wiele kieszeni na listy. Brak dodatkowych korzyści. Przedmiot Abonencki, luty 2014.", "armorMystery201403Text": "Zbroja przemierzania lasów", @@ -341,6 +362,8 @@ "armorMystery201511Notes": "Biorąc pod uwagę, że ta zbroja została wyrzeźbiona z jednego kawałka magicznego drewna, jest zaskakująco wygodna. Brak dodatkowych korzyści. Przedmiot Abonencki Listopad 2015.", "armorMystery201512Text": "Zbroja Zimnych Ogni", "armorMystery201512Notes": "Przyzwij mrożące płomienie zimy! Brak dodatkowych korzyści. Przedmiot Abonencki, grudzień 2015.", + "armorMystery201603Text": "Szczęśliwy Garnitur", + "armorMystery201603Notes": "Ten garnitur został uszyty z tysięcy czterolistnych koniczyn! Brak dodatkowych korzyści. Przedmiot Abonencki, marzec 2016.", "armorMystery301404Text": "Steampunkowy garnitur", "armorMystery301404Notes": "Elegancki i stylowy! Brak dodatkowych korzyści. Przedmiot Abonencki, luty 2015.", "armorArmoireLunarArmorText": "Księżycowa Kojąca Zbroja", @@ -363,10 +386,14 @@ "armorArmoireCrystalCrescentRobesNotes": "Te magiczne szaty świecą w ciemności. Zwiększają Kondycję i Percepcję o <%= attrs %>. Zaczarowana Szafa: Zestaw Kryształowego Półksiężyca (przedmiot 2 z 3).", "armorArmoireDragonTamerArmorText": "Zbroja Poskramiacza Smoków", "armorArmoireDragonTamerArmorNotes": "Ta wytrzymała zbroja jest odporna na każdy ogień. Zwiększa Kondycję o <%= con %>. Zaczarowana Szafa: Zestaw Poskramiacza Smoków (przedmiot 3 z 3).", - "armorArmoireBarristerRobesText": "Barrister Robes", - "armorArmoireBarristerRobesNotes": "Very serious and stately. Increases Constitution by <%= con %>. Enchanted Armoire: Barrister Set (Item 2 of 3).", - "armorArmoireJesterCostumeText": "Jester Costume", - "armorArmoireJesterCostumeNotes": "Tra-la-la! Despite the look of this costume, you are no fool. Increases Intelligence by <%= int %>. Enchanted Armoire: Jester Set (Item 2 of 3).", + "armorArmoireBarristerRobesText": "Toga Adwokacka", + "armorArmoireBarristerRobesNotes": "Poważne i dostojne. Zwiększa kondycję o <%= con %>. Zaczarowana Szafa: Zestaw Adwokacki (Przedmiot 2 z 3).", + "armorArmoireJesterCostumeText": "Kostium Błazna", + "armorArmoireJesterCostumeNotes": "Tra-la-la! Wbrew wyglądowi tego kostiumu, nie jesteś głupcem. Zwiększa inteligencję o <%= int %>. Zaczarowana Szafa: Zestaw Błazna (Przedmiot 2 z 3).", + "armorArmoireMinerOverallsText": "Kombinezon Górnika", + "armorArmoireMinerOverallsNotes": "Zdaje się być znoszony, ale magicznie odpycha brud. Zwiększa Kondycję o <%= con %>. Zaczarowana Szafa: Zestaw Górnika (Przedmiot 2 z 3).", + "armorArmoireBasicArcherArmorText": "Basic Archer Armor", + "armorArmoireBasicArcherArmorNotes": "This camouflaged vest lets you slip unnoticed through the forests. Increases Perception by <%= per %>. Enchanted Armoire: Basic Archer Set (Item 2 of 3).", "headgear": "nakrycie głowy", "headBase0Text": "Bez hełmu", "headBase0Notes": "Bez nakrycia głowy.", @@ -496,6 +523,14 @@ "headSpecialWinter2016MageNotes": "Śnieg już nie będzie ci wpadał do oczu podczas rzucania czarów. Zwiększa Percepcję o <%= per %>. Edycja Limitowana Zimowego Wyposażenia 2015-2016.", "headSpecialWinter2016HealerText": "Hełm Wróżkowych Skrzydeł", "headSpecialWinter2016HealerNotes": "Teskrzydełkatakszybkołopocążeażsięrozmywają! Zwiększa Inteligencję o <%= int %>. Edycja Limitowana Zimowego Wyposażenia 2015-2016.", + "headSpecialSpring2016RogueText": "Maska Dobrego Psa", + "headSpecialSpring2016RogueNotes": "Ojaa, jaki uroczy szczeniaczek! Daj się pogłaskać po głowie. ...Hej, gdzie się podziało całe moje Złoto? Zwiększa Percepcję o <%= per %>. Edycja Limitowana Wiosna 2016.", + "headSpecialSpring2016WarriorText": "Hełm Mysiej Gardy", + "headSpecialSpring2016WarriorNotes": "Już nigdy nikt nie pacnie cię w głowę! A niech tylko spróbuje! Zwiększa Siłę o <%= str %>. Edycja Limitowana Wiosna 2016.", + "headSpecialSpring2016MageText": "Kapelusz Wielkiego Malkina", + "headSpecialSpring2016MageNotes": "Ten ciuch wyróżni cię na tle zwykłych magów. Zwiększa Percepcję o <%= per %>. Edycja Limitowana Wiosna 2016.", + "headSpecialSpring2016HealerText": "Kwitnący Diadem", + "headSpecialSpring2016HealerNotes": "Błyszczy potencjałem nowego życia i gotowością do działania. Zwiększa Inteligencję o <%= int %>. Edycja Limitowana Wiosna 2016.", "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 wszystkich.", "headMystery201402Text": "Skrzydlaty hełm", @@ -524,8 +559,12 @@ "headMystery201511Notes": "Policz słoje, a dowiesz się, jak stara jest ta korona. Brak dodatkowych korzyści. Przedmiot Abonencki, listopad 2015.", "headMystery201512Text": "Zimowy Płomień", "headMystery201512Notes": "Te płomienie parzą zimnem czystego intelektu. Brak dodatkowych korzyści. Przedmiot Abonencki, grudzień 2015.", - "headMystery201601Text": "Helm of True Resolve", - "headMystery201601Notes": "Stay resolute, brave champion! Confers no benefit. January 2016 Subscriber Item.", + "headMystery201601Text": "Hełm prawdziwej determinacji", + "headMystery201601Notes": "Pozostań stanowczy, odważny czempionie! Brak dodatkowych korzyści. Przedmiot Abonencki, styczeń 2016.", + "headMystery201602Text": "Kaptur Łamacza Serc", + "headMystery201602Notes": "Ukryj swoje oblicze przed wielbicielami. Brak dodatkowych korzyści. Przedmiot Abonencki, luty 2016.", + "headMystery201603Text": "Szczęśliwy Kapelusz", + "headMystery201603Notes": "Ten cylinder to amulet przynoszący szczęście. Brak dodatkowych korzyści. Przedmiot Abonencki, marzec 2016.", "headMystery301404Text": "Szykowny cylinder", "headMystery301404Notes": "Fantazyjny cylinder dla najwyżej urodzonych. Przedmiot Abonencki, styczeń 2015. Brak dodatkowych korzyści.", "headMystery301405Text": "Klasyczny cylinder", @@ -566,10 +605,14 @@ "headArmoireCrystalCrescentHatNotes": "Ten kapelusz zmienia się razem z fazami księżyca. Zwiększa Inteligencję i Percepcję o <%= attrs %>. Zaczarowana Szafa: Zestaw Kryształowego Półksiężyca (przedmiot 1 z 3).", "headArmoireDragonTamerHelmText": "Hełm Poskramiacza Smoków", "headArmoireDragonTamerHelmNotes": "Wyglądasz zupełnie jak smok. Idealny kamuflaż... Zwiększa Inteligencję o <%= int %>. Zaczarowana Szafa: Zestaw Poskramiacza Smoków (przedmiot 1 z 3).", - "headArmoireBarristerWigText": "Barrister Wig", - "headArmoireBarristerWigNotes": "This bouncy wig is enough to frighten away even the fiercest foe. Increases Strength by <%= str %>. Enchanted Armoire: Barrister Set (Item 1 of 3).", - "headArmoireJesterCapText": "Jester Cap", - "headArmoireJesterCapNotes": "The bells on this hat might distract your opponents, but they just help you focus. Increases Perception by <%= per %>. Enchanted Armoire: Jester Set (Item 1 of 3).", + "headArmoireBarristerWigText": "Peruka Adwokacka", + "headArmoireBarristerWigNotes": "Ta sprężysta peruka wystarczy by wystraszyć nawet najbardziej zawziętych wrogów. Zwiększa siłę o <%= str %>. Zaczarowana Szafa: Zestaw Adwokacki (Przedmiot 1 z 3).", + "headArmoireJesterCapText": "Czapka Błazna", + "headArmoireJesterCapNotes": "Dzwoneczki na tej czapce mogłyby rozproszyć twoich przeciwników, ale po prostu pomagają ci się skupić. Zwiększa percepcję o <%= per %>. Zaczarowana Szafa: Zestaw Błazna (Przedmiot 1 z 3).", + "headArmoireMinerHelmetText": "Kask Górnika", + "headArmoireMinerHelmetNotes": "Chroń głowę przed spadającymi zadaniami! Zwiększa Inteligencję o <%= int %>. Zaczarowana Szafa: Zestaw Górnika (Przedmiot 1 z 3).", + "headArmoireBasicArcherCapText": "Basic Archer Cap", + "headArmoireBasicArcherCapNotes": "No archer would be complete without a jaunty cap! Increases Perception by <%= per %>. Enchanted Armoire: Basic Archer Set (Item 3 of 3).", "offhand": "Tarcza", "shieldBase0Text": "Brak tarczy w ekwipunku.", "shieldBase0Notes": "Bez tarczy lub drugiej broni.", @@ -653,8 +696,14 @@ "shieldSpecialWinter2016WarriorNotes": "Użyj tych sań, żeby blokować ataki lub jedź na nich triumfalnie do walki! Zwiększa Kondycję o <%= con %>. Edycja Limitowana Zimowego Wyposażenia 2015-2016.", "shieldSpecialWinter2016HealerText": "Prezent Skrzatów", "shieldSpecialWinter2016HealerNotes": "Otwórz go otwórz go otwórz go otwórz go otwórz go otwórz go!!!!!!!!! Zwiększa Kondycję o <%= con %>. Edycja Limitowana Zimowego Wyposażenia 2015-2016.", - "shieldMystery201601Text": "Resolution Slayer", - "shieldMystery201601Notes": "This blade can be used to parry away all distractions. Confers no benefit. January 2016 Subscriber Item.", + "shieldSpecialSpring2016RogueText": "Ogniowy Bolas", + "shieldSpecialSpring2016RogueNotes": "Opanowałeś już piłki, maczugi i noże. Teraz pora nauczyć się żonglować ogniem! Łooo! Zwiększa Siłę o <%= str %>. Edycja Limitowana Wiosna 2016.", + "shieldSpecialSpring2016WarriorText": "Serowe Koło", + "shieldSpecialSpring2016WarriorNotes": "Stawiłeś czoła chytrym pułapkom żeby zdobyć to super jedzenie. Zwiększa Kondycję o <%= con %>. Edycja Limitowana Wiosna 2016.", + "shieldSpecialSpring2016HealerText": "Kwiecisty Puklerz", + "shieldSpecialSpring2016HealerNotes": "Nie wierz, że ta malutka tarcza powstrzyma Błyszczące Ziarna, to Prima Aprilis! Zwiększa Kondycję o <%= con%>. Edycja Limitowana Wiosna 2016.", + "shieldMystery201601Text": "Pogromca postanowień", + "shieldMystery201601Notes": "To ostrze jest w stanie odbić wszystko, co rozprasza uwagę. Brak dodatkowych korzyści. Przedmiot Abonencki, styczeń 2016.", "shieldMystery301405Text": "Tarcza zegarowa", "shieldMystery301405Notes": "Czas jest po Twojej stronie z tą tarczą zegarową. Brak dodatkowych korzyści. Przedmiot Abonencki, czerwiec 2015.", "shieldArmoireGladiatorShieldText": "Tarcza gladiatora", @@ -665,6 +714,8 @@ "shieldArmoireRoyalCaneNotes": "Panuj nam miłościwie, o tobie pieśni nucimy! Zwiększa kondycję, inteligencję i percepcję o <%= attrs %>. Zaczarowana Szafa: zestaw królewski (przedmiot 2 z 3).", "shieldArmoireDragonTamerShieldText": "Tarcza Poskramiacza Smoków", "shieldArmoireDragonTamerShieldNotes": "Ta tarcza w kształcie smoka rozproszy uwagę twoich wrogów. Zwiększa Percepcję o <%= per %>. Zaczarowana Szafa: Zestaw Poskramiacza Smoków (przedmiot 2 z 3).", + "shieldArmoireMysticLampText": "Mistyczna Lampa", + "shieldArmoireMysticLampNotes": "Oświetl najciemniejsze z jaskiń tą mistyczną lampą! Zwiększa Percepcję o <%= per %>. Zaczarowana Szafa: przedmiot niezależny.", "back": "Osprzęt na plecy", "backBase0Text": "Nic na plecach", "backBase0Notes": "Nic na plecach.", @@ -680,6 +731,8 @@ "backMystery201507Notes": "Surfuj na Starannych Nabrzeżach i ujeżdżaj fale w Zatoce Niedoskonałości! Brak dodatkowych korzyści. Przedmiot Abonencki, lipiec 2015.", "backMystery201510Text": "Goblini ogon", "backMystery201510Notes": "Chwytny i silny! Brak dodatkowych korzyści. Przedmiot Abonencki, październik 2015.", + "backMystery201602Text": "Peleryna Łamacza Serc", + "backMystery201602Notes": "Machnij tą peleryną, a przeciwnicy padną u twych stóp! Brak dodatkowych korzyści. Przedmiot Abonencki, luty 2016.", "backSpecialWonderconRedText": "Potężna peleryna", "backSpecialWonderconRedNotes": "Świszcze z siłą i pięknem. Nie daje żadnych korzyści. Edycja Specjalna - Konwent.", "backSpecialWonderconBlackText": "Podstępna peleryna", @@ -726,8 +779,16 @@ "headAccessorySpecialSpring2015MageNotes": "Te uszy słuchają bacznie, na wypadek gdyby w okolicy jakiś magik ujawniał swe sekrety. Brak dodatkowych korzyści. Edycja Limitowana, wiosna 2015.", "headAccessorySpecialSpring2015HealerText": "Zielone kocie uszy", "headAccessorySpecialSpring2015HealerNotes": "Te słodkie kocie uszka sprawią, że wszyscy zzielenieją z zazdrości. Brak korzyści. Edycja Limitowana, wiosna 2015.", + "headAccessorySpecialSpring2016RogueText": "Zielone psie uszy", + "headAccessorySpecialSpring2016RogueNotes": "Z tymi będziesz mógł śledzić przebiegłych Magów używających niewidzialności! Brak dodatkowych korzyści. Edycja Limitowana Wiosna 2016.", + "headAccessorySpecialSpring2016WarriorText": "Czerwone mysie uszy", + "headAccessorySpecialSpring2016WarriorNotes": "Załóż je, żeby wyraźniej słyszeć swoją ulubioną piosenkę w ferworze walki. Brak dodatkowych korzyści. Edycja Limitowana Wiosna 2016.", + "headAccessorySpecialSpring2016MageText": "Żółte kocie uszy", + "headAccessorySpecialSpring2016MageNotes": "Te wyjątkowo czułe uszy wykryją nawet najdrobniejszy szelest Many i najostrożniejsze kroki Łotrzyków. Brak dodatkowych korzyści. Edycja Limitowana Wiosna 2016.", + "headAccessorySpecialSpring2016HealerText": "Fioletowe królicze uszy", + "headAccessorySpecialSpring2016HealerNotes": "Unoszą się jak flagi nad polem bitwy, wskazując innym, gdzie biec po pomoc. Brak dodatkowych korzyści. Edycja Limitowana Wiosna 2016.", "headAccessoryBearEarsText": "Uszy niedźwiedzia", - "headAccessoryBearEarsNotes": "Dzięki tym uszom będziesz wyglądać jak milutki niedźwiadek! Brak dodatkowych korzyści.", + "headAccessoryBearEarsNotes": "Dzięki tym uszom wyglądać będziesz jak odważny niedźwiedź! Brak dodatkowych korzyści.", "headAccessoryCactusEarsText": "Uszy kaktusa", "headAccessoryCactusEarsNotes": "Dzięki tym uszom wyglądać będziesz jak ciernisty kaktus! Brak dodatkowych korzyści.", "headAccessoryFoxEarsText": "Uszy lisa", @@ -754,6 +815,8 @@ "headAccessoryMystery201510Notes": "Te straszne rogi są nieco oślizgłe. Brak dodatkowych korzyści. Przedmiot Abonencki, październik 2015.", "headAccessoryMystery301405Text": "Gogle na głowę", "headAccessoryMystery301405Notes": "\"Gogle nosi się na oczach\", mówili. \"Nikt nie chce gogli które można nosić tylko na głowie\", mówili. Ha! Niech spojrzą na Ciebie! Brak dodatkowych korzyści. Przedmiot Abonencki, sierpień 2015.", + "headAccessoryArmoireComicalArrowText": "Comical Arrow", + "headAccessoryArmoireComicalArrowNotes": "This whimsical item doesn't provide a stat boost, but it sure is good for a laugh! Confers no benefit. Enchanted Armoire: Independent Item.", "eyewear": "Okulary", "eyewearBase0Text": "Brak okularów", "eyewearBase0Notes": "Brak okularów.", diff --git a/common/locales/pl/generic.json b/common/locales/pl/generic.json index af8ddf2ec3..909639e498 100644 --- a/common/locales/pl/generic.json +++ b/common/locales/pl/generic.json @@ -116,7 +116,7 @@ "audioTheme_luneFoxTheme": "Motyw dźwiękowy LuneFoxa", "askQuestion": "Zadaj pytanie", "reportBug": "Zgłoś błąd", - "HabiticaWiki": "The Habitica Wiki", + "HabiticaWiki": "Wiki Habitiki", "HabiticaWikiFrontPage": "http://habitica.wikia.com/wiki/Habitica_Wiki", "contributeToHRPG": "Wspomóż Habitica", "overview": "Zarys dla nowych użytkowników", @@ -137,6 +137,8 @@ "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!", + "achievementBewilder": "Savior of Mistiflying", + "achievementBewilderText": "Helped defeat the Be-Wilder during the 2016 Spring Fling Event!", "checkOutProgress": "Sprawdź swój postęp w Habitice!", "cardReceived": "Otrzymano kartkę!", "cardReceivedFrom": "<%= cardType %> od <%= userName %>", @@ -158,12 +160,12 @@ "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.", - "birthdayCard": "Birthday Card", - "birthdayCardExplanation": "You both receive the Birthday Bonanza achievement!", - "birthdayCardNotes": "Send a birthday card to a party member.", - "birthday0": "Happy birthday to you!", - "birthdayCardAchievementTitle": "Birthday Bonanza", - "birthdayCardAchievementText": "Many happy returns! Sent or received <%= cards %> birthday cards.", + "birthdayCard": "Kartka urodzinowa", + "birthdayCardExplanation": "Oboje otrzymujecie osiągnięcie Urodzinowe źródło pomyślności!", + "birthdayCardNotes": "Wyślij kartkę urodzinową do członka drużyny.", + "birthday0": "Wszystkiego najlepszego z okazji urodzin!", + "birthdayCardAchievementTitle": "Urodzinowe źródło pomyślności", + "birthdayCardAchievementText": "I jeszcze jeden, i jeszcze raz! Wysłano lub otrzymano <%= cards %> kartek urodzinowych.", "streakAchievement": "Zdobyłeś osiągnięcie serii!", "firstStreakAchievement": "21-dniowa seria", "streakAchievementCount": "<%= streaks %> 21-dniowych serii", @@ -175,5 +177,6 @@ "hatchPetShare": "Mam nowego chowańca dzięki ukończeniu moich zadań w prawdziwym życiu!", "raisePetShare": "Mam nowego wierzchowca dzięki ukończeniu moich zadań w prawdziwym życiu!", "wonChallengeShare": "Wyzwanie zaliczone!", - "achievementShare": "Zdobyto nowe osiągnięcie w Habitice!" + "achievementShare": "Zdobyto nowe osiągnięcie w Habitice!", + "orderBy": "Sortuj po <%= item %>" } \ No newline at end of file diff --git a/common/locales/pl/groups.json b/common/locales/pl/groups.json index 53d15d9c62..64ed982ca2 100644 --- a/common/locales/pl/groups.json +++ b/common/locales/pl/groups.json @@ -1,5 +1,5 @@ { - "tavern": "Karczma", + "tavern": "Pogaduszki w Karczmie", "innCheckOut": "Wymelduj się z Gospody", "innCheckIn": "Odpoczywaj w Gospodzie", "innText": "Odpoczywasz w Gospodzie! Dopóki jesteś zameldowany, twoje Codzienne nie zadadzą ci obrażeń na koniec dnia, jednak w dalszym ciągu codziennie będą się odświeżać. Uważaj: Jeśli uczestniczysz w misji z bossem, wciąż może on zadać tobie obrażenia, jeśli członkowie twojej drużyny ominą Codzienne, chyba że również odpoczywają w Gospodzie! Również twoje obrażenia zadane bossowi (lub zebrane przedmioty) nie zostaną uwzględnione, dopóki nie wymeldujesz się z Gospody.", @@ -101,7 +101,7 @@ "inbox": "Skrzynka odbiorcza", "abuseFlag": "Zgłoś naruszenie regulaminu społeczności.", "abuseFlagModalHeading": "Zgłosić naruszenie zasad przez <%= name %>?", - "abuseFlagModalBody": "Czy jesteś pewien, że chcesz zgłosić tę wiadomość? Powinieneś zgłaszać WYŁĄCZNIE wiadomości, które naruszają <%= firstLinkStart %>Regulamin Społeczności<%= linkEnd %> i/lub <%= secondLinkStart %>Warunki Korzystania z Usług<%= linkEnd %>. Niewłaściwe zgłaszanie wiadomości jest naruszeniem Regulaminu Społeczności i może być potraktowane jako wykroczenie. Właściwe powody do oznaczenia wiadomości to między innymi:


", + "abuseFlagModalBody": "Czy na pewno chcesz zgłosić ten post? Powinieneś TYLKO zgłaszać posty, które naruszają <%= firstLinkStart %>Regulamin Społeczności<%= linkEnd %>oraz/lub <%= secondLinkStart %>Warunki<%= linkEnd %>. Niewłaściwe zgłaszanie postów jest naruszeniem Regulaminu Społeczności i może doprowadzić do zgłoszenia. Właściwymi powodami do oznaczania postów są, ale i nie tylko: