Compare commits

...

4 Commits

Author SHA1 Message Date
Sabe Jones
5d6e8c8729 3.107.0 2017-07-31 20:34:57 +00:00
Sabe Jones
4659b1cc5c chore(i18n): update locales 2017-07-31 20:33:55 +00:00
SabreCat
06c58bfae2 chore(sprites): compile 2017-07-31 20:23:19 +00:00
SabreCat
568e8840ed feat(event): Naming Day 2017 2017-07-31 20:22:09 +00:00
287 changed files with 9185 additions and 8650 deletions

View File

@@ -6,7 +6,7 @@ RUN npm install -g gulp grunt-cli bower mocha
# Clone Habitica repo and install dependencies
RUN mkdir -p /usr/src/habitrpg
WORKDIR /usr/src/habitrpg
RUN git clone --branch v3.105.0 https://github.com/HabitRPG/habitica.git /usr/src/habitrpg
RUN git clone --branch v3.106.1 https://github.com/HabitRPG/habitica.git /usr/src/habitrpg
RUN npm install
RUN bower install --allow-root
RUN gulp build:prod --force

View File

@@ -0,0 +1,109 @@
var migrationName = '20170731_naming_day.js';
var authorName = 'Sabe'; // in case script author needs to know when their ...
var authorUuid = '7f14ed62-5408-4e1b-be83-ada62d504931'; //... own data is done
/*
* Award Royal Purple Gryphon Helm to Royal Purple Gryphon pet owners,
* award Royal Purple Gryphon pet to Royal Purple Gryphon mount owners,
* award Royal Purple Gryphon mount to everyone else
*/
var monk = require('monk');
var connectionString = 'mongodb://localhost:27017/habitrpg?auto_reconnect=true'; // FOR TEST DATABASE
var dbUsers = monk(connectionString).get('users', { castIds: false });
function processUsers(lastId) {
// specify a query to limit the affected users (empty for all users):
var query = {
'migration':{$ne:migrationName},
'auth.timestamps.loggedin': {$gt: new Date('2017-01-01')},
};
if (lastId) {
query._id = {
$gt: lastId
}
}
dbUsers.find(query, {
sort: {_id: 1},
limit: 250,
fields: [
'items.mounts',
'items.pets',
] // specify fields we are interested in to limit retrieved data (empty if we're not reading data):
})
.then(updateUsers)
.catch(function (err) {
console.log(err);
return exiting(1, 'ERROR! ' + err);
});
}
var progressCount = 1000;
var count = 0;
function updateUsers (users) {
if (!users || users.length === 0) {
console.warn('All appropriate users found and modified.');
displayData();
return;
}
var userPromises = users.map(updateUser);
var lastUser = users[users.length - 1];
return Promise.all(userPromises)
.then(function () {
processUsers(lastUser._id);
});
}
function updateUser (user) {
count++;
var set = {};
var inc = {
'achievements.habiticaDays': 1,
'items.food.Cake_Skeleton': 1,
'items.food.Cake_Base': 1,
'items.food.Cake_CottonCandyBlue': 1,
'items.food.Cake_CottonCandyPink': 1,
'items.food.Cake_Shade': 1,
'items.food.Cake_White': 1,
'items.food.Cake_Golden': 1,
'items.food.Cake_Zombie': 1,
'items.food.Cake_Desert': 1,
'items.food.Cake_Red': 1
};
if (user.items.pets['Gryphon-RoyalPurple']) {
set = {'migration':migrationName, 'items.gear.owned.head_special_namingDay2017': false};
} else if (user.items.mounts['Gryphon-RoyalPurple']) {
set = {'migration':migrationName, 'items.pets.Gryphon-RoyalPurple': 5};
} else {
set = {'migration':migrationName, 'items.mounts.Gryphon-RoyalPurple': true};
}
dbUsers.update({_id: user._id}, {$set: set, $inc: inc});
if (count % progressCount == 0) console.warn(count + ' ' + user._id);
if (user._id == authorUuid) console.warn(authorName + ' processed');
}
function displayData() {
console.warn('\n' + count + ' users processed\n');
return exiting(0);
}
function exiting(code, msg) {
code = code || 0; // 0 = success
if (code && !msg) { msg = 'ERROR!'; }
if (msg) {
if (code) { console.error(msg); }
else { console.log( msg); }
}
process.exit(code);
}
module.exports = processUsers;

2
npm-shrinkwrap.json generated
View File

@@ -1,6 +1,6 @@
{
"name": "habitica",
"version": "3.101.2",
"version": "3.106.1",
"dependencies": {
"@gulp-sourcemaps/map-sources": {
"version": "1.0.0",

View File

@@ -1,7 +1,7 @@
{
"name": "habitica",
"description": "A habit tracker app which treats your goals like a Role Playing Game.",
"version": "3.106.1",
"version": "3.107.0",
"main": "./website/server/index.js",
"dependencies": {
"@slack/client": "^3.8.1",

View File

@@ -1,462 +1,462 @@
.promo_mystery_201611 {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1571px -992px;
background-position: -1811px -1322px;
width: 90px;
height: 99px;
}
.promo_mystery_201612 {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -586px 0px;
background-position: 0px 0px;
width: 558px;
height: 294px;
}
.promo_mystery_201701 {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1712px -300px;
background-position: -1811px -1125px;
width: 90px;
height: 105px;
}
.promo_mystery_201702 {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -584px -1538px;
background-position: -1510px -890px;
width: 279px;
height: 147px;
}
.promo_mystery_201703 {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -301px -1538px;
background-position: -1510px -151px;
width: 282px;
height: 147px;
}
.promo_mystery_201704 {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1662px -992px;
background-position: -1811px -1422px;
width: 90px;
height: 90px;
}
.promo_mystery_201705 {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1040px -1247px;
background-position: -1510px -299px;
width: 282px;
height: 147px;
}
.promo_mystery_201706 {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1812px -1489px;
background-position: -1811px -663px;
width: 111px;
height: 90px;
}
.promo_mystery_201707 {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1921px -1668px;
background-position: -1811px -1231px;
width: 105px;
height: 90px;
}
.promo_mystery_3014 {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1812px -1230px;
background-position: -620px -1491px;
width: 217px;
height: 90px;
}
.promo_naming_day_2017 {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1651px -595px;
width: 159px;
height: 141px;
}
.promo_new_hair_fall2016 {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1429px -442px;
background-position: -1368px -442px;
width: 140px;
height: 441px;
}
.promo_orca {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1963px -783px;
background-position: -1811px -557px;
width: 105px;
height: 105px;
}
.promo_orcas {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1571px -844px;
background-position: -849px -295px;
width: 219px;
height: 147px;
}
.promo_partyhats {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1951px -1158px;
background-position: -1811px -1513px;
width: 115px;
height: 47px;
}
.promo_pastel_skin {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1110px -1422px;
background-position: -659px -702px;
width: 330px;
height: 83px;
}
.customize-option.promo_pastel_skin {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1135px -1437px;
background-position: -684px -717px;
width: 60px;
height: 60px;
}
.promo_pastel_skin_hair {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -824px -1096px;
background-position: -824px -1049px;
width: 354px;
height: 147px;
}
.customize-option.promo_pastel_skin_hair {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -849px -1111px;
background-position: -849px -1064px;
width: 60px;
height: 60px;
}
.promo_peppermint_flame {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1812px -934px;
background-position: -1368px -884px;
width: 140px;
height: 147px;
}
.promo_pet_skins {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1953px -934px;
background-position: -1226px -884px;
width: 140px;
height: 147px;
}
.customize-option.promo_pet_skins {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1978px -949px;
background-position: -1251px -899px;
width: 60px;
height: 60px;
}
.promo_pyromancer {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1963px -632px;
background-position: -1811px -443px;
width: 113px;
height: 113px;
}
.promo_rainbow_armor {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1712px -196px;
background-position: -1811px -1021px;
width: 92px;
height: 103px;
}
.promo_redesign_header {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: 0px -1491px;
width: 166px;
height: 188px;
}
.promo_redesign_login {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -559px 0px;
width: 524px;
height: 274px;
}
.promo_redesign_tavern {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -328px -515px;
width: 375px;
height: 186px;
}
.promo_seafoam {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1429px 0px;
background-position: -1226px -442px;
width: 141px;
height: 441px;
}
.promo_seasonal_shop_fall_2016 {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -864px -1538px;
background-position: -1510px -742px;
width: 279px;
height: 147px;
}
.promo_shimmer_hair {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1144px -1538px;
background-position: -328px -702px;
width: 330px;
height: 83px;
}
.promo_shimmer_potions {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1287px -442px;
background-position: -1226px 0px;
width: 141px;
height: 441px;
}
.promo_shinySeeds {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1287px 0px;
background-position: -1368px 0px;
width: 141px;
height: 441px;
}
.promo_splashy_skins {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -725px -562px;
background-position: -704px -515px;
width: 375px;
height: 186px;
}
.customize-option.promo_splashy_skins {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -750px -577px;
background-position: -729px -530px;
width: 60px;
height: 60px;
}
.promo_splashyskins {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1812px -1321px;
background-position: -1300px -1200px;
width: 198px;
height: 91px;
}
.customize-option.promo_splashyskins {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1837px -1336px;
background-position: -1325px -1215px;
width: 60px;
height: 60px;
}
.promo_spooky_sparkles_fall_2016 {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1571px -196px;
background-position: -1510px -447px;
width: 140px;
height: 294px;
}
.promo_spring_classes_2016 {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -687px -984px;
background-position: -687px -937px;
width: 362px;
height: 102px;
}
.promo_spring_classes_2017 {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1179px -1096px;
background-position: -1179px -1049px;
width: 309px;
height: 147px;
}
.promo_springclasses2014 {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1812px -91px;
background-position: -784px -1396px;
width: 288px;
height: 90px;
}
.promo_springclasses2015 {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1812px 0px;
background-position: -1073px -1396px;
width: 288px;
height: 90px;
}
.promo_staff_spotlight_Lemoness {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1963px -330px;
background-position: -1811px -148px;
width: 102px;
height: 146px;
}
.promo_staff_spotlight_Viirus {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1969px -182px;
background-position: -1811px 0px;
width: 119px;
height: 147px;
}
.promo_staff_spotlight_paglias {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1963px -481px;
background-position: -1811px -295px;
width: 99px;
height: 147px;
}
.promo_steampunk_3017 {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -141px -1096px;
background-position: -282px -1049px;
width: 140px;
height: 441px;
}
.promo_summer_classes_2014 {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -257px -984px;
background-position: -257px -937px;
width: 429px;
height: 102px;
}
.promo_summer_classes_2015 {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: 0px -1689px;
background-position: -1510px -1391px;
width: 300px;
height: 88px;
}
.promo_summer_classes_2016 {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -423px -1096px;
background-position: -423px -1049px;
width: 400px;
height: 150px;
}
.promo_summer_classes_2017 {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1145px 0px;
background-position: -1084px 0px;
width: 141px;
height: 588px;
}
.promo_takeThis_gear {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1812px -1580px;
background-position: -1811px -842px;
width: 114px;
height: 87px;
}
.promo_takethis_armor {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1924px -1489px;
background-position: -1811px -754px;
width: 114px;
height: 87px;
}
.promo_task_planning {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1571px 0px;
background-position: -423px -1200px;
width: 240px;
height: 195px;
}
.promo_turkey_day_2016 {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: 0px -1096px;
background-position: -141px -1049px;
width: 140px;
height: 441px;
}
.promo_unconventional_armor {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -2011px -1321px;
background-position: -1733px -1038px;
width: 60px;
height: 60px;
}
.promo_unconventional_armor2 {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -2030px -1230px;
background-position: -1811px -1561px;
width: 70px;
height: 74px;
}
.promo_updos {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1812px -182px;
background-position: -1651px -447px;
width: 156px;
height: 147px;
}
.promo_veteran_pets {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1951px -1082px;
background-position: -1362px -1396px;
width: 146px;
height: 75px;
}
.promo_winter_classes_2016 {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -749px -1422px;
background-position: -423px -1396px;
width: 360px;
height: 90px;
}
.promo_winter_classes_2017 {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -257px -839px;
background-position: -257px -792px;
width: 432px;
height: 144px;
}
.promo_winter_fireworks {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1812px -1082px;
background-position: -1084px -589px;
width: 138px;
height: 147px;
}
.promo_winterclasses2015 {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -423px -1422px;
background-position: -974px -1200px;
width: 325px;
height: 110px;
}
.promo_wintery_skins {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -282px -1096px;
background-position: 0px -1049px;
width: 140px;
height: 441px;
}
.customize-option.promo_wintery_skins {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -307px -1111px;
background-position: -25px -1064px;
width: 60px;
height: 60px;
}
.promo_winteryhair {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1812px -1413px;
background-position: -1050px -937px;
width: 152px;
height: 75px;
}
.avatar_variety {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -690px -839px;
background-position: -690px -792px;
width: 498px;
height: 95px;
}
.npc_viirus {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1812px -1668px;
background-position: -1811px -930px;
width: 108px;
height: 90px;
}
.party_preview {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -499px -312px;
background-position: 0px -295px;
width: 451px;
height: 219px;
}
.promo_backtoschool {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1812px -481px;
background-position: -469px -1491px;
width: 150px;
height: 150px;
}
.promo_cooking {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -328px -562px;
background-position: -452px -295px;
width: 396px;
height: 219px;
}
.promo_startingover {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1812px -330px;
background-position: -318px -1491px;
width: 150px;
height: 150px;
}
.promo_valentines {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -730px -1247px;
background-position: -664px -1200px;
width: 309px;
height: 147px;
}
.promo_working_out {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: 0px -1538px;
background-position: -1510px 0px;
width: 300px;
height: 150px;
}
.scene_arts_crafts {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: 0px -839px;
background-position: 0px -792px;
width: 256px;
height: 256px;
}
.scene_buying_rewards {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1571px -663px;
background-position: -1510px -1210px;
width: 207px;
height: 180px;
}
.scene_coding {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1812px -632px;
background-position: -167px -1491px;
width: 150px;
height: 150px;
}
.scene_dailies {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: 0px -562px;
background-position: 0px -515px;
width: 327px;
height: 276px;
}
.scene_eco_friendly {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1571px -491px;
background-position: -1510px -1038px;
width: 222px;
height: 171px;
}
.scene_guilds {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: 0px -312px;
width: 498px;
height: 249px;
}
.scene_habitica_house {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: 0px 0px;
width: 585px;
height: 311px;
}
.scene_habits {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -423px -1247px;
width: 306px;
height: 174px;
}
.scene_meditation {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1812px -783px;
width: 150px;
height: 150px;
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 996 KiB

After

Width:  |  Height:  |  Size: 559 KiB

View File

@@ -1,54 +1,78 @@
.scene_guilds {
background-image: url(/static/sprites/spritesmith-largeSprites-2.png);
background-position: 0px -312px;
width: 498px;
height: 249px;
}
.scene_habitica_house {
background-image: url(/static/sprites/spritesmith-largeSprites-2.png);
background-position: 0px 0px;
width: 585px;
height: 311px;
}
.scene_habits {
background-image: url(/static/sprites/spritesmith-largeSprites-2.png);
background-position: 0px -562px;
width: 306px;
height: 174px;
}
.scene_meditation {
background-image: url(/static/sprites/spritesmith-largeSprites-2.png);
background-position: -422px -737px;
width: 150px;
height: 150px;
}
.scene_pet_hatching {
background-image: url(/static/sprites/spritesmith-largeSprites-2.png);
background-position: -340px 0px;
background-position: -586px -343px;
width: 315px;
height: 195px;
}
.scene_phone_peek {
background-image: url(/static/sprites/spritesmith-largeSprites-2.png);
background-position: -494px -542px;
background-position: -271px -737px;
width: 150px;
height: 150px;
}
.scene_raking_leaves {
background-image: url(/static/sprites/spritesmith-largeSprites-2.png);
background-position: 0px -343px;
background-position: -926px 0px;
width: 246px;
height: 198px;
}
.scene_task_list {
background-image: url(/static/sprites/spritesmith-largeSprites-2.png);
background-position: -656px 0px;
background-position: -926px -199px;
width: 240px;
height: 195px;
}
.scene_todos {
background-image: url(/static/sprites/spritesmith-largeSprites-2.png);
background-position: -656px -196px;
background-position: -926px -395px;
width: 240px;
height: 195px;
}
.scene_video_games {
background-image: url(/static/sprites/spritesmith-largeSprites-2.png);
background-position: 0px 0px;
background-position: -586px 0px;
width: 339px;
height: 342px;
}
.welcome_basic_avatars {
background-image: url(/static/sprites/spritesmith-largeSprites-2.png);
background-position: 0px -542px;
background-position: -307px -562px;
width: 246px;
height: 165px;
}
.welcome_promo_party {
background-image: url(/static/sprites/spritesmith-largeSprites-2.png);
background-position: -247px -343px;
background-position: 0px -737px;
width: 270px;
height: 180px;
}
.welcome_sample_tasks {
background-image: url(/static/sprites/spritesmith-largeSprites-2.png);
background-position: -247px -542px;
background-position: -554px -562px;
width: 246px;
height: 165px;
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 41 KiB

After

Width:  |  Height:  |  Size: 440 KiB

View File

@@ -1,6 +1,6 @@
.achievement-alien {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1698px -1246px;
background-position: -1698px -1299px;
width: 24px;
height: 26px;
}
@@ -18,83 +18,89 @@
}
.achievement-armor2x {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1698px -1166px;
background-position: -1698px -1219px;
width: 48px;
height: 52px;
}
.achievement-bewilder2x {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1698px -1113px;
background-position: -1698px -1166px;
width: 48px;
height: 52px;
}
.achievement-birthday2x {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1698px -1060px;
background-position: -1698px -1113px;
width: 48px;
height: 52px;
}
.achievement-boot2x {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1698px -1007px;
background-position: -1698px -1060px;
width: 48px;
height: 52px;
}
.achievement-bow2x {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1698px -954px;
background-position: -1698px -1007px;
width: 48px;
height: 52px;
}
.achievement-burnout2x {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1698px -901px;
background-position: -1698px -954px;
width: 48px;
height: 52px;
}
.achievement-cactus2x {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1698px -848px;
background-position: -1698px -901px;
width: 48px;
height: 52px;
}
.achievement-cake2x {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1698px -795px;
background-position: -1698px -848px;
width: 48px;
height: 52px;
}
.achievement-cave2x {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1698px -742px;
background-position: -1698px -795px;
width: 48px;
height: 52px;
}
.achievement-challenge2x {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1698px -689px;
background-position: -1698px -742px;
width: 48px;
height: 52px;
}
.achievement-comment2x {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1698px -636px;
background-position: -1698px -689px;
width: 48px;
height: 52px;
}
.achievement-congrats2x {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1698px -583px;
background-position: -1698px -636px;
width: 48px;
height: 52px;
}
.achievement-costumeContest2x {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1698px -530px;
background-position: -1698px -583px;
width: 48px;
height: 52px;
}
.achievement-dilatory2x {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1698px -530px;
width: 48px;
height: 52px;
}
.achievement-friends2x {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1698px -477px;
width: 48px;
@@ -150,19 +156,19 @@
}
.achievement-karaoke {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1698px -1219px;
background-position: -1698px -1272px;
width: 24px;
height: 26px;
}
.achievement-ninja2x {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1638px -1571px;
background-position: -1638px -1480px;
width: 48px;
height: 52px;
}
.achievement-npc2x {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1638px -1480px;
background-position: -1589px -1571px;
width: 48px;
height: 52px;
}
@@ -312,31 +318,31 @@
}
.achievement-wolf2x {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1589px -1571px;
background-position: -1638px -1571px;
width: 48px;
height: 52px;
}
.background_alpine_slopes {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -852px -148px;
background-position: -852px -296px;
width: 140px;
height: 147px;
}
.background_aquarium {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -852px -296px;
background-position: -852px -444px;
width: 140px;
height: 147px;
}
.background_archery_range {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -852px -444px;
background-position: -852px -592px;
width: 140px;
height: 147px;
}
.background_autumn_forest {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -852px -592px;
background-position: 0px -740px;
width: 140px;
height: 147px;
}
@@ -354,37 +360,37 @@
}
.background_beehive {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -282px -740px;
background-position: -423px -740px;
width: 140px;
height: 147px;
}
.background_bell_tower {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -423px -740px;
background-position: -564px -740px;
width: 140px;
height: 147px;
}
.background_blacksmithy {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -564px -740px;
background-position: -705px -740px;
width: 140px;
height: 147px;
}
.background_blizzard {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -705px -740px;
background-position: -846px -740px;
width: 140px;
height: 147px;
}
.background_blue {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -846px -740px;
background-position: -993px 0px;
width: 140px;
height: 147px;
}
.background_bug_covered_log {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -993px 0px;
background-position: -993px -148px;
width: 140px;
height: 147px;
}
@@ -396,25 +402,25 @@
}
.background_cherry_trees {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -993px -296px;
background-position: -993px -444px;
width: 140px;
height: 147px;
}
.background_clouds {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -993px -444px;
background-position: -993px -592px;
width: 140px;
height: 147px;
}
.background_coral_reef {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -993px -592px;
background-position: -993px -740px;
width: 140px;
height: 147px;
}
.background_cornfields {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -993px -740px;
background-position: 0px -888px;
width: 140px;
height: 147px;
}
@@ -426,103 +432,103 @@
}
.background_crystal_cave {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -141px -888px;
background-position: -282px -888px;
width: 140px;
height: 147px;
}
.background_deep_mine {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -282px -888px;
background-position: -423px -888px;
width: 140px;
height: 147px;
}
.background_deep_sea {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -423px -888px;
background-position: -564px -888px;
width: 140px;
height: 147px;
}
.background_dilatory_castle {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -564px -888px;
background-position: -705px -888px;
width: 140px;
height: 147px;
}
.background_dilatory_ruins {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -705px -888px;
background-position: -846px -888px;
width: 140px;
height: 147px;
}
.background_distant_castle {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -846px -888px;
background-position: -987px -888px;
width: 140px;
height: 147px;
}
.background_drifting_raft {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -987px -888px;
background-position: -1134px 0px;
width: 140px;
height: 147px;
}
.background_dusty_canyons {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1134px 0px;
background-position: -1134px -148px;
width: 140px;
height: 147px;
}
.background_fairy_ring {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1134px -148px;
background-position: -1134px -296px;
width: 140px;
height: 147px;
}
.background_farmhouse {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1134px -296px;
background-position: -1134px -444px;
width: 140px;
height: 147px;
}
.background_floating_islands {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1134px -444px;
background-position: -426px -592px;
width: 140px;
height: 147px;
}
.background_floral_meadow {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -426px -592px;
background-position: -1134px -740px;
width: 140px;
height: 147px;
}
.background_forest {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1134px -740px;
background-position: -1134px -888px;
width: 140px;
height: 147px;
}
.background_frigid_peak {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1134px -888px;
background-position: 0px -1036px;
width: 140px;
height: 147px;
}
.background_frozen_lake {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: 0px -1036px;
background-position: -141px -1036px;
width: 140px;
height: 147px;
}
.background_gazebo {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -141px -1036px;
background-position: -282px -1036px;
width: 140px;
height: 147px;
}
.background_giant_birdhouse {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -282px -1036px;
background-position: -423px -1036px;
width: 140px;
height: 147px;
}
@@ -552,13 +558,13 @@
}
.background_graveyard {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -987px -1036px;
background-position: -1128px -1036px;
width: 140px;
height: 147px;
}
.background_green {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1128px -1036px;
background-position: -1275px 0px;
width: 140px;
height: 147px;
}
@@ -570,7 +576,7 @@
}
.background_gumdrop_land {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1275px -148px;
background-position: -1275px -296px;
width: 140px;
height: 147px;
}
@@ -582,7 +588,7 @@
}
.background_harvest_feast {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -846px -1036px;
background-position: -987px -1036px;
width: 140px;
height: 147px;
}
@@ -600,7 +606,7 @@
}
.background_haunted_house {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1275px -888px;
background-position: -1275px -1036px;
width: 140px;
height: 147px;
}
@@ -612,19 +618,19 @@
}
.background_iceberg {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: 0px -1184px;
background-position: -141px -1184px;
width: 140px;
height: 147px;
}
.background_idyllic_cabin {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -141px -1184px;
background-position: -282px -1184px;
width: 140px;
height: 147px;
}
.background_island_waterfalls {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -282px -1184px;
background-position: -423px -1184px;
width: 140px;
height: 147px;
}
@@ -636,19 +642,19 @@
}
.background_lighthouse_shore {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -564px -1184px;
background-position: -705px -1184px;
width: 140px;
height: 147px;
}
.background_lilypad {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -705px -1184px;
background-position: -846px -1184px;
width: 140px;
height: 147px;
}
.background_magic_beanstalk {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -846px -1184px;
background-position: -987px -1184px;
width: 140px;
height: 147px;
}
@@ -660,19 +666,19 @@
}
.background_market {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1128px -1184px;
background-position: -1269px -1184px;
width: 140px;
height: 147px;
}
.background_meandering_cave {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1269px -1184px;
background-position: -1416px 0px;
width: 140px;
height: 147px;
}
.background_midnight_clouds {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1416px 0px;
background-position: -1416px -148px;
width: 140px;
height: 147px;
}
@@ -684,31 +690,31 @@
}
.background_mist_shrouded_mountain {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1416px -296px;
background-position: -1416px -444px;
width: 140px;
height: 147px;
}
.background_mistiflying_circus {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1416px -444px;
background-position: -1416px -592px;
width: 140px;
height: 147px;
}
.background_mountain_lake {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1416px -592px;
background-position: -1416px -740px;
width: 140px;
height: 147px;
}
.background_mountain_pyramid {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1416px -740px;
background-position: -1416px -888px;
width: 140px;
height: 147px;
}
.background_night_dunes {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1416px -888px;
background-position: -1416px -1036px;
width: 140px;
height: 147px;
}
@@ -732,25 +738,25 @@
}
.background_orchard {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -141px -1332px;
background-position: -282px -1332px;
width: 140px;
height: 147px;
}
.background_pagodas {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -282px -1332px;
background-position: -423px -1332px;
width: 140px;
height: 147px;
}
.background_pumpkin_patch {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -423px -1332px;
background-position: -564px -1332px;
width: 140px;
height: 147px;
}
.background_purple {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -564px -1332px;
background-position: -705px -1332px;
width: 140px;
height: 147px;
}
@@ -774,13 +780,13 @@
}
.background_rainy_city {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1128px -1332px;
background-position: -1269px -1332px;
width: 140px;
height: 147px;
}
.background_red {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1269px -1332px;
background-position: -1410px -1332px;
width: 140px;
height: 147px;
}
@@ -798,61 +804,61 @@
}
.background_seafarer_ship {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1557px -148px;
background-position: -1557px -296px;
width: 140px;
height: 147px;
}
.background_shimmering_ice_prism {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1557px -296px;
background-position: -1557px -444px;
width: 140px;
height: 147px;
}
.background_shimmery_bubbles {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1557px -444px;
background-position: -1557px -592px;
width: 140px;
height: 147px;
}
.background_slimy_swamp {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1557px -592px;
background-position: -1557px -740px;
width: 140px;
height: 147px;
}
.background_snowman_army {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1557px -740px;
background-position: -1557px -888px;
width: 140px;
height: 147px;
}
.background_snowy_pines {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1557px -888px;
background-position: -1557px -1036px;
width: 140px;
height: 147px;
}
.background_snowy_sunrise {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1557px -1036px;
background-position: -1557px -1184px;
width: 140px;
height: 147px;
}
.background_south_pole {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1557px -1184px;
background-position: -1557px -1332px;
width: 140px;
height: 147px;
}
.background_sparkling_snowflake {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1557px -1332px;
background-position: -1275px -592px;
width: 140px;
height: 147px;
}
.background_spider_web {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1275px -444px;
background-position: -852px -148px;
width: 140px;
height: 147px;
}
@@ -876,73 +882,73 @@
}
.background_starry_skies {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1557px 0px;
background-position: -1557px -148px;
width: 140px;
height: 147px;
}
.background_stoikalm_volcanoes {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1410px -1332px;
background-position: -1557px 0px;
width: 140px;
height: 147px;
}
.background_stone_circle {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -987px -1332px;
background-position: -1128px -1332px;
width: 140px;
height: 147px;
}
.background_stormy_rooftops {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -846px -1332px;
background-position: -987px -1332px;
width: 140px;
height: 147px;
}
.background_stormy_ship {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -705px -1332px;
background-position: -846px -1332px;
width: 140px;
height: 147px;
}
.background_strange_sewers {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: 0px -1332px;
background-position: -141px -1332px;
width: 140px;
height: 147px;
}
.background_sunken_ship {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1416px -1184px;
background-position: 0px -1332px;
width: 140px;
height: 147px;
}
.background_sunset_meadow {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1416px -1036px;
background-position: -1416px -1184px;
width: 140px;
height: 147px;
}
.background_sunset_oasis {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1416px -148px;
background-position: -1416px -296px;
width: 140px;
height: 147px;
}
.background_sunset_savannah {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -987px -1184px;
background-position: -1128px -1184px;
width: 140px;
height: 147px;
}
.background_swarming_darkness {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -423px -1184px;
background-position: -564px -1184px;
width: 140px;
height: 147px;
}
.background_tavern {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1275px -1036px;
background-position: 0px -1184px;
width: 140px;
height: 147px;
}
@@ -954,13 +960,13 @@
}
.background_treasure_room {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1275px -592px;
background-position: -1275px -740px;
width: 140px;
height: 147px;
}
.background_tree_roots {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1275px -296px;
background-position: -1275px -444px;
width: 140px;
height: 147px;
}
@@ -978,55 +984,55 @@
}
.background_violet {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -705px -1036px;
background-position: -846px -1036px;
width: 140px;
height: 147px;
}
.background_volcano {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -564px -1036px;
background-position: -705px -1036px;
width: 140px;
height: 147px;
}
.background_waterfall_rock {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -423px -1036px;
background-position: -564px -1036px;
width: 140px;
height: 147px;
}
.background_wedding_arch {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: 0px -888px;
background-position: -141px -888px;
width: 140px;
height: 147px;
}
.background_windy_autumn {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -993px -148px;
background-position: -993px -296px;
width: 140px;
height: 147px;
}
.background_winter_fireworks {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -141px -740px;
background-position: -282px -740px;
width: 140px;
height: 147px;
}
.background_winter_night {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: 0px -740px;
background-position: -141px -740px;
width: 140px;
height: 147px;
}
.background_winter_storefront {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1275px -740px;
background-position: -1275px -888px;
width: 140px;
height: 147px;
}
.background_winter_town {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1275px 0px;
background-position: -1275px -148px;
width: 140px;
height: 147px;
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 517 KiB

After

Width:  |  Height:  |  Size: 517 KiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 161 KiB

After

Width:  |  Height:  |  Size: 163 KiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 129 KiB

After

Width:  |  Height:  |  Size: 131 KiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 162 KiB

After

Width:  |  Height:  |  Size: 162 KiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 142 KiB

After

Width:  |  Height:  |  Size: 142 KiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 157 KiB

After

Width:  |  Height:  |  Size: 158 KiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 146 KiB

After

Width:  |  Height:  |  Size: 147 KiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 182 KiB

After

Width:  |  Height:  |  Size: 182 KiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 161 KiB

After

Width:  |  Height:  |  Size: 162 KiB

View File

@@ -1,522 +1,546 @@
.Pet-TRex-Zombie {
.Pet-TRex-Red {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -82px 0px;
width: 81px;
height: 99px;
}
.Pet-Triceratops-Base {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -246px -500px;
width: 81px;
height: 99px;
}
.Pet-Triceratops-CottonCandyBlue {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -164px 0px;
width: 81px;
height: 99px;
}
.Pet-Triceratops-CottonCandyPink {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: 0px -100px;
width: 81px;
height: 99px;
}
.Pet-Triceratops-Desert {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -82px -100px;
width: 81px;
height: 99px;
}
.Pet-Triceratops-Golden {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -164px -100px;
width: 81px;
height: 99px;
}
.Pet-Triceratops-Red {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -246px 0px;
width: 81px;
height: 99px;
}
.Pet-Triceratops-Shade {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -246px -100px;
width: 81px;
height: 99px;
}
.Pet-Triceratops-Skeleton {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: 0px -200px;
width: 81px;
height: 99px;
}
.Pet-Triceratops-White {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -82px -200px;
width: 81px;
height: 99px;
}
.Pet-Triceratops-Zombie {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -164px -200px;
width: 81px;
height: 99px;
}
.Pet-Turkey-Base {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -246px -200px;
width: 81px;
height: 99px;
}
.Pet-Turkey-Gilded {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -328px 0px;
width: 81px;
height: 99px;
}
.Pet-Turtle-Base {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -328px -100px;
width: 81px;
height: 99px;
}
.Pet-Turtle-CottonCandyBlue {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -328px -200px;
width: 81px;
height: 99px;
}
.Pet-Turtle-CottonCandyPink {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: 0px -300px;
width: 81px;
height: 99px;
}
.Pet-Turtle-Desert {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -82px -300px;
width: 81px;
height: 99px;
}
.Pet-Turtle-Golden {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -164px -300px;
width: 81px;
height: 99px;
}
.Pet-Turtle-Red {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -246px -300px;
width: 81px;
height: 99px;
}
.Pet-Turtle-Shade {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -328px -300px;
width: 81px;
height: 99px;
}
.Pet-Turtle-Skeleton {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -410px 0px;
width: 81px;
height: 99px;
}
.Pet-Turtle-White {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -410px -100px;
width: 81px;
height: 99px;
}
.Pet-Turtle-Zombie {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -410px -200px;
width: 81px;
height: 99px;
}
.Pet-Unicorn-Base {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -410px -300px;
width: 81px;
height: 99px;
}
.Pet-Unicorn-CottonCandyBlue {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -492px 0px;
width: 81px;
height: 99px;
}
.Pet-Unicorn-CottonCandyPink {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -492px -100px;
width: 81px;
height: 99px;
}
.Pet-Unicorn-Desert {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -492px -200px;
width: 81px;
height: 99px;
}
.Pet-Unicorn-Golden {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -492px -300px;
width: 81px;
height: 99px;
}
.Pet-Unicorn-Red {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: 0px -400px;
width: 81px;
height: 99px;
}
.Pet-Unicorn-Shade {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -82px -400px;
width: 81px;
height: 99px;
}
.Pet-Unicorn-Skeleton {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -164px -400px;
width: 81px;
height: 99px;
}
.Pet-Unicorn-White {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -246px -400px;
width: 81px;
height: 99px;
}
.Pet-Unicorn-Zombie {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -328px -400px;
width: 81px;
height: 99px;
}
.Pet-Whale-Base {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -410px -400px;
width: 81px;
height: 99px;
}
.Pet-Whale-CottonCandyBlue {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -492px -400px;
width: 81px;
height: 99px;
}
.Pet-Whale-CottonCandyPink {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -574px 0px;
width: 81px;
height: 99px;
}
.Pet-Whale-Desert {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -574px -100px;
width: 81px;
height: 99px;
}
.Pet-Whale-Golden {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -574px -200px;
width: 81px;
height: 99px;
}
.Pet-Whale-Red {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -574px -300px;
width: 81px;
height: 99px;
}
.Pet-Whale-Shade {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -574px -400px;
width: 81px;
height: 99px;
}
.Pet-Whale-Skeleton {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: 0px -500px;
width: 81px;
height: 99px;
}
.Pet-Whale-White {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -82px -500px;
width: 81px;
height: 99px;
}
.Pet-Whale-Zombie {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -164px -500px;
width: 81px;
height: 99px;
}
.Pet-Wolf-Aquatic {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: 0px 0px;
width: 81px;
height: 99px;
}
.Pet-Wolf-Base {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -328px -500px;
width: 81px;
height: 99px;
}
.Pet-Wolf-CottonCandyBlue {
.Pet-TRex-Shade {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -410px -500px;
width: 81px;
height: 99px;
}
.Pet-Wolf-CottonCandyPink {
.Pet-TRex-Skeleton {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -164px 0px;
width: 81px;
height: 99px;
}
.Pet-TRex-White {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: 0px -100px;
width: 81px;
height: 99px;
}
.Pet-TRex-Zombie {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -82px -100px;
width: 81px;
height: 99px;
}
.Pet-Triceratops-Base {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -164px -100px;
width: 81px;
height: 99px;
}
.Pet-Triceratops-CottonCandyBlue {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -246px 0px;
width: 81px;
height: 99px;
}
.Pet-Triceratops-CottonCandyPink {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -246px -100px;
width: 81px;
height: 99px;
}
.Pet-Triceratops-Desert {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: 0px -200px;
width: 81px;
height: 99px;
}
.Pet-Triceratops-Golden {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -82px -200px;
width: 81px;
height: 99px;
}
.Pet-Triceratops-Red {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -164px -200px;
width: 81px;
height: 99px;
}
.Pet-Triceratops-Shade {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -246px -200px;
width: 81px;
height: 99px;
}
.Pet-Triceratops-Skeleton {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -328px 0px;
width: 81px;
height: 99px;
}
.Pet-Triceratops-White {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -328px -100px;
width: 81px;
height: 99px;
}
.Pet-Triceratops-Zombie {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -328px -200px;
width: 81px;
height: 99px;
}
.Pet-Turkey-Base {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: 0px -300px;
width: 81px;
height: 99px;
}
.Pet-Turkey-Gilded {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -82px -300px;
width: 81px;
height: 99px;
}
.Pet-Turtle-Base {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -164px -300px;
width: 81px;
height: 99px;
}
.Pet-Turtle-CottonCandyBlue {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -246px -300px;
width: 81px;
height: 99px;
}
.Pet-Turtle-CottonCandyPink {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -328px -300px;
width: 81px;
height: 99px;
}
.Pet-Turtle-Desert {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -410px 0px;
width: 81px;
height: 99px;
}
.Pet-Turtle-Golden {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -410px -100px;
width: 81px;
height: 99px;
}
.Pet-Turtle-Red {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -410px -200px;
width: 81px;
height: 99px;
}
.Pet-Turtle-Shade {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -410px -300px;
width: 81px;
height: 99px;
}
.Pet-Turtle-Skeleton {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -492px 0px;
width: 81px;
height: 99px;
}
.Pet-Turtle-White {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -492px -100px;
width: 81px;
height: 99px;
}
.Pet-Turtle-Zombie {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -492px -200px;
width: 81px;
height: 99px;
}
.Pet-Unicorn-Base {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -492px -300px;
width: 81px;
height: 99px;
}
.Pet-Unicorn-CottonCandyBlue {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: 0px -400px;
width: 81px;
height: 99px;
}
.Pet-Unicorn-CottonCandyPink {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -82px -400px;
width: 81px;
height: 99px;
}
.Pet-Unicorn-Desert {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -164px -400px;
width: 81px;
height: 99px;
}
.Pet-Unicorn-Golden {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -246px -400px;
width: 81px;
height: 99px;
}
.Pet-Unicorn-Red {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -328px -400px;
width: 81px;
height: 99px;
}
.Pet-Unicorn-Shade {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -410px -400px;
width: 81px;
height: 99px;
}
.Pet-Unicorn-Skeleton {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -492px -400px;
width: 81px;
height: 99px;
}
.Pet-Unicorn-White {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -574px 0px;
width: 81px;
height: 99px;
}
.Pet-Unicorn-Zombie {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -574px -100px;
width: 81px;
height: 99px;
}
.Pet-Whale-Base {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -574px -200px;
width: 81px;
height: 99px;
}
.Pet-Whale-CottonCandyBlue {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -574px -300px;
width: 81px;
height: 99px;
}
.Pet-Whale-CottonCandyPink {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -574px -400px;
width: 81px;
height: 99px;
}
.Pet-Whale-Desert {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: 0px -500px;
width: 81px;
height: 99px;
}
.Pet-Whale-Golden {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -82px -500px;
width: 81px;
height: 99px;
}
.Pet-Whale-Red {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -164px -500px;
width: 81px;
height: 99px;
}
.Pet-Whale-Shade {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -246px -500px;
width: 81px;
height: 99px;
}
.Pet-Whale-Skeleton {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -328px -500px;
width: 81px;
height: 99px;
}
.Pet-Whale-White {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: 0px 0px;
width: 81px;
height: 99px;
}
.Pet-Whale-Zombie {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -492px -500px;
width: 81px;
height: 99px;
}
.Pet-Wolf-Cupid {
.Pet-Wolf-Aquatic {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -574px -500px;
width: 81px;
height: 99px;
}
.Pet-Wolf-Desert {
.Pet-Wolf-Base {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -656px 0px;
width: 81px;
height: 99px;
}
.Pet-Wolf-Fairy {
.Pet-Wolf-CottonCandyBlue {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -656px -100px;
width: 81px;
height: 99px;
}
.Pet-Wolf-Floral {
.Pet-Wolf-CottonCandyPink {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -656px -200px;
width: 81px;
height: 99px;
}
.Pet-Wolf-Ghost {
.Pet-Wolf-Cupid {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -656px -300px;
width: 81px;
height: 99px;
}
.Pet-Wolf-Golden {
.Pet-Wolf-Desert {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -656px -400px;
width: 81px;
height: 99px;
}
.Pet-Wolf-Holly {
.Pet-Wolf-Fairy {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -656px -500px;
width: 81px;
height: 99px;
}
.Pet-Wolf-Peppermint {
.Pet-Wolf-Floral {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: 0px -600px;
width: 81px;
height: 99px;
}
.Pet-Wolf-Red {
.Pet-Wolf-Ghost {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -82px -600px;
width: 81px;
height: 99px;
}
.Pet-Wolf-RoyalPurple {
.Pet-Wolf-Golden {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -164px -600px;
width: 81px;
height: 99px;
}
.Pet-Wolf-Shade {
.Pet-Wolf-Holly {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -246px -600px;
width: 81px;
height: 99px;
}
.Pet-Wolf-Shimmer {
.Pet-Wolf-Peppermint {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -328px -600px;
width: 81px;
height: 99px;
}
.Pet-Wolf-Skeleton {
.Pet-Wolf-Red {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -410px -600px;
width: 81px;
height: 99px;
}
.Pet-Wolf-Spooky {
.Pet-Wolf-RoyalPurple {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -492px -600px;
width: 81px;
height: 99px;
}
.Pet-Wolf-Thunderstorm {
.Pet-Wolf-Shade {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -574px -600px;
width: 81px;
height: 99px;
}
.Pet-Wolf-Veteran {
.Pet-Wolf-Shimmer {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -656px -600px;
width: 81px;
height: 99px;
}
.Pet-Wolf-White {
.Pet-Wolf-Skeleton {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -738px 0px;
width: 81px;
height: 99px;
}
.Pet-Wolf-Zombie {
.Pet-Wolf-Spooky {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -738px -100px;
width: 81px;
height: 99px;
}
.Pet-Wolf-Thunderstorm {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -738px -200px;
width: 81px;
height: 99px;
}
.Pet-Wolf-Veteran {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -738px -300px;
width: 81px;
height: 99px;
}
.Pet-Wolf-White {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -738px -400px;
width: 81px;
height: 99px;
}
.Pet-Wolf-Zombie {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -738px -500px;
width: 81px;
height: 99px;
}
.Pet_HatchingPotion_Aquatic {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -738px -252px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Base {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -98px -700px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_CottonCandyBlue {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -738px -304px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_CottonCandyPink {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -738px -356px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Cupid {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -738px -408px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Desert {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -738px -460px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Fairy {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -738px -512px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Floral {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -738px -564px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Ghost {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -738px -616px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Golden {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: 0px -700px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Holly {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -49px -700px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Peppermint {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -738px -200px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Purple {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -147px -700px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Red {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -196px -700px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_RoyalPurple {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -245px -700px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Shade {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -294px -700px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Shimmer {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -343px -700px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Skeleton {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -392px -700px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Spooky {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -441px -700px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Thunderstorm {
.Pet_HatchingPotion_Base {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -490px -700px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_White {
.Pet_HatchingPotion_CottonCandyBlue {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -49px -700px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_CottonCandyPink {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -98px -700px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Cupid {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -147px -700px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Desert {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -196px -700px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Fairy {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -245px -700px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Floral {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -294px -700px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Ghost {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -343px -700px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Golden {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -392px -700px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Holly {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -441px -700px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Peppermint {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -738px -600px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Purple {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -539px -700px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Zombie {
.Pet_HatchingPotion_Red {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -588px -700px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_RoyalPurple {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -637px -700px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Shade {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -686px -700px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Shimmer {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -735px -700px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Skeleton {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: 0px -752px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Spooky {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -49px -752px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Thunderstorm {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -98px -752px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_White {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -147px -752px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Zombie {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -196px -752px;
width: 48px;
height: 51px;
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 38 KiB

After

Width:  |  Height:  |  Size: 38 KiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 153 KiB

After

Width:  |  Height:  |  Size: 151 KiB

View File

@@ -1,6 +1,12 @@
.npc_timetravelers {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -422px -1513px;
background-position: -410px -1513px;
width: 195px;
height: 138px;
}
.npc_timetravelers_active {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -214px -1513px;
width: 195px;
height: 138px;
}
@@ -30,25 +36,25 @@
}
.quest_TEMPLATE_FOR_MISSING_IMAGE {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -618px -1513px;
background-position: -606px -1513px;
width: 221px;
height: 39px;
}
.quest_armadillo {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: 0px -232px;
background-position: -220px -232px;
width: 219px;
height: 219px;
}
.quest_atom1 {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -1113px -1326px;
background-position: -1147px -1326px;
width: 250px;
height: 150px;
}
.quest_atom2 {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -214px -1513px;
background-position: -1398px -1326px;
width: 207px;
height: 138px;
}
@@ -84,13 +90,13 @@
}
.quest_butterfly {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -440px -452px;
background-position: -660px -452px;
width: 219px;
height: 219px;
}
.quest_cheetah {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -660px -452px;
background-position: -880px 0px;
width: 219px;
height: 219px;
}
@@ -102,7 +108,7 @@
}
.quest_dilatory {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -880px -440px;
background-position: 0px -672px;
width: 219px;
height: 219px;
}
@@ -120,19 +126,19 @@
}
.quest_dilatoryDistress3 {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -440px -672px;
background-position: -660px -672px;
width: 219px;
height: 219px;
}
.quest_dilatory_derby {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -880px -220px;
background-position: -880px -440px;
width: 219px;
height: 219px;
}
.quest_dustbunnies {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -660px -672px;
background-position: -880px -672px;
width: 219px;
height: 219px;
}
@@ -150,19 +156,19 @@
}
.quest_evilsanta2 {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -1100px -220px;
background-position: -220px 0px;
width: 219px;
height: 219px;
}
.quest_falcon {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -1100px -440px;
background-position: -1100px -660px;
width: 219px;
height: 219px;
}
.quest_ferret {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -220px 0px;
background-position: 0px -892px;
width: 219px;
height: 219px;
}
@@ -174,19 +180,19 @@
}
.quest_ghost_stag {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -220px -892px;
background-position: -440px -892px;
width: 219px;
height: 219px;
}
.quest_goldenknight1 {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -440px -892px;
background-position: -660px -892px;
width: 219px;
height: 219px;
}
.quest_goldenknight2 {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -1364px -1326px;
background-position: -645px -1326px;
width: 250px;
height: 150px;
}
@@ -198,19 +204,19 @@
}
.quest_gryphon {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -645px -1326px;
background-position: -1102px -1112px;
width: 216px;
height: 177px;
}
.quest_guineapig {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -1100px -892px;
background-position: -1320px 0px;
width: 219px;
height: 219px;
}
.quest_harpy {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -1320px 0px;
background-position: -1320px -220px;
width: 219px;
height: 219px;
}
@@ -222,37 +228,37 @@
}
.quest_horse {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -880px -892px;
background-position: -1320px -660px;
width: 219px;
height: 219px;
}
.quest_kraken {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -885px -1112px;
background-position: -428px -1326px;
width: 216px;
height: 177px;
}
.quest_mayhemMistiflying1 {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -1757px -724px;
background-position: -1757px -422px;
width: 150px;
height: 150px;
}
.quest_mayhemMistiflying2 {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -1320px -440px;
background-position: -220px -892px;
width: 219px;
height: 219px;
}
.quest_mayhemMistiflying3 {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -1320px -220px;
background-position: -1100px -220px;
width: 219px;
height: 219px;
}
.quest_monkey {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: 0px -892px;
background-position: -220px -672px;
width: 219px;
height: 219px;
}
@@ -264,37 +270,37 @@
}
.quest_moon2 {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: 0px -672px;
background-position: -220px -452px;
width: 219px;
height: 219px;
}
.quest_moon3 {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -880px 0px;
background-position: -660px 0px;
width: 219px;
height: 219px;
}
.quest_moonstone1 {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -220px -452px;
background-position: -440px -232px;
width: 219px;
height: 219px;
}
.quest_moonstone2 {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: 0px -452px;
background-position: -1100px -892px;
width: 219px;
height: 219px;
}
.quest_moonstone3 {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -660px 0px;
background-position: -440px -452px;
width: 219px;
height: 219px;
}
.quest_nudibranch {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -1540px -651px;
background-position: -1540px -434px;
width: 216px;
height: 216px;
}
@@ -306,13 +312,13 @@
}
.quest_owl {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -440px 0px;
background-position: -1320px -440px;
width: 219px;
height: 219px;
}
.quest_peacock {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -1540px 0px;
background-position: -1320px -880px;
width: 216px;
height: 216px;
}
@@ -324,13 +330,13 @@
}
.quest_rat {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -1320px -660px;
background-position: -880px -892px;
width: 219px;
height: 219px;
}
.quest_rock {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -1320px -880px;
background-position: -1540px -651px;
width: 216px;
height: 216px;
}
@@ -342,25 +348,25 @@
}
.quest_sabretooth {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -660px -892px;
background-position: -1100px 0px;
width: 219px;
height: 219px;
}
.quest_sheep {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -1100px 0px;
background-position: -440px -672px;
width: 219px;
height: 219px;
}
.quest_slime {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -880px -672px;
background-position: -880px -220px;
width: 219px;
height: 219px;
}
.quest_sloth {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -220px -672px;
background-position: 0px -452px;
width: 219px;
height: 219px;
}
@@ -372,61 +378,55 @@
}
.quest_snake {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -428px -1326px;
background-position: -1319px -1112px;
width: 216px;
height: 177px;
}
.quest_spider {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -862px -1326px;
background-position: -896px -1326px;
width: 250px;
height: 150px;
}
.quest_stoikalmCalamity1 {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -1757px -573px;
background-position: -1757px -724px;
width: 150px;
height: 150px;
}
.quest_stoikalmCalamity2 {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -440px -232px;
background-position: 0px -232px;
width: 219px;
height: 219px;
}
.quest_stoikalmCalamity3 {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -220px -232px;
background-position: -440px 0px;
width: 219px;
height: 219px;
}
.quest_taskwoodsTerror1 {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -1757px -422px;
background-position: -1757px -573px;
width: 150px;
height: 150px;
}
.quest_taskwoodsTerror2 {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -1540px -434px;
background-position: -1540px 0px;
width: 216px;
height: 216px;
}
.quest_taskwoodsTerror3 {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -1100px -660px;
background-position: -1100px -440px;
width: 219px;
height: 219px;
}
.quest_treeling {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -1102px -1112px;
width: 216px;
height: 177px;
}
.quest_trex_undead {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -1319px -1112px;
background-position: -885px -1112px;
width: 216px;
height: 177px;
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 438 KiB

After

Width:  |  Height:  |  Size: 437 KiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 223 KiB

After

Width:  |  Height:  |  Size: 222 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

View File

@@ -1,462 +1,462 @@
.promo_mystery_201611 {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1571px -992px;
background-position: -1811px -1322px;
width: 90px;
height: 99px;
}
.promo_mystery_201612 {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -586px 0px;
background-position: 0px 0px;
width: 558px;
height: 294px;
}
.promo_mystery_201701 {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1712px -300px;
background-position: -1811px -1125px;
width: 90px;
height: 105px;
}
.promo_mystery_201702 {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -584px -1538px;
background-position: -1510px -890px;
width: 279px;
height: 147px;
}
.promo_mystery_201703 {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -301px -1538px;
background-position: -1510px -151px;
width: 282px;
height: 147px;
}
.promo_mystery_201704 {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1662px -992px;
background-position: -1811px -1422px;
width: 90px;
height: 90px;
}
.promo_mystery_201705 {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1040px -1247px;
background-position: -1510px -299px;
width: 282px;
height: 147px;
}
.promo_mystery_201706 {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1812px -1489px;
background-position: -1811px -663px;
width: 111px;
height: 90px;
}
.promo_mystery_201707 {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1921px -1668px;
background-position: -1811px -1231px;
width: 105px;
height: 90px;
}
.promo_mystery_3014 {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1812px -1230px;
background-position: -620px -1491px;
width: 217px;
height: 90px;
}
.promo_naming_day_2017 {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1651px -595px;
width: 159px;
height: 141px;
}
.promo_new_hair_fall2016 {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1429px -442px;
background-position: -1368px -442px;
width: 140px;
height: 441px;
}
.promo_orca {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1963px -783px;
background-position: -1811px -557px;
width: 105px;
height: 105px;
}
.promo_orcas {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1571px -844px;
background-position: -849px -295px;
width: 219px;
height: 147px;
}
.promo_partyhats {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1951px -1158px;
background-position: -1811px -1513px;
width: 115px;
height: 47px;
}
.promo_pastel_skin {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1110px -1422px;
background-position: -659px -702px;
width: 330px;
height: 83px;
}
.customize-option.promo_pastel_skin {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1135px -1437px;
background-position: -684px -717px;
width: 60px;
height: 60px;
}
.promo_pastel_skin_hair {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -824px -1096px;
background-position: -824px -1049px;
width: 354px;
height: 147px;
}
.customize-option.promo_pastel_skin_hair {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -849px -1111px;
background-position: -849px -1064px;
width: 60px;
height: 60px;
}
.promo_peppermint_flame {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1812px -934px;
background-position: -1368px -884px;
width: 140px;
height: 147px;
}
.promo_pet_skins {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1953px -934px;
background-position: -1226px -884px;
width: 140px;
height: 147px;
}
.customize-option.promo_pet_skins {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1978px -949px;
background-position: -1251px -899px;
width: 60px;
height: 60px;
}
.promo_pyromancer {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1963px -632px;
background-position: -1811px -443px;
width: 113px;
height: 113px;
}
.promo_rainbow_armor {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1712px -196px;
background-position: -1811px -1021px;
width: 92px;
height: 103px;
}
.promo_redesign_header {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: 0px -1491px;
width: 166px;
height: 188px;
}
.promo_redesign_login {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -559px 0px;
width: 524px;
height: 274px;
}
.promo_redesign_tavern {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -328px -515px;
width: 375px;
height: 186px;
}
.promo_seafoam {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1429px 0px;
background-position: -1226px -442px;
width: 141px;
height: 441px;
}
.promo_seasonal_shop_fall_2016 {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -864px -1538px;
background-position: -1510px -742px;
width: 279px;
height: 147px;
}
.promo_shimmer_hair {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1144px -1538px;
background-position: -328px -702px;
width: 330px;
height: 83px;
}
.promo_shimmer_potions {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1287px -442px;
background-position: -1226px 0px;
width: 141px;
height: 441px;
}
.promo_shinySeeds {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1287px 0px;
background-position: -1368px 0px;
width: 141px;
height: 441px;
}
.promo_splashy_skins {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -725px -562px;
background-position: -704px -515px;
width: 375px;
height: 186px;
}
.customize-option.promo_splashy_skins {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -750px -577px;
background-position: -729px -530px;
width: 60px;
height: 60px;
}
.promo_splashyskins {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1812px -1321px;
background-position: -1300px -1200px;
width: 198px;
height: 91px;
}
.customize-option.promo_splashyskins {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1837px -1336px;
background-position: -1325px -1215px;
width: 60px;
height: 60px;
}
.promo_spooky_sparkles_fall_2016 {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1571px -196px;
background-position: -1510px -447px;
width: 140px;
height: 294px;
}
.promo_spring_classes_2016 {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -687px -984px;
background-position: -687px -937px;
width: 362px;
height: 102px;
}
.promo_spring_classes_2017 {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1179px -1096px;
background-position: -1179px -1049px;
width: 309px;
height: 147px;
}
.promo_springclasses2014 {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1812px -91px;
background-position: -784px -1396px;
width: 288px;
height: 90px;
}
.promo_springclasses2015 {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1812px 0px;
background-position: -1073px -1396px;
width: 288px;
height: 90px;
}
.promo_staff_spotlight_Lemoness {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1963px -330px;
background-position: -1811px -148px;
width: 102px;
height: 146px;
}
.promo_staff_spotlight_Viirus {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1969px -182px;
background-position: -1811px 0px;
width: 119px;
height: 147px;
}
.promo_staff_spotlight_paglias {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1963px -481px;
background-position: -1811px -295px;
width: 99px;
height: 147px;
}
.promo_steampunk_3017 {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -141px -1096px;
background-position: -282px -1049px;
width: 140px;
height: 441px;
}
.promo_summer_classes_2014 {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -257px -984px;
background-position: -257px -937px;
width: 429px;
height: 102px;
}
.promo_summer_classes_2015 {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: 0px -1689px;
background-position: -1510px -1391px;
width: 300px;
height: 88px;
}
.promo_summer_classes_2016 {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -423px -1096px;
background-position: -423px -1049px;
width: 400px;
height: 150px;
}
.promo_summer_classes_2017 {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1145px 0px;
background-position: -1084px 0px;
width: 141px;
height: 588px;
}
.promo_takeThis_gear {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1812px -1580px;
background-position: -1811px -842px;
width: 114px;
height: 87px;
}
.promo_takethis_armor {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1924px -1489px;
background-position: -1811px -754px;
width: 114px;
height: 87px;
}
.promo_task_planning {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1571px 0px;
background-position: -423px -1200px;
width: 240px;
height: 195px;
}
.promo_turkey_day_2016 {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: 0px -1096px;
background-position: -141px -1049px;
width: 140px;
height: 441px;
}
.promo_unconventional_armor {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -2011px -1321px;
background-position: -1733px -1038px;
width: 60px;
height: 60px;
}
.promo_unconventional_armor2 {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -2030px -1230px;
background-position: -1811px -1561px;
width: 70px;
height: 74px;
}
.promo_updos {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1812px -182px;
background-position: -1651px -447px;
width: 156px;
height: 147px;
}
.promo_veteran_pets {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1951px -1082px;
background-position: -1362px -1396px;
width: 146px;
height: 75px;
}
.promo_winter_classes_2016 {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -749px -1422px;
background-position: -423px -1396px;
width: 360px;
height: 90px;
}
.promo_winter_classes_2017 {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -257px -839px;
background-position: -257px -792px;
width: 432px;
height: 144px;
}
.promo_winter_fireworks {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1812px -1082px;
background-position: -1084px -589px;
width: 138px;
height: 147px;
}
.promo_winterclasses2015 {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -423px -1422px;
background-position: -974px -1200px;
width: 325px;
height: 110px;
}
.promo_wintery_skins {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -282px -1096px;
background-position: 0px -1049px;
width: 140px;
height: 441px;
}
.customize-option.promo_wintery_skins {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -307px -1111px;
background-position: -25px -1064px;
width: 60px;
height: 60px;
}
.promo_winteryhair {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1812px -1413px;
background-position: -1050px -937px;
width: 152px;
height: 75px;
}
.avatar_variety {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -690px -839px;
background-position: -690px -792px;
width: 498px;
height: 95px;
}
.npc_viirus {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1812px -1668px;
background-position: -1811px -930px;
width: 108px;
height: 90px;
}
.party_preview {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -499px -312px;
background-position: 0px -295px;
width: 451px;
height: 219px;
}
.promo_backtoschool {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1812px -481px;
background-position: -469px -1491px;
width: 150px;
height: 150px;
}
.promo_cooking {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -328px -562px;
background-position: -452px -295px;
width: 396px;
height: 219px;
}
.promo_startingover {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1812px -330px;
background-position: -318px -1491px;
width: 150px;
height: 150px;
}
.promo_valentines {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -730px -1247px;
background-position: -664px -1200px;
width: 309px;
height: 147px;
}
.promo_working_out {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: 0px -1538px;
background-position: -1510px 0px;
width: 300px;
height: 150px;
}
.scene_arts_crafts {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: 0px -839px;
background-position: 0px -792px;
width: 256px;
height: 256px;
}
.scene_buying_rewards {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1571px -663px;
background-position: -1510px -1210px;
width: 207px;
height: 180px;
}
.scene_coding {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1812px -632px;
background-position: -167px -1491px;
width: 150px;
height: 150px;
}
.scene_dailies {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: 0px -562px;
background-position: 0px -515px;
width: 327px;
height: 276px;
}
.scene_eco_friendly {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1571px -491px;
background-position: -1510px -1038px;
width: 222px;
height: 171px;
}
.scene_guilds {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: 0px -312px;
width: 498px;
height: 249px;
}
.scene_habitica_house {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: 0px 0px;
width: 585px;
height: 311px;
}
.scene_habits {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -423px -1247px;
width: 306px;
height: 174px;
}
.scene_meditation {
background-image: url(/static/sprites/spritesmith-largeSprites-1.png);
background-position: -1812px -783px;
width: 150px;
height: 150px;
}

View File

@@ -1,54 +1,78 @@
.scene_guilds {
background-image: url(/static/sprites/spritesmith-largeSprites-2.png);
background-position: 0px -312px;
width: 498px;
height: 249px;
}
.scene_habitica_house {
background-image: url(/static/sprites/spritesmith-largeSprites-2.png);
background-position: 0px 0px;
width: 585px;
height: 311px;
}
.scene_habits {
background-image: url(/static/sprites/spritesmith-largeSprites-2.png);
background-position: 0px -562px;
width: 306px;
height: 174px;
}
.scene_meditation {
background-image: url(/static/sprites/spritesmith-largeSprites-2.png);
background-position: -422px -737px;
width: 150px;
height: 150px;
}
.scene_pet_hatching {
background-image: url(/static/sprites/spritesmith-largeSprites-2.png);
background-position: -340px 0px;
background-position: -586px -343px;
width: 315px;
height: 195px;
}
.scene_phone_peek {
background-image: url(/static/sprites/spritesmith-largeSprites-2.png);
background-position: -494px -542px;
background-position: -271px -737px;
width: 150px;
height: 150px;
}
.scene_raking_leaves {
background-image: url(/static/sprites/spritesmith-largeSprites-2.png);
background-position: 0px -343px;
background-position: -926px 0px;
width: 246px;
height: 198px;
}
.scene_task_list {
background-image: url(/static/sprites/spritesmith-largeSprites-2.png);
background-position: -656px 0px;
background-position: -926px -199px;
width: 240px;
height: 195px;
}
.scene_todos {
background-image: url(/static/sprites/spritesmith-largeSprites-2.png);
background-position: -656px -196px;
background-position: -926px -395px;
width: 240px;
height: 195px;
}
.scene_video_games {
background-image: url(/static/sprites/spritesmith-largeSprites-2.png);
background-position: 0px 0px;
background-position: -586px 0px;
width: 339px;
height: 342px;
}
.welcome_basic_avatars {
background-image: url(/static/sprites/spritesmith-largeSprites-2.png);
background-position: 0px -542px;
background-position: -307px -562px;
width: 246px;
height: 165px;
}
.welcome_promo_party {
background-image: url(/static/sprites/spritesmith-largeSprites-2.png);
background-position: -247px -343px;
background-position: 0px -737px;
width: 270px;
height: 180px;
}
.welcome_sample_tasks {
background-image: url(/static/sprites/spritesmith-largeSprites-2.png);
background-position: -247px -542px;
background-position: -554px -562px;
width: 246px;
height: 165px;
}

View File

@@ -1,6 +1,6 @@
.achievement-alien {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1698px -1246px;
background-position: -1698px -1299px;
width: 24px;
height: 26px;
}
@@ -18,83 +18,89 @@
}
.achievement-armor2x {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1698px -1166px;
background-position: -1698px -1219px;
width: 48px;
height: 52px;
}
.achievement-bewilder2x {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1698px -1113px;
background-position: -1698px -1166px;
width: 48px;
height: 52px;
}
.achievement-birthday2x {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1698px -1060px;
background-position: -1698px -1113px;
width: 48px;
height: 52px;
}
.achievement-boot2x {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1698px -1007px;
background-position: -1698px -1060px;
width: 48px;
height: 52px;
}
.achievement-bow2x {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1698px -954px;
background-position: -1698px -1007px;
width: 48px;
height: 52px;
}
.achievement-burnout2x {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1698px -901px;
background-position: -1698px -954px;
width: 48px;
height: 52px;
}
.achievement-cactus2x {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1698px -848px;
background-position: -1698px -901px;
width: 48px;
height: 52px;
}
.achievement-cake2x {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1698px -795px;
background-position: -1698px -848px;
width: 48px;
height: 52px;
}
.achievement-cave2x {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1698px -742px;
background-position: -1698px -795px;
width: 48px;
height: 52px;
}
.achievement-challenge2x {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1698px -689px;
background-position: -1698px -742px;
width: 48px;
height: 52px;
}
.achievement-comment2x {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1698px -636px;
background-position: -1698px -689px;
width: 48px;
height: 52px;
}
.achievement-congrats2x {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1698px -583px;
background-position: -1698px -636px;
width: 48px;
height: 52px;
}
.achievement-costumeContest2x {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1698px -530px;
background-position: -1698px -583px;
width: 48px;
height: 52px;
}
.achievement-dilatory2x {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1698px -530px;
width: 48px;
height: 52px;
}
.achievement-friends2x {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1698px -477px;
width: 48px;
@@ -150,19 +156,19 @@
}
.achievement-karaoke {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1698px -1219px;
background-position: -1698px -1272px;
width: 24px;
height: 26px;
}
.achievement-ninja2x {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1638px -1571px;
background-position: -1638px -1480px;
width: 48px;
height: 52px;
}
.achievement-npc2x {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1638px -1480px;
background-position: -1589px -1571px;
width: 48px;
height: 52px;
}
@@ -312,31 +318,31 @@
}
.achievement-wolf2x {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1589px -1571px;
background-position: -1638px -1571px;
width: 48px;
height: 52px;
}
.background_alpine_slopes {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -852px -148px;
background-position: -852px -296px;
width: 140px;
height: 147px;
}
.background_aquarium {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -852px -296px;
background-position: -852px -444px;
width: 140px;
height: 147px;
}
.background_archery_range {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -852px -444px;
background-position: -852px -592px;
width: 140px;
height: 147px;
}
.background_autumn_forest {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -852px -592px;
background-position: 0px -740px;
width: 140px;
height: 147px;
}
@@ -354,37 +360,37 @@
}
.background_beehive {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -282px -740px;
background-position: -423px -740px;
width: 140px;
height: 147px;
}
.background_bell_tower {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -423px -740px;
background-position: -564px -740px;
width: 140px;
height: 147px;
}
.background_blacksmithy {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -564px -740px;
background-position: -705px -740px;
width: 140px;
height: 147px;
}
.background_blizzard {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -705px -740px;
background-position: -846px -740px;
width: 140px;
height: 147px;
}
.background_blue {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -846px -740px;
background-position: -993px 0px;
width: 140px;
height: 147px;
}
.background_bug_covered_log {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -993px 0px;
background-position: -993px -148px;
width: 140px;
height: 147px;
}
@@ -396,25 +402,25 @@
}
.background_cherry_trees {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -993px -296px;
background-position: -993px -444px;
width: 140px;
height: 147px;
}
.background_clouds {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -993px -444px;
background-position: -993px -592px;
width: 140px;
height: 147px;
}
.background_coral_reef {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -993px -592px;
background-position: -993px -740px;
width: 140px;
height: 147px;
}
.background_cornfields {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -993px -740px;
background-position: 0px -888px;
width: 140px;
height: 147px;
}
@@ -426,103 +432,103 @@
}
.background_crystal_cave {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -141px -888px;
background-position: -282px -888px;
width: 140px;
height: 147px;
}
.background_deep_mine {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -282px -888px;
background-position: -423px -888px;
width: 140px;
height: 147px;
}
.background_deep_sea {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -423px -888px;
background-position: -564px -888px;
width: 140px;
height: 147px;
}
.background_dilatory_castle {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -564px -888px;
background-position: -705px -888px;
width: 140px;
height: 147px;
}
.background_dilatory_ruins {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -705px -888px;
background-position: -846px -888px;
width: 140px;
height: 147px;
}
.background_distant_castle {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -846px -888px;
background-position: -987px -888px;
width: 140px;
height: 147px;
}
.background_drifting_raft {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -987px -888px;
background-position: -1134px 0px;
width: 140px;
height: 147px;
}
.background_dusty_canyons {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1134px 0px;
background-position: -1134px -148px;
width: 140px;
height: 147px;
}
.background_fairy_ring {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1134px -148px;
background-position: -1134px -296px;
width: 140px;
height: 147px;
}
.background_farmhouse {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1134px -296px;
background-position: -1134px -444px;
width: 140px;
height: 147px;
}
.background_floating_islands {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1134px -444px;
background-position: -426px -592px;
width: 140px;
height: 147px;
}
.background_floral_meadow {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -426px -592px;
background-position: -1134px -740px;
width: 140px;
height: 147px;
}
.background_forest {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1134px -740px;
background-position: -1134px -888px;
width: 140px;
height: 147px;
}
.background_frigid_peak {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1134px -888px;
background-position: 0px -1036px;
width: 140px;
height: 147px;
}
.background_frozen_lake {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: 0px -1036px;
background-position: -141px -1036px;
width: 140px;
height: 147px;
}
.background_gazebo {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -141px -1036px;
background-position: -282px -1036px;
width: 140px;
height: 147px;
}
.background_giant_birdhouse {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -282px -1036px;
background-position: -423px -1036px;
width: 140px;
height: 147px;
}
@@ -552,13 +558,13 @@
}
.background_graveyard {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -987px -1036px;
background-position: -1128px -1036px;
width: 140px;
height: 147px;
}
.background_green {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1128px -1036px;
background-position: -1275px 0px;
width: 140px;
height: 147px;
}
@@ -570,7 +576,7 @@
}
.background_gumdrop_land {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1275px -148px;
background-position: -1275px -296px;
width: 140px;
height: 147px;
}
@@ -582,7 +588,7 @@
}
.background_harvest_feast {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -846px -1036px;
background-position: -987px -1036px;
width: 140px;
height: 147px;
}
@@ -600,7 +606,7 @@
}
.background_haunted_house {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1275px -888px;
background-position: -1275px -1036px;
width: 140px;
height: 147px;
}
@@ -612,19 +618,19 @@
}
.background_iceberg {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: 0px -1184px;
background-position: -141px -1184px;
width: 140px;
height: 147px;
}
.background_idyllic_cabin {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -141px -1184px;
background-position: -282px -1184px;
width: 140px;
height: 147px;
}
.background_island_waterfalls {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -282px -1184px;
background-position: -423px -1184px;
width: 140px;
height: 147px;
}
@@ -636,19 +642,19 @@
}
.background_lighthouse_shore {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -564px -1184px;
background-position: -705px -1184px;
width: 140px;
height: 147px;
}
.background_lilypad {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -705px -1184px;
background-position: -846px -1184px;
width: 140px;
height: 147px;
}
.background_magic_beanstalk {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -846px -1184px;
background-position: -987px -1184px;
width: 140px;
height: 147px;
}
@@ -660,19 +666,19 @@
}
.background_market {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1128px -1184px;
background-position: -1269px -1184px;
width: 140px;
height: 147px;
}
.background_meandering_cave {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1269px -1184px;
background-position: -1416px 0px;
width: 140px;
height: 147px;
}
.background_midnight_clouds {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1416px 0px;
background-position: -1416px -148px;
width: 140px;
height: 147px;
}
@@ -684,31 +690,31 @@
}
.background_mist_shrouded_mountain {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1416px -296px;
background-position: -1416px -444px;
width: 140px;
height: 147px;
}
.background_mistiflying_circus {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1416px -444px;
background-position: -1416px -592px;
width: 140px;
height: 147px;
}
.background_mountain_lake {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1416px -592px;
background-position: -1416px -740px;
width: 140px;
height: 147px;
}
.background_mountain_pyramid {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1416px -740px;
background-position: -1416px -888px;
width: 140px;
height: 147px;
}
.background_night_dunes {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1416px -888px;
background-position: -1416px -1036px;
width: 140px;
height: 147px;
}
@@ -732,25 +738,25 @@
}
.background_orchard {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -141px -1332px;
background-position: -282px -1332px;
width: 140px;
height: 147px;
}
.background_pagodas {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -282px -1332px;
background-position: -423px -1332px;
width: 140px;
height: 147px;
}
.background_pumpkin_patch {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -423px -1332px;
background-position: -564px -1332px;
width: 140px;
height: 147px;
}
.background_purple {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -564px -1332px;
background-position: -705px -1332px;
width: 140px;
height: 147px;
}
@@ -774,13 +780,13 @@
}
.background_rainy_city {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1128px -1332px;
background-position: -1269px -1332px;
width: 140px;
height: 147px;
}
.background_red {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1269px -1332px;
background-position: -1410px -1332px;
width: 140px;
height: 147px;
}
@@ -798,61 +804,61 @@
}
.background_seafarer_ship {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1557px -148px;
background-position: -1557px -296px;
width: 140px;
height: 147px;
}
.background_shimmering_ice_prism {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1557px -296px;
background-position: -1557px -444px;
width: 140px;
height: 147px;
}
.background_shimmery_bubbles {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1557px -444px;
background-position: -1557px -592px;
width: 140px;
height: 147px;
}
.background_slimy_swamp {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1557px -592px;
background-position: -1557px -740px;
width: 140px;
height: 147px;
}
.background_snowman_army {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1557px -740px;
background-position: -1557px -888px;
width: 140px;
height: 147px;
}
.background_snowy_pines {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1557px -888px;
background-position: -1557px -1036px;
width: 140px;
height: 147px;
}
.background_snowy_sunrise {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1557px -1036px;
background-position: -1557px -1184px;
width: 140px;
height: 147px;
}
.background_south_pole {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1557px -1184px;
background-position: -1557px -1332px;
width: 140px;
height: 147px;
}
.background_sparkling_snowflake {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1557px -1332px;
background-position: -1275px -592px;
width: 140px;
height: 147px;
}
.background_spider_web {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1275px -444px;
background-position: -852px -148px;
width: 140px;
height: 147px;
}
@@ -876,73 +882,73 @@
}
.background_starry_skies {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1557px 0px;
background-position: -1557px -148px;
width: 140px;
height: 147px;
}
.background_stoikalm_volcanoes {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1410px -1332px;
background-position: -1557px 0px;
width: 140px;
height: 147px;
}
.background_stone_circle {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -987px -1332px;
background-position: -1128px -1332px;
width: 140px;
height: 147px;
}
.background_stormy_rooftops {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -846px -1332px;
background-position: -987px -1332px;
width: 140px;
height: 147px;
}
.background_stormy_ship {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -705px -1332px;
background-position: -846px -1332px;
width: 140px;
height: 147px;
}
.background_strange_sewers {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: 0px -1332px;
background-position: -141px -1332px;
width: 140px;
height: 147px;
}
.background_sunken_ship {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1416px -1184px;
background-position: 0px -1332px;
width: 140px;
height: 147px;
}
.background_sunset_meadow {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1416px -1036px;
background-position: -1416px -1184px;
width: 140px;
height: 147px;
}
.background_sunset_oasis {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1416px -148px;
background-position: -1416px -296px;
width: 140px;
height: 147px;
}
.background_sunset_savannah {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -987px -1184px;
background-position: -1128px -1184px;
width: 140px;
height: 147px;
}
.background_swarming_darkness {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -423px -1184px;
background-position: -564px -1184px;
width: 140px;
height: 147px;
}
.background_tavern {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1275px -1036px;
background-position: 0px -1184px;
width: 140px;
height: 147px;
}
@@ -954,13 +960,13 @@
}
.background_treasure_room {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1275px -592px;
background-position: -1275px -740px;
width: 140px;
height: 147px;
}
.background_tree_roots {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1275px -296px;
background-position: -1275px -444px;
width: 140px;
height: 147px;
}
@@ -978,55 +984,55 @@
}
.background_violet {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -705px -1036px;
background-position: -846px -1036px;
width: 140px;
height: 147px;
}
.background_volcano {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -564px -1036px;
background-position: -705px -1036px;
width: 140px;
height: 147px;
}
.background_waterfall_rock {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -423px -1036px;
background-position: -564px -1036px;
width: 140px;
height: 147px;
}
.background_wedding_arch {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: 0px -888px;
background-position: -141px -888px;
width: 140px;
height: 147px;
}
.background_windy_autumn {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -993px -148px;
background-position: -993px -296px;
width: 140px;
height: 147px;
}
.background_winter_fireworks {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -141px -740px;
background-position: -282px -740px;
width: 140px;
height: 147px;
}
.background_winter_night {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: 0px -740px;
background-position: -141px -740px;
width: 140px;
height: 147px;
}
.background_winter_storefront {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1275px -740px;
background-position: -1275px -888px;
width: 140px;
height: 147px;
}
.background_winter_town {
background-image: url(/static/sprites/spritesmith-main-0.png);
background-position: -1275px 0px;
background-position: -1275px -148px;
width: 140px;
height: 147px;
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -1,522 +1,546 @@
.Pet-TRex-Zombie {
.Pet-TRex-Red {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -82px 0px;
width: 81px;
height: 99px;
}
.Pet-Triceratops-Base {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -246px -500px;
width: 81px;
height: 99px;
}
.Pet-Triceratops-CottonCandyBlue {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -164px 0px;
width: 81px;
height: 99px;
}
.Pet-Triceratops-CottonCandyPink {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: 0px -100px;
width: 81px;
height: 99px;
}
.Pet-Triceratops-Desert {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -82px -100px;
width: 81px;
height: 99px;
}
.Pet-Triceratops-Golden {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -164px -100px;
width: 81px;
height: 99px;
}
.Pet-Triceratops-Red {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -246px 0px;
width: 81px;
height: 99px;
}
.Pet-Triceratops-Shade {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -246px -100px;
width: 81px;
height: 99px;
}
.Pet-Triceratops-Skeleton {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: 0px -200px;
width: 81px;
height: 99px;
}
.Pet-Triceratops-White {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -82px -200px;
width: 81px;
height: 99px;
}
.Pet-Triceratops-Zombie {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -164px -200px;
width: 81px;
height: 99px;
}
.Pet-Turkey-Base {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -246px -200px;
width: 81px;
height: 99px;
}
.Pet-Turkey-Gilded {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -328px 0px;
width: 81px;
height: 99px;
}
.Pet-Turtle-Base {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -328px -100px;
width: 81px;
height: 99px;
}
.Pet-Turtle-CottonCandyBlue {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -328px -200px;
width: 81px;
height: 99px;
}
.Pet-Turtle-CottonCandyPink {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: 0px -300px;
width: 81px;
height: 99px;
}
.Pet-Turtle-Desert {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -82px -300px;
width: 81px;
height: 99px;
}
.Pet-Turtle-Golden {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -164px -300px;
width: 81px;
height: 99px;
}
.Pet-Turtle-Red {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -246px -300px;
width: 81px;
height: 99px;
}
.Pet-Turtle-Shade {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -328px -300px;
width: 81px;
height: 99px;
}
.Pet-Turtle-Skeleton {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -410px 0px;
width: 81px;
height: 99px;
}
.Pet-Turtle-White {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -410px -100px;
width: 81px;
height: 99px;
}
.Pet-Turtle-Zombie {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -410px -200px;
width: 81px;
height: 99px;
}
.Pet-Unicorn-Base {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -410px -300px;
width: 81px;
height: 99px;
}
.Pet-Unicorn-CottonCandyBlue {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -492px 0px;
width: 81px;
height: 99px;
}
.Pet-Unicorn-CottonCandyPink {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -492px -100px;
width: 81px;
height: 99px;
}
.Pet-Unicorn-Desert {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -492px -200px;
width: 81px;
height: 99px;
}
.Pet-Unicorn-Golden {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -492px -300px;
width: 81px;
height: 99px;
}
.Pet-Unicorn-Red {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: 0px -400px;
width: 81px;
height: 99px;
}
.Pet-Unicorn-Shade {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -82px -400px;
width: 81px;
height: 99px;
}
.Pet-Unicorn-Skeleton {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -164px -400px;
width: 81px;
height: 99px;
}
.Pet-Unicorn-White {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -246px -400px;
width: 81px;
height: 99px;
}
.Pet-Unicorn-Zombie {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -328px -400px;
width: 81px;
height: 99px;
}
.Pet-Whale-Base {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -410px -400px;
width: 81px;
height: 99px;
}
.Pet-Whale-CottonCandyBlue {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -492px -400px;
width: 81px;
height: 99px;
}
.Pet-Whale-CottonCandyPink {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -574px 0px;
width: 81px;
height: 99px;
}
.Pet-Whale-Desert {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -574px -100px;
width: 81px;
height: 99px;
}
.Pet-Whale-Golden {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -574px -200px;
width: 81px;
height: 99px;
}
.Pet-Whale-Red {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -574px -300px;
width: 81px;
height: 99px;
}
.Pet-Whale-Shade {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -574px -400px;
width: 81px;
height: 99px;
}
.Pet-Whale-Skeleton {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: 0px -500px;
width: 81px;
height: 99px;
}
.Pet-Whale-White {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -82px -500px;
width: 81px;
height: 99px;
}
.Pet-Whale-Zombie {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -164px -500px;
width: 81px;
height: 99px;
}
.Pet-Wolf-Aquatic {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: 0px 0px;
width: 81px;
height: 99px;
}
.Pet-Wolf-Base {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -328px -500px;
width: 81px;
height: 99px;
}
.Pet-Wolf-CottonCandyBlue {
.Pet-TRex-Shade {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -410px -500px;
width: 81px;
height: 99px;
}
.Pet-Wolf-CottonCandyPink {
.Pet-TRex-Skeleton {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -164px 0px;
width: 81px;
height: 99px;
}
.Pet-TRex-White {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: 0px -100px;
width: 81px;
height: 99px;
}
.Pet-TRex-Zombie {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -82px -100px;
width: 81px;
height: 99px;
}
.Pet-Triceratops-Base {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -164px -100px;
width: 81px;
height: 99px;
}
.Pet-Triceratops-CottonCandyBlue {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -246px 0px;
width: 81px;
height: 99px;
}
.Pet-Triceratops-CottonCandyPink {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -246px -100px;
width: 81px;
height: 99px;
}
.Pet-Triceratops-Desert {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: 0px -200px;
width: 81px;
height: 99px;
}
.Pet-Triceratops-Golden {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -82px -200px;
width: 81px;
height: 99px;
}
.Pet-Triceratops-Red {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -164px -200px;
width: 81px;
height: 99px;
}
.Pet-Triceratops-Shade {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -246px -200px;
width: 81px;
height: 99px;
}
.Pet-Triceratops-Skeleton {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -328px 0px;
width: 81px;
height: 99px;
}
.Pet-Triceratops-White {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -328px -100px;
width: 81px;
height: 99px;
}
.Pet-Triceratops-Zombie {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -328px -200px;
width: 81px;
height: 99px;
}
.Pet-Turkey-Base {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: 0px -300px;
width: 81px;
height: 99px;
}
.Pet-Turkey-Gilded {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -82px -300px;
width: 81px;
height: 99px;
}
.Pet-Turtle-Base {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -164px -300px;
width: 81px;
height: 99px;
}
.Pet-Turtle-CottonCandyBlue {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -246px -300px;
width: 81px;
height: 99px;
}
.Pet-Turtle-CottonCandyPink {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -328px -300px;
width: 81px;
height: 99px;
}
.Pet-Turtle-Desert {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -410px 0px;
width: 81px;
height: 99px;
}
.Pet-Turtle-Golden {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -410px -100px;
width: 81px;
height: 99px;
}
.Pet-Turtle-Red {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -410px -200px;
width: 81px;
height: 99px;
}
.Pet-Turtle-Shade {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -410px -300px;
width: 81px;
height: 99px;
}
.Pet-Turtle-Skeleton {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -492px 0px;
width: 81px;
height: 99px;
}
.Pet-Turtle-White {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -492px -100px;
width: 81px;
height: 99px;
}
.Pet-Turtle-Zombie {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -492px -200px;
width: 81px;
height: 99px;
}
.Pet-Unicorn-Base {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -492px -300px;
width: 81px;
height: 99px;
}
.Pet-Unicorn-CottonCandyBlue {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: 0px -400px;
width: 81px;
height: 99px;
}
.Pet-Unicorn-CottonCandyPink {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -82px -400px;
width: 81px;
height: 99px;
}
.Pet-Unicorn-Desert {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -164px -400px;
width: 81px;
height: 99px;
}
.Pet-Unicorn-Golden {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -246px -400px;
width: 81px;
height: 99px;
}
.Pet-Unicorn-Red {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -328px -400px;
width: 81px;
height: 99px;
}
.Pet-Unicorn-Shade {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -410px -400px;
width: 81px;
height: 99px;
}
.Pet-Unicorn-Skeleton {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -492px -400px;
width: 81px;
height: 99px;
}
.Pet-Unicorn-White {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -574px 0px;
width: 81px;
height: 99px;
}
.Pet-Unicorn-Zombie {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -574px -100px;
width: 81px;
height: 99px;
}
.Pet-Whale-Base {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -574px -200px;
width: 81px;
height: 99px;
}
.Pet-Whale-CottonCandyBlue {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -574px -300px;
width: 81px;
height: 99px;
}
.Pet-Whale-CottonCandyPink {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -574px -400px;
width: 81px;
height: 99px;
}
.Pet-Whale-Desert {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: 0px -500px;
width: 81px;
height: 99px;
}
.Pet-Whale-Golden {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -82px -500px;
width: 81px;
height: 99px;
}
.Pet-Whale-Red {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -164px -500px;
width: 81px;
height: 99px;
}
.Pet-Whale-Shade {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -246px -500px;
width: 81px;
height: 99px;
}
.Pet-Whale-Skeleton {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -328px -500px;
width: 81px;
height: 99px;
}
.Pet-Whale-White {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: 0px 0px;
width: 81px;
height: 99px;
}
.Pet-Whale-Zombie {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -492px -500px;
width: 81px;
height: 99px;
}
.Pet-Wolf-Cupid {
.Pet-Wolf-Aquatic {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -574px -500px;
width: 81px;
height: 99px;
}
.Pet-Wolf-Desert {
.Pet-Wolf-Base {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -656px 0px;
width: 81px;
height: 99px;
}
.Pet-Wolf-Fairy {
.Pet-Wolf-CottonCandyBlue {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -656px -100px;
width: 81px;
height: 99px;
}
.Pet-Wolf-Floral {
.Pet-Wolf-CottonCandyPink {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -656px -200px;
width: 81px;
height: 99px;
}
.Pet-Wolf-Ghost {
.Pet-Wolf-Cupid {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -656px -300px;
width: 81px;
height: 99px;
}
.Pet-Wolf-Golden {
.Pet-Wolf-Desert {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -656px -400px;
width: 81px;
height: 99px;
}
.Pet-Wolf-Holly {
.Pet-Wolf-Fairy {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -656px -500px;
width: 81px;
height: 99px;
}
.Pet-Wolf-Peppermint {
.Pet-Wolf-Floral {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: 0px -600px;
width: 81px;
height: 99px;
}
.Pet-Wolf-Red {
.Pet-Wolf-Ghost {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -82px -600px;
width: 81px;
height: 99px;
}
.Pet-Wolf-RoyalPurple {
.Pet-Wolf-Golden {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -164px -600px;
width: 81px;
height: 99px;
}
.Pet-Wolf-Shade {
.Pet-Wolf-Holly {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -246px -600px;
width: 81px;
height: 99px;
}
.Pet-Wolf-Shimmer {
.Pet-Wolf-Peppermint {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -328px -600px;
width: 81px;
height: 99px;
}
.Pet-Wolf-Skeleton {
.Pet-Wolf-Red {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -410px -600px;
width: 81px;
height: 99px;
}
.Pet-Wolf-Spooky {
.Pet-Wolf-RoyalPurple {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -492px -600px;
width: 81px;
height: 99px;
}
.Pet-Wolf-Thunderstorm {
.Pet-Wolf-Shade {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -574px -600px;
width: 81px;
height: 99px;
}
.Pet-Wolf-Veteran {
.Pet-Wolf-Shimmer {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -656px -600px;
width: 81px;
height: 99px;
}
.Pet-Wolf-White {
.Pet-Wolf-Skeleton {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -738px 0px;
width: 81px;
height: 99px;
}
.Pet-Wolf-Zombie {
.Pet-Wolf-Spooky {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -738px -100px;
width: 81px;
height: 99px;
}
.Pet-Wolf-Thunderstorm {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -738px -200px;
width: 81px;
height: 99px;
}
.Pet-Wolf-Veteran {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -738px -300px;
width: 81px;
height: 99px;
}
.Pet-Wolf-White {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -738px -400px;
width: 81px;
height: 99px;
}
.Pet-Wolf-Zombie {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -738px -500px;
width: 81px;
height: 99px;
}
.Pet_HatchingPotion_Aquatic {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -738px -252px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Base {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -98px -700px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_CottonCandyBlue {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -738px -304px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_CottonCandyPink {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -738px -356px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Cupid {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -738px -408px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Desert {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -738px -460px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Fairy {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -738px -512px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Floral {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -738px -564px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Ghost {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -738px -616px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Golden {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: 0px -700px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Holly {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -49px -700px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Peppermint {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -738px -200px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Purple {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -147px -700px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Red {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -196px -700px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_RoyalPurple {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -245px -700px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Shade {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -294px -700px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Shimmer {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -343px -700px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Skeleton {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -392px -700px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Spooky {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -441px -700px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Thunderstorm {
.Pet_HatchingPotion_Base {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -490px -700px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_White {
.Pet_HatchingPotion_CottonCandyBlue {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -49px -700px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_CottonCandyPink {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -98px -700px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Cupid {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -147px -700px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Desert {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -196px -700px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Fairy {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -245px -700px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Floral {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -294px -700px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Ghost {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -343px -700px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Golden {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -392px -700px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Holly {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -441px -700px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Peppermint {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -738px -600px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Purple {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -539px -700px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Zombie {
.Pet_HatchingPotion_Red {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -588px -700px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_RoyalPurple {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -637px -700px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Shade {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -686px -700px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Shimmer {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -735px -700px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Skeleton {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: 0px -752px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Spooky {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -49px -752px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Thunderstorm {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -98px -752px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_White {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -147px -752px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Zombie {
background-image: url(/static/sprites/spritesmith-main-18.png);
background-position: -196px -752px;
width: 48px;
height: 51px;
}

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,12 @@
.npc_timetravelers {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -422px -1513px;
background-position: -410px -1513px;
width: 195px;
height: 138px;
}
.npc_timetravelers_active {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -214px -1513px;
width: 195px;
height: 138px;
}
@@ -30,25 +36,25 @@
}
.quest_TEMPLATE_FOR_MISSING_IMAGE {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -618px -1513px;
background-position: -606px -1513px;
width: 221px;
height: 39px;
}
.quest_armadillo {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: 0px -232px;
background-position: -220px -232px;
width: 219px;
height: 219px;
}
.quest_atom1 {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -1113px -1326px;
background-position: -1147px -1326px;
width: 250px;
height: 150px;
}
.quest_atom2 {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -214px -1513px;
background-position: -1398px -1326px;
width: 207px;
height: 138px;
}
@@ -84,13 +90,13 @@
}
.quest_butterfly {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -440px -452px;
background-position: -660px -452px;
width: 219px;
height: 219px;
}
.quest_cheetah {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -660px -452px;
background-position: -880px 0px;
width: 219px;
height: 219px;
}
@@ -102,7 +108,7 @@
}
.quest_dilatory {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -880px -440px;
background-position: 0px -672px;
width: 219px;
height: 219px;
}
@@ -120,19 +126,19 @@
}
.quest_dilatoryDistress3 {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -440px -672px;
background-position: -660px -672px;
width: 219px;
height: 219px;
}
.quest_dilatory_derby {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -880px -220px;
background-position: -880px -440px;
width: 219px;
height: 219px;
}
.quest_dustbunnies {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -660px -672px;
background-position: -880px -672px;
width: 219px;
height: 219px;
}
@@ -150,19 +156,19 @@
}
.quest_evilsanta2 {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -1100px -220px;
background-position: -220px 0px;
width: 219px;
height: 219px;
}
.quest_falcon {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -1100px -440px;
background-position: -1100px -660px;
width: 219px;
height: 219px;
}
.quest_ferret {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -220px 0px;
background-position: 0px -892px;
width: 219px;
height: 219px;
}
@@ -174,19 +180,19 @@
}
.quest_ghost_stag {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -220px -892px;
background-position: -440px -892px;
width: 219px;
height: 219px;
}
.quest_goldenknight1 {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -440px -892px;
background-position: -660px -892px;
width: 219px;
height: 219px;
}
.quest_goldenknight2 {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -1364px -1326px;
background-position: -645px -1326px;
width: 250px;
height: 150px;
}
@@ -198,19 +204,19 @@
}
.quest_gryphon {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -645px -1326px;
background-position: -1102px -1112px;
width: 216px;
height: 177px;
}
.quest_guineapig {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -1100px -892px;
background-position: -1320px 0px;
width: 219px;
height: 219px;
}
.quest_harpy {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -1320px 0px;
background-position: -1320px -220px;
width: 219px;
height: 219px;
}
@@ -222,37 +228,37 @@
}
.quest_horse {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -880px -892px;
background-position: -1320px -660px;
width: 219px;
height: 219px;
}
.quest_kraken {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -885px -1112px;
background-position: -428px -1326px;
width: 216px;
height: 177px;
}
.quest_mayhemMistiflying1 {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -1757px -724px;
background-position: -1757px -422px;
width: 150px;
height: 150px;
}
.quest_mayhemMistiflying2 {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -1320px -440px;
background-position: -220px -892px;
width: 219px;
height: 219px;
}
.quest_mayhemMistiflying3 {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -1320px -220px;
background-position: -1100px -220px;
width: 219px;
height: 219px;
}
.quest_monkey {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: 0px -892px;
background-position: -220px -672px;
width: 219px;
height: 219px;
}
@@ -264,37 +270,37 @@
}
.quest_moon2 {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: 0px -672px;
background-position: -220px -452px;
width: 219px;
height: 219px;
}
.quest_moon3 {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -880px 0px;
background-position: -660px 0px;
width: 219px;
height: 219px;
}
.quest_moonstone1 {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -220px -452px;
background-position: -440px -232px;
width: 219px;
height: 219px;
}
.quest_moonstone2 {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: 0px -452px;
background-position: -1100px -892px;
width: 219px;
height: 219px;
}
.quest_moonstone3 {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -660px 0px;
background-position: -440px -452px;
width: 219px;
height: 219px;
}
.quest_nudibranch {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -1540px -651px;
background-position: -1540px -434px;
width: 216px;
height: 216px;
}
@@ -306,13 +312,13 @@
}
.quest_owl {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -440px 0px;
background-position: -1320px -440px;
width: 219px;
height: 219px;
}
.quest_peacock {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -1540px 0px;
background-position: -1320px -880px;
width: 216px;
height: 216px;
}
@@ -324,13 +330,13 @@
}
.quest_rat {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -1320px -660px;
background-position: -880px -892px;
width: 219px;
height: 219px;
}
.quest_rock {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -1320px -880px;
background-position: -1540px -651px;
width: 216px;
height: 216px;
}
@@ -342,25 +348,25 @@
}
.quest_sabretooth {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -660px -892px;
background-position: -1100px 0px;
width: 219px;
height: 219px;
}
.quest_sheep {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -1100px 0px;
background-position: -440px -672px;
width: 219px;
height: 219px;
}
.quest_slime {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -880px -672px;
background-position: -880px -220px;
width: 219px;
height: 219px;
}
.quest_sloth {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -220px -672px;
background-position: 0px -452px;
width: 219px;
height: 219px;
}
@@ -372,61 +378,55 @@
}
.quest_snake {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -428px -1326px;
background-position: -1319px -1112px;
width: 216px;
height: 177px;
}
.quest_spider {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -862px -1326px;
background-position: -896px -1326px;
width: 250px;
height: 150px;
}
.quest_stoikalmCalamity1 {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -1757px -573px;
background-position: -1757px -724px;
width: 150px;
height: 150px;
}
.quest_stoikalmCalamity2 {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -440px -232px;
background-position: 0px -232px;
width: 219px;
height: 219px;
}
.quest_stoikalmCalamity3 {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -220px -232px;
background-position: -440px 0px;
width: 219px;
height: 219px;
}
.quest_taskwoodsTerror1 {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -1757px -422px;
background-position: -1757px -573px;
width: 150px;
height: 150px;
}
.quest_taskwoodsTerror2 {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -1540px -434px;
background-position: -1540px 0px;
width: 216px;
height: 216px;
}
.quest_taskwoodsTerror3 {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -1100px -660px;
background-position: -1100px -440px;
width: 219px;
height: 219px;
}
.quest_treeling {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -1102px -1112px;
width: 216px;
height: 177px;
}
.quest_trex_undead {
background-image: url(/static/sprites/spritesmith-main-8.png);
background-position: -1319px -1112px;
background-position: -885px -1112px;
width: 216px;
height: 177px;
}

File diff suppressed because it is too large Load Diff

View File

@@ -246,6 +246,7 @@
"missingNewPassword": "Липсва нова парола.",
"invalidEmailDomain": "Не можете да се регистрирате, използвайки е-поща от следните сървъри: <%= domains %>",
"wrongPassword": "Грешна парола.",
"incorrectDeletePhrase": "Please type DELETE in all caps to delete your account.",
"notAnEmail": "Грешен адрес на е-поща.",
"emailTaken": "Тази е-поща вече се използва от съществуващ профил.",
"newEmailRequired": "Липсва нов адрес на е-поща.",

View File

@@ -73,7 +73,7 @@
"weaponSpecial3Text": "Смазващият боздуган на Мъстейн за специални събития",
"weaponSpecial3Notes": "Срещи, чудовища, безпокойства: смазани! Готово! Увеличава силата, интелигентността и якостта с по <%= attrs %>.",
"weaponSpecialCriticalText": "Критичният чук за смазване на грешки",
"weaponSpecialCriticalNotes": "Този герой срази критичен враг в GitHub, пред който паднаха много воини. Изкован от костите на проблема, този чук нанася могъщи критични удари. Увеличава силата и усета с по <%= attrs %>.",
"weaponSpecialCriticalNotes": "This champion slew a critical GitHub foe where many warriors fell. Fashioned from the bones of Bug, this hammer deals a mighty critical hit. Increases Strength and Perception by <%= attrs %> each.",
"weaponSpecialTakeThisText": "Меч от „Вземи това“",
"weaponSpecialTakeThisNotes": "Този меч беше спечелен като награда за участие в предизвикателство, създадено и спонсорирано от „Вземи това“ („Take This“). Увеличава всички атрибути с <%= attrs %>.",
"weaponSpecialTridentOfCrashingTidesText": "Тризъбецът на нахлуващите приливи",
@@ -593,7 +593,7 @@
"armorArmoireRedPartyDressText": "Червена бална рокля",
"armorArmoireRedPartyDressNotes": "Каква сила, якост и ум, и то в крак с модата! Увеличава силата, якостта и интелигентността с по <%= attrs %>. Омагьосан гардероб: комплект „Червена панделка“ (предмет 2 от 2).",
"armorArmoireWoodElfArmorText": "Броня на дървесен елф",
"armorArmoireWoodElfArmorNotes": "Тази броня от кора и листа е здрава и незабележима в гъстата гора. Увеличава усета с <%= per %>. Омагьосан гардероб: комплект „Дървесен елф“ (предмет 2 от 3).",
"armorArmoireWoodElfArmorNotes": "This armor of bark and leaves will serve as durable camouflage in the forest. Increases Perception by <%= per %>. Enchanted Armoire: Wood Elf Set (Item 2 of 3).",
"armorArmoireRamFleeceRobesText": "Одежди от руно на овен",
"armorArmoireRamFleeceRobesNotes": "С тези одежди ще Ви бъде топло дори и в най-яростната виелица. Увеличава якостта с <%= con %> и силата с <%= str %>. Омагьосан гардероб: комплект „Овчи варварин“ (предмет 2 от 3).",
"armorArmoireGownOfHeartsText": "Рокля на сърца",
@@ -684,6 +684,8 @@
"headSpecialDandyHatNotes": "Колко веселяшко шапо! Ще изглеждате доста добре, когато се разхождате с него. Увеличава якостта с <%= con %>.",
"headSpecialKabutoText": "Кабуто",
"headSpecialKabutoNotes": "Този шлем е функционален и красив! Враговете Ви ще се разсеят, тъй като ще са заети да му се възхищават. Увеличава интелигентността с <%= int %>.",
"headSpecialNamingDay2017Text": "Royal Purple Gryphon Helm",
"headSpecialNamingDay2017Notes": "Happy Naming Day! Wear this fierce and feathery helm as you celebrate Habitica. Confers no benefit.",
"headSpecialNyeText": "Абсурдна купонджийска шапка",
"headSpecialNyeNotes": "Получихте абсурдна купонджийска шапка! Носете я с гордост, когато посрещате Нова година! Не променя показателите.",
"headSpecialYetiText": "Шлем на укротител на йетита",
@@ -1148,7 +1150,7 @@
"backMystery201704Text": "Приказни крила",
"backMystery201704Notes": "Тези блещукащи крила ще Ви отнесат където пожелаете, дори и в тайните светове, където живеят вълшебните създания. Не променя показателите. Предмет за абонати: април 2017 г.",
"backMystery201706Text": "Флаг на дрипав пират",
"backMystery201706Notes": "Само видът на този флаг с Веселия Роджър изпълва всяка задача за изпълнение или ежедневна задача с ужас! Не променя показателите. Предмет за абонати: юни 2017 г.",
"backMystery201706Notes": "The sight of this Jolly Roger-emblazoned flag fills any To-Do or Daily with dread! Confers no benefit. June 2017 Subscriber Item.",
"backSpecialWonderconRedText": "Могъщо наметало",
"backSpecialWonderconRedNotes": "Развява се със сила и красота. Не променя показателите. Специално издание: Конгресен предмет.",
"backSpecialWonderconBlackText": "Подло наметало",

View File

@@ -22,6 +22,7 @@
"communityGuidelinesRead1": "Моля, прочетете нашите",
"communityGuidelinesRead2": "преди да пишете.",
"bannedWordUsed": "Опа! Изглежда тази публикация съдържа ругатня, религиозна клетва или намеква за употреба на пристрастяващо вещество или друга тема, подходяща само за възрастни. Хабитика се използва от най-различни потребители, затова държим на това съобщенията ва чата да бъдат подходящи за всички. Редактирайте съобщението си и ще можете да го публикувате!",
"bannedSlurUsed": "Your post contained inappropriate language, and your chat privileges have been revoked.",
"party": "Група",
"createAParty": "Създаване на група",
"updatedParty": "Настройките на групата бяха променени.",
@@ -35,7 +36,9 @@
"invite": "Покана",
"leave": "Напускане",
"invitedTo": "Вие сте поканен(а) в <%= name %>",
"invitedToNewParty": "Вие получихте покана за присъединяване към група! Искате ли да напуснете сегашната си група и да се присъедините към <%= partyName %>?",
"invitedToNewParty": "You were invited to join a party! Do you want to leave this party, reject all other party invitations and join <%= partyName %>?",
"partyInvitationsText": "You have <%= numberInvites %> party invitations! Choose wisely, because you can only be in one party at a time.",
"joinPartyConfirmationText": "Are you sure you want to join the party \"<%= partyName %>\"? You can only be in one party at a time. If you join, all other party invitations will be rejected.",
"invitationAcceptedHeader": "Поканата Ви беше приета",
"invitationAcceptedBody": "<%= username %> прие поканата Ви да се присъедини към <%= groupName %>!",
"joinNewParty": "Присъединяване към новата група",
@@ -148,6 +151,8 @@
"sendInvitations": "Изпращане на поканите",
"invitationsSent": "Поканите са изпратени!",
"invitationSent": "Поканата е изпратена!",
"invitedFriend": "Invited a Friend",
"invitedFriendText": "This user invited a friend (or friends) who joined them on their adventure!",
"inviteAlertInfo2": "Или споделете тази връзка (копиране/поставяне):",
"inviteLimitReached": "Достигнали сте ограничението на покани по е-поща. Това ограничение е създадено, за да предотврати нежеланата поща, но ако искате да имате повече покани, свържете се с нас на <%= techAssistanceEmail %> и с радост ще го обсъдим!",
"sendGiftHeading": "Изпращане на подарък до <%= name %>",

View File

@@ -30,6 +30,7 @@
"messageAlreadyPurchasedGear": "Вие сте купували тази екипировка в миналото, но в момента не я притежавате. Можете да я купите отново от колоната с награди на страницата със задачи.",
"messageAlreadyOwnGear": "Вече притежавате този предмет. Можете да го екипирате като отидете на страницата с екипировката.",
"messageHealthAlreadyMax": "Здравето Ви вече е пълно.",
"messageHealthAlreadyMin": "Oh no! You have already run out of health so it's too late to buy a health potion, but don't worry - you can revive!",
"armoireEquipment": "<%= image %> Намерихте рядък предмет в гардероба: <%= dropText %>! Страхотно!",
"armoireFood": "<%= image %> Тършувате из гардероба и намирате <%= dropText %>. Какво ли прави това там?",
"armoireExp": "Сборвате се с гардероба и получавате опит. Така му се пада!",

View File

@@ -40,6 +40,7 @@
"plusOneGem": "+1 диамант",
"typeNotSellable": "Този тип не може да се продава. Трябва да бъде един от следните: <%= acceptedTypes %>",
"userItemsKeyNotFound": "Ключът не е намерен за user.items <%= type %>",
"userItemsNotEnough": "Not enough items found for user.items <%= type %>",
"pathRequired": "Низът за път е задължителен",
"unlocked": "Предметите бяха отключени",
"alreadyUnlocked": "Пълният комплект вече е отключен.",
@@ -58,7 +59,7 @@
"amazonInstructions": "Натиснете бутона, за да платите чрез „Amazon Payments“",
"paymentMethods": "Купуване чрез",
"classGear": "Снаряжение за класа",
"classGearText": "Първо, без паника! Старото Ви снаряжение е в инвентара Ви, а сега носите чирашката екипировка на новия си клас. Носенето на снаряжението за Вашия клас увеличава показателите Ви с 50%. Можете да си върнете старото снаряжение по всяко време.",
"classGearText": "Congratulations on choosing a class! I've added your new basic weapon to your inventory. Take a look below to equip it!",
"classStats": "Това са показателите на класа Ви. Те оказват влияние върху играта Ви. Всеки път, когато качите ниво, получавате една точка, която може да приложите към избран показател. Посочете всеки от показателите с мишката за повече информация.",
"autoAllocate": "Автоматично разпределяне",
"autoAllocateText": "Ако автоматичното разпределение е избрано, героят Ви получава показатели автоматично според показателите на задачите Ви, които може да настроите в <strong>ЗАДАЧА > Редактиране > Разширени > Показатели</strong>. Например: ако често посещавате фитнеса и към ежедневната Ви задача „Фитнес“ е заден показател „сила“, ще получавате сила автоматично.",

View File

@@ -281,7 +281,7 @@
"questUnicornDropUnicornEgg": "Еднорог (яйце)",
"questUnicornUnlockText": "Отключва възможността за купуване на яйца на еднорог от пазара.",
"questSabretoothText": "Саблезъбата котка",
"questSabretoothNotes": "Ревящ звяр тероризира Хабитика! Съществото дебне из пущинаците и горите и напада изненадващо, след което изчезва отново. Досега лови основно панди и плаши летящите прасета, които се принуждават да напускат гнездата си на дърветата. @Inventrix и @icefelis обясняват, че Саблезъбата котка-зомби е била освободена по време на разкопките им в древните, непристъпни ледени поля на Споколандските степи: „Отначало беше дружелюбна, но след това не разбрах какво се случи. Моля те, трябва да ни помогнеш да я хванем отново! Само истински ветеран от Хабитика може да подчини този праисторически звяр!“",
"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 Stoïkalm 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": "След дълга и изтощителна битка, просваш Саблезъбата котка-зомби на земята. Докато стоиш над нея, забелязваш неприятна дупка в един от огромните ѝ зъби. Разбирайки истинската причина за яростта на котката, ти казваш на @Fandekasp да запълни дупката, и казваш на всички да избягват да хранят любимците си със сладко в бъдеще. Саблезъбата котка се успокоява, а за благодарност укротителите ѝ ти пращат щедра награда — няколко яйца на саблезъб.",
"questSabretoothBoss": "Саблезъба котка-зомби",
"questSabretoothDropSabretoothEgg": "Саблезъб (яйце)",
@@ -415,7 +415,7 @@
"questTriceratopsDropTriceratopsEgg": "Трицератопс (яйце)",
"questTriceratopsUnlockText": "Отключва възможността за купуване на яйца на трицератопс от пазара.",
"questStoikalmCalamity1Text": "Споколандското бедствие, част 1: Земни врагове",
"questStoikalmCalamity1Notes": "Пристига кратко послание от @Kiwibot; покритият с ледени кристали свитък смразява както пръстите ти, така и сърцето ти. „Посещение на Споколандските степи — чудовища излизат от земята — пратете помощ!“ Събираш групата си и поемате на север, но още щом слизате от планините, снегът под краката ви започва да гърми и ви обграждат страховити ухилени черепи!<br><br>Изведнъж, покрай теб прелетява копие, което се забива в един череп, проправящ си път през снега, за да те издебне отзад. Някаква висока жена с прецизно изработена броня влита в битката, яздейки своя галопиращ мастодонт; дългата ѝ плитка се отмята, докато тя безцеремонно вади копието си от пронизаното изчадие. Време е да отблъснете враговете с помощта на лейди Глетчер, предводителката на ездачите на мамути!",
"questStoikalmCalamity1Notes": "A terse missive arrives from @Kiwibot, and the frost-crusted scroll chills your heart as well as your fingertips. \"Visiting Stoïkalm Steppes -- monsters bursting from earth -- send help!\" You gather your party and ride north, but as soon as you venture down from the mountains, the snow beneath your feet explodes and gruesomely grinning skulls surround you!<br><br>Suddenly, a spear sails past, burying itself in a skull that was burrowing through the snow in an attempt to catch you unawares. A tall woman in finely-crafted armor gallops into the fray on the back of a mastodon, her long braid swinging as she yanks the spear unceremoniously from the crushed beast. It's time to fight off these foes with the help of Lady Glaciate, the leader of the Mammoth Riders!",
"questStoikalmCalamity1Completion": "Когато нанасяш последния си удар по черепите, всички те се разсейват във въздуха с кълбо вълшебен пушек. „Може и да сме прогонили проклетия рояк“ — казва лейди Глетчер, — „но имаме по-сериозни проблеми. Последвайте ме!“ — Тя ти хвърля наметало, което да те предпази от студения въздух, и ти тръгваш след нея.",
"questStoikalmCalamity1Boss": "Рояк земни черепи",
"questStoikalmCalamity1RageTitle": "Възкръсване на рояка",

View File

@@ -66,6 +66,7 @@
"resetText1": "ВНИМАНИЕ! Това нулира части от профила Ви. Това е силно непрепоръчително, но някои хора го смятат за полезно в началото, след като са използвали уеб сайта известно време.",
"resetText2": "Ще загубите всичките си нива, злато и точки опит. Всички задачи (освен тези от предизвикателства) ще бъдат изтрити завинаги и ще загубите цялата им история. Ще загубите всичката си екипировка, но ще можете да си купите отново всичко, включително предметите от ограничени серии и тайнствените предмети за абонати, които притежавате в момента (ще трябва да използвате правилния клас, за да закупите отново класово-специфичната екипировка). Ще запазите текущия си клас, както и любимците и превозите си. Вместо това, може да предпочетете да използвате Кълбото на прераждането, което е много по-безопасно и ще запази задачите Ви.",
"deleteLocalAccountText": "Наистина ли искате това? Профилът Ви ще бъде изтрит завинаги и няма да може да бъде възстановен! Ще трябва да регистрирате нов профил, ако искате да използвате Хабитика отново. Закупените и използваните диаманти няма да Ви бъдат възстановени. Ако сте напълно сигурен/на в решението си, въведете паролата си в полето.",
"deleteSocialAccountText": "Are you sure? This will delete your account forever, and it can never be restored! You will need to register a new account to use Habitica again. Banked or spent Gems will not be refunded. If you're absolutely certain, type \"DELETE\" into the text box below.",
"API": "ППИ",
"APIv3": "ППИ версия 3",
"APIText": "Можете да копирате тези стойности и да ги използвате във външни приложения. Имайте предвид, че Вашият жетон за ППИ е нещо като парола - и не го споделяйте. Понякога от Вас може да изискват Вашия потребителски идентификатор и в това няма нищо опасно, но никога не публикувайте своя жетон за ППИ там, където той може да бъде видян от другиго, включително в Github.",

View File

@@ -246,6 +246,7 @@
"missingNewPassword": "Chybějící nové heslo.",
"invalidEmailDomain": "Nemůžeš se zaregistrovat e-mailem z následujících domén: <%= domains %>",
"wrongPassword": "Špatné heslo.",
"incorrectDeletePhrase": "Please type DELETE in all caps to delete your account.",
"notAnEmail": "Neplatná e-mailová adresa.",
"emailTaken": "E-mailová adresa je již použita.",
"newEmailRequired": "Chybějící e-mailová adresa.",

View File

@@ -73,7 +73,7 @@
"weaponSpecial3Text": "Mustainův Milník drtící řemdih",
"weaponSpecial3Notes": "Meetingy, monstra, neklid: zvládnuty! Mash! Zvyšuje Sílu, Inteligenci a Obranu o <%= attrs %>.",
"weaponSpecialCriticalText": "Kritické kladivo na drcení chyb",
"weaponSpecialCriticalNotes": "Tento šampion skolil kritického nepřítele Githubu, kde padla spousta válečníků. Zhotoveno z kostí Chyby, toto kladivo zasadí mocný kritický úder. Zvyšuje Sílu a Vnímání o <%= attrs %>.",
"weaponSpecialCriticalNotes": "This champion slew a critical GitHub foe where many warriors fell. Fashioned from the bones of Bug, this hammer deals a mighty critical hit. Increases Strength and Perception by <%= attrs %> each.",
"weaponSpecialTakeThisText": "Vezmi si tento meč",
"weaponSpecialTakeThisNotes": "Tento meč jsi získal za účast ve sponzorované výzvě od Take This. Gratulujeme! Zvyšuje všechny vlastnosti o <%= attrs %>.",
"weaponSpecialTridentOfCrashingTidesText": "Trojzubec Silného přílivu",
@@ -593,7 +593,7 @@
"armorArmoireRedPartyDressText": "Red Party Dress",
"armorArmoireRedPartyDressNotes": "You're strong, tough, smart, and so fashionable! Increases Strength, Constitution, and Intelligence by <%= attrs %> each. Enchanted Armoire: Red Hairbow Set (Item 2 of 2).",
"armorArmoireWoodElfArmorText": "Wood Elf Armor",
"armorArmoireWoodElfArmorNotes": "This armor of bark and leaves will serve as durable camoflage in the forest. Increases Perception by <%= per %>. Enchanted Armoire: Wood Elf Set (Item 2 of 3).",
"armorArmoireWoodElfArmorNotes": "This armor of bark and leaves will serve as durable camouflage in the forest. Increases Perception by <%= per %>. Enchanted Armoire: Wood Elf Set (Item 2 of 3).",
"armorArmoireRamFleeceRobesText": "Ram Fleece Robes",
"armorArmoireRamFleeceRobesNotes": "These robes keep you warm even through the fiercest blizzard. Increases Constitution by <%= con %> and Strength by <%= str %>. Enchanted Armoire: Ram Barbarian Set (2 of 3).",
"armorArmoireGownOfHeartsText": "Šaty srdcí",
@@ -684,6 +684,8 @@
"headSpecialDandyHatNotes": "What a merry chapeau! You'll look quite fine enjoying a stroll in it. Increases Constitution by <%= con %>.",
"headSpecialKabutoText": "Kabuto",
"headSpecialKabutoNotes": "This helm is functional and beautiful! Your enemies will become distracted admiring it. Increases Intelligence by <%= int %>.",
"headSpecialNamingDay2017Text": "Royal Purple Gryphon Helm",
"headSpecialNamingDay2017Notes": "Happy Naming Day! Wear this fierce and feathery helm as you celebrate Habitica. Confers no benefit.",
"headSpecialNyeText": "Absurdní Párty Klobouk",
"headSpecialNyeNotes": "Získal jsi Absurdní párty klobouk! Nos ho s hrdostí, když odbíjí Nový rok! Nepřináší žádný benefit.",
"headSpecialYetiText": "Helma krotitele Yetti",
@@ -1148,7 +1150,7 @@
"backMystery201704Text": "Fairytale Wings",
"backMystery201704Notes": "These shimmering wings will carry you anywhere, even the hidden realms ruled by magical creatures. Confers no benefit. April 2017 Subscriber Item.",
"backMystery201706Text": "Tattered Freebooter's Flag",
"backMystery201706Notes": "The sight of this Jolly Roger-embazoned flag fills any To-Do or Daily with dread! Confers no benefit. June 2017 Subscriber Item.",
"backMystery201706Notes": "The sight of this Jolly Roger-emblazoned flag fills any To-Do or Daily with dread! Confers no benefit. June 2017 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ě",

View File

@@ -22,6 +22,7 @@
"communityGuidelinesRead1": "Prosíme, přečti si naše",
"communityGuidelinesRead2": "než začneš chatovat.",
"bannedWordUsed": "Oops! Looks like this post contains a swearword, religious oath, or reference to an addictive substance or adult topic. Habitica has users from all backgrounds, so we keep our chat very clean. Feel free to edit your message so you can post it!",
"bannedSlurUsed": "Your post contained inappropriate language, and your chat privileges have been revoked.",
"party": "Družina",
"createAParty": "Vytvořit družinu",
"updatedParty": "Nastavení družiny aktualizováno.",
@@ -35,7 +36,9 @@
"invite": "Pozvat",
"leave": "Odejít",
"invitedTo": "Pozván do <%= name %>",
"invitedToNewParty": "Byl jsi pozván do družiny! Chceš opustit svou současnou družinu a přidat se k družině <%= partyName %>?",
"invitedToNewParty": "You were invited to join a party! Do you want to leave this party, reject all other party invitations and join <%= partyName %>?",
"partyInvitationsText": "You have <%= numberInvites %> party invitations! Choose wisely, because you can only be in one party at a time.",
"joinPartyConfirmationText": "Are you sure you want to join the party \"<%= partyName %>\"? You can only be in one party at a time. If you join, all other party invitations will be rejected.",
"invitationAcceptedHeader": "Your Invitation has been Accepted",
"invitationAcceptedBody": "<%= username %> accepted your invitation to <%= groupName %>!",
"joinNewParty": "Přidej se k nové družině",
@@ -148,6 +151,8 @@
"sendInvitations": "Pošli pozvánky",
"invitationsSent": "Pozvánky odeslány!",
"invitationSent": "Pozvánka odeslána!",
"invitedFriend": "Invited a Friend",
"invitedFriendText": "This user invited a friend (or friends) who joined them on their adventure!",
"inviteAlertInfo2": "Nebo sdílej tento link (kopírovat/vložit):",
"inviteLimitReached": "You have already sent the maximum number of email invitations. We have a limit to prevent spamming, however if you would like more, please contact us at <%= techAssistanceEmail %> and we'll be happy to discuss it!",
"sendGiftHeading": "Poslat dárek <%= name %>",

View File

@@ -30,6 +30,7 @@
"messageAlreadyPurchasedGear": "Tohle vybavení jsi si koupil už v minulosti, ale momentálně ho nevlastníš. Můžeš si ho koupit znovu ve sloupečku odměnu na stránce s úkoly.",
"messageAlreadyOwnGear": "Tento předmět už máš. Vybav se jím na stránce s Vybavením.",
"messageHealthAlreadyMax": "Už teď máš plné zdraví.",
"messageHealthAlreadyMin": "Oh no! You have already run out of health so it's too late to buy a health potion, but don't worry - you can revive!",
"armoireEquipment": "<%= image %> V almaře jsi našel kus vzácného vybavení ve Zbrojnici: <%= dropText %>! Skvělé!",
"armoireFood": "<%= image %> Prohledáváš almaru a nacházíš <%= dropText %>. Co to tu dělá?",
"armoireExp": "Zápasíš s Almarou a získáváš zkušenost. To jsi jí to nandal!",

View File

@@ -40,6 +40,7 @@
"plusOneGem": "+1 Drahokam",
"typeNotSellable": "Nelze prodat. Lze prodat pouze <%= acceptedTypes %>",
"userItemsKeyNotFound": "Klíč nenalezen v user.items <%= type %>",
"userItemsNotEnough": "Not enough items found for user.items <%= type %>",
"pathRequired": "Je požadována cesta k vláknu",
"unlocked": "Předměty byly odemčeny",
"alreadyUnlocked": "Celý set je již odemčen.",
@@ -58,7 +59,7 @@
"amazonInstructions": "Klikni pro zaplacení přes Amazon platby",
"paymentMethods": "Platební metody:",
"classGear": "Vybavení pro tvé povolání",
"classGearText": "Za prvé: Nepanikař! Tvé staré vybavení je ve tvém inventáři a nyní nosíš začátečnické vybavení svého nového povolání. Nošení vybavení tvého povolání ti přidává 50% bonus k vlastnostem. Neboj se však vrátit ke svému starému vybavení.",
"classGearText": "Congratulations on choosing a class! I've added your new basic weapon to your inventory. Take a look below to equip it!",
"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 <strong>ÚKOL > Editovat > Pokročilé > Attributy</strong>. Např. pokud budeš chodit často do posilovny a tvoje denní 'posilovna' je nastavena na 'fyzický', budeš automaticky získávat sílu.",

View File

@@ -281,7 +281,7 @@
"questUnicornDropUnicornEgg": "Jednorožec (vejce)",
"questUnicornUnlockText": "Odemyká vejce jednorožce na Trhu",
"questSabretoothText": "Šavlozubá kočka",
"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!\"",
"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 Stoïkalm 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 šavlozubá kočka",
"questSabretoothDropSabretoothEgg": "Šavlozubec (vejce)",
@@ -415,7 +415,7 @@
"questTriceratopsDropTriceratopsEgg": "Triceratops (Egg)",
"questTriceratopsUnlockText": "Unlocks purchasable Triceratops eggs in the Market",
"questStoikalmCalamity1Text": "Stoïkalm Calamity, Part 1: Earthen Enemies",
"questStoikalmCalamity1Notes": "A terse missive arrives from @Kiwibot, and the frost-crusted scroll chills your heart as well as your fingertips. \"Visiting Stoikalm Steppes -- monsters bursting from earth -- send help!\" You gather your party and ride north, but as soon as you venture down from the mountains, the snow beneath your feet explodes and gruesomely grinning skulls surround you!<br><br>Suddenly, a spear sails past, burying itself in a skull that was burrowing through the snow in an attempt to catch you unawares. A tall woman in finely-crafted armor gallops into the fray on the back of a mastodon, her long braid swinging as she yanks the spear unceremoniously from the crushed beast. It's time to fight off these foes with the help of Lady Glaciate, the leader of the Mammoth Riders!",
"questStoikalmCalamity1Notes": "A terse missive arrives from @Kiwibot, and the frost-crusted scroll chills your heart as well as your fingertips. \"Visiting Stoïkalm Steppes -- monsters bursting from earth -- send help!\" You gather your party and ride north, but as soon as you venture down from the mountains, the snow beneath your feet explodes and gruesomely grinning skulls surround you!<br><br>Suddenly, a spear sails past, burying itself in a skull that was burrowing through the snow in an attempt to catch you unawares. A tall woman in finely-crafted armor gallops into the fray on the back of a mastodon, her long braid swinging as she yanks the spear unceremoniously from the crushed beast. It's time to fight off these foes with the help of Lady Glaciate, the leader of the Mammoth Riders!",
"questStoikalmCalamity1Completion": "As you deliver a final blow to the skulls, they dissipate in a puff of magic. \"The dratted swarm may be gone,\" Lady Glaciate says, \"but we have bigger problems. Follow me.\" She tosses you a cloak to protect you from the chill air, and you ride off after her.",
"questStoikalmCalamity1Boss": "Earth Skull Swarm",
"questStoikalmCalamity1RageTitle": "Swarm Respawn",

View File

@@ -66,6 +66,7 @@
"resetText1": "POZOR! Tímto resetujete mnoho částí svého účtu. Silně nedoporučujeme tuto možnost používat, ale vyhovuje to některým uživatelům, kteří si se stránkou na začátku trochu hrají.",
"resetText2": "You will lose all your levels, gold, and experience points. All your tasks (except those from challenges) will be deleted permanently and you will lose all of their historical data. You will lose all your equipment but you will be able to buy it all back, including all limited edition equipment or subscriber Mystery items that you already own (you will need to be in the correct class to re-buy class-specific gear). You will keep your current class and your pets and mounts. You might prefer to use an Orb of Rebirth instead, which is a much safer option and which will preserve your tasks and equipment.",
"deleteLocalAccountText": "Are you sure? This will delete your account forever, and it can never be restored! You will need to register a new account to use Habitica again. Banked or spent Gems will not be refunded. If you're absolutely certain, type your password into the text box below.",
"deleteSocialAccountText": "Are you sure? This will delete your account forever, and it can never be restored! You will need to register a new account to use Habitica again. Banked or spent Gems will not be refunded. If you're absolutely certain, type \"DELETE\" into the text box below.",
"API": "API",
"APIv3": "API v3",
"APIText": "Zkopíruj je pro použití v aplikacích třetích stran. Avšak, stejně jako bys nikomu neřekl své heslo, tak nikomu neříkej svůj API Token. Někdy můžeš být požádán o své uživatelské ID, ale nikdy neuveřejňuj svůj API Token tam, kde ho uvidí ostatní a to včetně Githubu.",

View File

@@ -246,6 +246,7 @@
"missingNewPassword": "Manglende nyt kodeord.",
"invalidEmailDomain": "Du kan ikke registrere med emails med følgende domæner: <%= domains %>",
"wrongPassword": "Forkert kodeord.",
"incorrectDeletePhrase": "Please type DELETE in all caps to delete your account.",
"notAnEmail": "Ugyldig e-mailadresse.",
"emailTaken": "E-mailadressen er allerede brugt til en konto.",
"newEmailRequired": "Manglende ny e-mailadresse.",

View File

@@ -73,7 +73,7 @@
"weaponSpecial3Text": "Mustaines Milepæls-masende Morgenstjerne",
"weaponSpecial3Notes": "Møder, monstre, modløshed: håndteret! Mast! Øger Styrke, Intelligens og Konstitution med <%= attrs %> hver.",
"weaponSpecialCriticalText": "Kritisk Kryb-Hammer",
"weaponSpecialCriticalNotes": "Denne forkæmper nedkæmpede en kritisk Github fjende som andre måtte give op overfor. Denne hammer er lavet at knoglerne fra krybet, og giver mægtige fuldtræffere. Øger Styrke og Opfattelse med <%= attrs %>. hver.",
"weaponSpecialCriticalNotes": "This champion slew a critical GitHub foe where many warriors fell. Fashioned from the bones of Bug, this hammer deals a mighty critical hit. Increases Strength and Perception by <%= attrs %> each.",
"weaponSpecialTakeThisText": "Tag dette sværd",
"weaponSpecialTakeThisNotes": "Dette sværd blev opnået ved at deltage i en sponsoreret udfordring lavet af Take This. Tillykke!\nØger alle attributter med <%= attrs %>.",
"weaponSpecialTridentOfCrashingTidesText": "Trefork af Brydende Bølger",
@@ -593,7 +593,7 @@
"armorArmoireRedPartyDressText": "Red Party Dress",
"armorArmoireRedPartyDressNotes": "You're strong, tough, smart, and so fashionable! Increases Strength, Constitution, and Intelligence by <%= attrs %> each. Enchanted Armoire: Red Hairbow Set (Item 2 of 2).",
"armorArmoireWoodElfArmorText": "Wood Elf Armor",
"armorArmoireWoodElfArmorNotes": "This armor of bark and leaves will serve as durable camoflage in the forest. Increases Perception by <%= per %>. Enchanted Armoire: Wood Elf Set (Item 2 of 3).",
"armorArmoireWoodElfArmorNotes": "This armor of bark and leaves will serve as durable camouflage in the forest. Increases Perception by <%= per %>. Enchanted Armoire: Wood Elf Set (Item 2 of 3).",
"armorArmoireRamFleeceRobesText": "Ram Fleece Robes",
"armorArmoireRamFleeceRobesNotes": "These robes keep you warm even through the fiercest blizzard. Increases Constitution by <%= con %> and Strength by <%= str %>. Enchanted Armoire: Ram Barbarian Set (2 of 3).",
"armorArmoireGownOfHeartsText": "Gown of Hearts",
@@ -684,6 +684,8 @@
"headSpecialDandyHatNotes": "What a merry chapeau! You'll look quite fine enjoying a stroll in it. Increases Constitution by <%= con %>.",
"headSpecialKabutoText": "Kabuto",
"headSpecialKabutoNotes": "This helm is functional and beautiful! Your enemies will become distracted admiring it. Increases Intelligence by <%= int %>.",
"headSpecialNamingDay2017Text": "Royal Purple Gryphon Helm",
"headSpecialNamingDay2017Notes": "Happy Naming Day! Wear this fierce and feathery helm as you celebrate Habitica. Confers no benefit.",
"headSpecialNyeText": "Absurd Festhat",
"headSpecialNyeNotes": "Du har fået en Absurd Festhat! Bær den med stolthed mens du ringer det nye år ind! Giver ingen bonusser.",
"headSpecialYetiText": "Yetitæmmer-hjelm",
@@ -1148,7 +1150,7 @@
"backMystery201704Text": "Eventyr Vinger",
"backMystery201704Notes": "Disse glimtende vinger vil bære dig hvor som helst, selv til de skjulte riger regeret af magiske væsner. Giver ingen fordele. April 2017 Abonnentgenstand.",
"backMystery201706Text": "Tattered Freebooter's Flag",
"backMystery201706Notes": "The sight of this Jolly Roger-embazoned flag fills any To-Do or Daily with dread! Confers no benefit. June 2017 Subscriber Item.",
"backMystery201706Notes": "The sight of this Jolly Roger-emblazoned flag fills any To-Do or Daily with dread! Confers no benefit. June 2017 Subscriber Item.",
"backSpecialWonderconRedText": "Mægtig Kappe",
"backSpecialWonderconRedNotes": "Rasler af styrke og skønhed. Giver ingen bonusser. Specielt Messeudstyr.",
"backSpecialWonderconBlackText": "Lusket Kappe",

View File

@@ -152,9 +152,9 @@
"achievementBurnout": "Trivselsmarkernes Redning",
"achievementBurnoutText": "Var med til at overvinde Udbrand og genskabe Udmattelsesånderne i Efterårsfestival-eventet 2015!",
"achievementBewilder": "Frelser af Mistiflying",
"achievementBewilderText": "Helped defeat the Be-Wilder during the 2016 Spring Fling Event!",
"achievementBewilderText": "Var med til at overvinde Be-Wilder i 2016 Spring Fling-eventet!",
"checkOutProgress": "Tjek mine fremskridt i Habitica!",
"cards": "Cards",
"cards": "Kort",
"cardReceived": "Modtog et kort!",
"cardReceivedFrom": "<%= cardType %> fra <%= userName %>",
"greetingCard": "Lykønskningskort",
@@ -182,32 +182,32 @@
"birthdayCardAchievementTitle": "Fødselsdagsflip",
"birthdayCardAchievementText": "Mange lykønskninger! Har sendt eller modtaget <%= count %> fødselsdagskort.",
"congratsCard": "Tillykke Kort",
"congratsCardExplanation": "You both recieve the Congratulatory Companion achievement!",
"congratsCardNotes": "Send a Congratulations card to a party member.",
"congrats0": "Congratulations on your success!",
"congrats1": "I'm so proud of you!",
"congrats2": "Well done!",
"congrats3": "A round of applause for you!",
"congrats4": "Bask in your well-deserved success!",
"congratsCardAchievementTitle": "Congratulatory Companion",
"congratsCardAchievementText": "It's great to celebrate your friends' achievements! Sent or received <%= count %> congratulations cards.",
"congratsCardExplanation": "I modtager begge Lykønskende Ledsager-præstationen!",
"congratsCardNotes": "Send et Tillykke kort til et gruppemedlem.",
"congrats0": "Tillykke med din success!",
"congrats1": "Jeg er så stolt af dig!",
"congrats2": "Godt gået!",
"congrats3": "En klapsalve til dig!",
"congrats4": "Nyd din velfortjente success!",
"congratsCardAchievementTitle": "Lykønskende Ledsager",
"congratsCardAchievementText": "Det er fantastisk at fejre dine venners præstationer! Har sendt eller modtaget <%= count %> tillykke kort.",
"getwellCard": "God Bedring Kort",
"getwellCardExplanation": "You both recieve the Caring Confidant achievement!",
"getwellCardNotes": "Send a Get Well card to a party member.",
"getwell0": "Hope you feel better soon!",
"getwell1": "Take care! <3",
"getwell2": "You're in my thoughts!",
"getwell3": "Sorry you're not feeling your best!",
"getwellCardAchievementTitle": "Caring Confidant",
"getwellCardAchievementText": "Well-wishes are always appreciated. Sent or received <%= count %> get well cards.",
"getwellCardExplanation": "I modtager begge Omsorgsfuld Ven-præstationen!",
"getwellCardNotes": "Send et God Bedring kort til et gruppemedlem.",
"getwell0": "Håber du får det bedre snart!",
"getwell1": "Pas på! <3",
"getwell2": "Du er i mine tanker!",
"getwell3": "Jeg er ked af, at du ikke føler dig på dit bedste!",
"getwellCardAchievementTitle": "Omsorgsfuld Ven",
"getwellCardAchievementText": "Ønsker om god bedring er altid værdsat. Har sendt eller modtaget <%= count %>god bedring kort.",
"goodluckCard": "Held og Lykke Kort",
"goodluckCardExplanation": "You both receive the Lucky Letter achievement!",
"goodluckCardNotes": "Send a good luck card to a party member.",
"goodluck0": "May luck always follow you!",
"goodluck1": "Wishing you lots of luck!",
"goodluck2": "I hope luck is on your side today and always!!",
"goodluckCardAchievementTitle": "Lucky Letter",
"goodluckCardAchievementText": "Wishes for good luck are great encouragement! Sent or received <%= count %> good luck cards.",
"goodluckCardExplanation": "I modtager begge Heldigt Brev-præstationen!",
"goodluckCardNotes": "Send et Held og Lykke kort til et gruppemedlem.",
"goodluck0": "Må heldet altid følge dig!",
"goodluck1": "Ønsker dig held og lykke!",
"goodluck2": "Jeg håber heldet er på din side i dag og altid!",
"goodluckCardAchievementTitle": "Heldigt Brev",
"goodluckCardAchievementText": "Ønsker om godt held er altid god opmuntring! Har sendt eller modtaget <%= count %> held og lykke kort.",
"streakAchievement": "Du har optjent en stribe-præstation!",
"firstStreakAchievement": "21-dages Stribe",
"streakAchievementCount": "<%= streaks %> 21-dages Striber",

View File

@@ -21,7 +21,8 @@
"communityGuidelines": "Retningslinjer for Fællesskabet",
"communityGuidelinesRead1": "Læs venligst vores",
"communityGuidelinesRead2": "før du chatter.",
"bannedWordUsed": "Oops! Looks like this post contains a swearword, religious oath, or reference to an addictive substance or adult topic. Habitica has users from all backgrounds, so we keep our chat very clean. Feel free to edit your message so you can post it!",
"bannedWordUsed": "Ups! Det ser ud til at denne besked indeholder et bandeord, religiøs ed, eller en reference til en vanedannende substans eller voksen emne. Habitica har brugere fra alle baggrunde, så vi holder vores chat meget ren. Føl dig endelig fri til at rette din besked, så du kan sende den!",
"bannedSlurUsed": "Your post contained inappropriate language, and your chat privileges have been revoked.",
"party": "Gruppe",
"createAParty": "Opret en Gruppe",
"updatedParty": "Gruppeindstillinger opdateret.",
@@ -35,7 +36,9 @@
"invite": "Invitér",
"leave": "Forlad",
"invitedTo": "Inviteret til <%= name %>",
"invitedToNewParty": "Du blev inviteret til en gruppe! Vil du forlade denne gruppe og slutte dig til <%= partyName %>?",
"invitedToNewParty": "You were invited to join a party! Do you want to leave this party, reject all other party invitations and join <%= partyName %>?",
"partyInvitationsText": "You have <%= numberInvites %> party invitations! Choose wisely, because you can only be in one party at a time.",
"joinPartyConfirmationText": "Are you sure you want to join the party \"<%= partyName %>\"? You can only be in one party at a time. If you join, all other party invitations will be rejected.",
"invitationAcceptedHeader": "Din invitation er Accepteret",
"invitationAcceptedBody": "<%= username %> har accepteret din invitation til <%= groupName %>!",
"joinNewParty": "Slut dig til ny Gruppe",
@@ -148,6 +151,8 @@
"sendInvitations": "Send Invitationer",
"invitationsSent": "Invitationer sendt!",
"invitationSent": "Invitation afsendt!",
"invitedFriend": "Invited a Friend",
"invitedFriendText": "This user invited a friend (or friends) who joined them on their adventure!",
"inviteAlertInfo2": "Eller del dette link (kopier/indsæt):",
"inviteLimitReached": "Du har allerede afsendt det højest mulige antal email-invitationer. Vi har en grænse for at undgå spamming, men hvis du gerne vil sende flere, kan du kontakte os på <%= techAssistanceEmail %>, så vil vi med fornøjelse diskutere det!",
"sendGiftHeading": "Send Gave til <%= name %>",
@@ -227,7 +232,7 @@
"yourTaskHasBeenApproved": "Din opgave \"<%= taskText %>\" er blevet godkendt",
"userHasRequestedTaskApproval": "<%= user %> har anmodet om opgave-godkendelse for <%= taskName %>",
"approve": "Godkend",
"approvalTitle": "<%= userName %> has completed <%= type %>: \"<%= text %>\"",
"approvalTitle": "<%= userName %>har udført <%= type %>: \"<%= text %>\"",
"confirmTaskApproval": "Vil du belønne <%= username %> for at færdiggøre denne opgave?",
"groupSubscriptionPrice": "$9 hver måned + $3 per måned for hvert ekstra gruppemedlem",
"groupAdditionalUserCost": "+$3.00/month/user",
@@ -264,7 +269,7 @@
"cannotDeleteActiveGroup": "You cannot remove a group with an active subscription",
"groupTasksTitle": "Group Tasks List",
"approvalsTitle": "Tasks Awaiting Approval",
"upgradeTitle": "Upgrade",
"upgradeTitle": "Opgradér",
"blankApprovalsDescription": "When your group completes tasks that need your approval, they'll appear here! Adjust approval requirement settings under task editing.",
"userIsClamingTask": "`<%= username %> har gjort krav på \"<%= task %>\"`",
"approvalRequested": "Godkendelse anmodet",

View File

@@ -30,6 +30,7 @@
"messageAlreadyPurchasedGear": "Du har engang købt dette udstyr, men ejer det ikke på nuværende tidspunkt. Du kan købe det igen i belønningskolonnen på opgavesiden.",
"messageAlreadyOwnGear": "Du ejer allerede denne ting. Tag det på ved at gå til udstyrssiden.",
"messageHealthAlreadyMax": "Du har allerede fuldt liv.",
"messageHealthAlreadyMin": "Oh no! You have already run out of health so it's too late to buy a health potion, but don't worry - you can revive!",
"armoireEquipment": "<%= image %> Du har fundet sjældent Udstyr i Klædeskabet: <%= dropText %>! Fantastisk!",
"armoireFood": "<%= image %> Du roder rundt i bunden af Klædeskabet. Pludselig finder du <%= dropText %>. Gad vide hvad den laver her?",
"armoireExp": "Du kæmper med Klædeskabet og får Erfaring. Sådan!",

View File

@@ -40,6 +40,7 @@
"plusOneGem": "+1 ædelsten",
"typeNotSellable": "Type kan ikke sælges. Skal være en af følgende <%= acceptedTypes %>",
"userItemsKeyNotFound": "Nøgle ikke fundet for user.items <%= type %>",
"userItemsNotEnough": "Not enough items found for user.items <%= type %>",
"pathRequired": "Path string er påkrævet",
"unlocked": "Genstande er blevet låst op",
"alreadyUnlocked": "Fuldt sæt er allerede låst op for.",
@@ -58,7 +59,7 @@
"amazonInstructions": "Klik på knappen for at betale med Amazon Payments",
"paymentMethods": "Køb med",
"classGear": "Klasseudstyr",
"classGearText": "Først og fremmest: Gå ikke i panik! Dit gamle udstyr er i dit inventar og du bærer nu lærlingeudstyret for din nye klasse. Ved at bære din klasses udstyr, får du en 50% bonus til stats. Men føl dig endelig fri til at skifte tilbage til dit gamle udstyr.",
"classGearText": "Congratulations on choosing a class! I've added your new basic weapon to your inventory. Take a look below to equip it!",
"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 der er hak ud for 'Automatisk tildeling', vil din avatar automatisk få stats baseret på dine opgavers attributter, som du kan finde under <strong>OPGAVER > Ret > Avanceret > Attributter</strong>. F.eks. hvis du ofte går i motionscentret og din 'Gym' Daglige Opgaver er sat til 'Styrke', vil du automatisk få Styrke tildelt.",

View File

@@ -71,7 +71,7 @@
"displayNow": "Vis nu",
"displayLater": "Vis senere",
"petNotOwned": "Du ejer ikke dette kæledyr.",
"mountNotOwned": "You do not own this mount.",
"mountNotOwned": "Du ejer ikke dette ridedyr.",
"earnedCompanion": "Med all din produktivitet har du fortjent en ny følgesvend. Giv den mad for at få den til at vokse!",
"feedPet": "Giv <%= text %> til <%= name %>?",
"useSaddle": "Giv <%= pet %> sadel på?",

View File

@@ -281,7 +281,7 @@
"questUnicornDropUnicornEgg": "Enhjørning (Æg)",
"questUnicornUnlockText": "Åbner for køb af enhjørningeæg på Markedet",
"questSabretoothText": "Sabletandskatten",
"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!\"",
"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 Stoïkalm 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 Sabletandskat",
"questSabretoothDropSabretoothEgg": "Sabeltand (Æg)",
@@ -415,7 +415,7 @@
"questTriceratopsDropTriceratopsEgg": "Triceratops (Egg)",
"questTriceratopsUnlockText": "Åbner for køb af Triceratopsæg på Markedet",
"questStoikalmCalamity1Text": "Stoïkalm Calamity, Part 1: Earthen Enemies",
"questStoikalmCalamity1Notes": "A terse missive arrives from @Kiwibot, and the frost-crusted scroll chills your heart as well as your fingertips. \"Visiting Stoikalm Steppes -- monsters bursting from earth -- send help!\" You gather your party and ride north, but as soon as you venture down from the mountains, the snow beneath your feet explodes and gruesomely grinning skulls surround you!<br><br>Suddenly, a spear sails past, burying itself in a skull that was burrowing through the snow in an attempt to catch you unawares. A tall woman in finely-crafted armor gallops into the fray on the back of a mastodon, her long braid swinging as she yanks the spear unceremoniously from the crushed beast. It's time to fight off these foes with the help of Lady Glaciate, the leader of the Mammoth Riders!",
"questStoikalmCalamity1Notes": "A terse missive arrives from @Kiwibot, and the frost-crusted scroll chills your heart as well as your fingertips. \"Visiting Stoïkalm Steppes -- monsters bursting from earth -- send help!\" You gather your party and ride north, but as soon as you venture down from the mountains, the snow beneath your feet explodes and gruesomely grinning skulls surround you!<br><br>Suddenly, a spear sails past, burying itself in a skull that was burrowing through the snow in an attempt to catch you unawares. A tall woman in finely-crafted armor gallops into the fray on the back of a mastodon, her long braid swinging as she yanks the spear unceremoniously from the crushed beast. It's time to fight off these foes with the help of Lady Glaciate, the leader of the Mammoth Riders!",
"questStoikalmCalamity1Completion": "As you deliver a final blow to the skulls, they dissipate in a puff of magic. \"The dratted swarm may be gone,\" Lady Glaciate says, \"but we have bigger problems. Follow me.\" She tosses you a cloak to protect you from the chill air, and you ride off after her.",
"questStoikalmCalamity1Boss": "Earth Skull Swarm",
"questStoikalmCalamity1RageTitle": "Swarm Respawn",

View File

@@ -66,6 +66,7 @@
"resetText1": "ADVARSEL! Dette nulstiller mange dele af din konto. Vi fraråder på det kraftigste dette, men nogen finder det brugbart i begyndelsen, efter at have spillet i kort tid.",
"resetText2": "Du vil miste alle dine niveauer, dit guld og dine erfaringspoint. Alle dine opgaver (udover dem fra udfordringer) vil blive slettet permanent, og du vil miste alle deres historiske data. Du vil miste alt dit udstyr, men du kan købe det hele igen, inklusive alle specielle udgaver og abonnenters Mystiske varer som du allerede ejer (du skal dog være den korrekte klasse for at købe klassespecifikt udstyr). Du vil beholde din nuværende klasse og dine kæledyr og ridedyr. Du vil måske foretrække at bruge en Genfødselskugle i stedet, hvilket er et meget sikrere valg og vil lade dig beholde dine opgaver.",
"deleteLocalAccountText": "Er du sikker? Dette vil slette din konto for evigt, og den kan aldrig gendannes! Du skal registrere en ny konto for at kunne bruge Habitica igen. Ædelsten du har brugt eller har på lager vil ikke refunderes. Hvis du er fuldstændig sikker, så skriv dit kodeord i kassen herunder.",
"deleteSocialAccountText": "Are you sure? This will delete your account forever, and it can never be restored! You will need to register a new account to use Habitica again. Banked or spent Gems will not be refunded. If you're absolutely certain, type \"DELETE\" into the text box below.",
"API": "API",
"APIv3": "API v3",
"APIText": "Kopiér disse til brug i tredjeparts-applikationer. Dog skal du tænke på din API Nøgle som et kodeord, og lade være med at dele den offentligt. Du kan nogen gange blive bedt om dit Bruger ID, men skriv aldrig din API Nøgle hvor andre kan se den, heller ikke på Github.",

View File

@@ -23,7 +23,7 @@
"giftSubscriptionText4": "Tak for støtten til Habitica!",
"monthUSD": "US$ / Måned",
"organization": "Organisation",
"groupPlans": "Group Plans",
"groupPlans": "Gruppeplaner",
"indivPlan1": "For enkeltpersoner er Habitica gratis at spille. Selv for små interessegrupper, kan gratis (eller billige)",
"indivPlan2": "bruges til at motivere deltagerne til adfærdsændringer. Tænk skrivegrupper, kunstudfordringer og andet.",
"groupText1": "Men nogle gruppeledere vil gerne have mere kontrol, privathed, sikkerhed og støtte. Eksempler på sådanne grupper er familier, sundheds- og wellnessgrupper, medarbejdergrupper og andre. Disse abonnementer giver adgang til private udgaver af Habitica for din gruppe eller organisation, sikkert og uafhængigt af",

View File

@@ -246,6 +246,7 @@
"missingNewPassword": "Fehlendes neues Passwort.",
"invalidEmailDomain": "Du kannst E-Mails mit den folgenden Domains nicht registrieren: <%= domains %>",
"wrongPassword": "Falsches Passwort.",
"incorrectDeletePhrase": "Please type DELETE in all caps to delete your account.",
"notAnEmail": "Ungültige E-Mail-Adresse.",
"emailTaken": "Diese E-Mail-Adresse wird bereits von einem Konto verwendet.",
"newEmailRequired": "Fehlende neue E-Mail-Adresse.",

View File

@@ -73,7 +73,7 @@
"weaponSpecial3Text": "Mustaines Meilenstein-matschender Morgenstern",
"weaponSpecial3Notes": "Konferenzen, Kreaturen, Krankheit: Alles erledigt! Zerstampft! Erhöht Stärke, Intelligenz und Ausdauer um jeweils <%= attrs %>.",
"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 Bug-Knochen gefertigt ist, teilt mächtige, todbringende Hiebe aus. Erhöht Stärke und Wahrnehmung um jeweils <%= attrs %>.",
"weaponSpecialCriticalNotes": "This champion slew a critical GitHub foe where many warriors fell. Fashioned from the bones of Bug, this hammer deals a mighty critical hit. Increases Strength and Perception by <%= attrs %> each.",
"weaponSpecialTakeThisText": "Take This-Schwert",
"weaponSpecialTakeThisNotes": "Dieses Schwert wurde durch die Teilnahme an einem von Take This gesponsorten Wettbewerb verdient. Gratulation! Erhöht alle Attribute um <%= attrs %>.",
"weaponSpecialTridentOfCrashingTidesText": "Dreizack der brechenden Gezeiten",
@@ -540,7 +540,7 @@
"armorMystery201703Notes": "Obwohl ihre Farben an Frühlingsblüten erinnern, ist diese Rüstung stärker als Stahl! Gewährt keinen Attributbonus. Abonnentengegenstand, März 2017.",
"armorMystery201704Text": "Märchenhafte Feenrüstung",
"armorMystery201704Notes": "Feen haben diese Rüstung aus Morgentau gefertigt, um die Farben des Sonnenaufgangs einzufangen. Gewährt keinen Attributbonus. Abonnentengegenstand, April 2017.",
"armorMystery201707Text": "Quallen-Rüstung",
"armorMystery201707Text": "Quallenzauberer-Rüstung",
"armorMystery201707Notes": "Mit dieser Rüstung kannst Du Dich unter die Kreaturen des Ozeans mischen, während Du Unterwasser-Quests und Abenteuern nachschwimmst. Abonnentengegenstand, Juli 2017.",
"armorMystery301404Text": "Steampunkanzug",
"armorMystery301404Notes": "Adrett und schneidig, hoho! Gewährt keinen Attributbonus. Februar 3015 Abonnentengegenstand.",
@@ -593,7 +593,7 @@
"armorArmoireRedPartyDressText": "Rotes Partygewand",
"armorArmoireRedPartyDressNotes": "Du bist stark, taff, schlau, und so modisch! Erhöht Stärke, Ausdauer und Intelligenz jeweils um <%= attrs %>. Verzauberter Schrank: Rotes Haarschleifen-Set (Gegenstand 2 von 2).",
"armorArmoireWoodElfArmorText": "Waldelfenrüstung",
"armorArmoireWoodElfArmorNotes": "Diese Rüstung aus Rinde und Blättern dient als langlebige Tarnung im Wald. Erhöht Wahrnehmung um <%= per %>. Verzauberter Schrank: Waldelfenset (Gegenstand 2 von 3).",
"armorArmoireWoodElfArmorNotes": "This armor of bark and leaves will serve as durable camouflage in the forest. Increases Perception by <%= per %>. Enchanted Armoire: Wood Elf Set (Item 2 of 3).",
"armorArmoireRamFleeceRobesText": "Widderfellroben",
"armorArmoireRamFleeceRobesNotes": "Diese Roben halten Dich selbst während eines heftigen Schneesturms warm. Erhöht Ausdauer um <%= con %> und Stärke um <%= str %>. Verzauberter Schrank: Widder-Barbar Set (Gegenstand 2 von 3).",
"armorArmoireGownOfHeartsText": "Herzkleid",
@@ -684,6 +684,8 @@
"headSpecialDandyHatNotes": "Was für ein neckischer Hut! Du wirst ziemlich schick aussehen, wenn Du mit ihm spazieren gehst. Erhöht Ausdauer um <%= con %>.",
"headSpecialKabutoText": "Kabuto-Helm",
"headSpecialKabutoNotes": "Dieser Helm ist funktional und schön zugleich! Deine Feinde werden abgelenkt sein, weil sie ihn bewundern werden. Erhöht Intelligenz um <%= int %>.",
"headSpecialNamingDay2017Text": "Royal Purple Gryphon Helm",
"headSpecialNamingDay2017Notes": "Happy Naming Day! Wear this fierce and feathery helm as you celebrate Habitica. Confers no benefit.",
"headSpecialNyeText": "Ulkiger Partyhut",
"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",
@@ -1148,7 +1150,7 @@
"backMystery201704Text": "Märchenhafte Feenflügel",
"backMystery201704Notes": "Diese schimmernden Flügel werden Dich überall hintragen, sogar bis in die versteckten Reiche, die von magischen Kreaturen beherrscht werden. Gewährt keinen Attributbonus. Abonnentengegenstand, April 2017.",
"backMystery201706Text": "Zerfetzte Freibeuter-Flagge",
"backMystery201706Notes": "Der Anblick dieser gehissten Piratenflagge erfüllt jedes To-Do und jede tägliche Aufgabe mit Schrecken! Gewährt keinen Attributbonus. Abonnentengegenstand, Juni 2017.",
"backMystery201706Notes": "The sight of this Jolly Roger-emblazoned flag fills any To-Do or Daily with dread! Confers no benefit. June 2017 Subscriber Item.",
"backSpecialWonderconRedText": "Mächtiger Umhang",
"backSpecialWonderconRedNotes": "Strotzt vor Stärke und Schönheit. Gewährt keinen Attributbonus. Special Edition Convention-Gegenstand.",
"backSpecialWonderconBlackText": "Tückischer Umhang",

View File

@@ -22,6 +22,7 @@
"communityGuidelinesRead1": "Bitte lies unsere",
"communityGuidelinesRead2": "vor dem Chatten.",
"bannedWordUsed": "Hoppla! Es scheint so, als ob dieser Beitrag ein Schimpfwort oder einen religiösen Fluch enthält, oder sich auf Suchtstoffe oder nicht-jugendfreie Themen bezieht. Habitica hat Spieler unterschiedlichster Herkunft, weswegen wir unseren Chat besonders sauber halten wollen. Du kannst Deine Nachricht gerne überarbeiten, um sie doch noch posten zu können! ",
"bannedSlurUsed": "Your post contained inappropriate language, and your chat privileges have been revoked.",
"party": "Gruppe",
"createAParty": "Gruppe erstellen",
"updatedParty": "Gruppeneinstellungen wurden aktualisiert.",
@@ -35,7 +36,9 @@
"invite": "Einladen",
"leave": "Verlassen",
"invitedTo": "Du wurdest zu <%= name %> eingeladen.",
"invitedToNewParty": "Du wurdest zu einer Gruppe eingeladen! Möchtest Du diese Gruppe verlassen und stattdessen <%= partyName %> beitreten?",
"invitedToNewParty": "You were invited to join a party! Do you want to leave this party, reject all other party invitations and join <%= partyName %>?",
"partyInvitationsText": "You have <%= numberInvites %> party invitations! Choose wisely, because you can only be in one party at a time.",
"joinPartyConfirmationText": "Are you sure you want to join the party \"<%= partyName %>\"? You can only be in one party at a time. If you join, all other party invitations will be rejected.",
"invitationAcceptedHeader": "Deine Einladung wurde angenommen",
"invitationAcceptedBody": "<%= username %> hat Deine Einladung zu <%= groupName %> angenommen!",
"joinNewParty": "Neuer Gruppe beitreten",
@@ -148,6 +151,8 @@
"sendInvitations": "Einladungen verschicken",
"invitationsSent": "Einladungen verschickt!",
"invitationSent": "Einladung verschickt!",
"invitedFriend": "Invited a Friend",
"invitedFriendText": "This user invited a friend (or friends) who joined them on their adventure!",
"inviteAlertInfo2": "Oder teile diesen Link (kopieren/einfügen):",
"inviteLimitReached": "Du hast bereits die maximale Anzahl an E-Mail-Einladungen verschickt. Wir haben ein Limit, um Spam-Mails zu vermeiden. Wenn du mehr Einladungen versenden möchtest, schreibe uns unter <%= techAssistanceEmail %> und wir werden eine gemeinsame Lösung finden!",
"sendGiftHeading": "Sende Geschenk an <%= name %>",

View File

@@ -30,6 +30,7 @@
"messageAlreadyPurchasedGear": "Du hast diesen Gegenstand in der Vergangenheit bereits gekauft, besitzt ihn aktuell aber nicht mehr. Du kannst ihn in der Spalte \"Belohnungen\" Deiner Aufgabenseite erneut kaufen.",
"messageAlreadyOwnGear": "Du besitzt diesen Gegenstand schon. Gehe zur Ausrüstungsseite um ihn anzulegen.",
"messageHealthAlreadyMax": "Du hast schon alle Lebenspunkte.",
"messageHealthAlreadyMin": "Oh no! You have already run out of health so it's too late to buy a health potion, but don't worry - you can revive!",
"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!",

View File

@@ -40,6 +40,7 @@
"plusOneGem": "+1 Edelstein",
"typeNotSellable": "Typ ist nicht verkäuflich. Dieser muss einer der Folgenden sein: <%= acceptedTypes %>",
"userItemsKeyNotFound": "Schlüssel für user.items <%= type %> nicht gefunden",
"userItemsNotEnough": "Not enough items found for user.items <%= type %>",
"pathRequired": "Pfad ist erforderlich",
"unlocked": "Gegenstände wurden freigeschaltet",
"alreadyUnlocked": "Komplettes Set ist bereits freigeschaltet.",
@@ -58,7 +59,7 @@
"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 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.",
"classGearText": "Congratulations on choosing a class! I've added your new basic weapon to your inventory. Take a look below to equip it!",
"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 jeden der Statuswerte für weitere Informationen.",
"autoAllocate": "Automatische Verteilung",
"autoAllocateText": "Falls Du eine automatische Verteilung wählst, werden die Punkte automatisch vergeben, abhängig von den Attributen Deiner Aufgaben, die Du unter <strong>Aufgabe > Bearbeiten > Erweiterte Optionen > Attribute</strong> finden kannst. Ein Beispiel: Wenn Du oft im Fitnessstudio bist und die entsprechende Aufgabe auf \"körperlich\" gesetzt ist, bekommst Du automatisch Stärke.",

View File

@@ -281,7 +281,7 @@
"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 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 Stoistillen 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": "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 Stoïkalm 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": "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",
"questSabretoothDropSabretoothEgg": "Säbelzahntiger (Ei)",
@@ -415,7 +415,7 @@
"questTriceratopsDropTriceratopsEgg": "Triceratops (Ei)",
"questTriceratopsUnlockText": "Ermöglicht den Kauf von Triceratopseiern auf dem Marktplatz",
"questStoikalmCalamity1Text": "Stoïstilles Unglück, Teil 1: Erdgegner",
"questStoikalmCalamity1Notes": "Ein gedrängtes Schreiben von @Kiwibot trifft ein; nicht nur ist die frostbedeckte Schriftrolle eiskalt, sondern sie lässt Dir auch kalte Schauer den Rücken runterlaufen. \"Bin in Stoïstillen Steppen Monster platzen aus Boden brauche Hilfe!\" Du versammelst Deine Gruppe und reitest gen Norden, doch gerade, als Ihr Euch den Berg hinabbewegt, explodiert der Schnee unter Euren Füßen und grausig grinsende Schädel umzingeln Euch! <br><br>Plötzlich fliegt ein Speer an Euch vorbei und gräbt sich in einen Schädel, der Dich, sich durch den Schnee buddelnd, unbemerkt angreifen wollte. Eine große Frau in wohlgeschmiedeter Rüstung gallopiert auf dem Rücken eines Mastodons in die Schlacht und zieht mit wehendem Zopf rabiat den Speer wieder aus dem zerquetschten Biest. Zeit, die Feinde mit der Hilfe von Lady Glaciate, der Anführerin der Mammutreiter, zu bekämpfen! ",
"questStoikalmCalamity1Notes": "A terse missive arrives from @Kiwibot, and the frost-crusted scroll chills your heart as well as your fingertips. \"Visiting Stoïkalm Steppes -- monsters bursting from earth -- send help!\" You gather your party and ride north, but as soon as you venture down from the mountains, the snow beneath your feet explodes and gruesomely grinning skulls surround you!<br><br>Suddenly, a spear sails past, burying itself in a skull that was burrowing through the snow in an attempt to catch you unawares. A tall woman in finely-crafted armor gallops into the fray on the back of a mastodon, her long braid swinging as she yanks the spear unceremoniously from the crushed beast. It's time to fight off these foes with the help of Lady Glaciate, the leader of the Mammoth Riders!",
"questStoikalmCalamity1Completion": "Als Du den letzten Schädeln den Gnadenstoß versetzt, lösen sie sich in einen Hauch Magie auf. \"Der verflixte Schwarm mag zwar verschwunden sein\", sagt Lady Glaciate, \"aber wir haben größere Probleme. Folge mir.\" Sie wirft Dir zum Schutz vor der eisigen Luft einen Mantel zu und Du reitest ihr nach. ",
"questStoikalmCalamity1Boss": "Erdschädelschwarm",
"questStoikalmCalamity1RageTitle": "Schwarmnachwuchs",

View File

@@ -66,6 +66,7 @@
"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 wirst all deine Level, Gold und Erfahrungspunkte verlieren. All deine Aufgaben (mit Ausnahme der von Herausforderungen) werden dauerhaft gelöscht und alle historischen Daten gehen verloren. Du wirst all deine Ausrüstung verlieren, die du aber zurückkaufen kannst, einschließlich aller Ausrüstungsgegenstände aus limitierter Ausgabe und Gegenständen, die du als Abonnent erworben hast (um klassenspezifische Gegenstände zurück zu kaufen, musst du der korrekten Klasse angehören). Du behältst deine jetzige Klasse, sowie Haus- und Reittiere. Zur Sicherheit solltest du stattdessen eine Kugel der Wiedergeburt verwenden, welche deine jetzigen Aufgaben und Ausrüstungsgegenstände schont.",
"deleteLocalAccountText": "Bist Du sicher? Dies 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 Dein Passwort in die Text-Box unten ein.",
"deleteSocialAccountText": "Are you sure? This will delete your account forever, and it can never be restored! You will need to register a new account to use Habitica again. Banked or spent Gems will not be refunded. If you're absolutely certain, type \"DELETE\" into the text box below.",
"API": "API",
"APIv3": "API v3",
"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 Benutzer-ID gefragt, aber poste niemals Dein API-Token öffentlich wo es andere sehen können, auch nicht auf GitHub.",

View File

@@ -740,6 +740,8 @@
"headSpecialDandyHatNotes": "What a merry chapeau! You'll look quite fine enjoying a stroll in it. Increases Constitution by <%= con %>.",
"headSpecialKabutoText": "Kabuto",
"headSpecialKabutoNotes": "This helm is functional and beautiful! Your enemies will become distracted admiring it. Increases Intelligence by <%= int %>.",
"headSpecialNamingDay2017Text": "Royal Purple Gryphon Helm",
"headSpecialNamingDay2017Notes": "Happy Naming Day! Wear this fierce and feathery helm as you celebrate Habitica. Confers no benefit.",
"headSpecialNyeText": "Absurd Party Hat",
"headSpecialNyeNotes": "You've received an Absurd Party Hat! Wear it with pride while ringing in the New Year! Confers no benefit.",

View File

@@ -246,6 +246,7 @@
"missingNewPassword": "Missing new password.",
"invalidEmailDomain": "You cannot register with emails with the following domains: <%= domains %>",
"wrongPassword": "Wrong password.",
"incorrectDeletePhrase": "Please type DELETE in all caps to delete your account.",
"notAnEmail": "Invalid email address.",
"emailTaken": "Email address is already used in an account.",
"newEmailRequired": "Missing new email address.",

View File

@@ -73,7 +73,7 @@
"weaponSpecial3Text": "Mustaine's Milestone Mashing Morning Star",
"weaponSpecial3Notes": "Meetin's, monsters, malaise: managed! Mash! Increases Strength, Intelligence, 'n Constitution by <%= attrs %> each.",
"weaponSpecialCriticalText": "Critical Hammer o' Bug-Crushin'",
"weaponSpecialCriticalNotes": "'tis champion slew a critical Github foe whar many warriors fell. Fashioned from th' bones 'o Bug, 'tis hammer deals a mighty critical hit. Increases Strength 'n Perception by <%= attrs %> each.",
"weaponSpecialCriticalNotes": "This champion slew a critical GitHub foe where many warriors fell. Fashioned from the bones of Bug, this hammer deals a mighty critical hit. Increases Strength and Perception by <%= attrs %> each.",
"weaponSpecialTakeThisText": "Take This Sword",
"weaponSpecialTakeThisNotes": "This sword was earned by participating in a sponsored Challenge made by Take This. Congratulations! Increases all attributes by <%= attrs %>.",
"weaponSpecialTridentOfCrashingTidesText": "Trident o' Crashin' Tides",
@@ -593,7 +593,7 @@
"armorArmoireRedPartyDressText": "Red Party Dress",
"armorArmoireRedPartyDressNotes": "You're strong, tough, smart, and so fashionable! Increases Strength, Constitution, and Intelligence by <%= attrs %> each. Enchanted Armoire: Red Hairbow Set (Item 2 of 2).",
"armorArmoireWoodElfArmorText": "Wood Elf Armor",
"armorArmoireWoodElfArmorNotes": "This armor of bark and leaves will serve as durable camoflage in the forest. Increases Perception by <%= per %>. Enchanted Armoire: Wood Elf Set (Item 2 of 3).",
"armorArmoireWoodElfArmorNotes": "This armor of bark and leaves will serve as durable camouflage in the forest. Increases Perception by <%= per %>. Enchanted Armoire: Wood Elf Set (Item 2 of 3).",
"armorArmoireRamFleeceRobesText": "Ram Fleece Robes",
"armorArmoireRamFleeceRobesNotes": "These robes keep you warm even through the fiercest blizzard. Increases Constitution by <%= con %> and Strength by <%= str %>. Enchanted Armoire: Ram Barbarian Set (2 of 3).",
"armorArmoireGownOfHeartsText": "Gown of Hearts",
@@ -684,6 +684,8 @@
"headSpecialDandyHatNotes": "What a merry chapeau! You'll look quite fine enjoying a stroll in it. Increases Constitution by <%= con %>.",
"headSpecialKabutoText": "Kabuto",
"headSpecialKabutoNotes": "This helm is functional and beautiful! Your enemies will become distracted admiring it. Increases Intelligence by <%= int %>.",
"headSpecialNamingDay2017Text": "Royal Purple Gryphon Helm",
"headSpecialNamingDay2017Notes": "Happy Naming Day! Wear this fierce and feathery helm as you celebrate Habitica. Confers no benefit.",
"headSpecialNyeText": "Absurd Parrrty Hat",
"headSpecialNyeNotes": "Ye've received an Absurd Party Hat! Wear it with pride while ringin' in th' New Year! Don't benefit ye.",
"headSpecialYetiText": "Yeti-Tamer Helm",
@@ -1148,7 +1150,7 @@
"backMystery201704Text": "Fairytale Wings",
"backMystery201704Notes": "These shimmering wings will carry you anywhere, even the hidden realms ruled by magical creatures. Confers no benefit. April 2017 Subscriber Item.",
"backMystery201706Text": "Tattered Freebooter's Flag",
"backMystery201706Notes": "The sight of this Jolly Roger-embazoned flag fills any To-Do or Daily with dread! Confers no benefit. June 2017 Subscriber Item.",
"backMystery201706Notes": "The sight of this Jolly Roger-emblazoned flag fills any To-Do or Daily with dread! Confers no benefit. June 2017 Subscriber Item.",
"backSpecialWonderconRedText": "Mighty Cape",
"backSpecialWonderconRedNotes": "Swishes wit' strength an' beauty. Don't benefit ye. Special Edition Convention Item.",
"backSpecialWonderconBlackText": "Sneaky Cape",

View File

@@ -22,6 +22,7 @@
"communityGuidelinesRead1": "Please read our",
"communityGuidelinesRead2": "before chattin'.",
"bannedWordUsed": "Oops! Looks like this post contains a swearword, religious oath, or reference to an addictive substance or adult topic. Habitica has users from all backgrounds, so we keep our chat very clean. Feel free to edit your message so you can post it!",
"bannedSlurUsed": "Your post contained inappropriate language, and your chat privileges have been revoked.",
"party": "Crew",
"createAParty": "Form a Crew",
"updatedParty": "Crew settings updated.",
@@ -35,7 +36,9 @@
"invite": "Invite",
"leave": "Leave",
"invitedTo": "Invited t' <%= name %>",
"invitedToNewParty": "Ye be invited to join a party! Do ye want to leave this party and join <%= partyName %>?",
"invitedToNewParty": "You were invited to join a party! Do you want to leave this party, reject all other party invitations and join <%= partyName %>?",
"partyInvitationsText": "You have <%= numberInvites %> party invitations! Choose wisely, because you can only be in one party at a time.",
"joinPartyConfirmationText": "Are you sure you want to join the party \"<%= partyName %>\"? You can only be in one party at a time. If you join, all other party invitations will be rejected.",
"invitationAcceptedHeader": "Your Invitation has been Accepted",
"invitationAcceptedBody": "<%= username %> accepted your invitation to <%= groupName %>!",
"joinNewParty": "Join New Crew",
@@ -148,6 +151,8 @@
"sendInvitations": "Send Invitations",
"invitationsSent": "Invitations sent!",
"invitationSent": "Invitation sent!",
"invitedFriend": "Invited a Friend",
"invitedFriendText": "This user invited a friend (or friends) who joined them on their adventure!",
"inviteAlertInfo2": "Or share this link (copy/paste):",
"inviteLimitReached": "You have already sent the maximum number of email invitations. We have a limit to prevent spamming, however if you would like more, please contact us at <%= techAssistanceEmail %> and we'll be happy to discuss it!",
"sendGiftHeading": "Send Gift t' <%= name %>",

View File

@@ -30,6 +30,7 @@
"messageAlreadyPurchasedGear": "Ye purchased this gear in th' past, but do not currently own it. Ye can buy it again in th' rewards column on th' tasks page.",
"messageAlreadyOwnGear": "Ye already own this item. Equip it by going to th' equipment page.",
"messageHealthAlreadyMax": "Ye already 'ave maximum health.",
"messageHealthAlreadyMin": "Oh no! You have already run out of health so it's too late to buy a health potion, but don't worry - you can revive!",
"armoireEquipment": "<%= image %> Ye found a piece of rare Equipment in th' Armoire: <%= dropText %>! Awesome!",
"armoireFood": "<%= image %> Ye rummage in the Armoire an' find <%= dropArticle %><%= dropText %>. What's tha' doin' in here?",
"armoireExp": "Ye wrestle wi' th' Armoire an' gain Experience. Take that!",
@@ -56,4 +57,4 @@
"messageUserOperationNotFound": "<%= operation %> operation not be here",
"messageNotificationNotFound": "Notification not found.",
"notificationsRequired": "Notification ids are required."
}
}

View File

@@ -40,6 +40,7 @@
"plusOneGem": "+1 Gem",
"typeNotSellable": "Type is not sellable. Must be one of the following <%= acceptedTypes %>",
"userItemsKeyNotFound": "Key not found for user.items <%= type %>",
"userItemsNotEnough": "Not enough items found for user.items <%= type %>",
"pathRequired": "Path string is required",
"unlocked": "Items have been unlocked",
"alreadyUnlocked": "Full set already unlocked.",
@@ -58,7 +59,7 @@
"amazonInstructions": "Click the button to pay usin' Amazon Payments",
"paymentMethods": "Purchase using:",
"classGear": "Class 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.",
"classGearText": "Congratulations on choosing a class! I've added your new basic weapon to your inventory. Take a look below to equip it!",
"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' is checked, your avatar gains stats automatically based on your tasks' attributes, which you can find in <strong>TASK > Edit > Advanced > Attributes</strong>. Eg, if you hit the gym often, and your 'Gym' Daily is set to 'Strength', you'll gain Strength automatically.",

View File

@@ -281,7 +281,7 @@
"questUnicornDropUnicornEgg": "Unicorn (Egg)",
"questUnicornUnlockText": "Unlocks purchasable Unicorn eggs in th' Market",
"questSabretoothText": "Th' 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!\"",
"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 Stoïkalm 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",
"questSabretoothDropSabretoothEgg": "Sabretooth (Egg)",
@@ -415,7 +415,7 @@
"questTriceratopsDropTriceratopsEgg": "Triceratops (Egg)",
"questTriceratopsUnlockText": "Unlocks purchasable Triceratops eggs in the Market",
"questStoikalmCalamity1Text": "Stoïkalm Calamity, Part 1: Earthen Enemies",
"questStoikalmCalamity1Notes": "A terse missive arrives from @Kiwibot, and the frost-crusted scroll chills your heart as well as your fingertips. \"Visiting Stoikalm Steppes -- monsters bursting from earth -- send help!\" You gather your party and ride north, but as soon as you venture down from the mountains, the snow beneath your feet explodes and gruesomely grinning skulls surround you!<br><br>Suddenly, a spear sails past, burying itself in a skull that was burrowing through the snow in an attempt to catch you unawares. A tall woman in finely-crafted armor gallops into the fray on the back of a mastodon, her long braid swinging as she yanks the spear unceremoniously from the crushed beast. It's time to fight off these foes with the help of Lady Glaciate, the leader of the Mammoth Riders!",
"questStoikalmCalamity1Notes": "A terse missive arrives from @Kiwibot, and the frost-crusted scroll chills your heart as well as your fingertips. \"Visiting Stoïkalm Steppes -- monsters bursting from earth -- send help!\" You gather your party and ride north, but as soon as you venture down from the mountains, the snow beneath your feet explodes and gruesomely grinning skulls surround you!<br><br>Suddenly, a spear sails past, burying itself in a skull that was burrowing through the snow in an attempt to catch you unawares. A tall woman in finely-crafted armor gallops into the fray on the back of a mastodon, her long braid swinging as she yanks the spear unceremoniously from the crushed beast. It's time to fight off these foes with the help of Lady Glaciate, the leader of the Mammoth Riders!",
"questStoikalmCalamity1Completion": "As you deliver a final blow to the skulls, they dissipate in a puff of magic. \"The dratted swarm may be gone,\" Lady Glaciate says, \"but we have bigger problems. Follow me.\" She tosses you a cloak to protect you from the chill air, and you ride off after her.",
"questStoikalmCalamity1Boss": "Earth Skull Swarm",
"questStoikalmCalamity1RageTitle": "Swarm Respawn",

View File

@@ -66,6 +66,7 @@
"resetText1": "AHOY! 'tis resets many parts 'o ye account. 'tis be highly discouraged, but some people find it useful in th' beginnin' after playin' wit' th' site fer a short time.",
"resetText2": "You will lose all your levels, gold, and experience points. All your tasks (except those from challenges) will be deleted permanently and you will lose all of their historical data. You will lose all your equipment but you will be able to buy it all back, including all limited edition equipment or subscriber Mystery items that you already own (you will need to be in the correct class to re-buy class-specific gear). You will keep your current class and your pets and mounts. You might prefer to use an Orb of Rebirth instead, which is a much safer option and which will preserve your tasks and equipment.",
"deleteLocalAccountText": "Are ye sure? This will scuttle yer account forever, 'n it can ne'er be restored! Ye will needs t' register a new account t' use Habitica again. Banked or spent Gems will nah be refunded. If ye're absolutely certain ye wish to walk the plank, type yer password into th' text box below.",
"deleteSocialAccountText": "Are you sure? This will delete your account forever, and it can never be restored! You will need to register a new account to use Habitica again. Banked or spent Gems will not be refunded. If you're absolutely certain, type \"DELETE\" into the text box below.",
"API": "API",
"APIv3": "API v3",
"APIText": "Copy these fer use in third parrrty applications. However, think 'o ye API Token like a passcode, 'n do not share it publicly. Ye may occasionally be asked fer yer User ID, but never message yer API Token whar others can spy wit' ye eye it, includin' on Github.",

View File

@@ -151,7 +151,7 @@
"commGuideHeadingContributing": "Contributing to Habitica",
"commGuidePara064": "Habitica is an open-source project, which means that any Habiticans are welcome to pitch in! The ones who do will be rewarded according to the following tier of rewards:",
"commGuideList12A": "Habitica Contributor's badge, plus 3 Gems.",
"commGuideList12B": "Contributor Armor, plus 3 Gems.",
"commGuideList12B": "Contributor Armour, plus 3 Gems.",
"commGuideList12C": "Contributor Helmet, plus 3 Gems.",
"commGuideList12D": "Contributor Sword, plus 4 Gems.",
"commGuideList12E": "Contributor Shield, plus 4 Gems.",

View File

@@ -246,6 +246,7 @@
"missingNewPassword": "Missing new password.",
"invalidEmailDomain": "You cannot register with emails with the following domains: <%= domains %>",
"wrongPassword": "Wrong password.",
"incorrectDeletePhrase": "Please type DELETE in all caps to delete your account.",
"notAnEmail": "Invalid email address.",
"emailTaken": "Email address is already used in an account.",
"newEmailRequired": "Missing new email address.",

View File

@@ -73,7 +73,7 @@
"weaponSpecial3Text": "Mustaine's Milestone Mashing Morning Star",
"weaponSpecial3Notes": "Meetings, monsters, malaise: managed! Mash! Increases Strength, Intelligence, and Constitution by <%= attrs %> each.",
"weaponSpecialCriticalText": "Critical Hammer of Bug-Crushing",
"weaponSpecialCriticalNotes": "This champion slew a critical Github foe where many warriors fell. Fashioned from the bones of Bug, this hammer deals a mighty critical hit. Increases Strength and Perception by <%= attrs %> each.",
"weaponSpecialCriticalNotes": "This champion slew a critical GitHub foe where many warriors fell. Fashioned from the bones of Bug, this hammer deals a mighty critical hit. Increases Strength and Perception by <%= attrs %> each.",
"weaponSpecialTakeThisText": "Take This Sword",
"weaponSpecialTakeThisNotes": "This sword was earned by participating in a sponsored Challenge made by Take This. Congratulations! Increases all attributes by <%= attrs %>.",
"weaponSpecialTridentOfCrashingTidesText": "Trident of Crashing Tides",
@@ -593,7 +593,7 @@
"armorArmoireRedPartyDressText": "Red Party Dress",
"armorArmoireRedPartyDressNotes": "You're strong, tough, smart, and so fashionable! Increases Strength, Constitution, and Intelligence by <%= attrs %> each. Enchanted Armoire: Red Hairbow Set (Item 2 of 2).",
"armorArmoireWoodElfArmorText": "Wood Elf Armour",
"armorArmoireWoodElfArmorNotes": "This armour of bark and leaves will serve as durable camouflage in the forest. Increases Perception by <%= per %>. Enchanted Armoire: Wood Elf Set (Item 2 of 3).",
"armorArmoireWoodElfArmorNotes": "This armor of bark and leaves will serve as durable camouflage in the forest. Increases Perception by <%= per %>. Enchanted Armoire: Wood Elf Set (Item 2 of 3).",
"armorArmoireRamFleeceRobesText": "Ram Fleece Robes",
"armorArmoireRamFleeceRobesNotes": "These robes keep you warm even through the fiercest blizzard. Increases Constitution by <%= con %> and Strength by <%= str %>. Enchanted Armoire: Ram Barbarian Set (2 of 3).",
"armorArmoireGownOfHeartsText": "Gown of Hearts",
@@ -684,6 +684,8 @@
"headSpecialDandyHatNotes": "What a merry chapeau! You'll look quite fine enjoying a stroll in it. Increases Constitution by <%= con %>.",
"headSpecialKabutoText": "Kabuto",
"headSpecialKabutoNotes": "This helm is functional and beautiful! Your enemies will become distracted admiring it. Increases Intelligence by <%= int %>.",
"headSpecialNamingDay2017Text": "Royal Purple Gryphon Helm",
"headSpecialNamingDay2017Notes": "Happy Naming Day! Wear this fierce and feathery helm as you celebrate Habitica. Confers no benefit.",
"headSpecialNyeText": "Absurd Party Hat",
"headSpecialNyeNotes": "You've received an Absurd Party Hat! Wear it with pride while ringing in the New Year! Confers no benefit.",
"headSpecialYetiText": "Yeti-Tamer Helm",

View File

@@ -22,6 +22,7 @@
"communityGuidelinesRead1": "Please read our",
"communityGuidelinesRead2": "before chatting.",
"bannedWordUsed": "Oops! Looks like this post contains a swearword, religious oath, or reference to an addictive substance or adult topic. Habitica has users from all backgrounds, so we keep our chat very clean. Feel free to edit your message so you can post it!",
"bannedSlurUsed": "Your post contained inappropriate language, and your chat privileges have been revoked.",
"party": "Party",
"createAParty": "Create A Party",
"updatedParty": "Party settings updated.",
@@ -35,7 +36,9 @@
"invite": "Invite",
"leave": "Leave",
"invitedTo": "Invited to <%= name %>",
"invitedToNewParty": "You were invited to join a party! Do you want to leave this party and join <%= partyName %>?",
"invitedToNewParty": "You were invited to join a party! Do you want to leave this party, reject all other party invitations and join <%= partyName %>?",
"partyInvitationsText": "You have <%= numberInvites %> party invitations! Choose wisely, because you can only be in one party at a time.",
"joinPartyConfirmationText": "Are you sure you want to join the party \"<%= partyName %>\"? You can only be in one party at a time. If you join, all other party invitations will be rejected.",
"invitationAcceptedHeader": "Your Invitation has been Accepted",
"invitationAcceptedBody": "<%= username %> accepted your invitation to <%= groupName %>!",
"joinNewParty": "Join New Party",
@@ -148,6 +151,8 @@
"sendInvitations": "Send Invitations",
"invitationsSent": "Invitations sent!",
"invitationSent": "Invitation sent!",
"invitedFriend": "Invited a Friend",
"invitedFriendText": "This user invited a friend (or friends) who joined them on their adventure!",
"inviteAlertInfo2": "Or share this link (copy/paste):",
"inviteLimitReached": "You have already sent the maximum number of email invitations. We have a limit to prevent spamming, however if you would like more, please contact us at <%= techAssistanceEmail %> and we'll be happy to discuss it!",
"sendGiftHeading": "Send Gift to <%= name %>",

View File

@@ -30,6 +30,7 @@
"messageAlreadyPurchasedGear": "You purchased this gear in the past, but do not currently own it. You can buy it again in the rewards column on the tasks page.",
"messageAlreadyOwnGear": "You already own this item. Equip it by going to the equipment page.",
"messageHealthAlreadyMax": "You already have maximum health.",
"messageHealthAlreadyMin": "Oh no! You have already run out of health so it's too late to buy a health potion, but don't worry - you can revive!",
"armoireEquipment": "<%= image %> You found a piece of rare Equipment in the Armoire: <%= dropText %>! Awesome!",
"armoireFood": "<%= image %> You rummage in the Armoire and find <%= dropArticle %><%= dropText %>. What's that doing in here?",
"armoireExp": "You wrestle with the Armoire and gain Experience. Take that!",

View File

@@ -40,6 +40,7 @@
"plusOneGem": "+1 Gem",
"typeNotSellable": "Type is not sellable. Must be one of the following <%= acceptedTypes %>",
"userItemsKeyNotFound": "Key not found for user.items <%= type %>",
"userItemsNotEnough": "Not enough items found for user.items <%= type %>",
"pathRequired": "Path string is required",
"unlocked": "Items have been unlocked",
"alreadyUnlocked": "Full set already unlocked.",
@@ -58,7 +59,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 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.",
"classGearText": "Congratulations on choosing a class! I've added your new basic weapon to your inventory. Take a look below to equip it!",
"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 <strong>TASK > Edit > Advanced > Attributes</strong>. E.g. if you hit the gym often, and your 'Gym' Daily is set to 'Strength', you'll gain Strength automatically.",

Some files were not shown because too many files have changed in this diff Show More